/* ═══════════════════════════════════════════════════════════════
   HONDA — "THE POWER OF DREAMS"
   Design Direction: TYPE R PRECISION
   Japanese motorsport precision · instrument-cluster aesthetic
   ═══════════════════════════════════════════════════════════════ */

:root {
    /* ─── HONDA BRAND COLORS ─── */
    --honda-red:       #CC0000;
    --honda-red-deep:  #A30000;
    --honda-red-bright:#E4002B;
    --honda-red-glow:  rgba(228, 0, 43, 0.45);
    --honda-red-soft:  rgba(204, 0, 0, 0.08);

    /* ─── MONO / TECH PALETTE ─── */
    --piano-black:     #0A0A0A;
    --carbon:          #141518;
    --graphite:        #1F2025;
    --steel:           #3A3D44;
    --silver:          #B8BCC4;
    --silver-light:    #DDE0E5;
    --ice:             #F4F5F7;
    --white:           #FFFFFF;

    /* ─── TEXT ─── */
    --text-dark:       #0A0A0A;
    --text-mid:        #4A4F58;
    --text-light:      #8A8F98;

    /* ─── BORDERS ─── */
    --border:          #E5E7EB;
    --border-strong:   #D1D5DB;
    --border-dark:     #2A2D33;

    /* ─── RADIUS — sharp, sporty ─── */
    --r-xs: 2px;
    --r-sm: 4px;
    --r-md: 6px;
    --r-lg: 10px;

    /* ─── SHADOWS ─── */
    --sh-sm: 0 1px 2px rgba(10,10,10,.04), 0 1px 3px rgba(10,10,10,.06);
    --sh-md: 0 4px 14px rgba(10,10,10,.08), 0 2px 4px rgba(10,10,10,.04);
    --sh-lg: 0 16px 40px rgba(10,10,10,.12), 0 4px 10px rgba(10,10,10,.06);
    --sh-red: 0 12px 36px rgba(204,0,0,.22);
    --sh-red-soft: 0 8px 24px rgba(204,0,0,.12);

    /* ─── EASINGS ─── */
    --ease: cubic-bezier(.16, 1, .3, 1);
    --ease-spring: cubic-bezier(.34, 1.4, .64, 1);

    /* ─── TYPOGRAPHY ─── */
    --ff-display: 'Archivo', system-ui, sans-serif;
    --ff-body: 'Inter Tight', system-ui, sans-serif;
    --ff-mono: 'JetBrains Mono', 'Courier New', monospace;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--ff-body);
    background: var(--ice);
    color: var(--text-dark);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding-top: 64px;
    font-feature-settings: "ss01", "cv11";
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

::selection { background: var(--honda-red); color: var(--white); }

.mono { font-family: var(--ff-mono); font-weight: 500; letter-spacing: .02em; }

/* ═══════════════════════════════════════════════════════════════
   PROGRESS BAR
   ═══════════════════════════════════════════════════════════════ */
#progress-bar {
    position: fixed; top: 0; left: 0;
    height: 3px; width: 0%;
    background: linear-gradient(90deg, var(--honda-red), var(--honda-red-bright));
    z-index: 9999;
    transition: width .1s linear;
    box-shadow: 0 0 12px var(--honda-red-glow);
}

/* ═══════════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════════ */
nav#mainNav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    border-bottom: 1px solid var(--border);
    padding: .85rem 5%;
    display: flex; align-items: center; justify-content: space-between;
    transition: box-shadow .3s var(--ease), background .3s var(--ease), border-color .3s;
    width: 100%;
    height: 64px;
}
nav#mainNav.scrolled {
    box-shadow: 0 4px 24px rgba(10,10,10,.08);
    border-bottom-color: var(--border-strong);
}

.logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -.02em;
    color: var(--piano-black);
}
.logo-img { height: 28px; width: auto; display: block; }
.logo-text { display: inline-flex; line-height: 1; }
.logo-accent { color: var(--honda-red) !important; }

.nav-right { display: flex; align-items: center; gap: 12px; }

.nav-phone {
    display: flex; align-items: center; gap: 8px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: .85rem;
    padding: 8px 12px;
    border-radius: var(--r-sm);
    transition: background .2s, color .2s;
}
.nav-phone:hover { background: var(--honda-red-soft); color: var(--honda-red); }
.nav-phone svg { stroke: var(--honda-red); }
.phone-full { display: inline; }
.phone-short { display: none; }

.btn-nav {
    display: inline-flex; align-items: center;
    background: var(--piano-black);
    color: var(--white);
    padding: 10px 18px;
    border-radius: var(--r-sm);
    font-weight: 600;
    font-size: .85rem;
    letter-spacing: .01em;
    transition: all .2s var(--ease);
    position: relative;
    overflow: hidden;
}
.btn-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--honda-red);
    transform: translateX(-100%);
    transition: transform .3s var(--ease);
    z-index: 0;
}
.btn-nav span, .btn-nav { position: relative; z-index: 1; }
.btn-nav:hover::before { transform: translateX(0); }

