﻿:root {
    --bg: #fcfbf7;
    --bg-alt: #f4efe6;
    --surface: rgba(255, 255, 255, 0.92);
    --surface-strong: #ffffff;
    --surface-soft: #f8f5ef;
    --line: rgba(31, 41, 55, 0.08);
    --line-strong: rgba(31, 41, 55, 0.14);
    --text: #18202b;
    --text-soft: #5f6b78;
    --text-muted: #7d8894;
    --primary: #0fa37f;
    --primary-strong: #12936a;
    --primary-soft: rgba(15, 163, 127, 0.12);
    --highlight: #1cc39a;
    --accent: #e9dcc8;
    --shadow-xl: 0 28px 80px rgba(14, 24, 34, 0.10);
    --shadow-lg: 0 20px 45px rgba(14, 24, 34, 0.08);
    --shadow-md: 0 14px 30px rgba(14, 24, 34, 0.06);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: 1200px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(15, 163, 127, 0.08), transparent 24%),
        radial-gradient(circle at top right, rgba(233, 220, 200, 0.42), transparent 26%),
        linear-gradient(180deg, #fffdfa 0%, #fbf8f2 40%, #f6f0e7 100%);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button {
    font: inherit;
}

.container {
    width: min(var(--container), 92%);
    margin: 0 auto;
}

.page-shell {
    position: relative;
    overflow: clip;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    border-bottom: 1px solid transparent;
    transition: background-color 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 252, 247, 0.84);
    border-color: var(--line);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 30px rgba(14, 24, 34, 0.05);
}

.nav-shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    min-height: 86px;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand-logo {
    width: 208px;
    max-width: 40vw;
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.nav-menu a {
    color: var(--text-soft);
    font-size: 0.96rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: var(--text);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-toggle {
    display: none;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: -0.02em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-strong) 100%);
    box-shadow: 0 14px 30px rgba(15, 163, 127, 0.22);
}

.btn-primary:hover {
    box-shadow: 0 18px 36px rgba(15, 163, 127, 0.26);
}

.btn-secondary {
    color: var(--text);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
}

.btn-secondary:hover,
.btn-ghost:hover {
    border-color: var(--line-strong);
    background: #ffffff;
}

.btn-ghost {
    color: var(--text-soft);
    background: transparent;
    border: 1px solid transparent;
}

.btn-block {
    width: 100%;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(15, 163, 127, 0.14);
    background: rgba(15, 163, 127, 0.08);
    color: var(--primary-strong);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-section {
    position: relative;
    padding: 42px 0 36px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 42px;
    align-items: center;
    min-height: calc(100vh - 124px);
}

.hero-copy {
    position: relative;
    z-index: 1;
}

.hero-copy h1 {
    margin-top: 18px;
    font-size: clamp(3rem, 6vw, 5.1rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
    max-width: 760px;
}

.hero-text {
    margin-top: 22px;
    max-width: 640px;
    color: var(--text-soft);
    font-size: 1.12rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-actions.centered {
    justify-content: center;
}

.hero-price-box {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 14px;
    margin-top: 28px;
}

.hero-price-tag,
.hero-price-note {
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-md);
}

.hero-price-tag strong,
.hero-price-note strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.hero-price-tag span,
.hero-price-note span {
    color: var(--text-muted);
    font-size: 0.93rem;
}

.hero-visual {
    position: relative;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(34px);
    opacity: 0.9;
    pointer-events: none;
}

.hero-orb-left {
    width: 280px;
    height: 280px;
    left: -90px;
    top: 120px;
    background: rgba(15, 163, 127, 0.10);
}

.hero-orb-right {
    width: 320px;
    height: 320px;
    right: -120px;
    top: 50px;
    background: rgba(233, 220, 200, 0.58);
}

.dashboard-frame {
    position: relative;
    overflow: hidden;
    padding: 22px;
    border-radius: 34px;
    border: 1px solid rgba(24, 32, 43, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 244, 237, 0.98) 100%);
    box-shadow: var(--shadow-xl);
}

.dashboard-frame::before {
    content: "";
    position: absolute;
    inset: auto -12% -24% auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 163, 127, 0.16), transparent 68%);
}

.dashboard-topbar {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.dashboard-topbar span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(24, 32, 43, 0.18);
}

.dashboard-preview {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 18px;
}

