:root {
    --navy-deep: #0B0E1A;
    --navy: #111528;
    --navy-light: #1A1F38;
    --navy-card: #161A30;
    --blue: #1D4ED8;
    --blue-bright: #3B6EF6;
    --blue-glow: rgba(29, 78, 216, 0.15);
    --green: #22C55E;
    --green-soft: rgba(34, 197, 94, 0.12);
    --red-soft: #FF6B6B;
    --red-bg: rgba(255, 107, 107, 0.08);
    --cream: #F5F0EB;
    --cream-dark: #E8E0D8;
    --white: #FFFFFF;
    --text-primary: #F0EDE8;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;
    --text-dark: #1A1A2E;
    --text-dark-secondary: #4A4A5A;
    --font-display: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --max-width: 1200px;
    --section-padding: 120px 0;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--navy-deep);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── NAV ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    backdrop-filter: blur(20px);
    background: rgba(245, 240, 235, 0.92);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-img {
    height: 36px;
    width: 36px;
    border-radius: 8px;
    object-fit: contain;
    transition: opacity 0.2s;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.nav-logo:hover .nav-logo-img {
    opacity: 0.85;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-cta:hover {
    background: var(--blue-bright);
    transform: translateY(-1px);
}

/* ─── HERO ─── */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    background: var(--cream);
    color: var(--text-dark);
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(29, 78, 216, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(29, 78, 216, 0.08);
    border: 1px solid rgba(29, 78, 216, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--blue);
    margin-bottom: 28px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero h1 .highlight {
    color: var(--blue);
}

.hero-sub {
    font-size: 18px;
    line-height: 1.65;
    color: var(--text-dark-secondary);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    background: var(--blue);
    color: white;
    border: none;
    border-radius: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    width: fit-content;
}

.btn-primary:hover {
    background: var(--blue-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(29, 78, 216, 0.3);
}

.hero-checks {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-checks span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-dark-secondary);
}

.hero-checks .check {
    color: var(--green);
    font-weight: 700;
}

/* Chat mockup */
.chat-mockup {
    background: var(--navy);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.08);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.chat-header {
    padding: 16px 20px;
    background: var(--blue);
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: white;
}

.chat-header-info h4 {
    color: white;
    font-size: 15px;
    font-weight: 600;
}

.chat-header-info span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 4px;
}

.chat-header-info span::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
}

.chat-body {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 300px;
}

.msg {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
    animation: msgIn 0.4s ease;
}

@keyframes msgIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.msg-user {
    align-self: flex-end;
    background: var(--blue);
    color: white;
    border-bottom-right-radius: 4px;
}

.msg-bot {
    align-self: flex-start;
    background: var(--navy-light);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.msg-bot a {
    color: var(--blue-bright);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.chat-status {
    padding: 10px 20px;
    background: var(--green-soft);
    border-top: 1px solid rgba(34, 197, 94, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--green);
    font-weight: 500;
}

/* ─── TRUST BAR ─── */
.trust-bar {
    padding: 48px 0;
    background: var(--cream);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-logo {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.45;
    transition: opacity 0.3s;
    letter-spacing: 0.02em;
}

.trust-logo-svg {
    display: flex;
    align-items: center;
}

.trust-logo-svg svg {
    display: block;
    height: 28px;
    width: auto;
}

.trust-logo:hover {
    opacity: 0.8;
}

.trust-sep {
    width: 4px;
    height: 4px;
    background: var(--text-muted);
    border-radius: 50%;
    opacity: 0.3;
}

/* ─── SECTION STYLES (Light) ─── */
.section-light {
    background: var(--cream);
    color: var(--text-dark);
}

.section-light .section-label {
    color: var(--blue);
}

.section-light .section-title {
    color: var(--text-dark);
}

.section-light .section-sub {
    color: var(--text-dark-secondary);
}

/* ─── SECTION STYLES (Dark) ─── */
.section-dark {
    background: var(--navy-deep);
    color: var(--text-primary);
}

.section-label {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blue-bright);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-title .highlight {
    color: var(--blue);
}

.section-sub {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 640px;
}

/* ─── PROBLEM SECTION ─── */
.problem {
    padding: var(--section-padding);
}

.problem-header {
    text-align: center;
    margin-bottom: 64px;
}

.problem-header .section-sub {
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat-card {
    background: var(--navy-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(67, 97, 238, 0.2);
    transform: translateY(-4px);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    color: var(--blue-bright);
    margin-bottom: 12px;
}

.stat-text {
    font-size: 16px;
    line-height: 1.55;
    color: var(--text-secondary);
}

/* ─── DAY IN YOUR LIFE ─── */
.day-section {
    padding: var(--section-padding);
}

.day-header {
    margin-bottom: 64px;
}

.day-quote {
    margin-top: 24px;
    padding: 20px 28px;
    background: rgba(67, 97, 238, 0.06);
    border-left: 3px solid var(--blue);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark-secondary);
    max-width: 700px;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 48px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 48px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--blue), rgba(67, 97, 238, 0.1));
}

.timeline-item {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 32px;
    align-items: start;
}

.timeline-time {
    position: relative;
    z-index: 2;
}

.timeline-badge {
    width: 96px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: white;
}

.badge-morning {
    background: var(--blue);
}

.badge-busy {
    background: #F59E0B;
}

.badge-quiet {
    background: var(--green);
}

.badge-close {
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.timeline-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.timeline-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark-secondary);
    margin-bottom: 16px;
    max-width: 540px;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ba-card {
    padding: 16px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.5;
}

.ba-card-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.ba-before {
    background: var(--red-bg);
}

.ba-before .ba-card-label {
    color: var(--red-soft);
}

.ba-before p {
    color: #8B4C4C;
}

.ba-after {
    background: var(--green-soft);
}

.ba-after .ba-card-label {
    color: var(--green);
}

.ba-after p {
    color: #2D6A4F;
}

/* ─── VIDEO ─── */
.video-section {
    padding: var(--section-padding);
    text-align: center;
}

.video-section .section-title {
    max-width: 600px;
    margin: 0 auto 12px;
}

.video-section .section-sub {
    margin: 0 auto 48px;
    text-align: center;
}

.video-embed {
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    background: #000;
}

.video-embed iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

/* ─── WHO WE SERVE ─── */
.serve-section {
    padding: var(--section-padding);
}

.serve-header {
    margin-bottom: 56px;
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.serve-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    padding: 28px 24px;
    border-left: 3px solid var(--blue);
    transition: all 0.3s ease;
}

.serve-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.serve-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.serve-card h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.serve-card p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-dark-secondary);
}

/* ─── OBJECTION BUSTERS ─── */
.objections {
    padding: var(--section-padding);
}

.objections-header {
    text-align: center;
    margin-bottom: 56px;
}

.objections-header .section-sub {
    margin: 0 auto;
}

.objections-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.objection-card {
    background: var(--navy-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.objection-card:hover {
    border-color: rgba(67, 97, 238, 0.15);
}

.objection-q {
    padding: 20px 24px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.objection-a {
    padding: 20px 24px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ─── META ADS ─── */
.meta-section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.meta-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.meta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.meta-badge {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue-bright);
    margin-bottom: 16px;
}

.meta-text .section-title {
    margin-bottom: 20px;
}

.meta-text p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.meta-tagline {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--blue-bright) !important;
    font-size: 17px !important;
}

.meta-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.meta-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--navy-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.meta-step:hover {
    border-color: rgba(67, 97, 238, 0.15);
}

.meta-step-num {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--blue);
    line-height: 1;
    min-width: 36px;
}

.meta-step p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ─── HOW IT WORKS ─── */
.how-section {
    padding: var(--section-padding);
}

.how-header {
    text-align: center;
    margin-bottom: 64px;
}

.how-header .section-sub {
    margin: 0 auto;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.how-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 36px 28px;
    position: relative;
    transition: all 0.3s ease;
}

.how-card:first-child {
    border-top: 4px solid var(--blue);
}

.how-card:nth-child(2) {
    border-top: 4px solid #F59E0B;
}

.how-card:last-child {
    border-top: 4px solid var(--green);
}

.how-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.how-step-label {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 12px;
}

.how-card h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.how-card .how-bold {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
    margin-bottom: 16px;
}

.how-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark-secondary);
    margin-bottom: 20px;
}