@media (max-width: 640px) {
    nav#mainNav { padding: .75rem 4%; height: 60px; }
    .phone-full { display: none; }
    .phone-short { display: none; }
    .nav-phone {
        padding: 8px;
        border-radius: var(--r-sm);
        background: var(--honda-red-soft);
    }
    .nav-phone svg { stroke: var(--honda-red); width: 18px; height: 18px; }
    .btn-nav { padding: 9px 16px; font-size: .82rem; }
    .logo-text { font-size: 1.05rem; }
    .logo-img { height: 24px; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO — Power of Dreams
   ═══════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    background: var(--piano-black);
    color: var(--white);
    overflow: hidden;
    isolation: isolate;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 5% 6rem;
}

/* Interior background — tablet landscape & desktop only */
.hero-grid-bg {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* Red glow pools */
.hero-glow {
    position: absolute;
    top: 20%; left: -10%;
    width: 540px; height: 540px;
    background: radial-gradient(circle, var(--honda-red-glow) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
    will-change: transform;
}
.hero-glow-2 {
    position: absolute;
    bottom: -10%; right: -5%;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(228, 0, 43, .35) 0%, transparent 70%);
    filter: blur(70px);
    z-index: 0;
    pointer-events: none;
    will-change: transform;
}
.hero-glow-top {
    position: absolute;
    top: -100px; right: 20%;
    width: 240px; height: 240px;
    background: radial-gradient(circle, rgba(228, 0, 43, .25) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
}

/* Diagonal racing stripe — top right accent */
.hero-stripe {
    position: absolute;
    top: 0; right: 0;
    width: 320px; height: 8px;
    background: linear-gradient(90deg, transparent, var(--honda-red) 40%, var(--honda-red-bright));
    transform-origin: top right;
    z-index: 1;
    pointer-events: none;
}
.hero-stripe::after {
    content: '';
    position: absolute;
    top: 14px; right: 0;
    width: 180px; height: 3px;
    background: linear-gradient(90deg, transparent, var(--honda-red));
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* HERO TEXT COLUMN */
.hero-text-col { position: relative; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ff-mono);
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--silver);
    padding: 8px 14px;
    border: 1px solid var(--border-dark);
    border-radius: var(--r-sm);
    background: rgba(255,255,255,.02);
    margin-bottom: 1.75rem;
    animation: fadeUp .8s var(--ease) both;
}
.eyebrow-dot {
    width: 6px; height: 6px;
    background: var(--honda-red-bright);
    border-radius: 50%;
    box-shadow: 0 0 0 0 var(--honda-red-glow);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--honda-red-glow); }
    50% { box-shadow: 0 0 0 8px transparent; }
}

.hero h1 {
    font-family: var(--ff-display);
    font-size: clamp(2.5rem, 6.5vw, 5rem);
    font-weight: 800;
    line-height: .98;
    letter-spacing: -.025em;
    margin-bottom: 1.5rem;
    color: var(--white);
    animation: fadeUp .9s var(--ease) .1s both;
}
.hero h1 em {
    font-style: normal;
    color: var(--honda-red-bright);
    background: linear-gradient(135deg, var(--honda-red-bright), var(--honda-red));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}
.hero h1 em::after {
    content: '';
    position: absolute;
    left: 0; bottom: -6px;
    width: 100%; height: 3px;
    background: var(--honda-red);
}

.hero-tagline {
    display: flex; align-items: center; gap: 14px;
    margin: 1.5rem 0;
    animation: fadeUp .9s var(--ease) .2s both;
}
.tag-line {
    flex: 1; height: 1px;
    background: linear-gradient(90deg, transparent, var(--honda-red) 50%, transparent);
    max-width: 60px;
}
.tag-text {
    font-family: var(--ff-mono);
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--honda-red-bright);
}

.hero-sub {
    font-size: clamp(.95rem, 1.6vw, 1.1rem);
    color: var(--silver);
    line-height: 1.6;
    margin-bottom: 2.25rem;
    max-width: 540px;
    animation: fadeUp .9s var(--ease) .3s both;
}

.hero-cta {
    display: flex; flex-wrap: wrap; gap: 12px;
    margin-bottom: 3rem;
    animation: fadeUp .9s var(--ease) .4s both;
}

.btn-hero-primary, .btn-hero-outline {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 26px;
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .005em;
    border-radius: var(--r-sm);
    transition: all .25s var(--ease);
    position: relative;
    overflow: hidden;
}
.btn-hero-primary {
    background: linear-gradient(135deg, var(--honda-red), var(--honda-red-bright));
    color: var(--white);
    box-shadow: var(--sh-red);
}
.btn-hero-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--honda-red-bright), var(--honda-red-deep));
    opacity: 0;
    transition: opacity .25s;
}
.btn-hero-primary > * { position: relative; z-index: 1; }
.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 44px rgba(228,0,43,.35);
}
.btn-hero-primary:hover::before { opacity: 1; }

.btn-hero-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,.2);
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,.06);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* Scroll indicator */
.scroll-indicator {
    display: none;
    position: relative;
    align-items: center; gap: 12px;
    color: var(--silver);
    font-family: var(--ff-mono);
    font-size: .7rem;
    letter-spacing: .2em;
    margin-bottom: 2rem;
    width: fit-content;
    animation: fadeUp 1s var(--ease) .6s both;
}
@media (min-width: 900px) {
    .scroll-indicator { display: inline-flex; }
}
.scroll-line {
    width: 50px; height: 1px;
    background: linear-gradient(90deg, var(--honda-red), transparent);
    position: relative;
    overflow: hidden;
}
.scroll-line::after {
    content: '';
    position: absolute;
    top: -1px; left: 0;
    width: 14px; height: 3px;
    background: var(--honda-red-bright);
    box-shadow: 0 0 8px var(--honda-red-glow);
    animation: scrollBeam 2.4s ease-in-out infinite;
}
@keyframes scrollBeam {
    0% { left: -20%; opacity: 0; }
    50% { opacity: 1; }
    100% { left: 110%; opacity: 0; }
}

