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

:root {
    --black: #0A0A0A;
    --card: #141414;
    --card2: #1C1C1C;
    --red: #C8102E;
    --red-dark: #9E0C24;
    --silver: #C0C0C0;
    --silver-dim: #7A7A7A;
    --white: #F5F5F5;
    --text: #CCCCCC;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

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

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 64px;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 16, 46, 0.25);
}

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

.nav-logo svg {
    width: 40px;
    height: 40px;
}

.nav-wordmark {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 0.06em;
    color: var(--white);
    line-height: 1;
}

.nav-wordmark span {
    color: var(--red);
    display: block;
    font-size: 11px;
    letter-spacing: 0.25em;
    font-family: var(--font-body);
    font-weight: 500;
    margin-top: 1px;
}

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

.nav-links a {
    color: var(--silver-dim);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-cta {
    background: var(--red);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 2px;
    letter-spacing: 0.1em !important;
    transition: background 0.2s !important;
}

.nav-cta:hover {
    background: var(--red-dark) !important;
    color: var(--white) !important;
}

.nav-account {
    position: relative;
}

.nav-account-trigger {
    display: flex;
    align-items: center;
    gap: 7px;
    background: none;
    border: none;
    color: var(--silver-dim);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}

.nav-account-trigger:hover,
.nav-account.open .nav-account-trigger {
    color: var(--white);
}

.nav-account-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(200, 16, 46, 0.15);
    border: 1px solid rgba(200, 16, 46, 0.4);
    color: var(--red);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-account-chevron {
    width: 10px;
    height: 10px;
    stroke: currentColor;
    transition: transform 0.2s;
}

.nav-account.open .nav-account-chevron {
    transform: rotate(180deg);
}

.nav-account-menu {
    position: absolute;
    top: calc(100% + 16px);
    right: 0;
    min-width: 190px;
    background: var(--card);
    border: 1px solid rgba(200, 16, 46, 0.2);
    border-radius: 4px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
}

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

.nav-account-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    padding: 10px 12px 4px;
    letter-spacing: 0.02em;
    text-transform: none;
}

.nav-account-email {
    font-size: 11.5px;
    color: var(--silver-dim);
    padding: 0 12px 10px;
    letter-spacing: 0.02em;
    text-transform: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-account-menu a,
.nav-account-menu button {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--text);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: none;
    padding: 9px 12px;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.nav-account-menu a:hover,
.nav-account-menu button:hover {
    background: var(--card2);
    color: var(--white);
}

.nav-account-menu .nav-account-logout {
    color: var(--red);
    margin-top: 2px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 9px;
}

.nav-account-menu .nav-account-logout:hover {
    background: rgba(200, 16, 46, 0.1);
    color: var(--red);
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 80px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 75% 55%, rgba(200, 16, 46, 0.07) 0%, transparent 70%),
        radial-gradient(ellipse 80% 60% at 100% 50%, rgba(192, 192, 192, 0.04) 0%, transparent 60%),
        linear-gradient(135deg, #0A0A0A 0%, #111111 50%, #0D0D0D 100%);
}

/* Abstract car silhouette lines */
.hero-car {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 58%;
    max-width: 780px;
    opacity: 0.13;
    pointer-events: none;
}

.hero-rule {
    width: 60px;
    height: 3px;
    background: var(--red);
    margin-bottom: 24px;
}

.hero-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(56px, 7vw, 112px);
    line-height: 0.92;
    letter-spacing: 0.02em;
    color: var(--white);
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-headline em {
    font-style: normal;
    color: var(--red);
    display: block;
}

.hero-sub {
    margin-top: 28px;
    font-size: 15px;
    font-weight: 300;
    color: var(--silver-dim);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.hero-sub strong {
    color: var(--silver);
    font-weight: 600;
    letter-spacing: 0.35em;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 44px;
    position: relative;
    z-index: 1;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: 2px;
    transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--silver);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 16px 32px;
    border: 1px solid rgba(192, 192, 192, 0.25);
    border-radius: 2px;
    transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
    border-color: var(--silver);
    color: var(--white);
}

.hero-info {
    display: flex;
    gap: 48px;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
    z-index: 1;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat-val {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--white);
    letter-spacing: 0.04em;
    line-height: 1;
}

.hero-stat-val span {
    color: var(--red);
}

.hero-stat-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--silver-dim);
}

/* ── SECTION SHELL ── */
section {
    padding: 96px 80px;
}

.section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(38px, 4.5vw, 62px);
    line-height: 0.95;
    letter-spacing: 0.03em;
    color: var(--white);
    margin-bottom: 48px;
}

.red-rule {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--red) 0%, transparent 100%);
    margin-bottom: 48px;
}

/* ── SERVICES ── */
.services {
    background: var(--black);
}

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

.service-col {
    background: var(--card);
    padding: 40px 36px 44px;
    position: relative;
    overflow: hidden;
}

.service-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.service-col:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    opacity: 0.85;
}

