:root {
    --navy: #0A1628;
    --navy-light: #141F35;
    --surface: #1A2332;
    --electric: #00B4FF;
    --electric-dim: #0090CC;
    --gold: #FFB800;
    --gold-dim: #E5A600;
    --white: #F8FAFC;
    --gray: #94A3B8;
    --gray-dark: #64748B;
    --success: #22C55E;
    --danger: #EF4444;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --header-h: 80px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--navy);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--electric); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }

.container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--gold);
    color: var(--navy);
    padding: 0.5rem 1rem;
    z-index: 9999;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* Mobile sticky bar */
.mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--navy-light);
    border-top: 1px solid rgba(0, 180, 255, 0.3);
}
.mobile-bar__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.mobile-bar__btn--call { background: var(--surface); color: var(--white); }
.mobile-bar__btn--quote { background: linear-gradient(135deg, var(--electric), var(--electric-dim)); color: var(--navy); }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 800;
    background: rgba(10, 22, 40, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 180, 255, 0.15);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 1.5rem;
}

.logo { display: flex; flex-direction: column; line-height: 1; }
.logo__go {
    font-family: var(--font-display);
    font-size: 1.75rem;
    letter-spacing: 0.08em;
    color: var(--white);
}
.logo__2 { color: var(--electric); }
.logo__brand {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.35em;
    color: var(--gold);
    margin-top: -2px;
}
.logo__tag {
    font-size: 0.65rem;
    color: var(--gray);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 4px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.site-nav a {
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.site-nav a:hover, .site-nav a.active { color: var(--white); }
.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    color: var(--navy) !important;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    font-weight: 700 !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255, 184, 0, 0.35); color: var(--navy) !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: 0.3s;
}

/* Hero */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-h));
    display: grid;
    align-items: center;
    padding: 4rem 0;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(0, 180, 255, 0.18), transparent),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(255, 184, 0, 0.08), transparent),
        linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
    z-index: 0;
}
.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 184, 0, 0.12);
    border: 1px solid rgba(255, 184, 0, 0.35);
    color: var(--gold);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
}
.hero__title span { color: var(--electric); }
.hero__subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 520px;
    margin-bottom: 2rem;
}
.hero__stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.stat__num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1;
}
.stat__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
    background: linear-gradient(135deg, var(--electric), var(--electric-dim));
    color: var(--navy);
    box-shadow: 0 12px 32px rgba(0, 180, 255, 0.3);
}
.btn--gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    color: var(--navy);
    box-shadow: 0 12px 32px rgba(255, 184, 0, 0.25);
}
.btn--outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.25);
}
.btn--outline:hover { border-color: var(--electric); color: var(--electric); }

.hero__card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(0, 180, 255, 0.2);
    box-shadow: var(--shadow);
}
.hero__card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}
.hero__card .sub { color: var(--gray); font-size: 0.85rem; margin-bottom: 1.5rem; }

/* Forms */
.form-group { margin-bottom: 1rem; }
.form-group label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray);
    margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--navy);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: var(--radius);
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--electric);
    box-shadow: 0 0 0 3px rgba(0, 180, 255, 0.15);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-consent {
    font-size: 0.75rem;
    color: var(--gray-dark);
    margin-top: 0.75rem;
    line-height: 1.5;
}

/* Sections */
.section {
    padding: 5rem 0;
}
.section--alt { background: var(--navy-light); }
.section__eyebrow {
    color: var(--electric);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}
.section__title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
}
.section__desc {
    color: var(--gray);
    max-width: 600px;
    margin-bottom: 3rem;
}

