﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    line-height: 1.6;
    color: #333;
}

p {
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #6a39b7 0%, #9b3d99 100%);
    color: #fff;
    padding: 80px 15px;
    text-align: center;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cta-primary {
    background: #fff;
    color: #6a39b7;
    min-width: 240px;
    padding: 15px 40px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
    display: inline-block;
}

.cta-primary:hover {
    color: #9b3d99;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
}

.cta-secondary {
    background: transparent;
    color: #fff;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    border: 2px solid #fff;
    transition: background .2s;
    display: inline-block;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, .1);
}

/* Trust Badge */
.trust-badge-single {
    margin: 0 auto 30px;
    font-size: .95em;
    opacity: .9;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* PFP Section */
.pfp {
    padding: 60px 15px;
    background: #fff;
}

.pfp-inner {
    border-top: 4px solid #6a39b7;
    border-radius: 10px;
}

.pfp h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 0;
    color: #2c3e50;
}

.pfp p {
    list-style: none;
    color: #333;
}

ol {
    padding: 0 0 0 30px;
}

li span {
    position: relative;
    left: -20px;
    font-size: 18px;
}

.pfp-box {
    background: #fff;
    padding: 30px 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
}

.pfp-box ul {
    list-style: none;
    padding: 0;
}

.pfp-box.good li {
    padding: 8px 0 8px 25px;
    position: relative;
}

.pfp-box.good ul li:before {
    content: '✓';
    color: #6a39b7;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Problem Section */
.problem-section {
    padding: 60px 15px;
    background: #f8f9fa;
}

.problem-section h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 0;
    color: #2c3e50;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.comparison-box {
    background: #fff;
    padding: 30px 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
}

.comparison-box.bad {
    border-top: 4px solid #c0392b;
}

.comparison-box.good {
    border-top: 4px solid #6a39b7;
}

.comparison-box h3 {
    margin-bottom: 0;
    font-size: 1.4em;
    color: #2c3e50;
}

.comparison-box ul {
    list-style: none;
    padding: 0;
}

.comparison-box.bad li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #333;
}

.comparison-box.bad li:before {
    content: '✗';
    color: #c0392b;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.comparison-box.good li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #333;
}

.comparison-box.good li:before {
    content: '✓';
    color: #6a39b7;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* How It Works Section */
.how-it-works {
    padding: 60px 15px;
    background: #fff;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 0;
    color: #2c3e50;
}

.how-it-works .intro {
    text-align: center;
    font-size: 1.2em;
    color: #333;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 20px 15px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: #6a39b7;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.step p {
    color: #333;
    line-height: 1.6;
    text-align: left;
}

/* Features Section */
.features {
    padding: 60px 15px;
    background: #f8f9fa;
}

.features h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 10px;
    color: #2c3e50;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature {
    background: #fff;
    padding: 30px 15px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
}

.feature h2 {
    color: #6a39b7;
    margin-bottom: -10px;
    font-size: 1.6em;
    text-align: left;
}

.feature p {
    color: #333;
    line-height: 1.6;
}

/* Who It's For Section */
.who-its-for {
    padding: 60px 15px;
    background: #fff;
}

.who-its-for h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 0;
    color: #2c3e50;
}

.who-its-for .intro {
    text-align: center;
    font-size: 1.1em;
    color: #333;
    margin-bottom: 40px;
}

.persona-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.persona {
    background: #f8f9fa;
    padding: 25px 15px;
    border-radius: 10px;
    text-align: center;
}

.persona-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.persona h3 {
    margin: -15px auto;
    color: #2c3e50;
}

.persona p {
    color: #333;
    font-size: .95em;
}

/* Pricing Preview Section */
.pricing-preview {
    padding: 60px 15px 15px;
    background: linear-gradient(to right, #6a39b7 0%, #9b3d99 100%);
    color: #fff;
    text-align: center;
}

.pricing-preview h2 {
    font-size: 2.2em;
    margin-bottom: 0;
    color: #fff;
}

.pricing-preview h3 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #fff;
}

.pricing-preview p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #fff;
}

.pricing-highlight {
    font-size: 3em;
    font-weight: bold;
    margin: 20px 0;
    color: #fff;
}

.pricing-includes {
    font-size: 1.1em;
    margin-bottom: 30px;
    opacity: .95;
    color: #fff;
}

/* Secondary Products Section */
.secondary-products {
    padding: 60px 15px;
    background: #f8f9fa;
}

.secondary-products h2 {
    text-align: center;
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #333;
}

.secondary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.secondary-product {
    background: #fff;
    padding: 30px 15px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: transform .2s, box-shadow .2s;
}

.secondary-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .15);
}

.secondary-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.secondary-product h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.secondary-product p {
    font-size: .9em;
    color: #333;
    margin-bottom: 15px;
}

.secondary-link {
    color: #6a39b7;
    font-weight: bold;
}

/* Who Section */
.who-section {
    background: linear-gradient(to right, #6a39b7 0%, #9b3d99 100%);
    color: #fff;
    padding: 40px 15px;
}

.who-section .section-header h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 0;
    font-size: 2.2em;
}

.who-section .section-header p {
    color: #fff;
    text-align: center;
    margin: 0 auto 30px;
}

.who-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 auto;
    max-width: 1100px;
}

.who-card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 12px;
    padding: 35px 15px;
    text-align: center;
    transition: all .3s ease;
}

.who-card:hover {
    background: rgba(255, 255, 255, .15);
    transform: translateY(-5px);
}

.who-card h3 {
    color: #fff;
    font-size: 1.3em;
    margin-bottom: 15px;
}

.who-card p {
    color: rgba(255, 255, 255, .9);
    line-height: 1.6;
    text-align: left;
}

.who-icon {
    display: block;
    font-size: 3em;
    margin-bottom: 15px;
}

/* Product Badges */
.product-badges {
    margin-top: 20px;
    font-size: .95em;
    min-width: 185px;
    opacity: .9;
    display: grid;
    grid-template-columns: repeat(3, max-content);
    column-gap: 16px;
    row-gap: 10px;
    justify-content: center;
    transition: grid-template-columns .2s ease;
}

.product-badges span {
    white-space: nowrap;
}

span.badge {
    border: 1px solid #fff;
    border-radius: 20px;
    padding: 10px 20px;
    margin: 0 auto;
    min-width: 185px;
}

/* Form Title */
h2.form-title {
    margin: 0 auto 50px;
}

/* Media Queries */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2em;
    }

    .hero,
    .pricing-preview {
        background: linear-gradient(to bottom, #6a39b7 0%, #9b3d99 100%);
    }

    .container {
        padding: 0;
    }

    .comparison-grid,
    .steps,
    .features-grid,
    .persona-grid,
    .secondary-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        text-align: center;
    }

    .who-section {
        background: linear-gradient(to bottom, #6a39b7 0%, #9b3d99 100%);
    }

    .who-grid {
        gap: 25px;
        grid-template-columns: 1fr;
    }

    .step p {
        text-align: center;
    }
}

@media (max-width: 968px) {
    .who-grid {
        gap: 25px;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .product-badges {
        grid-template-columns: 1fr;
        justify-content: center;
        text-align: center;
    }
}