/* HUD-style stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border-dark);
    border: 1px solid var(--border-dark);
    border-radius: var(--r-sm);
    overflow: hidden;
    animation: fadeUp 1s var(--ease) .5s both;
    max-width: 640px;
}
.hero-stat {
    background: rgba(20, 21, 24, .85);
    backdrop-filter: blur(8px);
    padding: 18px 14px;
    position: relative;
    transition: background .3s;
}
.hero-stat:hover { background: var(--carbon); }
.stat-bracket {
    position: absolute;
    top: 8px; left: 8px;
    width: 10px; height: 10px;
    border-top: 1px solid var(--honda-red-bright);
    border-left: 1px solid var(--honda-red-bright);
}
.hero-stat::after {
    content: '';
    position: absolute;
    bottom: 8px; right: 8px;
    width: 10px; height: 10px;
    border-bottom: 1px solid var(--honda-red-bright);
    border-right: 1px solid var(--honda-red-bright);
}
.hero-stat h4 {
    font-family: var(--ff-mono);
    font-size: clamp(1.1rem, 2.2vw, 1.6rem);
    font-weight: 600;
    color: var(--white);
    letter-spacing: -.01em;
    margin-bottom: 4px;
    line-height: 1;
}
.hero-stat p {
    font-size: .68rem;
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: .08em;
    line-height: 1.3;
}

/* HERO IMAGE COLUMN */
.hero-img-col {
    position: relative;
    aspect-ratio: 4 / 3;
    animation: fadeIn 1s var(--ease) .3s both;
}
.hero-img-glow {
    position: absolute;
    inset: 10%;
    background: radial-gradient(ellipse at center, var(--honda-red-glow) 0%, transparent 60%);
    filter: blur(40px);
    z-index: 0;
}
.hero-img-frame {
    position: relative;
    z-index: 2;
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
}
.hero-car-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 32px rgba(0,0,0,.5));
    transition: transform 1.2s var(--ease);
}
.hero-img-col picture.in-view .hero-car-img,
.hero-img-col .in-view .hero-car-img { transform: scale(1.02); }

/* Image fallback */
.hero-img-placeholder {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 12px;
    width: 100%; height: 100%;
    color: var(--silver);
    border: 1px dashed var(--border-dark);
    border-radius: var(--r-md);
}
.hero-img-placeholder svg { width: 70%; max-width: 280px; opacity: .5; }
.hero-img-placeholder span {
    font-family: var(--ff-mono);
    font-size: .8rem;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.hero-img-tag {
    position: absolute;
    bottom: -1px; right: 0;
    z-index: 3;
}
.img-tag-name {
    display: inline-flex;
    align-items: center;
    font-family: var(--ff-display);
    font-size: .95rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: .2em;
    text-transform: uppercase;
    background: rgba(10,10,10,.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.1);
    border-left: 3px solid var(--honda-red-bright);
    border-radius: 0 0 var(--r-xs) 0;
    padding: 9px 16px 9px 13px;
}

/* Hero divider */
.hero-divider {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--honda-red), transparent);
    z-index: 3;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 900px) {
    .hero { padding: 3rem 5% 4rem; min-height: auto; }
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .hero-img-col { order: -1; aspect-ratio: 16/8; max-width: 560px; margin: 0 auto; }
    .hero-stats { max-width: 100%; grid-column: 1; }
    .hero-img-tag { font-size: .9em; }
}
@media (max-width: 480px) {
    .hero-cta { flex-direction: column; }
    .btn-hero-primary, .btn-hero-outline { width: 100%; justify-content: center; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .hero-stripe { width: 200px; }
}

/* ═══════════════════════════════════════════════════════════════
   FORM CARD
   ═══════════════════════════════════════════════════════════════ */
.form-wrap {
    max-width: 760px;
    margin: -3rem auto 0;
    padding: 0 5%;
    position: relative;
    z-index: 10;
}
.form-card {
    background: var(--white);
    border-radius: var(--r-md);
    padding: 2.5rem 2rem 2rem;
    box-shadow: var(--sh-lg);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
}
.form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--honda-red), var(--honda-red-bright), var(--honda-red));
}

.form-loading {
    display: none;
    position: absolute; inset: 0;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(8px);
    z-index: 5;
    flex-direction: column; align-items: center; justify-content: center;
    gap: 16px;
}
.form-loading p { color: var(--text-mid); font-size: .9rem; font-weight: 600; }

.spinner {
    width: 40px; height: 40px;
    border: 3px solid var(--ice);
    border-top-color: var(--honda-red);
    border-right-color: var(--honda-red);
    border-radius: 50%;
    animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form-card-header { text-align: center; margin-bottom: 1.5rem; }
.form-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--honda-red-soft);
    color: var(--honda-red);
    font-family: var(--ff-mono);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: var(--r-sm);
    margin-bottom: 1rem;
}
.dot-pulse {
    width: 6px; height: 6px;
    background: var(--honda-red);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
.form-card-header h2 {
    font-family: var(--ff-display);
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin-bottom: .5rem;
}
.form-card-header h2 em {
    font-style: normal;
    color: var(--honda-red);
}
.form-card-header p { color: var(--text-mid); font-size: .92rem; }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
    font-size: .78rem;
    font-weight: 600;
    color: var(--text-mid);
    letter-spacing: .01em;
}
.form-group input, .form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    font-size: .95rem;
    background: var(--white);
    color: var(--text-dark);
    transition: border-color .2s, box-shadow .2s, background .2s;
}
.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--honda-red);
    box-shadow: 0 0 0 3px var(--honda-red-soft);
    background: #FFFAFA;
}
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3e%3cpath fill='none' stroke='%234A4F58' stroke-width='1.8' d='M2 4l4 4 4-4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.btn-submit {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: var(--piano-black);
    color: var(--white);
    border-radius: var(--r-sm);
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .005em;
    transition: all .25s var(--ease);
    position: relative;
    overflow: hidden;
    margin-top: 6px;
}
.btn-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--honda-red), var(--honda-red-bright));
    transform: translateX(-101%);
    transition: transform .35s var(--ease);
}
.btn-submit > * { position: relative; z-index: 1; }
.btn-submit:hover::before { transform: translateX(0); }
.btn-submit:hover {
    box-shadow: var(--sh-red);
    transform: translateY(-1px);
}