.how-footer {
    padding: 14px 20px;
    background: var(--cream);
    border-radius: 10px;
    font-size: 13px;
    color: var(--text-dark-secondary);
    font-style: italic;
}

/* ─── FEATURES ─── */
.features-section {
    padding: var(--section-padding);
}

.features-header {
    text-align: center;
    margin-bottom: 64px;
}

.features-header .section-sub {
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--navy-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 32px 24px;
    border-left: 3px solid var(--blue);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(67, 97, 238, 0.2);
    border-left-color: var(--blue-bright);
    transform: translateY(-3px);
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: var(--blue-glow);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 20px;
}

.feature-card h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-secondary);
}

/* ─── TESTIMONIAL ─── */
.testimonial {
    padding: 80px 0;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.stars {
    font-size: 28px;
    margin-bottom: 20px;
    color: #F59E0B;
    letter-spacing: 4px;
}

.testimonial-headline {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--blue-bright);
    margin-bottom: 20px;
}

.testimonial-quote {
    font-size: 18px;
    line-height: 1.65;
    color: var(--text-dark-secondary);
    font-style: italic;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.testimonial-role {
    color: var(--text-muted);
    font-size: 14px;
}

.testimonial-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.test-stat {
    text-align: center;
}

.test-stat-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--blue);
}

