/* VAIF Design System & Shared Styles */
:root {
    --gold: #D4B04C;
    --bg-dark: #0A0A0A;
    --bg-card: #121212;
    --text-main: rgb(242, 237, 228);
    --text-muted: #CCCCCC;
    --border-color: #222222;
    --accent-red: #D44C4C;
    --accent-green: #4CD4A0;
    --gold-light: rgba(212, 176, 76, 0.1);
    --gold-dark: rgba(212, 176, 76, 0.25);
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 60px;
    --space-2xl: 80px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

/* ─── SECTION SPACING (luxury whitespace) ─── */
.section-block,
#trusted-section,
#hero,
#value-prop-section,
#demo-chat-section,
#services-section,
.calc-teaser-section,
#final-form-section,
footer {
    padding: 6rem 2rem;
}

@media (max-width: 768px) {
    /* Section breathing room — !important overrides any leaky desktop rules */
    section,
    .section-block,
    #trusted-section,
    #hero,
    #value-prop-section,
    #demo-chat-section,
    #services-section,
    .calc-teaser-section,
    #final-form-section,
    footer {
        padding: 4rem 1.5rem !important;
        overflow-x: hidden;
    }
}

/* ─── TRUSTED MARQUEE BANNER ─── */
.trusted-section {
    padding: 60px 0;
    text-align: center;
    overflow: hidden;
    width: 100%;
    grid-column: 1 / -1;
}

.trusted-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 35px;
}

.marquee-wrap {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: fit-content;
    animation: marqueeScroll 35s linear infinite;
}

.marquee-set {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-shrink: 0;
}

.marquee-logo {
    height: 32px;
    flex-shrink: 0;
    display: block;
    filter: grayscale(100%) brightness(50%);
    opacity: 0.45;
    transition: all 0.4s ease;
    cursor: pointer;
}

.marquee-badge {
    display: inline-flex;
    align-items: center;
    height: 40px;
    padding: 0 20px;
    flex-shrink: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    white-space: nowrap;
}

.marquee-badge:hover {
    color: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(212, 176, 76, 0.25);
}

@media (min-width: 1600px) {
    .marquee-wrap {
        padding: 0 2rem;
    }

    .marquee-badge {
        height: 52px;
        padding: 0 28px;
        font-size: 15px;
        letter-spacing: 2px;
    }

    .marquee-track {
        gap: 80px;
    }

    .marquee-set {
        gap: 80px;
    }
}

.marquee-track a {
    flex-shrink: 0;
    line-height: 0;
    text-decoration: none;
}

.marquee-logo:hover {
    filter: grayscale(0%) brightness(110%) drop-shadow(0 0 8px rgba(212, 176, 76, 0.5));
    opacity: 1;
}

@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 30px)); }
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background-image: radial-gradient(circle at 80% 20%, rgba(212, 176, 76, 0.05), transparent 40%);
}

/* ─── FORCED TYPOGRAPHY OVERRIDE (premium legibility) ─── */
p, li,
.section-sub, .chat-benefit-item,
.value-card p, .service-card p,
.hero-subtitle, .teaser-desc,
.chat-copy .section-sub,
.footer-brand p,
.hero-social-proof .proof-text,
.hc-bubble, .message-bubble,
.ebook-paragraph, .success-text {
    font-size: 1.1rem;
    font-weight: 400;
    color: #E0E0E0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

h1, h2, h3, .serif-font {
    font-family: 'Cormorant Garamond', serif;
    color: var(--text-main);
    font-weight: 600;
}

strong {
    color: var(--text-main);
    font-weight: 600;
}

/* ─── NAVIGATION BAR (VAIF Brand) ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    transition: all 0.3s ease;
}

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

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

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
}

.nav-logo-img,
.footer-logo-img {
    height: 36px;
    width: auto;
    display: block;
}

.footer-logo-img {
    height: 42px;
    margin-bottom: var(--space-sm);
}

.nav-tagline {
    font-size: 9px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    border-left: 1px solid var(--border-color);
    padding-left: 10px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

/* ─── HAMBURGER MENU (hidden on desktop) ─── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-btn-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: var(--radius-sm);
}

.nav-btn-highlight:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 176, 76, 0.25);
}

.nav-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-back-btn:hover {
    color: var(--gold);
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 120px 24px 60px;
    background-image: radial-gradient(ellipse 90% 70% at 50% 40%, #1a1a1a 0%, #0A0A0A 55%, #000000 100%);
}

/* ─── HYBRID HERO LAYOUT (two-column grid) ─── */
.hero-cro-hybrid .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-cro-hybrid .hero-content {
    margin-left: 0;
}

/* ─── PHONE MOCKUP ─── */
.hero-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-frame {
    position: relative;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 9 / 19.5;
    background: #1a1a1a;
    border-radius: 36px;
    padding: 10px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.06),
        0 30px 80px rgba(0,0,0,0.7),
        0 8px 30px rgba(0,0,0,0.5),
        inset 0 0 0 1px rgba(255,255,255,0.04);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #0b0b0b;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding-top: 32px; /* clears the dynamic island notch */
}

