/* =====================================================
   VINIE — Design System (Ugly.cash direction)
   ===================================================== */

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --blue:        #111111;
    --blue-hover:  #000000;
    --blue-light:  #ECEEED;
    --blue-mid:    #DBD7D7;
    --blue-dark:   #111111;
    --mint:        #ECEEED;
    --mint-bg:     #F7F7F7;
    --peach:       #ECEEED;
    --peach-bg:    #F7F7F7;
    --lavender:    #ECEEED;
    --lavender-bg: #F7F7F7;
    --sky:         #ECEEED;
    --sky-bg:      #F7F7F7;
    --rose:        #ECEEED;
    --rose-bg:     #F7F7F7;
    --black:   #111111;
    --gray-1:  #404040;
    --gray-2:  #6E6E6E;
    --gray-3:  #DBD7D7;
    --gray-4:  #ECEEED;
    --gray-5:  #F2F2F2;
    --white:   #F7F7F7;
    --surface: #EDF0EF;
    --surface-2: #E7EBEA;
    --accent-soft: rgba(17,17,17,.06);
    --success: #2F6B50;

    /* Radius */
    --r-sm:   10px;
    --r-md:   18px;
    --r-lg:   24px;
    --r-xl:   36px;
    --r-pill: 9999px;

    /* Shadow */
    --shadow-sm:  0 1px 2px rgba(0,0,0,.03);
    --shadow-md:  0 10px 24px rgba(0,0,0,.04);
    --shadow-lg:  0 18px 42px rgba(0,0,0,.06);
    --shadow-xl:  0 28px 72px rgba(0,0,0,.08);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--black);
    background: #f5f2ed;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 0;
    -webkit-font-smoothing: antialiased;
}

/* ── Typography ────────────────────────────────────────── */
h1 {
    font-family: 'Anton', Impact, sans-serif;
    font-size: clamp(4.5rem, 11vw, 11rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.035em;
    color: var(--black);
    text-transform: uppercase;
}

h2 {
    font-family: 'Anton', Impact, sans-serif;
    font-size: clamp(2.25rem, 5vw, 4.4rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--black);
    text-transform: uppercase;
}

h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

p { color: var(--gray-1); font-size: 1rem; line-height: 1.65; }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border-radius: var(--r-pill);
    font-family: inherit;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.18s ease;
    white-space: nowrap;
    padding: 0.7rem 1.5rem;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-hover); box-shadow: var(--shadow-md); }

.btn-ghost {
    background: transparent;
    color: var(--black);
    border: 1.5px solid var(--gray-3);
}
.btn-ghost:hover { background: var(--gray-4); border-color: var(--gray-2); }

.btn-white { background: var(--white); color: var(--black); font-weight: 700; }
.btn-white:hover { background: var(--surface); }

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.8); }

.btn-plan {
    background: var(--gray-4);
    color: var(--black);
    width: 100%;
    padding: 0.85rem;
    font-size: 1rem;
}
.btn-plan:hover { background: var(--gray-3); }

.btn-plan-primary {
    background: var(--blue);
    color: var(--white);
    width: 100%;
    padding: 0.85rem;
    font-size: 1rem;
}
.btn-plan-primary:hover { background: var(--blue-hover); box-shadow: var(--shadow-md); }

.btn-lg { padding: 0.9rem 1.9rem; font-size: 1rem; }

/* ── Eyebrow pill ──────────────────────────────────────── */
.eyebrow-pill {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--black);
    background: rgba(17,17,17,.035);
    border: 1px solid rgba(17,17,17,.09);
    padding: 0.42rem 1.15rem;
    border-radius: var(--r-pill);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

/* ── Animations ────────────────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

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

.anim-fade {
    opacity: 0;
    animation: fadeUp 0.65s ease-out forwards;
    animation-delay: var(--delay, 0s);
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   HEADER / NAV
   ===================================================== */