.test-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ─── FINAL CTA ─── */
.final-cta {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.final-cta .container {
    max-width: 640px;
    text-align: center;
    position: relative;
}

.cta-badge {
    display: inline-flex;
    padding: 6px 16px;
    background: var(--blue-glow);
    border: 1px solid rgba(67, 97, 238, 0.25);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--blue-bright);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.final-cta .section-title {
    margin-bottom: 20px;
}

.final-cta .section-sub {
    margin: 0 auto 40px;
    text-align: center;
}

.cta-form {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.cta-form input {
    flex: 1;
    padding: 16px 20px;
    background: var(--navy-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 15px;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.2s;
}

.cta-form input::placeholder {
    color: var(--text-muted);
}

.cta-form input:focus {
    border-color: var(--blue);
}

.cta-form button {
    padding: 16px 28px;
    background: var(--blue);
    color: white;
    border: none;
    border-radius: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.cta-form button:hover {
    background: var(--blue-bright);
}

.cta-book {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--blue-bright);
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 32px;
    transition: color 0.2s;
}

.cta-book:hover {
    color: white;
}

.cta-checks {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.cta-checks span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-secondary);
}

.cta-checks .check {
    color: var(--green);
    font-weight: 700;
}

.cta-proof {
    padding: 32px;
    background: var(--navy-card);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-proof h5 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.cta-proof-quotes {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-proof-quote {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
    font-style: italic;
}

/* ─── FOOTER ─── */
.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
}

.footer p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .hero .container {
        grid-template-columns: 1fr;
    }

    .chat-mockup {
        max-width: 400px;
        margin: 0 auto;
    }

    .stats-grid,
    .serve-grid,
    .how-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .meta-content {
        grid-template-columns: 1fr;
    }

    .objections-grid {
        grid-template-columns: 1fr;
    }

    .before-after {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 24px;
    }

    .timeline-item {
        grid-template-columns: 56px 1fr;
        gap: 16px;
    }

    .timeline-badge {
        width: 56px;
        font-size: 11px;
    }

    .testimonial-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    .trust-logos {
        gap: 24px;
    }
}

@media (min-width: 901px) and (max-width: 1100px) {

    .stats-grid,
    .serve-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ─── ANIMATIONS ─── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