/* Dynamic Island / Notch */
.phone-notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #000;
    border-radius: 16px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.phone-notch::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #1a1a1a;
    border-radius: 50%;
    border: 1px solid #222;
}

.phone-notch::after {
    content: '';
    width: 30px;
    height: 5px;
    background: #111;
    border-radius: 4px;
}

/* Side buttons */
.phone-frame::before {
    content: '';
    position: absolute;
    right: -3px;
    top: 120px;
    width: 3px;
    height: 45px;
    background: #222;
    border-radius: 0 2px 2px 0;
}

.phone-frame::after {
    content: '';
    position: absolute;
    left: -3px;
    top: 130px;
    width: 3px;
    height: 55px;
    background: #222;
    border-radius: 2px 0 0 2px;
}

/* Home indicator */
.phone-home-bar {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 4px;
    background: #2a2a2a;
    border-radius: 2px;
    z-index: 2;
}

/* ─── CHAT STATUS BAR (inside phone) ─── */
.chat-status-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 14px 10px;
    background: #0f0f0f;
    border-bottom: 1px solid #1a1a1a;
    flex-shrink: 0;
}

.chat-status-bar .chat-contact {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-status-bar .chat-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #8B7332);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #000;
    font-weight: 700;
    flex-shrink: 0;
}

.chat-status-bar .chat-contact-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.2;
}

.chat-status-bar .chat-online-status {
    font-size: 10px;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: 0.8;
}

.chat-status-bar .chat-online-status::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    display: inline-block;
}

/* ─── CHAT MESSAGES AREA ─── */
.chat-messages-area {
    flex: 1;
    overflow-y: auto;
    overflow-anchor: auto;
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: #0b0b0b;
    min-height: 340px;
}

.chat-messages-area::-webkit-scrollbar { width: 3px; }
.chat-messages-area::-webkit-scrollbar-track { background: transparent; }
.chat-messages-area::-webkit-scrollbar-thumb { background: #222; border-radius: 2px; }

/* ─── CHAT BUBBLES ─── */
.hc-message {
    max-width: 85%;
    animation: hcFadeIn 0.2s ease;
    flex-shrink: 0;
}

@keyframes hcFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.hc-message.user {
    align-self: flex-end;
    animation-delay: 0.05s;
}

.hc-message.bot {
    align-self: flex-start;
}

.hc-bubble {
    padding: 10px 14px;
    font-size: 12.5px;
    line-height: 1.5;
    word-wrap: break-word;
    position: relative;
}

/* User (lead) bubble — dark grey WhatsApp style */
.hc-message.user .hc-bubble {
    background: #1e1e1e;
    color: #e4e4e4;
    border-radius: 14px 14px 4px 14px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

/* ─── AI (bot) bubble — sleek dark grey (premium concierge) */
.hc-message.bot .hc-bubble {
    background: #503701;
    color: #e4e4e4;
    border-radius: 14px 14px 14px 4px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

/* ─── TYPING INDICATOR ─── */
.hc-typing {
    align-self: flex-start;
    display: none;
    padding: 10px 14px;
    background: #2A2A2A;
    border-radius: 14px 14px 14px 4px;
    gap: 4px;
    flex-shrink: 0;
    margin-bottom: 2px;
    margin-top: auto; /* pushes typing indicator to the bottom */
}

.hc-typing.active {
    display: flex;
    animation: hcFadeIn 0.2s ease;
}

.hc-typing span {
    width: 6px;
    height: 6px;
    background: rgba(212, 176, 76, 0.5);
    border-radius: 50%;
    animation: hcTypingDot 1.4s infinite ease-in-out;
}

.hc-typing span:nth-child(2) { animation-delay: 0.2s; }
.hc-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes hcTypingDot {
    0%, 60%, 100% { opacity: 0.3; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1); }
}

.hero-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 30px;
    display: block;
    font-family: 'Montserrat', sans-serif;
}

.hero-title {
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-title span:not(.hero-eyebrow) {
    color: var(--gold);
    font-style: italic;
}

.hero-eyebrow {
    display: block;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-divider {
    display: flex;
    align-items: center;
    margin: 30px 0;
}

.hero-divider::before, .hero-divider::after {
    content: '';
    flex-grow: 0;
    width: 40px;
    height: 1px;
    background-color: var(--border-color);
}

.diamond {
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    transform: rotate(45deg);
    margin: 0 15px;
}

.hero-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 500px;
}

/* Limit left text column width for readability */
.hero-cro-hybrid .hero-content {
    max-width: 550px;
}

.hero-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.small-text {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background-color: var(--gold);
    color: #000;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
}

.hero-content .btn-primary {
    width: auto;
}

.btn-primary:hover {
    background-color: #E5C35E;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 176, 76, 0.3);
}

/* Secondary CTA (ghost/outline) — premium ghost button */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    width: auto;
    border-radius: 4px;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 176, 76, 0.15);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    cursor: pointer;
    z-index: 10;
    animation: bounce 2s infinite ease-in-out;
}

