:root {
    /* Scrubs-teal palette inspired by optadata.de + #73C1B5 */
    --teal-hero: #73C1B5; /* main scrubs teal */
    --teal-mid: #4AADA0; /* slightly deeper */
    --teal-deep: #2A8C80; /* deeper accent */
    --teal-dark: #1A6B61; /* darkest teal for text/nav */
    --teal-light: #9DD4CC; /* lighter teal */
    --teal-pale: #D4EFEC; /* very light teal bg */
    --teal-mist: #EEF8F7; /* misty background */
    --teal-white: #F5FBFA; /* near-white with teal hint */

    --orange: #E8610A; /* optadata CTA orange */
    --orange-hover: #C45308;
    --orange-soft: #FEF0E7;
    --white: #FFFFFF;
    --off-white: #F8FAFB;
    --text: #133330; /* deep teal-tinted near-black */
    --text-mid: #2E5550;
    --text-muted: #5E8580;
    --border: #BFE0DC;
    --border-soft: #DCF0EE;
    --shadow-sm: 0 1px 4px rgba(26,107,97,0.08);
    --shadow-md: 0 4px 20px rgba(26,107,97,0.13);
    --shadow-lg: 0 12px 48px rgba(26,107,97,0.18);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--text);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ─── TOPBAR ─── */
.topbar {
    background: var(--teal-dark);
    padding: 8px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-left {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

    .topbar-left span {
        color: var(--teal-hero);
        font-weight: 600;
    }

.topbar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s;
}

    .topbar a:hover {
        color: #fff;
    }

.topbar-div {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.18);
}

/* ─── NAV ─── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 2px solid var(--teal-pale);
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-box {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--teal-mid), var(--teal-hero));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Mono', monospace;
    font-weight: 500;
    font-size: 17px;
    color: #fff;
    box-shadow: 0 2px 8px rgba(74,173,160,0.35);
}

.nav-logo-info {
    display: flex;
    flex-direction: column;
}

.nav-logo-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--teal-dark);
    letter-spacing: 0.04em;
    line-height: 1.1;
}

.nav-logo-sub {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}

    .nav-links a {
        text-decoration: none;
        color: var(--text-mid);
        font-size: 15px;
        font-weight: 500;
        padding: 8px 16px;
        border-radius: 8px;
        transition: background 0.2s, color 0.2s;
    }

        .nav-links a:hover {
            color: var(--teal-dark);
            background: var(--teal-mist);
        }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-ghost {
    border: 1.5px solid var(--teal-mid);
    color: var(--teal-dark);
    background: transparent;
    padding: 9px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: background 0.2s, color 0.2s;
}

    .btn-ghost:hover {
        background: var(--teal-mid);
        color: #fff;
    }

.btn-orange {
    background: var(--orange);
    border: none;
    color: #fff;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    box-shadow: 0 2px 8px rgba(232,97,10,0.3);
    transition: background 0.2s, transform 0.15s;
}

    .btn-orange:hover {
        background: var(--orange-hover);
        transform: translateY(-1px);
    }

/* ─── HERO ─── */
.hero {
    background: linear-gradient(110deg, var(--teal-mist) 0%, var(--teal-pale) 40%, #C8E9E5 100%);
    position: relative;
    overflow: hidden;
    min-height: 620px;
}

    /* subtle wave pattern */
    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 15% 50%, rgba(115,193,181,0.18) 0%, transparent 55%), radial-gradient(circle at 85% 20%, rgba(42,140,128,0.1) 0%, transparent 45%);
    }

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    z-index: 1;
    min-height: 620px;
}

/* LEFT — text content */
.hero-content {
    padding: 80px 48px 80px 48px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(115,193,181,0.18);
    border: 1.5px solid rgba(115,193,181,0.45);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    color: var(--teal-dark);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.badge-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal-mid);
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 6px var(--teal-mid);
}

@@keyframes pulse {
    0%, 100% {
        opacity: 1
    }

    50% {
        opacity: 0.35
    }
}

.hero h1 {
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 22px;
}

    .hero h1 em {
        font-style: normal;
        color: var(--teal-deep);
        position: relative;
    }

        .hero h1 em::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -4px;
            right: 0;
            height: 3px;
            border-radius: 2px;
            background: linear-gradient(90deg, var(--teal-hero), var(--teal-mid));
        }