.form-trust {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px dashed var(--border);
}
.trust-item {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .78rem;
    color: var(--text-mid);
    font-weight: 500;
}
.trust-item svg { color: var(--honda-red); flex-shrink: 0; }

@media (max-width: 600px) {
    .form-card { padding: 2rem 1.25rem 1.5rem; }
    .form-grid { grid-template-columns: 1fr; }
    .form-trust { gap: 10px; }
    .trust-item { font-size: .72rem; }
}

/* ═══════════════════════════════════════════════════════════════
   SECTION SHELL
   ═══════════════════════════════════════════════════════════════ */
.section { padding: 6rem 5%; position: relative; }
.section.bg-white { background: var(--white); }
.section.bg-light { background: var(--ice); }
.section.bg-gray { background: #F8F9FB; }
.section.bg-dark { background: var(--piano-black); color: var(--white); }
.section-inner { max-width: 1280px; margin: 0 auto; }

.section-header-center {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem;
}
.s-tag {
    display: inline-block;
    font-family: var(--ff-mono);
    font-size: .75rem;
    font-weight: 600;
    color: var(--honda-red);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.s-tag.dark { color: var(--honda-red-bright); }
.s-title {
    font-family: var(--ff-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.025em;
    margin-bottom: 1rem;
    color: var(--text-dark);
}
.s-title.light { color: var(--white); }
.s-title em {
    font-style: normal;
    color: var(--honda-red);
}
.s-title.light em { color: var(--honda-red-bright); }
.s-sub {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.6;
}
.s-sub.light { color: var(--silver); }

@media (max-width: 768px) {
    .section { padding: 4rem 5%; }
    .section-header-center { margin-bottom: 2.5rem; }
}

/* ═══════════════════════════════════════════════════════════════
   PROFILE
   ═══════════════════════════════════════════════════════════════ */
.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 4rem;
    align-items: center;
}
.profile-img-col {
    position: relative;
    max-width: 460px;
}
.profile-accent {
    position: absolute;
    top: 30px; left: -20px;
    width: 70%; height: 70%;
    background: linear-gradient(135deg, var(--honda-red), var(--honda-red-bright));
    border-radius: var(--r-md);
    z-index: 0;
    transform: rotate(-2deg);
    opacity: .9;
}
.profile-corner-mark {
    position: absolute;
    top: -8px; right: 8px;
    z-index: 3;
    display: flex; flex-direction: column;
    background: var(--piano-black);
    color: var(--silver);
    padding: 6px 10px;
    border-radius: var(--r-xs);
    line-height: 1.3;
}
.profile-corner-mark .mono:first-child { font-size: .58rem; opacity: .6; letter-spacing: .15em; }
.profile-corner-mark .mono:last-child { font-size: .8rem; color: var(--white); font-weight: 600; }

.profile-img-frame {
    position: relative;
    z-index: 1;
    aspect-ratio: 4/5;
    border-radius: var(--r-md);
    overflow: hidden;
    background: var(--ice);
    border: 1px solid var(--border);
    box-shadow: var(--sh-lg);
}
.profile-img-frame img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.profile-img-frame.no-img {
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--ice), var(--silver-light));
}
.profile-img-frame.no-img::before {
    content: '👤';
    font-size: 4rem;
    opacity: .3;
}

.profile-badge-float {
    position: absolute;
    bottom: 16px; left: 16px;
    background: var(--white);
    padding: 10px 14px;
    border-radius: var(--r-sm);
    box-shadow: var(--sh-md);
    display: flex; align-items: center; gap: 10px;
    border-left: 3px solid var(--honda-red);
}
.badge-icon {
    width: 32px; height: 32px;
    background: var(--honda-red-soft);
    color: var(--honda-red);
    border-radius: var(--r-xs);
    display: flex; align-items: center; justify-content: center;
}
.badge-text { line-height: 1.2; }
.badge-text strong { font-size: .82rem; display: block; color: var(--text-dark); }
.badge-text span { font-size: .68rem; color: var(--text-mid); }

.profile-content { }
.profile-designation {
    margin-bottom: 1rem;
}
.profile-designation .mono {
    font-size: .72rem;
    color: var(--honda-red);
    letter-spacing: .15em;
    text-transform: uppercase;
}
.profile-content h2 {
    font-family: var(--ff-display);
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.025em;
    margin-bottom: 1.25rem;
}
.profile-content h2 em {
    font-style: normal;
    color: var(--honda-red);
}
.profile-content p {
    color: var(--text-mid);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.profile-signature {
    display: flex; align-items: center; gap: 14px;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}
.sig-mark {
    font-family: var(--ff-display);
    font-size: 2rem;
    color: var(--honda-red);
    line-height: 1;
}
.sig-text {
    font-size: .92rem;
    line-height: 1.3;
}
.sig-text em { color: var(--text-mid); font-style: normal; font-size: .82rem; }

.profile-cta-row { margin-top: 1.5rem; }
.btn-profile-wa {
    display: inline-flex; align-items: center; gap: 10px;
    background: #25D366;
    color: var(--white);
    padding: 12px 22px;
    border-radius: var(--r-sm);
    font-weight: 600;
    font-size: .9rem;
    transition: all .25s var(--ease);
    box-shadow: 0 4px 14px rgba(37,211,102,.25);
}
.btn-profile-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(37,211,102,.35);
}