/* Vehicle cards */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}
.deal-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.3s, border-color 0.3s;
}
.deal-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 180, 255, 0.35);
}
.deal-card__img {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--navy-light), var(--surface));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 3rem;
    color: rgba(0, 180, 255, 0.2);
    position: relative;
    overflow: hidden;
}
.deal-card__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, var(--surface) 100%);
}
.deal-card__body { padding: 1.5rem; }
.deal-card__year { color: var(--electric); font-size: 0.8rem; font-weight: 600; }
.deal-card__name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.03em;
    margin: 0.25rem 0 1rem;
}
.deal-card__price {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.deal-card__monthly {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
}
.deal-card__monthly small { font-size: 0.9rem; color: var(--gray); }
.deal-card__msrp { font-size: 0.8rem; color: var(--gray); }

/* Process steps */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}
.step__num {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--electric), var(--electric-dim));
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}
.step h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}
.step p { color: var(--gray); font-size: 0.9rem; }

/* Testimonials */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}
.review-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.review-card__stars { color: var(--gold); margin-bottom: 1rem; letter-spacing: 2px; }
.review-card__text { font-size: 1rem; font-style: italic; margin-bottom: 1.5rem; color: var(--white); }
.review-card__author { font-weight: 700; }
.review-card__vehicle { font-size: 0.8rem; color: var(--gray); }

/* Trust badges */
.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    opacity: 0.85;
}
.trust-badge {
    text-align: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 184, 0, 0.08);
    border: 1px solid rgba(255, 184, 0, 0.2);
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-photo {
    aspect-ratio: 3/4;
    background: linear-gradient(160deg, var(--surface), var(--navy-light));
    border-radius: var(--radius-lg);
    border: 2px solid rgba(0, 180, 255, 0.2);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}
.about-photo__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 6rem;
    color: rgba(0, 180, 255, 0.1);
}
.about-photo__caption {
    position: relative;
    z-index: 1;
    background: rgba(10, 22, 40, 0.85);
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    backdrop-filter: blur(8px);
}
.about-list { list-style: none; margin: 1.5rem 0; }
.about-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.about-list li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
}

/* Blog / Social */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}
.post-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.post-card__img {
    aspect-ratio: 16/9;
    background: var(--navy-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
}
.post-card__body { padding: 1.5rem; }
.post-card__date { font-size: 0.75rem; color: var(--gray); margin-bottom: 0.5rem; }
.post-card__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: 0.03em;
}
.post-card__platforms {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}
.platform-tag {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(0, 180, 255, 0.12);
    color: var(--electric);
}

/* Page hero (inner pages) */
.page-hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(180deg, var(--navy-light), var(--navy));
    border-bottom: 1px solid rgba(0, 180, 255, 0.1);
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: 0.03em;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}
.contact-info-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(0, 180, 255, 0.15);
}
.contact-method {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.contact-method:last-child { border: none; }
.contact-method__icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 180, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Footer */
.site-footer {
    background: #060D18;
    padding: 4rem 0 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(0, 180, 255, 0.1);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}
.footer-grid h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    color: var(--gold);
}
.footer-links, .footer-contact { list-style: none; }
.footer-links li, .footer-contact li { margin-bottom: 0.5rem; }
.footer-links a, .footer-contact a { color: var(--gray); font-size: 0.9rem; }
.footer-links a:hover, .footer-contact a:hover { color: var(--electric); }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gray);
    text-transform: uppercase;
}
.social-icon:hover { border-color: var(--electric); color: var(--electric); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.85rem;
    color: var(--gray-dark);
}
.footer-legal a { color: var(--gray); margin-left: 0.5rem; }

/* Toast */
.toast {
    position: fixed;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--surface);
    border: 1px solid var(--success);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius);
    z-index: 9999;
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast.error { border-color: var(--danger); }

/* CTA band */
.cta-band {
    background: linear-gradient(135deg, rgba(0, 180, 255, 0.15), rgba(255, 184, 0, 0.1));
    border: 1px solid rgba(0, 180, 255, 0.25);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    margin: 2rem 0;
}
.cta-band h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Loading */
.loading { text-align: center; padding: 3rem; color: var(--gray); }