.hero-desc {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 460px;
    font-weight: 400;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.btn-hero-orange {
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    box-shadow: 0 4px 16px rgba(232,97,10,0.35);
    transition: background 0.2s, transform 0.15s;
}

    .btn-hero-orange:hover {
        background: var(--orange-hover);
        transform: translateY(-2px);
    }

.btn-hero-teal {
    background: transparent;
    color: var(--teal-dark);
    border: 1.5px solid var(--teal-mid);
    padding: 13px 26px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: background 0.2s, color 0.2s;
}

    .btn-hero-teal:hover {
        background: var(--teal-mid);
        color: #fff;
    }

.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--teal-pale);
    border: 1.5px solid var(--teal-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--teal-dark);
    font-weight: 800;
}

/* RIGHT — doctor image */
.hero-image {
    height: 100%;
    min-height: 620px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        display: block;
    }

/* floating stat card on the image */
.hero-float-card {
    position: absolute;
    bottom: 36px;
    left: -20px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 18px 22px;
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    animation: floatUp 0.8s 0.4s ease both;
}

@@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.float-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.float-val {
    font-size: 32px;
    font-weight: 800;
    color: var(--teal-dark);
    letter-spacing: -0.04em;
    line-height: 1;
}

.float-sub {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.hero-float-card2 {
    position: absolute;
    top: 48px;
    left: -12px;
    z-index: 10;
    background: var(--teal-dark);
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: var(--shadow-lg);
    animation: floatUp 0.8s 0.6s ease both;
}


.float2-label {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 6px;
}

.float2-val {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
}

.float2-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    margin-top: 2px;
}

/* rec indicator */
.rec-float {
    position: absolute;
    top: 56px;
    right: 24px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 100px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    box-shadow: var(--shadow-md);
    animation: floatUp 0.8s 0.8s ease both;
}

.rec-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E74C3C;
    animation: pulse 1.2s infinite;
}

/* ─── STATS BAND ─── */
.stats-band {
    background: var(--teal-dark);
}

.stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4,1fr);
}

.stat-item {
    padding: 36px 40px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.1);
}

    .stat-item:last-child {
        border-right: none;
    }

.stat-num {
    font-size: 40px;
    font-weight: 800;
    color: var(--teal-hero);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 6px;
}

    .stat-num em {
        font-style: normal;
        color: var(--orange);
    }

.stat-lbl {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
}

/* ─── LOGOS ─── */
.logos-section {
    padding: 48px;
    border-bottom: 1px solid var(--border-soft);
    background: var(--white);
}

.logos-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.logos-label {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.logo-chip {
    font-size: 13px;
    font-weight: 700;
    color: var(--teal-dark);
    padding: 8px 18px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    background: var(--teal-mist);
    letter-spacing: 0.02em;
}

/* ─── GENERIC SECTION ─── */
.section-wrap {
    padding: 96px 48px;
}

.section-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--teal-mid);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

    .section-tag::before {
        content: '';
        width: 24px;
        height: 2px;
        background: var(--teal-hero);
        border-radius: 2px;
    }

.section-title {
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 16px;
}

    .section-title span {
        color: var(--teal-deep);
    }

.section-desc {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 560px;
}

.section-header {
    margin-bottom: 60px;
}

/* ─── HOW IT WORKS ─── */
.hiw-bg {
    background: var(--teal-mist);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

.step-card {
    background: var(--white);
    border: 1.5px solid var(--border-soft);
    border-radius: 16px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
}

    .step-card:hover {
        box-shadow: var(--shadow-md);
        border-color: var(--teal-hero);
        transform: translateY(-4px);
    }

    .step-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--teal-hero), var(--teal-mid));
    }

.step-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal-mid);
    font-family: 'DM Mono', monospace;
    margin-bottom: 20px;
}

.step-icon {
    width: 56px;
    height: 56px;
    background: var(--teal-pale);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 22px;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.step-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ─── FEATURES ─── */
.features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.feat-item {
    padding: 22px 24px;
    border-radius: 12px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

    .feat-item:hover {
        background: var(--teal-mist);
        border-color: var(--border);
    }

    .feat-item.active {
        background: var(--teal-pale);
        border-color: var(--teal-hero);
    }

.feat-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-top: 2px;
    box-shadow: var(--shadow-sm);
}

.feat-body h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 5px;
}