@media (max-width: 900px) {
    .profile-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .profile-img-col { max-width: 360px; margin: 0 auto; }
}

/* ═══════════════════════════════════════════════════════════════
   USP — Honda DNA (dark section)
   ═══════════════════════════════════════════════════════════════ */
.bg-dark {
    position: relative;
    overflow: hidden;
}
.bg-dark::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}
.bg-dark::after {
    content: '';
    position: absolute;
    bottom: -20%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(228,0,43,.12) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}
.bg-dark .section-inner { position: relative; z-index: 2; }

.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.usp-card {
    position: relative;
    background: var(--carbon);
    border: 1px solid var(--border-dark);
    border-radius: var(--r-md);
    padding: 1.75rem 1.5rem 1.5rem;
    transition: all .35s var(--ease);
    overflow: hidden;
    /* Sharp clipped corner for sporty feel */
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}
.usp-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--honda-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease);
}
.usp-card:hover {
    transform: translateY(-6px);
    border-color: rgba(204, 0, 0, .3);
    background: #1A1B1F;
}
.usp-card:hover::before { transform: scaleX(1); }

.usp-num {
    font-family: var(--ff-mono);
    font-size: .8rem;
    color: var(--honda-red-bright);
    letter-spacing: .15em;
    margin-bottom: 1.25rem;
}
.usp-icon {
    width: 56px; height: 56px;
    color: var(--white);
    margin-bottom: 1.25rem;
    display: flex; align-items: center; justify-content: center;
    background: rgba(228, 0, 43, .08);
    border: 1px solid rgba(228, 0, 43, .2);
    border-radius: var(--r-sm);
    transition: all .3s;
}
.usp-card:hover .usp-icon {
    background: var(--honda-red);
    border-color: var(--honda-red);
    color: var(--white);
}
.usp-icon svg { width: 28px; height: 28px; }
.f-body h3 {
    font-family: var(--ff-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .5rem;
    letter-spacing: -.01em;
}
.f-body p {
    font-size: .88rem;
    color: var(--silver);
    line-height: 1.55;
}

.usp-corner {
    position: absolute;
    top: 12px; right: 12px;
    width: 8px; height: 8px;
    border-top: 1px solid var(--honda-red-bright);
    border-right: 1px solid var(--honda-red-bright);
    opacity: .5;
    transition: opacity .3s;
}
.usp-card:hover .usp-corner { opacity: 1; }

@media (max-width: 1024px) {
    .usp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .usp-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   MODELS GRID
   ═══════════════════════════════════════════════════════════════ */
.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.model-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: all .35s var(--ease);
}
.model-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
    border-color: var(--honda-red);
}

.model-card-featured {
    border-color: var(--honda-red);
    box-shadow: var(--sh-red-soft);
}
.model-card-featured::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--honda-red), var(--honda-red-bright));
    z-index: 2;
}

.model-promo {
    position: absolute;
    top: 14px; right: 14px;
    z-index: 3;
    background: var(--piano-black);
    color: var(--white);
    font-family: var(--ff-mono);
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .12em;
    padding: 5px 9px;
    border-radius: var(--r-xs);
}
.model-promo.featured {
    background: var(--honda-red);
    animation: hot 1.6s ease-in-out infinite;
}
@keyframes hot {
    0%, 100% { box-shadow: 0 0 0 0 var(--honda-red-glow); }
    50% { box-shadow: 0 0 0 6px transparent; }
}

.model-img-wrap {
    position: relative;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--ice), var(--silver-light));
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.model-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
    position: relative;
    z-index: 1;
}
.model-card:hover .model-img-wrap img { transform: scale(1.06); }

.model-img-fallback {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--ice), var(--silver-light));
    z-index: 0;
}
.model-img-fallback span {
    font-family: var(--ff-mono);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: .15em;
}

.model-body { padding: 1.25rem 1.25rem 1.5rem; }
.model-cat {
    font-size: .68rem;
    color: var(--text-light);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: .5rem;
}
.model-body h3 {
    font-family: var(--ff-display);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -.015em;
}

.model-price {
    display: flex; flex-direction: column;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px dashed var(--border);
}
.price-label {
    font-size: .72rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 2px;
}
.price-amt {
    font-family: var(--ff-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--honda-red);
    letter-spacing: -.01em;
}

.model-btn-row {
    display: flex;
    gap: 8px;
    align-items: stretch;
}
.model-btn-row .btn-model {
    flex: 1;
}
.btn-detail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 14px;
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid var(--border-strong);
    border-radius: var(--r-sm);
    font-weight: 600;
    font-size: .82rem;
    white-space: nowrap;
    transition: all .25s var(--ease);
    text-decoration: none;
    flex-shrink: 0;
}
.btn-detail:hover {
    border-color: var(--honda-red);
    color: var(--honda-red);
    background: var(--honda-red-soft);
}
    width: 100%;
    padding: 11px 14px;
    background: var(--piano-black);
    color: var(--white);
    border-radius: var(--r-sm);
    font-weight: 600;
    font-size: .85rem;
    transition: all .25s var(--ease);
}
.btn-model:hover {
    background: var(--honda-red);
}
.btn-model svg { transition: transform .25s; }
.btn-model:hover svg { transform: translateX(4px); }