.main-header {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    height: auto;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    z-index: 200;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 760px;
    margin: 0 auto;
    padding: 0 1.25rem;
    min-height: 72px;
    gap: 1rem;
    background: rgba(239,236,232,.96);
    border: 1px solid rgba(17,17,17,.08);
    border-radius: 28px;
    box-shadow: 0 12px 32px rgba(0,0,0,.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    margin-right: 0;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    background: #111111;
    color: var(--white);
    border-radius: 12px;
    font-size: 1.15rem;
    font-weight: 900;
}
.logo-icon.small { width: 28px; height: 28px; font-size: 0.9rem; border-radius: 7px; }

.logo-text {
    font-family: 'Anton', Impact, sans-serif;
    font-weight: 400;
    font-size: 2rem;
    color: var(--black);
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.nav-links { display: flex; align-items: center; gap: 0.35rem; }

.nav-link {
    text-decoration: none;
    color: var(--gray-2);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.55rem 0.8rem;
    border-radius: var(--r-pill);
    transition: color 0.15s, background 0.15s;
    white-space: nowrap;
}
.nav-link:hover { color: var(--black); background: rgba(17,17,17,.04); }

.nav-link-dealer {
    color: var(--white);
    font-weight: 600;
    background: var(--black);
    border: 1px solid var(--black);
    margin-left: 0.4rem;
}
.nav-link-dealer:hover { background: #000000; color: var(--white); }

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
}
.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 22px; height: 2px;
    background: var(--black);
    position: relative;
    transition: transform 0.25s ease, opacity 0.2s;
}
.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after  { top: 7px; }
.nav-toggle.open .hamburger { background: transparent; }
.nav-toggle.open .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open .hamburger::after  { top: 0; transform: rotate(-45deg); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
    position: relative;
    min-height: auto;
    display: block;
    overflow: hidden;
    background: #f5f2ed;
    padding: 7.5rem 0 0;
}

#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    opacity: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    align-items: center;
    padding: 2rem 1.5rem 0;
    text-align: center;
}

.hero h1 {
    font-family: 'Anton', Impact, sans-serif;
    font-size: clamp(3rem, 8.25vw, 6.7rem);
    line-height: 0.88;
    letter-spacing: -0.035em;
    margin-bottom: 1.45rem;
    background: none;
    -webkit-text-fill-color: currentColor;
    max-width: none;
    white-space: nowrap;
    text-transform: uppercase;
}

.hero-sub {
    font-size: clamp(1rem, 1.7vw, 1.25rem);
    color: #3f3b37;
    font-weight: 500;
    max-width: 46rem;
    line-height: 1.55;
    margin-bottom: 2.6rem;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 0;
}

.hero .btn-primary {
    background: #111111;
    color: #f7f7f7;
    padding: 1.04rem 2.2rem;
    font-size: 1.15rem;
}

.hero .btn-primary:hover {
    background: #000000;
    box-shadow: 0 12px 32px rgba(0,0,0,.12);
}

.hero-microcopy {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    color: #5c5853;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 0.25rem;
}

.hero-phone-image {
    display: block;
    width: min(100%, 415px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 42px rgba(0,0,0,.10));
}

/* Logos strip — pinned at hero bottom */
.hero-logos {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 2rem 2rem;
    border-top: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.hero-logos-label {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #4f4b46;
}

.hero-logos-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.4rem 1.25rem;
}

.hero-logo-item {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-2);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-logos-sep {
    color: var(--gray-3);
    font-size: 1rem;
    line-height: 1;
}

/* Hero mock cards */
.hero-cards {
    display: flex;
    gap: 1rem;
    width: 100%;
    max-width: 780px;
    justify-content: center;
    flex-wrap: wrap;
}

