:root {
    --black: #0a0a0a;
    --white: #fafafa;
    --cream: #f0fdfb;
    --accent: #32C3B2;
    --accent-dark: #1f9e90;
    --text: #1a1a1a;
    --text-light: #666;
    --border: #c8f0ec;
    --card-bg: #ffffff;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--black);
    text-decoration: none;
}

.logo span {
    color: var(--accent);
}


/* ── HERO ── */

.hero {
    background: linear-gradient(135deg, var(--black) 0%, #1a2e2b 100%);
    padding: 7rem 6% 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(50, 195, 178, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(50, 195, 178, 0.15);
    border: 1px solid rgba(50, 195, 178, 0.3);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.8rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 em {
    font-style: italic;
    color: var(--accent);
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-cta-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--accent);
    color: white;
    padding: 0.9rem 2.2rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--accent-dark);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    padding: 0.9rem 2.2rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background .2s;
    display: inline-block;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
}


/* ── SECTIONS ── */

section {
    padding: 5.5rem 6%;
}

.s-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.8rem;
    display: block;
}

.s-title1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    color: var(--black);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.s-sub1 {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 580px;
}


/* ── STEP FLOW ── */

.flow-section {
    background: var(--cream);
}

.flow-inner {
    max-width: 900px;
    margin: 3rem auto 0;
}

.flow-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 1.5rem;
    position: relative;
    padding-bottom: 2.5rem;
}

.flow-step:last-child {
    padding-bottom: 0;
}

.flow-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 27px;
    top: 56px;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.flow-num {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 900;
    box-shadow: 0 4px 16px rgba(50, 195, 178, 0.35);
    position: relative;
    z-index: 1;
}

.flow-body {
    padding-top: 0.8rem;
}

.flow-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.flow-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.65;
}

.flow-note {
    margin-top: 0.6rem;
    font-size: 0.78rem;
    color: var(--accent-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}


/* ── WHY WORKS ── */

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.why-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: box-shadow .2s, transform .2s;
}

.why-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
    transform: translateY(-3px);
}

.why-icon-wrap {
    width: 52px;
    height: 52px;
    background: var(--cream);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.why-card h3 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.why-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.65;
}

.big-stat {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent);
}


/* ── WHY US ── */

.whyus-section {
    background: var(--black);
}

.whyus-section .s-title {
    color: white;
}

.whyus-section .s-sub {
    color: rgba(255, 255, 255, 0.5);
}

.whyus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.whyus-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 2rem;
    transition: border-color .2s;
}

.whyus-card:hover {
    border-color: var(--accent);
}

.whyus-num {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.06);
    line-height: 1;
    margin-bottom: 0.8rem;
}

.whyus-icon {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.whyus-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.whyus-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
}


/* ── FREE FEATURES ── */

.free-section {
    background: var(--cream);
}

.features-list {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feat-item {
    background: white;
    border-radius: 14px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: box-shadow .2s;
}

.feat-item:hover {
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.09);
}

.feat-num-badge {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: var(--accent);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.feat-body h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.feat-body p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

.feat-tag {
    display: inline-block;
    background: var(--cream);
    color: var(--accent-dark);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.18rem 0.55rem;
    border-radius: 4px;
    margin-top: 0.5rem;
}


/* ── PRO FEATURES ── */

.pro-section1 {
    max-width: 1400px;
    margin: auto;
}

.pro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.pro-card1 {
    border-radius: 14px;
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    transition: box-shadow .2s, transform .2s;
}

.pro-card1:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
    transform: translateY(-2px);
}

.pro-card1-head {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.pro-card1-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pro-card1 h3 {
    font-size: 0.98rem;
    font-weight: 700;
}

.pro-card1 p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.65;
}

.pro-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.9rem;
}

.pro-pill {
    background: var(--cream);
    color: var(--accent-dark);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 20px;
    border: 1px solid var(--border);
}


/* ── PRO DOCS ── */

.docs-section {
    background: var(--cream);
}

.docs-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.doc-card {
    background: white;
    border-radius: 14px;
    padding: 2rem;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    transition: box-shadow .2s, transform .2s;
}

.doc-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.doc-icon {
    font-size: 2rem;
}

.doc-card h3 {
    font-weight: 700;
    font-size: 0.95rem;
}

.doc-card p {
    font-size: 0.83rem;
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
}

.doc-badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    align-self: flex-start;
}


/* ── STATS BAND ── */

.stats-band1 {
    background: var(--accent);
    padding: 4rem 6%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.sb-num1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.sb-label1 {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}


/* ── CTA ── */

.cta-section {
    background: var(--black);
    padding: 6rem 6%;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}


/* ── RESPONSIVE ── */

@media (max-width: 960px) {
    .why-grid,
    .whyus-grid,
    .docs-cards {
        grid-template-columns: 1fr 1fr;
    }
    .stats-band {
        grid-template-columns: 1fr 1fr;
    }
    .pro-grid {
        grid-template-columns: 1fr;
    }
    footer {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    section {
        padding: 3.5rem 5%;
    }
    .hero {
        padding: 5rem 5% 3.5rem;
    }
    .why-grid,
    .whyus-grid,
    .docs-cards,
    .stats-band {
        grid-template-columns: 1fr;
    }
    .remove {
        display: none;
    }
    footer {
        grid-template-columns: 1fr;
    }
    .feat-item {
        flex-direction: column;
    }
}


/* ── ANIMATIONS ── */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ── SCREENSHOTS ── */

.feat-screenshot {
    margin-top: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    background: var(--cream);
}

.feat-screenshot img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.feat-screenshot:hover img {
    transform: scale(1.02);
}