@media (max-width: 900px) {
    .models-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .model-body h3 { font-size: 1.2rem; }
    .price-amt { font-size: 1.2rem; }
}
@media (max-width: 520px) {
    .models-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   PROCESS TIMELINE
   ═══════════════════════════════════════════════════════════════ */
.process-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.process-bg-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(204,0,0,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(204,0,0,.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 1;
    mask-image: radial-gradient(ellipse at center, black, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 70%);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    position: relative;
}
.process-timeline::before {
    content: '';
    position: absolute;
    top: 38px; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--honda-red), var(--honda-red-bright), var(--honda-red));
    z-index: 0;
    opacity: .25;
}
.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
}
.process-num {
    width: 76px; height: 76px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
    background: var(--white);
    border: 2px solid var(--honda-red);
    color: var(--honda-red);
    font-family: var(--ff-mono);
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: var(--r-sm);
    transition: all .3s var(--ease);
    position: relative;
}
.process-step:hover .process-num {
    background: var(--honda-red);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: var(--sh-red);
}
.process-content { padding: 0 4px; }
.process-icon {
    color: var(--text-light);
    width: 36px; height: 36px;
    margin: 0 auto .75rem;
    transition: color .3s;
}
.process-step:hover .process-icon { color: var(--honda-red); }
.process-icon svg { width: 100%; height: 100%; }
.process-content h3 {
    font-family: var(--ff-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: .4rem;
    letter-spacing: -.01em;
}
.process-content p {
    font-size: .85rem;
    color: var(--text-mid);
    line-height: 1.55;
}

@media (max-width: 1024px) {
    .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .process-timeline::before { display: none; }
}
@media (max-width: 480px) {
    .process-timeline { grid-template-columns: 1fr; gap: 28px; }
    .process-num { width: 64px; height: 64px; font-size: 1.3rem; }
}

/* ═══════════════════════════════════════════════════════════════
   CALCULATOR
   ═══════════════════════════════════════════════════════════════ */
.calc-section {
    background: var(--piano-black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.calc-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}
.calc-section::after {
    content: '';
    position: absolute;
    top: 30%; left: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(228,0,43,.15) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}
.calc-section .section-inner { position: relative; z-index: 2; }

.calc-shell {
    background: var(--carbon);
    border: 1px solid var(--border-dark);
    border-radius: var(--r-md);
    padding: 2rem;
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.calc-shell::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--honda-red-bright), transparent);
}

.calc-models { margin-bottom: 2rem; }
.calc-models-label {
    display: block;
    font-size: .72rem;
    color: var(--silver);
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.calc-model-list {
    display: flex; flex-wrap: wrap; gap: 8px;
}
.calc-model-btn {
    padding: 10px 16px;
    background: transparent;
    border: 1px solid var(--border-dark);
    color: var(--silver);
    border-radius: var(--r-sm);
    font-weight: 600;
    font-size: .85rem;
    transition: all .2s var(--ease);
    font-family: var(--ff-body);
}
.calc-model-btn:hover {
    border-color: var(--honda-red);
    color: var(--white);
}
.calc-model-btn.active {
    background: var(--honda-red);
    border-color: var(--honda-red);
    color: var(--white);
    box-shadow: var(--sh-red-soft);
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.calc-controls { display: flex; flex-direction: column; gap: 1.5rem; }
.calc-row { }
.calc-label-row {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: 8px;
}
.calc-label-row label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--silver-light);
}
.calc-val {
    font-size: .95rem;
    color: var(--honda-red-bright);
    font-weight: 600;
}
.calc-row input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    height: 24px;
    cursor: pointer;
}
.calc-row input[type="range"]::-webkit-slider-runnable-track {
    height: 4px;
    background: var(--graphite);
    border-radius: 2px;
}
.calc-row input[type="range"]::-moz-range-track {
    height: 4px;
    background: var(--graphite);
    border-radius: 2px;
}
.calc-row input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--honda-red);
    margin-top: -7px;
    box-shadow: 0 0 0 4px rgba(228,0,43,.2);
    cursor: pointer;
    transition: transform .15s;
    border: 2px solid var(--white);
}
.calc-row input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-row input[type="range"]::-moz-range-thumb {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--honda-red);
    box-shadow: 0 0 0 4px rgba(228,0,43,.2);
    cursor: pointer;
    border: 2px solid var(--white);
}

.calc-display {
    background: var(--piano-black);
    border: 1px solid var(--border-dark);
    border-radius: var(--r-sm);
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
}
.calc-display::before {
    content: '';
    position: absolute;
    top: 12px; left: 12px;
    width: 12px; height: 12px;
    border-top: 1px solid var(--honda-red-bright);
    border-left: 1px solid var(--honda-red-bright);
}
.calc-display::after {
    content: '';
    position: absolute;
    bottom: 12px; right: 12px;
    width: 12px; height: 12px;
    border-bottom: 1px solid var(--honda-red-bright);
    border-right: 1px solid var(--honda-red-bright);
}

.calc-disp-tag {
    font-size: .68rem;
    color: var(--silver);
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.calc-monthly {
    display: flex; align-items: baseline; gap: 6px;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-dark);
}
.calc-monthly .rm {
    font-family: var(--ff-mono);
    font-size: 1rem;
    color: var(--silver);
}
.calc-monthly #calcMonthly {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 6vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.025em;
    line-height: 1;
}
.calc-monthly .per {
    font-size: 1rem;
    color: var(--silver);
}

