﻿    * {
    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 20px;
}

.hero {
    background: linear-gradient(to right, #6a39b7 0%, #9b3d99 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

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

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

.cta-primary {
    background: white;
    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 {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,.2);
}

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

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

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

.problem-section {
    padding: 60px 20px;
    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: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,.1);
}

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

.comparison-box.good {
    border-top: 4px solid #27ae60;
}

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

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

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

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

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

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

.how-it-works {
    padding: 60px 20px;
    background: white;
}

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

.how-it-works .intro {
    text-align: center;
    font-size: 1.2em;
    color: #555;
    margin-bottom: 50px;
    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;
}

.step-number {
    width: 80px;
    height: 80px;
    background: #6a39b7;
    color: white;
    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: #555;
    line-height: 1.6;
    text-align: left;
}

.features {
    padding: 60px 20px;
    background: #f8f9fa;
}

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

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

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

.feature h3 {
    color: #6a39b7;
    margin-bottom: 15px;
    font-size: 1.3em;
}

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

.who-its-for {
    padding: 60px 20px;
    background: white;
}

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

.who-its-for .intro {
    text-align: center;
    font-size: 1.1em;
    color: #555;
    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;
    border-radius: 10px;
    text-align: center;
}

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

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

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

.pricing-preview {
    padding: 60px 20px;
    background: linear-gradient(to right, #6a39b7 0%, #9b3d99 100%);
    color: white;
    text-align: center;
}

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

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

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

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

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

.secondary-products {
    padding: 60px 20px;
    background: #f8f9fa;
}

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

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

.secondary-product {
    background: white;
    padding: 30px;
    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: #666;
    margin-bottom: 15px;
}

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

.who-section {
    background: linear-gradient(to right, #6a39b7 0%, #9b3d99 100%);
    color: #fff;
    padding: 80px 20px;
}

.who-section .section-header h2,
.who-section .section-header p {
    color: #fff;
}

.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 25px;
    text-align: center;
    transition: all .3s ease;
}

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

.who-card h3 {
    color: #bbe1fa;
    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 {
    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;
}

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

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

    .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;
    }
}

@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;
    }
}