/* Responsive */
@media (max-width: 960px) {
    .hero__grid, .about-grid, .contact-grid, .footer-grid, .enterprise-detail-grid { grid-template-columns: 1fr; }
    .steps, .services-grid { grid-template-columns: 1fr; }
    .enterprise-contact-card { position: static; }
    .form-row { grid-template-columns: 1fr; }
    .mobile-bar { display: grid; }
    body { padding-bottom: 56px; }
}

/* Services grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.service-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}
.service-card--featured {
    background: linear-gradient(160deg, rgba(0, 180, 255, 0.1), rgba(255, 184, 0, 0.06));
    border-color: rgba(0, 180, 255, 0.3);
}
.service-card__icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    color: var(--electric);
}
.service-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}
.service-card ul {
    list-style: none;
    text-align: left;
    color: var(--gray);
    font-size: 0.85rem;
}
.service-card li {
    padding: 0.4rem 0;
    padding-left: 1.25rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* Enterprise partnerships */
.enterprise-hero__highlight {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 184, 0, 0.12);
    border: 1px solid rgba(255, 184, 0, 0.35);
    border-radius: var(--radius);
    color: var(--gold);
    font-weight: 700;
    font-size: 1rem;
}
.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.partner-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    position: relative;
}
.partner-card--page {
    text-align: left;
}
.partner-card__badge {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.4rem 0.85rem;
    background: rgba(255, 184, 0, 0.12);
    border: 1px solid rgba(255, 184, 0, 0.3);
    border-radius: 999px;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.partner-card__icon {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}
.partner-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}
.partner-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}
.enterprise-benefits {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 2rem 2.5rem;
    border: 1px solid rgba(0, 180, 255, 0.15);
}
.enterprise-benefits__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
    color: var(--electric);
}
.enterprise-benefits ul,
.enterprise-benefits--inline {
    list-style: none;
    padding: 0;
    margin: 0;
}
.enterprise-benefits li,
.enterprise-benefits--inline li {
    color: var(--gray);
    padding: 0.55rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    line-height: 1.55;
}
.enterprise-benefits li::before,
.enterprise-benefits--inline li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}
.enterprise-detail-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2.5rem;
    align-items: start;
}
.enterprise-contact-card {
    background: linear-gradient(160deg, rgba(0, 180, 255, 0.1), rgba(255, 184, 0, 0.06));
    border: 1px solid rgba(0, 180, 255, 0.25);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: sticky;
    top: 6rem;
}
.enterprise-contact-card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    letter-spacing: 0.04em;
    margin-bottom: 0.25rem;
}
.enterprise-requirements {
    margin-top: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 184, 0, 0.06);
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
}
.enterprise-requirements h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    color: var(--gold);
}
.enterprise-requirements p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Brand-agnostic advantage */
.advantage-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2.5rem 0;
}
.advantage-card {
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.advantage-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}
.advantage-card ul {
    list-style: none;
    color: var(--gray);
    font-size: 0.95rem;
}
.advantage-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-left: 1.25rem;
    position: relative;
}
.advantage-card li::before {
    position: absolute;
    left: 0;
    font-weight: 700;
}
.advantage-card--them {
    background: rgba(20, 31, 53, 0.6);
}
.advantage-card--them h3 { color: var(--gray); }
.advantage-card--them li::before { content: '×'; color: var(--danger); }
.advantage-card--mike {
    background: linear-gradient(160deg, rgba(0, 180, 255, 0.1), rgba(255, 184, 0, 0.06));
    border-color: rgba(0, 180, 255, 0.3);
}
.advantage-card--mike h3 { color: var(--electric); }
.advantage-card--mike li::before { content: '✓'; color: var(--gold); }
.advantage-card--mike li strong { color: var(--white); }

.advantage-quote {
    margin: 0;
    padding: 2rem 2.5rem;
    background: var(--surface);
    border-left: 4px solid var(--gold);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.advantage-quote p {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--white);
    font-style: italic;
    margin-bottom: 1rem;
}
.advantage-quote footer {
    color: var(--gray);
    font-size: 0.9rem;
    font-style: normal;
}