.calc-detail { display: flex; flex-direction: column; gap: 8px; }
.cd-row {
    display: flex; justify-content: space-between;
    font-size: .82rem;
    padding: 4px 0;
}
.cd-row > span:first-child { color: var(--silver); }
.cd-row > span:last-child { color: var(--white); }
.cd-row strong { color: var(--honda-red-bright) !important; font-weight: 600; }

.btn-calc-wa {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%;
    margin-top: 1.5rem;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--honda-red), var(--honda-red-bright));
    color: var(--white);
    border-radius: var(--r-sm);
    font-weight: 700;
    font-size: .92rem;
    transition: all .25s var(--ease);
}
.btn-calc-wa:hover {
    transform: translateY(-2px);
    box-shadow: var(--sh-red);
}

.calc-note {
    font-size: .68rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 12px;
    letter-spacing: .05em;
}

@media (max-width: 768px) {
    .calc-shell { padding: 1.5rem 1.25rem; }
    .calc-grid { grid-template-columns: 1fr; gap: 1.75rem; }
    .calc-display { padding: 1.5rem 1.25rem; }
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.testi-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 1.75rem 1.5rem;
    position: relative;
    transition: all .3s var(--ease);
}
.testi-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-md);
    border-color: var(--honda-red);
}
.testi-card::before {
    content: '"';
    position: absolute;
    top: 8px; right: 16px;
    font-family: var(--ff-display);
    font-size: 4rem;
    line-height: 1;
    color: var(--honda-red-soft);
    font-weight: 800;
}
.testi-stars {
    color: var(--honda-red);
    font-size: .95rem;
    letter-spacing: .15em;
    margin-bottom: 1rem;
}
.testi-quote {
    color: var(--text-dark);
    font-size: .92rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.testi-author {
    display: flex; align-items: center; gap: 12px;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}
.testi-avatar {
    width: 40px; height: 40px;
    border-radius: var(--r-xs);
    background: linear-gradient(135deg, var(--honda-red), var(--honda-red-bright));
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: .85rem;
}
.testi-info { line-height: 1.3; }
.testi-info strong { display: block; font-size: .9rem; }
.testi-info span { font-size: .76rem; color: var(--text-light); }

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

/* ═══════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}
.faq-item:hover { border-color: var(--border-strong); }
.faq-item.open {
    border-color: var(--honda-red);
    box-shadow: var(--sh-red-soft);
}

.faq-q {
    width: 100%;
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 20px;
    text-align: left;
    font-size: .98rem;
    font-weight: 600;
    color: var(--text-dark);
    background: transparent;
    transition: color .2s;
}
.faq-q:hover { color: var(--honda-red); }

.faq-icon {
    flex-shrink: 0;
    width: 24px; height: 24px;
    position: relative;
    transition: transform .3s var(--ease);
}
.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background: var(--honda-red);
    border-radius: 1px;
}
.faq-icon::before {
    top: 50%; left: 50%;
    width: 14px; height: 2px;
    transform: translate(-50%, -50%);
}
.faq-icon::after {
    top: 50%; left: 50%;
    width: 2px; height: 14px;
    transform: translate(-50%, -50%);
    transition: transform .3s var(--ease);
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease);
}
.faq-a p {
    padding: 0 20px 18px;
    color: var(--text-mid);
    font-size: .92rem;
    line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════════════ */
.final-cta {
    background: var(--piano-black);
    color: var(--white);
    text-align: center;
    padding: 5rem 5%;
    position: relative;
    overflow: hidden;
}
.final-cta-bg {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.final-cta::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 720px; height: 720px;
    background: radial-gradient(circle, var(--honda-red-glow) 0%, transparent 65%);
    filter: blur(80px);
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.final-cta .section-inner { position: relative; z-index: 2; max-width: 720px; }
.final-cta-eyebrow .mono {
    font-size: .8rem;
    color: var(--honda-red-bright);
    letter-spacing: .2em;
    text-transform: uppercase;
}
.final-cta h2 {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 6vw, 3.6rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.025em;
    margin: 1rem 0 1rem;
}
.final-cta h2 em {
    font-style: normal;
    color: var(--honda-red-bright);
}
.final-cta p {
    font-size: 1.05rem;
    color: var(--silver);
    margin-bottom: 2rem;
}
.final-cta-row {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
}
.btn-final-primary, .btn-final-outline {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 18px 30px;
    border-radius: var(--r-sm);
    font-weight: 700;
    font-size: 1rem;
    transition: all .25s var(--ease);
}
.btn-final-primary {
    background: linear-gradient(135deg, var(--honda-red), var(--honda-red-bright));
    color: var(--white);
    box-shadow: var(--sh-red);
}
.btn-final-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 48px rgba(228,0,43,.4);
}
.btn-final-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,.2);
}
.btn-final-outline:hover {
    background: rgba(255,255,255,.06);
    border-color: var(--white);
}