.hc {
    flex: 1;
    min-width: 200px;
    max-width: 260px;
    border-radius: var(--r-md);
    padding: 1.25rem;
    box-shadow: 0 12px 40px rgba(19,19,19,.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hc:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.hc-blue   { background: var(--blue-light); border: 1px solid var(--blue-mid); }
.hc-teal   { background: var(--mint-bg);    border: 1px solid var(--mint); }
.hc-purple { background: var(--lavender-bg);border: 1px solid var(--lavender); }

.hc-label { font-size: 0.72rem; font-weight: 700; color: var(--gray-2); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.4rem; }
.hc-value { font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 0.75rem; }
.hc-value-big { font-size: 2rem; font-weight: 900; letter-spacing: -0.04em; margin-bottom: 0; }
.hc-unit  { font-size: 1rem; font-weight: 600; color: var(--gray-2); }
.hc-sub   { font-size: 0.8rem; color: var(--gray-2); font-weight: 500; }

.hc-bar   { height: 5px; background: rgba(94,121,165,.16); border-radius: var(--r-pill); overflow: hidden; }
.hc-bar-fill { height: 100%; width: 78%; background: var(--blue); border-radius: var(--r-pill); }

.hc-chips { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.hc-chip  { font-size: 0.72rem; font-weight: 600; background: rgba(120,155,126,.12); color: #4D6A54; padding: 0.2rem 0.55rem; border-radius: var(--r-pill); }


/* =====================================================
   FEATURE SECTIONS
   ===================================================== */
.feature-section {
    padding: 7rem 1.5rem;
}

.feature-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.feature-flip .feature-inner { }

.feature-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-content h2 { margin-bottom: 1rem; }
.feature-content p  { margin-bottom: 0.85rem; }

.feature-blockquote {
    border-left: 3px solid rgba(17,17,17,.18);
    padding: 1rem 1.25rem;
    margin: 1.25rem 0;
    background: var(--white);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    font-style: italic;
    color: var(--gray-1);
    font-size: 1rem;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 1rem;
    color: var(--gray-1);
    font-weight: 500;
}
.feature-list li::before {
    content: '✓';
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px; height: 20px;
    background: var(--surface);
    color: var(--black);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 800;
    margin-top: 2px;
}

/* Feature media cards */
.feature-media { display: flex; justify-content: center; }

.fcard {
    width: 100%;
    max-width: 400px;
    border-radius: var(--r-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.fcard-peach  { background: var(--peach-bg);  border: 1px solid var(--peach); }
.fcard-blue   { background: var(--sky-bg);    border: 1px solid var(--sky); }

.fcard-chat { display: flex; flex-direction: column; gap: 0.75rem; }

.chat-bubble {
    padding: 0.75rem 1rem;
    border-radius: var(--r-md);
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 90%;
}
.chat-bubble.customer {
    background: var(--gray-4);
    color: var(--gray-1);
    align-self: flex-start;
}
.chat-bubble.agent {
    background: var(--blue);
    color: var(--white);
    align-self: flex-end;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.chat-detail { font-size: 0.8rem; opacity: 0.85; }

.fcard-footer { display: flex; }
.fcard-tag {
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: var(--r-pill);
}
.fcard-tag-green { background: var(--surface); color: var(--black); }

/* VIN card */
.fcard-top {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--gray-2);
}
.fcard-icon { font-size: 1.1rem; }

.fcard-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: var(--r-pill);
}
.chip-green  { background: var(--surface); color: var(--black); }
.chip-blue   { background: var(--surface); color: var(--black); }
.chip-purple { background: var(--surface); color: var(--black); }
.chip-orange { background: var(--surface); color: var(--black); }

.fcard-lines { display: flex; flex-direction: column; gap: 0.5rem; }
.fcard-line  { height: 8px; background: rgba(17,17,17,.1); border-radius: var(--r-pill); width: 100%; }
.fcard-line.short  { width: 60%; }
.fcard-line.medium { width: 80%; }

.fcard-timer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-2);
}
.fcard-dot {
    width: 8px; height: 8px;
    background: #111111;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(17,17,17,.12);
}

/* Alternating layout */
.feature-flip .feature-inner {
    direction: rtl;
}
.feature-flip .feature-inner > * {
    direction: ltr;
}

/* =====================================================
   HOW IT WORKS
   ===================================================== */
.how-section {
    background: #f5f2ed;
    border-top: 1px solid var(--gray-3);
    border-bottom: 1px solid var(--gray-3);
    padding: 7rem 1.5rem;
}

.how-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.how-inner h2 { margin-bottom: 1rem; }
.how-inner .eyebrow-pill { margin-bottom: 0.75rem; }

/* New single-column steps layout */
.how-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 3rem;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.how-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--gray-3);
}
.how-step:last-child { border-bottom: none; }

.how-step-num {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #111111;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.02em;
    box-shadow: none;
}

.how-step-body { flex: 1; padding-top: 0.25rem; }
.how-step-body h3 { font-size: 1.15rem; margin-bottom: 0.35rem; }
.how-step-body p  { font-size: 0.97rem; color: var(--gray-2); line-height: 1.6; }

.how-footnote {
    margin-top: 2.5rem;
    font-size: 0.88rem;
    color: var(--gray-2);
    font-style: italic;
    text-align: center;
}

.how-mock {
    display: flex;
    align-items: center;
    justify-content: center;
}
.how-mock-screen {
    width: 100%;
    height: 80px;
    background: rgba(255,255,255,.6);
    border-radius: var(--r-sm);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.75rem;
    border: 1px solid rgba(0,0,0,.06);
}
.how-mock-screen.dark   { background: rgba(0,0,0,.08); }
.how-mock-screen.purple { background: rgba(139,92,246,.08); }

.how-mock-line {
    height: 7px;
    background: rgba(0,0,0,.08);
    border-radius: var(--r-pill);
    width: 80%;
}
.how-mock-line.short { width: 55%; }

.how-circle {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: rgba(67,83,255,.25);
    position: absolute;
}
.how-circle.dark   { background: rgba(0,0,0,.15); }

.how-chat-bubble {
    height: 12px;
    background: rgba(67,83,255,.2);
    border-radius: var(--r-pill);
    width: 70%;
    margin-bottom: 0.3rem;
}
.how-chat-bubble.reply {
    background: rgba(139,92,246,.2);
    width: 55%;
    align-self: flex-end;
    margin-left: auto;
}

/* =====================================================
   WHY VINIE
   ===================================================== */
.why-section {
    padding: 7rem 1.5rem;
    background: #f5f2ed;
}

.why-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.why-lead {
    font-size: 1.1rem;
    color: var(--gray-2);
    max-width: 600px;
    line-height: 1.7;
}

.why-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    margin-top: 2rem;
}