.service-col-title {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 0.06em;
    color: var(--red);
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-list li {
    font-size: 14px;
    color: var(--text);
    padding-left: 16px;
    position: relative;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 1px;
    background: var(--red);
}

/* ── PRICING ── */
.pricing {
    background: #0D0D0D;
}

.pricing-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tab-btn {
    background: none;
    border: none;
    color: var(--silver-dim);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 14px 28px;
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.25s;
}

.tab-btn.active {
    color: var(--white);
}

.tab-btn.active::after {
    transform: scaleX(1);
}

.tab-btn:hover {
    color: var(--silver);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.price-card {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    padding: 28px 24px;
    transition: border-color 0.2s, transform 0.2s;
}

.price-card:hover {
    border-color: rgba(200, 16, 46, 0.4);
    transform: translateY(-2px);
}

.price-card-name {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 0.05em;
    color: var(--red);
    margin-bottom: 4px;
}

.price-card-from {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--silver-dim);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.price-card-price {
    font-family: var(--font-display);
    font-size: 42px;
    color: var(--white);
    letter-spacing: 0.02em;
    line-height: 1;
    margin-bottom: 20px;
}

.price-card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.price-card-features li {
    font-size: 13px;
    color: var(--text);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.price-card-features li::before {
    content: '—';
    color: var(--red);
    flex-shrink: 0;
    font-size: 11px;
    margin-top: 2px;
}

/* ── SPECIALS ── */
.specials {
    padding: 56px 80px;
    background: var(--red);
}

.specials-inner {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.specials-label {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 0.08em;
    color: var(--white);
    white-space: nowrap;
    flex-shrink: 0;
}

.specials-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.specials-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    flex: 1;
}

.special-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.special-amount {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--white);
    letter-spacing: 0.04em;
    line-height: 1;
}

.special-desc {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

/* ── BUNDLES ── */
.bundles {
    background: var(--black);
}

.bundles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.bundle-card {
    background: var(--card);
    padding: 36px 28px 40px;
    position: relative;
    transition: background 0.2s;
}

.bundle-card:hover {
    background: var(--card2);
}

.bundle-card.featured {
    background: var(--card2);
    border: 1px solid rgba(200, 16, 46, 0.5);
}

.bundle-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
}

.bundle-card.featured .bundle-badge {
    background: var(--red);
    color: var(--white);
    padding: 4px 10px;
}

.bundle-name {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 0.06em;
    color: var(--silver);
    margin-bottom: 6px;
}

.bundle-price {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--white);
    letter-spacing: 0.02em;
    line-height: 1;
    margin-bottom: 24px;
}

.bundle-price small {
    font-size: 18px;
    color: var(--silver-dim);
}

.bundle-includes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 32px;
}

.bundle-includes li {
    font-size: 14px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.bundle-includes li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
}

.bundle-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 13px;
    border: 1px solid rgba(200, 16, 46, 0.4);
    color: var(--red);
    border-radius: 2px;
    transition: background 0.2s, color 0.2s;
}

.bundle-btn:hover,
.bundle-card.featured .bundle-btn {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.bundle-card.featured .bundle-btn:hover {
    background: var(--red-dark);
}

/* ── MOBILE CALLOUT ── */
.mobile-callout {
    background: var(--card);
    padding: 72px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.mobile-callout-headline {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 60px);
    letter-spacing: 0.03em;
    line-height: 0.95;
    color: var(--white);
    margin-bottom: 20px;
}

.mobile-callout-headline span {
    color: var(--red);
    display: block;
}

.mobile-callout-body {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 32px;
}

.callout-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.callout-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.callout-detail-icon {
    width: 40px;
    height: 40px;
    background: rgba(200, 16, 46, 0.12);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.callout-detail-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--red);
}

.callout-detail-text {
    font-size: 14px;
    color: var(--text);
}

.callout-detail-text strong {
    display: block;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 2px;
}

/* ── FOOTER / CTA ── */
.footer-cta {
    background: #080808;
    padding: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 1px solid rgba(200, 16, 46, 0.3);
}

.footer-cta-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 72px);
    letter-spacing: 0.04em;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-cta-sub {
    font-size: 14px;
    color: var(--silver-dim);
    letter-spacing: 0.1em;
    margin-bottom: 36px;
}

.footer-contact {
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.footer-contact-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--silver-dim);
}

.footer-contact-val {
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
    text-decoration: none;
}

a.footer-contact-val:hover {
    color: var(--red);
}

.footer-bottom {
    margin-top: 48px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.18);
    letter-spacing: 0.1em;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
    nav {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    section,
    .specials,
    .mobile-callout,
    .footer-cta {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero {
        padding: 100px 24px 60px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-car {
        opacity: 0.05;
        width: 90%;
        right: -20px;
    }

    .hero-info {
        gap: 28px;
        flex-wrap: wrap;
    }

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

    .tab-panel.active {
        grid-template-columns: 1fr 1fr;
    }

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

    .mobile-callout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .specials-divider {
        display: none;
    }

    .specials-grid {
        gap: 20px;
    }
}

@media (max-width: 560px) {
    .tab-panel.active {
        grid-template-columns: 1fr;
    }

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

    .hero-actions {
        flex-direction: column;
    }

    .specials-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

@media (max-width: 900px) {
    nav {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }
}