.feat-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Visual panel */
.features-visual {
    position: sticky;
    top: 90px;
    background: linear-gradient(145deg, var(--teal-dark) 0%, var(--teal-deep) 100%);
    border-radius: 20px;
    padding: 36px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

    .features-visual::after {
        content: '';
        position: absolute;
        top: -60px;
        right: -60px;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: rgba(115,193,181,0.12);
        pointer-events: none;
    }

.vis-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.vis-dots {
    display: flex;
    gap: 6px;
}

.vis-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.vis-title {
    font-family: 'DM Mono',monospace;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-left: 6px;
}

.rec-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(115,193,181,0.15);
    border: 1px solid rgba(115,193,181,0.3);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--teal-hero);
    margin-bottom: 20px;
    font-family: 'DM Mono', monospace;
}

.rec-blink {
    width: 7px;
    height: 7px;
    background: var(--teal-hero);
    border-radius: 50%;
    animation: pulse 1.2s infinite;
}

.vis-row {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    align-items: baseline;
}

.vis-key {
    color: rgba(255,255,255,0.38);
    min-width: 140px;
    flex-shrink: 0;
}

.vis-val {
    color: var(--teal-hero);
}

    .vis-val.orange {
        color: #FFB069;
    }

    .vis-val.white {
        color: rgba(255,255,255,0.82);
    }

    .vis-val.blink {
        animation: textBlink 1.5s steps(1) infinite;
    }

@@keyframes textBlink {
    0%, 100% {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}

.vis-bar {
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    height: 4px;
    margin: 18px 0 6px;
    overflow: hidden;
}

.vis-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--teal-hero), #73D4C8);
    border-radius: 4px;
    animation: fillAnim 3s ease-in-out infinite alternate;
}

@@keyframes fillAnim {
    from {
        width: 45%
    }

    to {
        width: 82%
    }
}

.vis-pct {
    font-family: 'DM Mono',monospace;
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    text-align: right;
}

/* ─── TESTIMONIALS ─── */
.test-bg {
    background: var(--teal-pale);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.tcard {
    background: var(--white);
    border: 1.5px solid var(--border-soft);
    border-radius: 16px;
    padding: 36px;
    transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}

    .tcard:hover {
        box-shadow: var(--shadow-md);
        border-color: var(--teal-hero);
        transform: translateY(-3px);
    }

.tcard-stars {
    color: var(--orange);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.tcard-text {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-mid);
    margin-bottom: 28px;
}

.tcard-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tcard-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-mid), var(--teal-hero));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    color: #fff;
    flex-shrink: 0;
}

.tcard-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.tcard-role {
    font-size: 13px;
    color: var(--text-muted);
}

/* ─── PRICING ─── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.pcard {
    background: var(--white);
    border: 1.5px solid var(--border-soft);
    border-radius: 16px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}

    .pcard:hover {
        box-shadow: var(--shadow-md);
        border-color: var(--teal-hero);
        transform: translateY(-3px);
    }

    .pcard.featured {
        border-color: var(--teal-mid);
        box-shadow: 0 0 0 3px rgba(74,173,160,0.12), var(--shadow-md);
    }

        .pcard.featured::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--teal-mid), var(--teal-hero));
        }

.pbadge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal-dark);
    background: var(--teal-pale);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 3px 12px;
    margin-bottom: 18px;
    align-self: flex-start;
}

.pplan {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.pprice {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text);
    margin-bottom: 4px;
    line-height: 1;
}

    .pprice sub {
        font-size: 16px;
        font-weight: 500;
        color: var(--text-muted);
        letter-spacing: 0;
    }

.pperiod {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.pdivider {
    height: 1px;
    background: var(--border-soft);
    margin-bottom: 24px;
}

.pfeatures {
    list-style: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

    .pfeatures li {
        font-size: 14px;
        color: var(--text-mid);
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

        .pfeatures li::before {
            content: '✓';
            color: var(--teal-mid);
            font-weight: 800;
            flex-shrink: 0;
            margin-top: 1px;
        }

.pbtn {
    text-align: center;
    display: block;
    padding: 11px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border: 1.5px solid var(--teal-mid);
    color: var(--teal-dark);
    background: transparent;
}

    .pbtn:hover {
        background: var(--teal-mid);
        color: #fff;
    }

    .pbtn.primary {
        background: var(--orange);
        border-color: var(--orange);
        color: #fff;
        box-shadow: 0 2px 8px rgba(232,97,10,0.28);
    }

        .pbtn.primary:hover {
            background: var(--orange-hover);
            border-color: var(--orange-hover);
        }

/* ─── CTA ─── */
.cta-section {
    background: linear-gradient(120deg, var(--teal-dark) 0%, var(--teal-deep) 50%, var(--teal-mid) 100%);
    padding: 96px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: -100px;
        left: 50%;
        transform: translateX(-50%);
        width: 800px;
        height: 400px;
        border-radius: 50%;
        background: rgba(115,193,181,0.1);
        pointer-events: none;
    }

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.1;
}