.scroll-indicator span {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.scroll-indicator svg {
    width: 14px;
    height: 14px;
    stroke: var(--gold);
    stroke-width: 2.5;
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 8px); }
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-social-proof .avatars {
    display: flex;
}

.hero-social-proof .avatars span {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    margin-right: -8px;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    overflow: hidden;
}

.hero-social-proof .avatars span:last-child {
    margin-right: 0;
}

.hero-social-proof .proof-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

.hero-social-proof .proof-text strong {
    color: var(--gold);
}


/* ─── UTILITÁRIOS & SEÇÕES ─── */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.diamond-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: var(--space-md) 0;
}
.diamond-divider .line {
    width: 40px;
    height: 1px;
    background: var(--border-color);
}
.diamond-divider .diamond {
    flex-shrink: 0;
}

.form-expectation-steps {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: var(--space-sm) 0 var(--space-md);
    padding: var(--space-sm);
    background: rgba(212, 176, 76, 0.05);
    border: 1px solid var(--border-color);
}

.exp-step {
    flex: 1;
    text-align: center;
}

.exp-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 6px;
}

.exp-step-text {
    display: block;
    font-size: 10px;
    color: var(--text-muted);
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.exp-step-text strong {
    color: var(--gold);
    font-weight: 600;
}

.exp-step-arrow {
    color: var(--gold);
    font-size: 12px;
    padding-top: 2px;
    opacity: 0.4;
    flex-shrink: 0;
}

.submit-reassurance {
    text-align: center;
    font-size: 10px;
    color: var(--text-muted);
    opacity: 0.8;
    margin-top: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.submit-reassurance .privacy-link {
    color: var(--gold);
    text-decoration: underline;
}

.submit-reassurance .privacy-link:hover {
    color: #E5C35E;
}

.section-block {
    position: relative;
}

.section-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-sm);
    font-family: 'Montserrat', sans-serif;
}

.section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: var(--space-md);
}

.section-heading span { color: var(--gold); font-style: italic; }

.section-sub {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    line-height: 1.7;
}

.section-sub.centered { margin: 0 auto var(--space-xl); text-align: center; }

/* ─── VALUE PROPOSITION ─── */
#value-prop-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0d0d0d 100%);
    position: relative;
}

#value-prop-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover::before { opacity: 1; }

.value-card:hover {
    border-color: rgba(212, 176, 76, 0.3);
    transform: translateY(-4px);
}

.value-icon {
    width: 56px; height: 56px;
    margin: 0 auto var(--space-md);
    border: 1px solid var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.value-icon svg {
    width: 24px; height: 24px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.value-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    margin-bottom: var(--space-sm);
    color: var(--text-main);
}

.value-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

.value-stat {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-color);
}

.value-stat strong {
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.value-stat span {
    display: block;
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

/* ─── AI DEMO CHAT ─── */
#demo-chat-section {
    background: #0d0d0d;
}

.chat-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    align-items: start;
}

.chat-copy {
    position: sticky;
    top: 100px;
}

.chat-copy .section-sub {
    max-width: 480px;
}