@media (max-width: 768px) {
    .advantage-compare { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
}

/* DealerRater profile */
.dealerrater-profile {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: start;
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid rgba(0, 180, 255, 0.2);
}
.dealerrater-profile__photo {
    position: relative;
    flex-shrink: 0;
}
.dealerrater-profile__photo img {
    width: 200px;
    height: 200px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    border: 3px solid rgba(0, 180, 255, 0.35);
}
.dealerrater-badge {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.dealerrater-profile__info h2 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    letter-spacing: 0.03em;
    margin-bottom: 0.25rem;
}
.dealerrater-profile__dealer { color: var(--electric); font-size: 0.9rem; margin-bottom: 1rem; }
.dealerrater-profile__rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}
.dealerrater-stars { color: var(--gold); font-size: 1.25rem; letter-spacing: 2px; }
.dealerrater-count { color: var(--gray); font-size: 0.9rem; }
.dealerrater-profile__bio { color: var(--gray); line-height: 1.7; }
.review-card__date { font-size: 0.75rem; color: var(--gray-dark); margin-top: 0.5rem; }

.about-photo--real { padding: 0; overflow: hidden; }
.about-photo__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

/* AI Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 950;
}
.chat-widget__toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--electric), var(--electric-dim));
    color: var(--navy);
    border: none;
    border-radius: 999px;
    padding: 0.85rem 1.25rem;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 12px 32px rgba(0, 180, 255, 0.4);
    transition: transform 0.2s;
}
.chat-widget__toggle:hover { transform: scale(1.05); }
.chat-widget--open .chat-widget__toggle { display: none; }

.chat-panel {
    width: min(380px, calc(100vw - 2rem));
    height: 520px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 180, 255, 0.25);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.chat-panel__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: var(--navy-light);
    border-bottom: 1px solid rgba(0, 180, 255, 0.15);
}
.chat-panel__header strong { display: block; font-size: 1rem; }
.chat-panel__header span { font-size: 0.75rem; color: var(--gray); }
.chat-panel__close {
    background: none;
    border: none;
    color: var(--gray);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 0.25rem;
}
.chat-panel__close:hover { color: var(--white); }

.chat-panel__messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.chat-msg {
    max-width: 88%;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    line-height: 1.5;
}
.chat-msg--bot {
    background: var(--navy);
    color: var(--white);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}
.chat-msg--user {
    background: rgba(0, 180, 255, 0.2);
    color: var(--white);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}
.chat-msg--typing { opacity: 0.6; font-style: italic; }
.chat-msg--action { align-self: flex-start; background: none; padding: 0; }

.chat-panel__quick {
    display: flex;
    gap: 0.5rem;
    padding: 0 1rem 0.5rem;
    flex-wrap: wrap;
}
.chat-panel__quick button {
    background: var(--navy);
    border: 1px solid rgba(0, 180, 255, 0.25);
    color: var(--electric);
    font-size: 0.7rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    cursor: pointer;
    white-space: nowrap;
}
.chat-panel__quick button:hover { border-color: var(--electric); }

.chat-panel__input {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.chat-panel__input input {
    flex: 1;
    padding: 0.65rem 1rem;
    background: var(--navy);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: var(--radius);
    color: var(--white);
    font-family: inherit;
    font-size: 0.9rem;
}
.chat-panel__input input:focus {
    outline: none;
    border-color: var(--electric);
}

@media (max-width: 960px) {
    .chat-widget { bottom: 4.5rem; }
    .dealerrater-profile { grid-template-columns: 1fr; text-align: center; }
    .dealerrater-profile__photo { margin: 0 auto; }
    .dealerrater-profile__rating { justify-content: center; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .site-nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: var(--navy-light);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        transform: translateY(-120%);
        opacity: 0;
        transition: 0.3s;
        border-bottom: 1px solid rgba(0, 180, 255, 0.2);
    }
    .site-nav.open { transform: translateY(0); opacity: 1; }
}