.cta-section p {
    font-size: 17px;
    color: rgba(255,255,255,0.72);
    margin-bottom: 44px;
    line-height: 1.65;
}

.cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-cta-white {
    background: #fff;
    color: var(--teal-dark);
    border: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transition: transform 0.15s, box-shadow 0.2s;
}

    .btn-cta-white:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    }

.btn-cta-outline {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.4);
    padding: 13px 28px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    backdrop-filter: blur(8px);
    transition: background 0.2s;
}

    .btn-cta-outline:hover {
        background: rgba(255,255,255,0.18);
    }

.cta-checks {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 24px;
}

    .cta-checks span {
        font-size: 13px;
        color: rgba(255,255,255,0.6);
        display: flex;
        align-items: center;
        gap: 6px;
    }

        .cta-checks span::before {
            content: '✓';
            color: var(--teal-hero);
            font-weight: 800;
        }

/* ─── FOOTER ─── */
footer {
    background: var(--text);
    padding: 72px 48px 36px;
}

.footer-top {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    margin-top: 16px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h5 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-col a {
    text-decoration: none;
    font-size: 14px;
    color: rgba(255,255,255,0.68);
    transition: color 0.2s;
}

    .footer-col a:hover {
        color: var(--teal-hero);
    }

.footer-bottom {
    max-width: 1280px;
    margin: 36px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}


/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .hero-image {
        min-height: 420px;
    }

    .hero-content {
        padding: 60px 48px 40px;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-visual {
        position: static;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .topbar {
        padding: 8px 20px;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .topbar-left {
        font-size: 11px;
        justify-content: center;
    }

    .nav-inner {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-logo-name {
        font-size: 17px;
    }

    .hero {
        overflow: visible;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 48px 20px 32px;
    }

    .hero h1 {
        font-size: clamp(28px, 8vw, 40px);
    }

    .hero-desc {
        font-size: 15px;
        max-width: 100%;
    }

    .hero-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-hero-orange, .btn-hero-teal {
        text-align: center;
    }

    .hero-trust {
        gap: 12px;
    }

    .hero-image {
        min-height: 360px;
    }

    .hero-float-card {
        left: 12px;
        bottom: 20px;
        padding: 12px 16px;
        min-width: 160px;
    }

    .float-val {
        font-size: 24px;
    }

    .hero-float-card2 {
        top: 16px;
        left: 12px;
        padding: 10px 14px;
    }

    .float2-val {
        font-size: 18px;
    }

    .rec-float {
        top: 16px;
        right: 12px;
        font-size: 11px;
        padding: 6px 12px;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        padding: 24px 20px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .stat-num {
        font-size: 32px;
    }

    .logos-section {
        padding: 36px 20px;
    }

    .logos-row {
        gap: 10px;
    }

    .section-wrap {
        padding: 60px 20px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .step-card {
        padding: 28px 24px;
    }

    .features-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .features-visual {
        position: static;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tcard {
        padding: 24px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pcard {
        padding: 28px 22px;
    }

    .cta-section {
        padding: 60px 20px;
    }

    .cta-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-cta-white, .btn-cta-outline {
        text-align: center;
    }

    .cta-checks {
        gap: 12px;
        flex-direction: column;
    }

    footer {
        padding: 48px 20px 24px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-cta .btn-ghost {
        display: none;
    }

    .hero-image {
        min-height: 300px;
    }

    .stat-item:nth-child(odd) {
        border-right: 1px solid rgba(255,255,255,0.1);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .hero-float-card2 {
        display: none;
    }
}