.chat-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.chat-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.chat-benefit-item svg {
    width: 18px; height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ─── CALENDAR DASHBOARD ─── */
.dashboard-wrapper {
    background: #0f0f0f;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.dashboard-mobile {
    display: none;
}

.dashboard-header {
    background: linear-gradient(135deg, #0f0f0f 0%, #141414 100%);
    padding: 20px 24px;
    border-bottom: 1px solid #1e1e1e;
}

.dashboard-metrics {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 8px;
}

.metric-item {
    text-align: center;
    flex: 1;
}

.metric-value {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}

.metric-value.gold-pulse {
    color: var(--gold);
    animation: goldPulse 2s ease-in-out infinite;
}

@keyframes goldPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.metric-label {
    display: block;
    font-size: 9px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    line-height: 1.4;
}

.metric-divider {
    width: 1px;
    height: 40px;
    background: #2a2a2a;
    flex-shrink: 0;
}

.dashboard-week {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: #1a1a1a;
    padding: 16px;
}

.day-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 8px 4px;
    background: #0d0d0d;
    border-radius: 6px;
    min-height: 220px;
}

.day-name {
    font-size: 9px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.day-date {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
}

.slot {
    width: 100%;
    padding: 6px 4px;
    font-size: 10px;
    text-align: center;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    line-height: 1.3;
}

.slot-badge {
    display: block;
    font-size: 7px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1px;
}

.slot.empty {
    background: #0a0a0a;
    border: 1px dashed #2a2a2a;
    color: #333;
}

.slot.booked {
    background: rgba(212, 176, 76, 0.15);
    border: 1px solid rgba(212, 176, 76, 0.35);
    color: var(--gold);
}

.slot.booked .slot-badge { color: var(--gold); opacity: 0.7; }

.slot.reserved {
    background: rgba(212, 176, 76, 0.08);
    border: 1px solid rgba(212, 176, 76, 0.2);
    color: rgba(212, 176, 76, 0.6);
}

.slot.reserved .slot-badge { color: rgba(212, 176, 76, 0.5); }

.slot.available {
    background: #111;
    border: 1px solid #2a2a2a;
    color: var(--text-muted);
}

.slot.available .slot-badge { color: #555; }

.slot.available.highlighted {
    background: rgba(212, 176, 76, 0.06);
    border: 1px solid var(--gold);
    color: var(--gold);
    box-shadow: 0 0 12px rgba(212, 176, 76, 0.1);
}

.slot.available.highlighted .slot-badge { color: var(--gold); opacity: 0.7; }

.dashboard-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 12px 16px;
    background: #0a0a0a;
    border-top: 1px solid #1a1a1a;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.legend-dot.available { background: var(--text-muted); }
.legend-dot.booked { background: var(--gold); }
.legend-dot.empty { background: #333; border: 1px dashed #555; }

/* ─── SERVICES ─── */
#services-section {
    background: var(--bg-dark);
    position: relative;
}

#services-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    max-width: 1200px;
    margin: var(--space-xl) auto 0;
    padding: 0 var(--space-md);
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: var(--space-xl) var(--space-lg);
    transition: all 0.4s ease;
    display: grid;
    grid-template-rows: auto auto auto 1fr auto;
    gap: var(--space-sm) var(--space-sm);
}

.service-card:hover {
    border-color: rgba(212, 176, 76, 0.25);
    transform: translateY(-3px);
}

.service-card .service-icon {
    width: 72px; height: 72px;
    border: 1px solid var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-sm);
}

.service-card .service-icon svg {
    width: 32px; height: 32px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.service-card .service-number {
    font-size: 10px;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--text-main);
}

.service-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

.service-card .service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    margin-top: var(--space-sm);
    transition: gap 0.3s ease;
}

.service-card .service-cta:hover { gap: 12px; }

/* ─── TEASER DA CALCULADORA (na index.php) ─── */
.calc-teaser-section {
    background: linear-gradient(180deg, #0d0d0d 0%, var(--bg-card) 50%, #0d0d0d 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.calc-teaser-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 176, 76, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.teaser-box {
    max-width: 750px;
    margin: 0 auto;
    padding: 50px 40px;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(212, 176, 76, 0.25);
    border-radius: var(--radius-lg);
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.teaser-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(212, 176, 76, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-radius: 20px;
}

.teaser-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 15px;
}

.teaser-title span {
    color: var(--gold);
    font-style: italic;
}

.teaser-desc {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.btn-gold-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--gold);
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(212, 176, 76, 0.2);
}

.btn-gold-large:hover {
    background: #E5C35E;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 176, 76, 0.4);
}

/* ─── QUALIFYING FINAL FORM ─── */
#final-form-section {
    background: linear-gradient(180deg, #0d0d0d 0%, var(--bg-dark) 100%);
    position: relative;
}