@media (max-width: 480px) {
    .btn-final-primary, .btn-final-outline { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
footer {
    background: #050505;
    color: var(--silver);
    padding: 4rem 5% 1.5rem;
    border-top: 1px solid var(--border-dark);
}
.footer-grid {
    max-width: 1280px;
    margin: 0 auto 2.5rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}
.footer-brand h3 {
    font-family: var(--ff-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    margin: 1rem 0 .25rem;
    letter-spacing: -.01em;
}
.footer-logo-img { height: 28px; width: auto; }
.footer-brand .desg {
    color: var(--honda-red-bright);
    font-family: var(--ff-mono);
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 1rem;
}
.footer-brand p {
    font-size: .9rem;
    line-height: 1.6;
    color: var(--silver);
    max-width: 380px;
    margin-bottom: 1.5rem;
}

.socials { display: flex; gap: 10px; }
.social-btn {
    width: 36px; height: 36px;
    background: var(--graphite);
    color: var(--silver);
    border-radius: var(--r-xs);
    display: flex; align-items: center; justify-content: center;
    transition: all .25s var(--ease);
}
.social-btn svg { width: 16px; height: 16px; }
.social-btn:hover {
    background: var(--honda-red);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: var(--ff-display);
    font-size: .85rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 1rem;
    font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; font-size: .88rem; }
.footer-col a { color: var(--silver); transition: color .2s; }
.footer-col a:hover { color: var(--honda-red-bright); }

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-dark);
    font-size: .78rem;
    color: var(--text-light);
}
.footer-bottom p { margin-bottom: 6px; }
.disclaimer { line-height: 1.5; }
.disclaimer strong { color: var(--silver); }

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ═══════════════════════════════════════════════════════════════
   STICKY CTA — Mobile
   ═══════════════════════════════════════════════════════════════ */
.sticky-cta {
    position: fixed;
    bottom: 12px; left: 12px; right: 12px;
    z-index: 998;
    display: flex; gap: 8px;
    transform: translateY(120%);
    opacity: 0;
    transition: transform .35s var(--ease), opacity .35s;
    padding-bottom: env(safe-area-inset-bottom);
}
.sticky-cta.show {
    transform: translateY(0);
    opacity: 1;
}
.sticky-call, .sticky-wa {
    flex: 1;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 16px;
    border-radius: var(--r-sm);
    font-weight: 700;
    font-size: .92rem;
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
    transition: transform .15s;
}
.sticky-call {
    background: var(--piano-black);
    color: var(--white);
    flex: 0 0 auto;
    width: 56px;
    padding: 14px;
}
.sticky-call span { display: none; }
.sticky-wa {
    background: linear-gradient(135deg, var(--honda-red), var(--honda-red-bright));
    color: var(--white);
}
.sticky-call:active, .sticky-wa:active { transform: scale(.97); }

@media (min-width: 1024px) {
    .sticky-cta { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════════════ */
.reveal, .reveal-left, .reveal-right {
    opacity: 0;
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal { transform: translateY(30px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Stagger children */
.stagger-grid > *, .features-grid > *, .models-grid > *, .process-timeline > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.stagger-grid > *.stagger-in, .features-grid > *.stagger-in,
.models-grid > *.stagger-in, .process-timeline > *.stagger-in {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   ACCESSIBILITY
   ═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
    .reveal, .reveal-left, .reveal-right,
    .stagger-grid > *, .features-grid > *, .models-grid > *, .process-timeline > * {
        opacity: 1;
        transform: none;
    }
}

button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible {
    outline: 2px solid var(--honda-red);
    outline-offset: 2px;
}

/* iOS form zoom prevention */
@supports (-webkit-touch-callout: none) {
    .form-group input, .form-group select, .calc-row input { font-size: 16px; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO — LANDSCAPE & DESKTOP OVERRIDE
   Must be LAST to override all base hero styles above
   ═══════════════════════════════════════════════════════════════ */
@media (min-width: 768px) and (orientation: landscape) {

    /* Interior background */
    .hero {
        background:
            linear-gradient(
                105deg,
                rgba(8, 8, 8, 0.95) 0%,
                rgba(8, 8, 8, 0.85) 48%,
                rgba(8, 8, 8, 0.35) 100%
            ),
            url('assets/hero-interior.webp') center center / cover no-repeat;
        padding: 5rem 6% 4rem;
        min-height: 100vh;
        min-height: 100svh;
        justify-content: center;
        align-items: stretch;
    }

    /* Hide car image */
    .hero-img-col { display: none; }

    /* hero-inner: text stretches full height, stats pins to bottom */
    .hero-inner {
        grid-template-columns: 1fr 340px;
        gap: 3rem;
        align-items: stretch;
    }

    /* Text col — flex, natural flow */
    .hero-text-col {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-eyebrow   { margin-bottom: 1rem; font-size: .8rem; }
    .hero h1        { font-size: clamp(2.4rem, 4vw, 3.6rem); line-height: 1.05; margin-bottom: 1rem; }
    .hero h1 em::after { bottom: -4px; }
    .hero-tagline   { margin: .75rem 0 1rem; }
    .hero-sub       { font-size: 1rem; line-height: 1.6; margin-bottom: 1.5rem; max-width: 520px; }
    .scroll-indicator { display: none; }

    /* CTA — single row */
    .hero-cta {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 12px;
        margin-bottom: 0;
    }
    .btn-hero-primary,
    .btn-hero-outline {
        padding: 14px 22px;
        font-size: .9rem;
    }

    /* Stats — bottom right, aligns with sub text & buttons */
    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2px;
        background: var(--border-dark);
        border: 1px solid var(--border-dark);
        border-radius: var(--r-sm);
        opacity: 1;
        transform: none;
        animation: none;
        align-self: end;
        max-width: 100%;
    }

    .hero-stat        { padding: 22px 18px; }
    .hero-stat h4     { font-size: 1.8rem; margin-bottom: 6px; }
    .hero-stat p      { font-size: .72rem; }
}