.why-stat {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 2rem 1.5rem;
    border: 1px solid rgba(17,17,17,.06);
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-stat:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.why-stat-number {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 900;
    color: var(--black);
    letter-spacing: -0.04em;
    line-height: 1;
}

.why-stat-text {
    font-size: 0.95rem;
    color: var(--gray-2);
    font-weight: 500;
    line-height: 1.5;
}

/* =====================================================
   PRICING
   ===================================================== */
.pricing-section {
    padding: 7rem 1.5rem;
    background: #f5f2ed;
}

.pricing-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.pricing-sub { color: var(--gray-2); font-size: 1.1rem; }

/* Billing toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin: 1.5rem 0 2.5rem;
}

.toggle-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-2);
    cursor: pointer;
    transition: color 0.15s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.toggle-label.active { color: var(--black); }

.toggle-switch {
    width: 44px; height: 24px;
    background: var(--gray-3);
    border-radius: var(--r-pill);
    cursor: pointer;
    position: relative;
    transition: background 0.2s;
    flex-shrink: 0;
}
.toggle-switch.active { background: var(--blue); }

.toggle-knob {
    position: absolute;
    top: 3px; left: 3px;
    width: 18px; height: 18px;
    background: var(--white);
    border-radius: 50%;
    transition: left 0.2s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.toggle-switch.active .toggle-knob { left: 23px; }

.save-badge {
    background: var(--surface);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.55rem;
    border-radius: var(--r-pill);
    letter-spacing: 0.03em;
}

/* Pricing cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    width: 100%;
    align-items: start;
}

.pricing-card {
    border-radius: var(--r-lg);
    padding: 2rem;
    border: 1px solid var(--gray-3);
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    text-align: left;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.card-popular {
    border: 2px solid var(--black);
    background: var(--surface);
    transform: none;
}
.card-popular:hover { transform: translateY(-6px); }

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.85rem;
    border-radius: var(--r-pill);
    white-space: nowrap;
}

.plan-name { font-size: 1.15rem; font-weight: 800; color: var(--black); letter-spacing: -0.01em; }
.plan-desc { font-size: 0.9rem; color: var(--gray-2); line-height: 1.5; }

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
    margin: 0.25rem 0;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--black);
    letter-spacing: -0.04em;
}

.price-period {
    font-size: 0.95rem;
    color: var(--gray-2);
    font-weight: 500;
}

.alt-price {
    font-size: 0.82rem !important;
    color: var(--gray-2) !important;
    margin: 0;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--gray-1);
    font-weight: 500;
}
.plan-features li::before {
    content: '✓';
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px; height: 18px;
    background: var(--surface);
    color: var(--black);
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 800;
    margin-top: 2px;
}

/* =====================================================
   ABOUT
   ===================================================== */
.about-section {
    padding: 7rem 1.5rem;
    background: #f5f2ed;
    border-top: 1px solid var(--gray-3);
}

.about-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-content { display: flex; flex-direction: column; align-items: flex-start; }
.about-content h2 { margin-bottom: 1rem; }
.about-content p  { margin-bottom: 0.75rem; }
.about-close { font-size: 1.1rem; }

.about-placeholder {
    aspect-ratio: 1;
    width: 100%;
    max-width: 400px;
    background: var(--white);
    border-radius: var(--r-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--gray-2);
    border: 1px solid var(--gray-3);
    font-size: 0.9rem;
    font-weight: 500;
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
    padding: 7rem 1.5rem;
    background: #f5f2ed;
    text-align: center;
    border-top: 1px solid rgba(17,17,17,.06);
    border-bottom: 1px solid rgba(17,17,17,.06);
}

.cta-inner {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.cta-inner h2 { color: var(--black); }
.cta-inner p  { color: var(--gray-1); font-size: 1.1rem; }

.cta-actions {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.5rem;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--black);
    padding: 4rem 1.5rem 2rem;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.75rem;
}
.footer-logo .logo-icon { background: var(--blue); }
.footer-logo .logo-text { color: var(--white); }

.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,.4); line-height: 1.6; }