#final-form-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    align-items: start;
}

.form-copy .section-heading {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.form-copy .section-sub {
    margin-bottom: var(--space-lg);
}

.form-trust-badges {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-muted);
}

.form-trust-badge svg {
    width: 18px; height: 18px;
    stroke: var(--accent-green);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.form-group { margin-bottom: 30px; }

.form-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.form-label span { color: var(--text-main); }

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-prefix {
    position: absolute;
    left: 20px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
}

.form-input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    background-color: #1A1A1A;
    border: 1px solid #333;
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    border-radius: var(--radius-sm);
}

.form-input.no-prefix { padding-left: 20px; }

.form-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold);
}

.form-input::placeholder { color: #555; }

.input-hint {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    opacity: 0.8;
    margin-top: 8px;
}

#qualification-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: var(--space-xl);
}

#qualification-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

#qualification-form .form-group { margin-bottom: var(--space-md); }
#qualification-form .form-label { margin-bottom: 8px; }
#qualification-form .form-input { padding: 14px 16px; font-size: 14px; }
#qualification-form .input-wrapper .form-input { padding-left: 50px; }
#qualification-form .btn-primary { margin-top: var(--space-sm); }

.error-text {
    color: var(--accent-red);
    font-size: 11px;
    margin-top: 4px;
    font-weight: 500;
}

.form-input.invalid { border-color: var(--accent-red) !important; }

.form-success {
    text-align: center;
    padding: var(--space-xl);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    animation: fadeInUp 0.6s ease;
}

.form-success h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.form-success p {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 400px;
    margin: 0 auto var(--space-lg);
    line-height: 1.6;
}

.form-success .success-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--gold);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.form-success .success-cta:hover {
    background: #E5C35E;
    transform: translateY(-2px);
}

/* ─── CALCULATOR PAGE SPECIFIC STYLES ─── */
.calculator-page-wrapper {
    padding: 140px 0 100px;
    background-color: var(--bg-dark);
    min-height: 100vh;
}

.calc-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 50px;
    text-align: left;
    margin: 0 auto;
    max-width: 700px;
}

.progress-wrapper {
    background-color: #0d0d0d;
    padding: 20px 0;
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.divider-center {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
}

.divider-center::before, .divider-center::after {
    content: '';
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
}

.result-section {
    display: none;
    padding: 20px 0 80px;
    text-align: center;
    background-color: var(--bg-dark);
}

.result-section.active {
    display: block;
    animation: fadeInUp 1s ease forwards;
}

.resultado-texto-intro {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-align: left;
}

.divisor-linha {
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
    margin: 30px 0;
}

.valor-gigante {
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 10px 0;
    text-shadow: 0 0 40px rgba(212, 176, 76, 0.25);
}

.promessa-box {
    border: 1px solid rgba(212, 176, 76, 0.15);
    background: rgba(212, 176, 76, 0.03);
    padding: 30px;
    margin: 40px 0;
    text-align: left;
}

.promessa-label {
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.promessa-box p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

#potencialValueText { color: var(--gold); }

.locked-action {
    position: relative;
    padding: 40px 0;
    margin: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: repeating-linear-gradient(
        180deg,
        rgba(242, 237, 228, 0.02) 0px,
        rgba(242, 237, 228, 0.02) 10px,
        transparent 10px,
        transparent 22px
    );
}

.locked-action::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, var(--bg-card) 0%, transparent 20%, transparent 80%, var(--bg-card) 100%);
    pointer-events: none;
}

.locked-box {
    position: relative;
    z-index: 2;
    border: 1px solid rgba(212, 176, 76, 0.3);
    background: #0A0A0A;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.locked-box span {
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ─── CALENDÁRIO & EBOOK ─── */
.success-box-centralizer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 400px;
}

.success-icon-box {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(212, 176, 76, 0.3);
    background: #0A0A0A;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.success-checkmark { stroke: var(--gold); }

.success-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 20px;
    font-weight: 600;
}

.success-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--text-muted);
    opacity: 0.8;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

#nativeCalendarBlock {
    background: linear-gradient(145deg, #111111 0%, #0a0a0a 100%);
    border: 1px solid rgba(212, 176, 76, 0.15);
    border-top: 3px solid var(--gold);
    border-radius: 8px;
    padding: 50px 40px;
    text-align: center;
    margin-top: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.calendar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
    text-align: left;
}

.calendar-day-col h4 {
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border-bottom: 1px dashed rgba(212, 176, 76, 0.3);
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.calendar-day-col h4::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    transform: rotate(45deg);
}