.dashboard-sidebar {
    padding: 18px 14px;
    border-radius: 24px;
    background: rgba(248, 245, 239, 0.92);
    border: 1px solid rgba(24, 32, 43, 0.06);
}

.sidebar-mark {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--highlight) 0%, var(--primary) 100%);
    margin-bottom: 26px;
}

.sidebar-line {
    height: 10px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(24, 32, 43, 0.08);
}

.sidebar-line.active {
    background: rgba(15, 163, 127, 0.58);
}

.dashboard-content {
    display: grid;
    gap: 16px;
}

.stats-grid,
.module-grid {
    display: grid;
    gap: 14px;
}

.stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card,
.module-card {
    border-radius: 22px;
    border: 1px solid rgba(24, 32, 43, 0.06);
    background: rgba(255, 255, 255, 0.82);
}

.stat-card {
    padding: 18px;
}

.stat-card span {
    display: block;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 0.84rem;
}

.stat-card strong {
    font-size: 1.5rem;
    letter-spacing: -0.04em;
}

.stat-card.highlight {
    background: linear-gradient(135deg, rgba(15, 163, 127, 0.12), rgba(28, 195, 154, 0.08));
}

.module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.module-card {
    padding: 18px;
}

.module-card.wide {
    grid-column: 1 / -1;
}

.module-card small {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-strong);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.module-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
}

.module-card span {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.highlight-strip {
    margin-top: 30px;
}

.highlight-bar {
    width: 100%;
    padding: 18px 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    color: var(--text-soft);
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
}

.section {
    padding: 92px 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-heading h2 {
    margin-top: 16px;
    font-size: clamp(2rem, 4vw, 3.7rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.section-heading p {
    margin-top: 18px;
    color: var(--text-soft);
    font-size: 1.05rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.feature-card,
.process-card,
.module-showcase-card,
.benefit-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-md);
}

.feature-card::before,
.process-card::before,
.module-showcase-card::before,
.benefit-card::before,
.pricing-card::before,
.final-cta-card::before {
    content: "";
    position: absolute;
    inset: auto -40px -48px auto;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 163, 127, 0.10), transparent 68%);
}

.feature-icon,
.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(15, 163, 127, 0.10);
    border: 1px solid rgba(15, 163, 127, 0.10);
    color: var(--primary-strong);
    font-weight: 800;
    margin-bottom: 18px;
}

.feature-card h3,
.process-card h3,
.module-showcase-head strong,
.benefit-card strong {
    font-size: 1.2rem;
    letter-spacing: -0.03em;
}

.feature-card p,
.process-card p,
.module-showcase-card p,
.benefit-card p {
    margin-top: 10px;
    color: var(--text-soft);
}

.process-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: 24px;
    align-items: start;
}

.process-copy {
    position: sticky;
    top: 110px;
}

.process-copy h2 {
    margin-top: 18px;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.process-copy p {
    margin-top: 18px;
    color: var(--text-soft);
}

.process-steps {
    display: grid;
    gap: 18px;
}

.modules-showcase {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.module-showcase-card {
    min-height: 100%;
}

.module-showcase-card.emphasis {
    background: linear-gradient(180deg, rgba(242, 249, 246, 0.98) 0%, rgba(249, 252, 250, 0.98) 100%);
    border-color: rgba(15, 163, 127, 0.12);
}

.module-showcase-head span {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-strong);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    font-weight: 700;
}

.module-showcase-card ul {
    margin-top: 18px;
    display: grid;
    gap: 10px;
    list-style: none;
}

.module-showcase-card li {
    position: relative;
    padding-left: 18px;
    color: var(--text-soft);
}

.module-showcase-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--highlight);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.section-pricing {
    padding-top: 32px;
}

.pricing-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 22px;
    padding: 30px;
    border-radius: 34px;
    border: 1px solid rgba(15, 163, 127, 0.10);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 244, 237, 0.98) 100%);
    box-shadow: var(--shadow-xl);
}

.pricing-copy h2 {
    margin-top: 16px;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.pricing-copy p {
    margin-top: 18px;
    max-width: 660px;
    color: var(--text-soft);
}

.pricing-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
}

.pricing-list div {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--line);
    color: var(--text-soft);
}