.footer-col { display: flex; flex-direction: column; gap: 0.75rem; }

.footer-col-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,.35);
    margin-bottom: 0.25rem;
}

.footer-link {
    text-decoration: none;
    color: rgba(255,255,255,.55);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.15s;
}
.footer-link:hover { color: var(--white); }

.footer-bottom {
    max-width: 1100px;
    margin: 2rem auto 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,.25);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 900px) {
    .nav-toggle { display: block; }
    .main-header {
        top: 12px;
        padding: 0 0.75rem;
    }
    .nav-container {
        max-width: 100%;
        min-height: 64px;
    }
    .nav-links {
        display: none;
        position: fixed;
        inset: 86px 0 auto 0;
        background: rgba(239,236,232,.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
        gap: 0.35rem;
        z-index: 199;
        overflow-y: auto;
        border: 1px solid rgba(17,17,17,.08);
        border-radius: 24px;
        margin: 0 0.75rem;
        box-shadow: 0 12px 32px rgba(0,0,0,.05);
    }
    .nav-links.open { display: flex; }
    .nav-link {
        font-size: 1rem;
        width: 100%;
        padding: 0.75rem 1rem;
    }
    .nav-link-dealer { margin-left: 0; }

    .hero-inner {
        gap: 1.5rem;
        padding: 1.5rem 1.25rem 0;
    }
    .hero-copy {
        align-items: center;
        text-align: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-visual {
        justify-content: center;
    }
    .hero-phone-image {
        width: min(100%, 315px);
    }

    .hero-cards { flex-direction: column; align-items: center; }
    .hc { max-width: 100%; }

    .feature-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .feature-flip .feature-inner { direction: ltr; }

    .how-cards { grid-template-columns: 1fr; gap: 1rem; }

    .why-stats { grid-template-columns: 1fr 1fr; }

    .pricing-cards { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .card-popular  { order: -1; }

    .about-inner { grid-template-columns: 1fr; }
    .about-placeholder { max-width: 280px; align-self: center; }

    .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 580px) {
    h1 { font-size: 2.55rem; }
    h2 { font-size: 2.2rem; }

    .hero { padding-top: 6.25rem; }
    .hero-inner { padding: 1rem 1rem 0; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 320px; }
    .hero-sub { max-width: 21rem; }
    .hero-phone-image {
        width: min(100%, 240px);
    }

    .why-stats { grid-template-columns: 1fr; }

    .footer-inner { grid-template-columns: 1fr; }
}

/* =====================================================
   PROBLEM + SOLUTION TWO-COLUMN
   ===================================================== */
.ps-section {
    padding: 6rem 1.5rem;
    background: #f5f2ed;
}

.ps-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 0 4rem;
    align-items: start;
}

.ps-divider {
    background: var(--gray-3);
    align-self: stretch;
}

.ps-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ps-col h2 {
    font-family: 'Anton', Impact, sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.ps-col p {
    font-size: 1rem;
    color: var(--gray-1);
    line-height: 1.65;
}

.ps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.ps-list li {
    font-size: 0.95rem;
    color: var(--gray-1);
    padding-left: 1.4rem;
    position: relative;
    line-height: 1.5;
}

.ps-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--black);
    font-weight: 700;
}

.eyebrow-red {
    color: #DC2626;
    background: #FEF2F2;
}

.eyebrow-blue {
    color: var(--black);
    background: var(--surface);
}

@media (max-width: 700px) {
    .ps-inner {
        grid-template-columns: 1fr;
        gap: 3rem 0;
    }
    .ps-divider { display: none; }
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials-section {
    padding: 7rem 1.5rem;
    background: #f5f2ed;
}

.testimonials-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-inner h2 {
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: left;
}

.tcard {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 2rem;
    border: 1px solid rgba(17,17,17,.06);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.tcard-stars {
    font-size: 1rem;
    color: #F59E0B;
    letter-spacing: 0.05em;
}

.tcard-quote {
    font-size: 0.97rem;
    color: var(--gray-1);
    line-height: 1.7;
    flex: 1;
}

.tcard-author {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-4);
}

.tcard-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--surface);
    color: var(--black);
    font-size: 0.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tcard-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--black);
}