.time-slot {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 16px;
    margin-bottom: 12px;
    background: #161616;
    border: 1px solid #2a2a2a;
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.time-slot:hover {
    border-color: var(--gold);
    background: rgba(212, 176, 76, 0.08);
    transform: translateY(-2px);
}

.time-slot.selected {
    background: var(--gold);
    color: #000;
    font-weight: 700;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 176, 76, 0.3);
    transform: translateY(-2px);
}

.time-slot:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: #0a0a0a;
    border-color: #1a1a1a;
    color: #444;
    transform: none;
}

.slot-status {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 10px;
    color: #555;
}

.skip-action {
    display: inline-block;
    margin-top: 25px;
    color: var(--text-muted);
    font-size: 12px;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
}

.skip-action:hover { color: var(--text-main); }

.ebook-premium-box {
    background: linear-gradient(145deg, #111111 0%, #0a0a0a 100%);
    border: 1px solid rgba(212, 176, 76, 0.15);
    border-top: 3px solid var(--gold);
    border-radius: 8px;
    padding: 50px 30px;
    text-align: center;
    margin-top: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.ebook-premium-box .funil-title {
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 5px;
}

.ebook-premium-box .highlight-gold {
    color: var(--gold);
    font-style: italic;
}

.ebook-paragraph {
    color: #d1cbc1;
    font-size: 16px;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 20px;
}

.coupon-card {
    background: rgba(212, 176, 76, 0.05);
    border: 2px dashed var(--gold);
    border-radius: 8px;
    padding: 25px;
    display: inline-block;
    margin: 35px 0;
    position: relative;
    min-width: 280px;
}

.coupon-label {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #111;
    padding: 0 15px;
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

.coupon-code {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 5px;
    color: var(--text-main);
    text-shadow: 0 0 15px rgba(212, 176, 76, 0.2);
}

/* ─── FOOTER ─── */
.footer-extended {
    border-top: 1px solid var(--border-color);
    background: #0d0d0d;
    padding: var(--space-xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: var(--space-sm);
    line-height: 1.6;
    max-width: 320px;
}

.footer-col h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.footer-col a {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    margin-top: var(--space-lg);
    border-top: 1px solid var(--border-color);
    font-size: 11px;
    color: var(--text-muted);
    opacity: 0.6;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
}

/* ─── RESPONSIVIDADE ─── */
@media (max-width: 900px) {
    .value-grid { grid-template-columns: 1fr 1fr; }
    .chat-layout { grid-template-columns: 1fr; }
    .chat-copy { position: static; }
    .chat-messages-container { height: 320px; }
    .form-layout { grid-template-columns: 1fr; }
    .hero-cro-hybrid .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-cro-hybrid .hero-content { max-width: 100%; }
    .hero-mockup { order: -1; margin-bottom: 20px; }
    .phone-frame { max-width: 260px; }
}

@media (max-width: 768px) {
    /* ─── Mobile nav: hamburger replaces inline links ─── */
    .nav-hamburger { display: flex; }
    .nav-tagline { display: none; }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links .nav-link {
        font-size: 15px;
        color: var(--text-main);
        padding: 8px 0;
    }

    .nav-links .nav-btn-highlight {
        font-size: 13px;
        padding: 14px 32px;
        margin-top: 8px;
    }

    /* ─── FIX 1: Upside-down Hero ─── */
    .hero-cro-hybrid .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 0;
    }

    .hero-cro-hybrid .hero-content {
        max-width: 100%;
        order: 0;
    }

    .hero-mockup {
        order: 0;
        max-width: 100%;
        margin: 0 auto;
    }

    .phone-frame {
        max-width: 340px;
        width: 100%;
        height: 680px;
        margin: 0 auto;
    }

    .chat-messages-area {
        flex: 1;
        min-height: 0;
        padding: 16px 14px;
        gap: 10px;
    }

    .hc-bubble {
        font-size: 0.95rem !important;
        padding: 12px 16px;
        line-height: 1.4 !important;
    }

    .hc-message {
        max-width: 90%;
    }

    /* Show hero content immediately — no fade-in animation on mobile */
    .hero .fade-in-up {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    /* ─── 3-card description legibility ─── */
    .value-card p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }

    .hero-eyebrow {
        font-size: 0.85rem !important;
        letter-spacing: 2px !important;
        margin-bottom: 0.5rem !important;
        display: block;
    }

    .hero-title {
        margin-top: 2rem !important;
        font-size: 2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
    }

    .hero-subtitle { font-size: 16px; }

    .hero { padding: 100px 20px 40px; min-height: 0; }

    .hero-social-proof {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        margin-top: 2rem;
        width: 100%;
    }

    /* ─── Secondary ghost button (thumb-friendly) ─── */
    .hero-links .btn-secondary {
        display: block !important;
        width: 100% !important;
        border: 2px solid var(--gold) !important;
        color: var(--gold) !important;
        padding: 1rem !important;
        text-align: center !important;
        border-radius: 4px;
        font-weight: 600;
        text-decoration: none;
        margin-top: 1rem;
    }

    /* ─── FIX 2: Single-column cards ─── */
    .value-grid,
    .services-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
        gap: 1.5rem;
    }

    .value-card,
    .service-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        margin: 0 !important;
    }

    .service-card {
        padding: var(--space-lg) var(--space-md);
    }

    /* ─── FIX 3: Breathing room & section titles ─── */
    .section-heading,
    .value-card h3,
    .service-card h3 {
        margin-bottom: 2rem;
        text-align: center;
    }

    /* ─── Section tags follow heading alignment ─── */
    .section-tag {
        display: block;
        text-align: center;
    }

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

    #qualification-form .form-row { grid-template-columns: 1fr; }
    #qualification-form { padding: var(--space-lg) var(--space-md); }
    .footer-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
    .calc-card { padding: 30px 20px; }

    /* ─── Mobile dashboard — hide desktop version, show mobile version ─── */
    .dashboard-wrapper {
        display: none !important;
    }

    .dashboard-mobile {
        display: block;
        background: #0f0f0f;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    }

    /* Metrics — 3 stacked blocks */
    .dm-metrics {
        display: flex;
        flex-direction: column;
        gap: 1px;
        background: #1a1a1a;
    }

    .dm-metric-block {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px;
        background: #0f0f0f;
    }

    .dm-metric-block .metric-value {
        font-size: 1.3rem;
    }

    .dm-metric-block .metric-label {
        font-size: 11px;
        margin-top: 0;
        text-align: right;
    }

    /* Calendar — 2 days side by side */
    .dm-calendar {
        padding: 16px;
    }

    .dm-days {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .dm-day-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        padding: 12px 8px;
        background: #0d0d0d;
        border-radius: 6px;
        min-height: 200px;
    }

    .dm-day-col .slot {
        width: 100%;
    }

    .dm-day-col .day-name {
        font-size: 9px;
        font-weight: 700;
        color: var(--text-muted);
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .dm-day-col .day-date {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--text-main);
        margin-bottom: 8px;
    }

    .dm-calendar .dashboard-legend {
        padding: 12px 0 0;
        display: flex;
        justify-content: center;
        gap: 20px;
        border-top: 1px solid #1a1a1a;
        margin-top: 16px;
    }

    .dm-calendar .legend-item {
        font-size: 9px;
    }
    .teaser-box { padding: 30px 20px; }

    /* ─── FIX 4: Calendar full-width ─── */
    #nativeCalendarBlock {
        width: 100% !important;
        max-width: 100% !important;
        padding: 30px 16px;
    }

    .calendar-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
        margin: 24px 0;
    }

    .time-slot {
        padding: 14px;
        font-size: 15px;
    }
}