.pricing-box {
    padding: 28px;
    border-radius: 28px;
    border: 1px solid rgba(24, 32, 43, 0.08);
    background: linear-gradient(180deg, rgba(248, 252, 249, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.pricing-badge {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(15, 163, 127, 0.10);
    color: var(--primary-strong);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pricing-value {
    margin-top: 20px;
}

.pricing-value small,
.pricing-value span {
    display: block;
    color: var(--text-muted);
}

.pricing-value strong {
    display: block;
    margin: 8px 0;
    font-size: clamp(2.8rem, 5vw, 4rem);
    line-height: 1;
    letter-spacing: -0.07em;
}

.pricing-after {
    margin-top: 8px;
    color: var(--text-soft);
}

.pricing-trial {
    margin: 18px 0 22px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(15, 163, 127, 0.08);
    border: 1px solid rgba(15, 163, 127, 0.10);
    color: var(--primary-strong);
    font-weight: 700;
    text-align: center;
}

.pricing-box .btn + .btn {
    margin-top: 12px;
}

.final-cta-card {
    position: relative;
    overflow: hidden;
    padding: 54px 28px;
    border-radius: 34px;
    text-align: center;
    border: 1px solid rgba(24, 32, 43, 0.08);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 239, 230, 0.98) 100%);
    box-shadow: var(--shadow-xl);
}

.final-cta-card h2 {
    margin-top: 18px;
    font-size: clamp(2rem, 4vw, 3.7rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.final-cta-card p {
    margin: 18px auto 0;
    max-width: 720px;
    color: var(--text-soft);
}

.site-footer {
    padding: 32px 0 28px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.74);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.footer-brand p {
    max-width: 360px;
    color: var(--text-soft);
    margin-top: 16px;
}

.footer-logo {
    width: 210px;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-links strong {
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.footer-links a {
    color: var(--text-soft);
}

.footer-links a:hover {
    color: var(--text);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-top: 22px;
    margin-top: 28px;
    border-top: 1px solid var(--line);
    color: var(--text-muted);
    font-size: 0.92rem;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1180px) {
    .hero-grid,
    .pricing-card,
    .process-layout,
    .modules-showcase,
    .benefits-grid,
    .feature-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .process-copy {
        position: static;
    }

    .pricing-list,
    .stats-grid,
    .module-grid,
    .hero-price-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 920px) {
    .nav-shell {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .nav-menu,
    .nav-actions {
        display: none;
    }

    .site-header.is-menu-open .nav-menu,
    .site-header.is-menu-open .nav-actions {
        display: grid;
        grid-column: 1 / -1;
    }

    .site-header.is-menu-open .nav-menu {
        gap: 16px;
        padding: 8px 0 4px;
    }

    .site-header.is-menu-open .nav-actions {
        gap: 10px;
        padding: 0 0 18px;
    }

    .site-header.is-menu-open .nav-actions .btn {
        width: 100%;
    }

    .hero-section {
        padding-top: 24px;
    }

    .hero-copy h1,
    .section-heading h2,
    .process-copy h2,
    .pricing-copy h2,
    .final-cta-card h2 {
        letter-spacing: -0.04em;
    }
}

@media (max-width: 640px) {
    .brand-logo,
    .footer-logo {
        width: 180px;
    }

    .hero-grid {
        min-height: auto;
        gap: 28px;
    }

    .dashboard-preview {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        display: none;
    }

    .feature-card,
    .process-card,
    .module-showcase-card,
    .benefit-card,
    .pricing-card,
    .final-cta-card,
    .dashboard-frame,
    .highlight-bar {
        border-radius: 24px;
    }

    .pricing-card,
    .dashboard-frame {
        padding: 20px;
    }

    .section {
        padding: 72px 0;
    }

    .footer-bottom {
        flex-direction: column;
    }
}
.hero-section-clean {
    padding-top: 62px;
}

.hero-grid-single {
    grid-template-columns: 1fr;
    min-height: auto;
}

.hero-copy-wide {
    max-width: 980px;
}

.hero-copy-wide h1 {
    max-width: 900px;
}

.hero-price-box-wide {
    max-width: 760px;
}
.hero-copy-wide {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.hero-copy-wide h1 {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2.45rem, 5vw, 4.25rem);
    line-height: 1.02;
}

.hero-copy-wide .hero-text {
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
}

.hero-copy-wide .hero-actions {
    justify-content: center;
}

.hero-price-box-wide {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