.tcard-role {
    font-size: 0.8rem;
    color: var(--gray-2);
    margin-top: 0.1rem;
}

@media (max-width: 860px) {
    .testimonials-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   NAV PROFILE BUTTON + DROPDOWN
   ===================================================== */
.nav-profile-wrap {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 0.4rem;
}

.nav-profile-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--blue);
    background: var(--blue-light);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s;
    padding: 0;
    flex-shrink: 0;
}
.nav-profile-btn:hover { background: var(--blue-mid); }

.nav-profile-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--white);
    border: 1px solid var(--gray-3);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    overflow: hidden;
    z-index: 300;
}
.nav-profile-dropdown.open { display: block; }

.npd-info {
    padding: 1rem 1.1rem 0.85rem;
}
.npd-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--black);
    margin-bottom: 0.15rem;
}
.npd-email {
    font-size: 0.8rem;
    color: var(--gray-2);
}
.npd-divider {
    height: 1px;
    background: var(--gray-3);
}
.npd-link {
    display: block;
    width: 100%;
    padding: 0.7rem 1.1rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-1);
    text-decoration: none;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.12s;
}
.npd-link:hover { background: var(--gray-4); color: var(--black); }
.npd-signout { color: #DC2626; }
.npd-signout:hover { background: #FEF2F2; color: #DC2626; }

/* =====================================================
   CHECKOUT MODAL
   ===================================================== */
.checkout-modal {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 460px;
    position: relative;
    box-shadow: var(--shadow-xl);
    margin: 1.5rem;
}

.checkout-close {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    background: none;
    border: none;
    font-size: 1.1rem;
    color: var(--gray-2);
    cursor: pointer;
    line-height: 1;
    padding: 0.25rem;
}
.checkout-close:hover { color: var(--black); }

.checkout-header {
    margin-bottom: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.checkout-header h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--black);
}
.checkout-price-line {
    font-size: 1rem;
    font-weight: 700;
    color: var(--blue);
}

.checkout-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
}
.checkout-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-1);
}
.checkout-field input {
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--gray-3);
    border-radius: var(--r-sm);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.15s;
}
.checkout-field input:focus { border-color: var(--blue); }

.checkout-billing {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}
.checkout-billing-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-1);
}
.checkout-radio {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    color: var(--gray-1);
    cursor: pointer;
}

.checkout-submit {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    margin-top: 0.25rem;
}

.checkout-error {
    background: #FEF2F2;
    color: #DC2626;
    border-radius: var(--r-sm);
    padding: 0.65rem 0.9rem;
    font-size: 0.88rem;
    margin-bottom: 0.75rem;
}

.checkout-secure {
    text-align: center;
    font-size: 0.78rem;
    color: var(--gray-2);
    margin-top: 0.75rem;
}