@media (max-width: 600px) {
    .value-grid { grid-template-columns: 1fr; }
    .value-card { padding: var(--space-lg) var(--space-md); }
    .chat-message { max-width: 92%; }
    .message-bubble { font-size: 14px; padding: 8px 12px; }
    .chat-messages-container { height: 280px; }
    .calendar-grid { grid-template-columns: 1fr; }
}

/* ─── DESKTOP FIXES (min-width: 769px) ─── */
@media (min-width: 769px) {
    /* Hero CTAs: side-by-side, no full-width stretch */
    .hero-links {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 1.5rem;
        width: auto;
    }

    .hero-links .btn-primary,
    .hero-links .btn-secondary {
        width: auto;
        max-width: fit-content;
        padding: 1rem 2rem;
    }

    /* Let the text breathe: hero subtitle */
    .hero-subtitle {
        line-height: 1.6;
    }

    /* Value prop section: no bottom padding so grid content sits flush */
    #value-prop-section {
        padding-bottom: 0;
    }
}

/* ─── BLOG ─── */

.blog-page .navbar {
    position: static;
    background: rgba(10, 10, 10, 0.95);
}

.blog-page .nav-tagline {
    border-left: 1px solid var(--border-color);
    padding-left: 10px;
}

.blog-listing {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px var(--space-md) 60px;
}

.blog-listing-header {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: var(--space-sm);
    text-align: center;
}

.blog-listing-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: var(--space-md) auto;
}

.blog-listing-sub {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.blog-listing-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.blog-card:hover {
    border-color: rgba(212, 176, 76, 0.35);
    transform: translateY(-2px);
}

.blog-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.blog-card-content {
    padding: var(--space-md) var(--space-lg) var(--space-lg);
}

.blog-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.25;
}

.blog-card-title a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--gold);
}

.blog-card-date {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.5px;
}

.blog-card-excerpt {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: var(--space-sm);
}

.blog-tag {
    display: inline-block;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(212, 176, 76, 0.08);
    border: 1px solid rgba(212, 176, 76, 0.2);
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
}

.blog-category {
    display: inline-block;
    padding: 4px 14px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 20px;
    margin-bottom: var(--space-sm);
    font-family: 'Montserrat', sans-serif;
}

.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px var(--space-md) 60px;
}

.blog-post-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.15;
    margin-bottom: var(--space-sm);
}

.blog-post-meta {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
    display: flex;
    gap: 16px;
    align-items: center;
}

.blog-post-featured-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    display: block;
}

.blog-post-body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
}

.blog-post-body h1,
.blog-post-body h2,
.blog-post-body h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--text-main);
    font-weight: 600;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.blog-post-body h1 { font-size: 2rem; }
.blog-post-body h2 { font-size: 1.6rem; }
.blog-post-body h3 { font-size: 1.3rem; }

.blog-post-body p {
    margin-bottom: var(--space-md);
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.blog-post-body a {
    color: var(--gold);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.blog-post-body a:hover {
    opacity: 0.8;
}

.blog-post-body strong {
    color: var(--text-main);
    font-weight: 600;
}

.blog-post-body em {
    color: var(--text-muted);
    font-style: italic;
}

.blog-post-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    margin: var(--space-md) 0;
}

.blog-post-body blockquote {
    border-left: 3px solid var(--gold);
    padding: var(--space-sm) var(--space-md);
    margin: var(--space-md) 0;
    background: rgba(212, 176, 76, 0.04);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.blog-post-body blockquote p {
    margin-bottom: 0;
    font-style: italic;
    color: var(--text-muted);
}

.blog-post-body ul,
.blog-post-body ol {
    margin: var(--space-sm) 0 var(--space-md);
    padding-left: var(--space-lg);
}

.blog-post-body li {
    margin-bottom: 6px;
    line-height: 1.7;
    color: var(--text-muted);
}

.blog-post-body pre {
    background: #0d0d0d;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: var(--space-md);
    margin: var(--space-md) 0;
    overflow-x: auto;
}

.blog-post-body code {
    background: #0d0d0d;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.9em;
    color: var(--gold);
    font-family: 'Courier New', monospace;
}

.blog-post-body pre code {
    background: none;
    padding: 0;
    color: var(--text-muted);
    font-size: 0.875em;
    display: block;
    line-height: 1.6;
}

.blog-post-body hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
    margin: var(--space-lg) 0;
}

.blog-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: var(--space-xl);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-color);
}

.blog-post-nav {
    margin-top: var(--space-xl);
}

.blog-404 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: var(--space-md);
}

.blog-404-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    max-width: 420px;
    width: 100%;
}

.blog-404-card h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: var(--space-sm);
}

.blog-404-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.blog-404-card .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background-color: var(--gold);
    color: #000;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    width: auto;
}

.blog-404-card .btn-primary:hover {
    background-color: #E5C35E;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 176, 76, 0.3);
}

/* ─── BLOG RESPONSIVE ─── */
@media (max-width: 768px) {
    .blog-listing {
        padding: 60px var(--space-md) 40px;
    }

    .blog-card-content {
        padding: var(--space-md);
    }

    .blog-card-title {
        font-size: 1.3rem;
    }

    .blog-post {
        padding: 40px var(--space-md) 40px;
    }

    .blog-post-title {
        font-size: clamp(1.6rem, 5vw, 2.4rem);
    }

    .blog-post-body {
        font-size: 1rem;
    }

    .blog-post-featured-img {
        max-height: 240px;
    }

    .blog-post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .blog-page .nav-links {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        flex-direction: row;
        gap: 16px;
        background: none;
        backdrop-filter: none;
    }
}
