@font-face {
    font-family: "Nissan Brand";
    src: local("Nissan Brand");
    font-display: swap;
}

:root {
    --background: #ffffff;
    --foreground: #111111;
    --brand: #c3002f;
    --brand-dark: #990026;
    --brand-foreground: #ffffff;
    --surface-2: #f7f7f7;
    --surface-soft: #efefef;
    --border: #d6d6d6;
    --ink-soft: #585858;
    --shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
    --radius: 6px;
    --container: 1184px;
    --font-brand: "Nissan Brand", "Helvetica Neue", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 92% 8%, rgba(195, 0, 47, 0.1), transparent 22rem),
        var(--background);
    color: var(--foreground);
    font-family: var(--font-brand);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.admin-bar .site-header {
    top: 32px;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

.narrow {
    max-width: 832px;
}

.section {
    padding: 88px 0;
}

.site-shell {
    min-height: 100vh;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid transparent;
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(14px);
    transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.9);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 72px;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    flex: 0 0 auto;
}

.nissan-mark {
    display: inline-flex;
    flex: 0 0 92px;
    align-items: center;
    justify-content: center;
    width: 92px;
    min-width: 92px;
    min-height: 38px;
    padding: 8px 0;
}

.nissan-mark img {
    width: 92px;
    height: auto;
}

.brand-divider {
    width: 1px;
    height: 38px;
    background: var(--border);
}

.brand-text {
    display: grid;
    gap: 1px;
    line-height: 1.1;
}

.brand-text strong {
    font-size: 14px;
    font-weight: 760;
    letter-spacing: 0;
}

.brand-text small {
    color: var(--ink-soft);
    font-size: 10px;
    font-weight: 760;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.desktop-nav a {
    color: var(--ink-soft);
    font-size: 13px;
    font-weight: 650;
    transition: color 160ms ease;
}

.desktop-nav a:hover {
    color: var(--foreground);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #ffffff;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--foreground);
}

.mobile-nav {
    display: grid;
    gap: 4px;
    border-top: 1px solid var(--border);
    padding: 12px 16px 16px;
    background: #ffffff;
}

.mobile-nav a:not(.button) {
    padding: 8px 0;
    font-weight: 650;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    padding: 0 26px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 760;
    letter-spacing: 0.01em;
    line-height: 1.1;
    text-align: center;
    transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: var(--brand);
    color: var(--brand-foreground);
}

.button-primary:hover {
    background: var(--brand-dark);
}

.button-outline {
    border-color: var(--foreground);
    color: var(--foreground);
    background: transparent;
}

.button-outline:hover {
    background: var(--foreground);
    color: #ffffff;
}

.button-small {
    min-height: 40px;
    padding-inline: 20px;
}

.hero {
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    padding: 70px 0 86px;
}

.hero-grid,
.split-grid,
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
}

.hero-copy h1 {
    margin: 20px 0 0;
    max-width: 690px;
    font-size: clamp(42px, 5.1vw, 64px);
    font-family: var(--font-brand);
    font-weight: 760;
    line-height: 1.02;
    letter-spacing: 0;
}

.hero-copy h1 span {
    color: var(--ink-soft);
}

.lead {
    max-width: 620px;
    margin: 22px 0 0;
    color: var(--ink-soft);
    font-size: 17px;
}

.eyebrow,
.section-kicker,
.location-line {
    margin: 0;
    color: var(--brand);
    font-size: 12px;
    font-weight: 760;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 30px;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0 12px;
    background: var(--surface-2);
    color: var(--ink-soft);
    letter-spacing: 0;
    text-transform: none;
}

.eyebrow span {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--brand);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.microcopy,
.note,
.privacy-note {
    color: var(--ink-soft);
    font-size: 12px;
}

.microcopy {
    margin: 14px 0 0;
}

.intent-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 22px;
}

.intent-links a {
    color: var(--ink-soft);
    font-size: 13px;
    font-weight: 750;
    text-decoration: underline;
    text-decoration-color: rgba(102, 102, 102, 0.35);
    text-underline-offset: 4px;
}

.intent-links a:hover {
    color: var(--brand);
    text-decoration-color: currentColor;
}

.location-line {
    margin-top: 28px;
    color: var(--ink-soft);
}

.image-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 5 / 4;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface-2);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image {
    aspect-ratio: 16 / 10;
    background: var(--surface-2);
    box-shadow: var(--shadow);
    padding: 0;
}

.hero-image img {
    object-fit: cover;
    object-position: 50% 50%;
}


.section-heading {
    max-width: 680px;
    margin-bottom: 48px;
}

.section-heading h2,
.contact-section h2,
.split-grid h2,
.faq-section h2 {
    margin: 10px 0 0;
    font-size: clamp(32px, 4vw, 46px);
    font-family: var(--font-brand);
    font-weight: 760;
    line-height: 1.08;
    letter-spacing: 0;
}

.section-heading p:not(.section-kicker),
.split-grid p,
.contact-section p,
.faq-section > .container > p {
    color: var(--ink-soft);
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.model-card,
.benefit-card,
.tech-card,
.lead-form,
.test-drive-box {
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #ffffff;
}

.model-card {
    overflow: hidden;
    transition: box-shadow 160ms ease, transform 160ms ease;
}

.model-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.model-media {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    aspect-ratio: 4 / 3;
    background: #ffffff;
    padding: clamp(22px, 5vw, 56px);
}


.model-media img {
    width: auto;
    height: auto;
    max-width: min(100%, 600px);
    max-height: 220px;
    object-fit: contain;
}


.model-body {
    padding: 24px;
}

.model-body p {
    margin: 0;
    color: var(--brand);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.model-body h3 {
    margin: 7px 0 0;
    font-family: var(--font-brand);
    font-weight: 760;
    font-size: 21px;
    line-height: 1.2;
}

.model-body > span {
    display: block;
    margin-top: 8px;
    color: var(--ink-soft);
    font-size: 14px;
}

.model-body a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.1;
}

.model-body a span {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    transform: translateY(1px);
}

.section-muted {
    border-block: 1px solid var(--border);
    background: var(--surface-2);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.benefit-card,
.tech-card {
    padding: 26px;
}

.benefit-card strong {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(195, 0, 47, 0.1);
    color: var(--brand);
}

.benefit-card h3,
.tech-card h3,
.test-drive-box h3 {
    margin: 18px 0 0;
    font-family: var(--font-brand);
    font-weight: 760;
    font-size: 18px;
}

.benefit-card p,
.tech-card p {
    margin: 8px 0 0;
    color: var(--ink-soft);
    font-size: 14px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.tech-card {
    transition: border-color 160ms ease;
}

.tech-card:hover {
    border-color: rgba(195, 0, 47, 0.45);
}

.tech-card h3 {
    margin-top: 0;
    font-size: 22px;
}

.tech-card span {
    display: block;
    margin-top: 24px;
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-cta {
    margin-top: 36px;
}

.contact-section {
    background: var(--foreground);
    color: #ffffff;
}

.contact-section .section-kicker,
.contact-section .lead-form,
.contact-section .lead-form p,
.contact-section .lead-form label,
.contact-section .lead-form h3 {
    color: var(--foreground);
}

.contact-section > .container > div > p {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.78);
}

.test-drive-box {
    margin-top: 40px;
    padding: 26px;
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
}

.test-drive-box p,
.test-drive-box small {
    color: rgba(255, 255, 255, 0.76);
}

.lead-form {
    padding: 32px;
    box-shadow: var(--shadow);
}

.lead-form h3 {
    margin: 0;
    font-family: var(--font-brand);
    font-weight: 760;
    font-size: 26px;
    line-height: 1.2;
}

.lead-form > p {
    margin: 8px 0 0;
    color: var(--ink-soft);
    font-size: 14px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.form-grid label {
    display: grid;
    gap: 6px;
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.span-2 {
    grid-column: span 2;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
    width: 100%;
    min-height: 43px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #ffffff;
    color: var(--foreground);
    padding: 10px 12px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
}

.form-grid textarea {
    min-height: 92px;
    resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
    outline: 2px solid rgba(195, 0, 47, 0.28);
    border-color: var(--brand);
}

.lead-form .button {
    width: 100%;
    margin-top: 24px;
}

.privacy-note {
    margin-top: 16px;
}

.trap-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-alert {
    margin-top: 18px;
    border-radius: var(--radius);
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 700;
}

.form-alert-success {
    background: rgba(195, 0, 47, 0.1);
    color: var(--brand);
}

.form-alert-error {
    background: #fff0f0;
    color: #9f0027;
}

._form_1 {
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #ffffff;
    color: var(--foreground);
    padding: 32px;
    box-shadow: var(--shadow);
}

.contact-section ._form_1,
.contact-section ._form_1 p,
.contact-section ._form_1 label,
.contact-section ._form_1 h3 {
    color: var(--foreground);
}

._form_1 form {
    padding: 0 !important;
    margin: 0 !important;
}

._form_1 form ._form_element {
    position: relative;
    margin-bottom: 0px !important;
    max-width: 100%;
}

._form_1 p {
    margin: 0 !important;
}

._form_1 ._form-content,
._form_1 ._html-code,
._form_1 form {
    display: grid;
    gap: 0;
}

._form_1 ._form-title {
    margin: 0;
    font-family: var(--font-brand);
    font-size: 26px;
    font-weight: 760;
    line-height: 1.2;
}

._form_1 ._form-branding,
._form_1 ._form-thank-you {
    color: var(--ink-soft);
    font-size: 14px;
}

._form_1 ._form_element {
    margin-top: 10px;
}

._form_1 ._form_element label,
._form_1 ._html-code label,
._form_1 ._form-label {
    gap: 6px;
    margin: 0 0 6px;
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

._form_1 ._field-wrapper {
    width: 100%;
}

._form_1 input[type="text"],
._form_1 input[type="email"],
._form_1 input[type="tel"],
._form_1 input[type="number"],
._form_1 input[type="date"],
._form_1 input[type="search"],
._form_1 select,
._form_1 textarea {
    width: 100%;
    min-height: 43px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #ffffff;
    color: var(--foreground);
    padding: 10px 12px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    box-shadow: none;
}

._form_1 textarea {
    min-height: 92px;
    resize: vertical;
}

._form_1 input:focus,
._form_1 select:focus,
._form_1 textarea:focus {
    outline: 2px solid rgba(195, 0, 47, 0.28);
    border-color: var(--brand);
}

._form_1 ._button-wrapper {
    margin-top: 24px;
}

._form_1 ._submit,
._form_1 button[type="submit"] {
    display: inline-flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 4px;
    background: var(--brand);
    color: var(--brand-foreground);
    padding: 0 26px;
    font-size: 14px;
    font-weight: 760;
    letter-spacing: 0.01em;
    line-height: 1.1;
    text-align: center;
    transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
    cursor: pointer;
}

._form_1 ._submit:hover,
._form_1 button[type="submit"]:hover {
    background: var(--brand-dark);
    transform: translateY(-1px);
}

._form_1 ._form_element ._error,
._form_1 ._form_error {
    margin-top: 8px;
    color: #9f0027;
    font-size: 12px;
    font-weight: 700;
}

._form_1 ._privacy-policy,
._form_1 ._disclaimer {
    margin-top: 16px;
    color: var(--ink-soft);
    font-size: 12px;
}

.check-list {
    display: grid;
    gap: 18px;
    margin: 32px 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    display: grid;
    gap: 2px;
    padding-left: 26px;
}

.check-list li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--brand);
}

.check-list span {
    color: var(--ink-soft);
    font-size: 14px;
}

.location-list {
    display: grid;
    gap: 20px;
    margin: 32px 0;
}

.location-list.compact-list {
    gap: 16px;
    margin: 28px 0 0;
}

.location-list div {
    display: grid;
    gap: 3px;
}

.location-list dt {
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.location-list dd {
    margin: 0;
    font-weight: 700;
}

.map-frame {
    overflow: hidden;
    min-height: 380px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface-2);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
}

.local-location-panel {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(28px, 5vw, 56px);
}

.local-location-panel h3 {
    margin: 12px 0 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.04;
}

.local-location-panel p:not(.section-kicker) {
    max-width: 520px;
    margin: 18px 0 0;
    color: var(--ink-soft);
    font-size: 18px;
}

.faq-list {
    margin-top: 40px;
    border-block: 1px solid var(--border);
}

.faq-list details {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.faq-list details:last-child {
    border-bottom: 0;
}

.faq-list summary {
    display: flex;
    cursor: pointer;
    list-style: none;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary b {
    color: var(--brand);
    font-size: 24px;
    line-height: 1;
    transition: transform 160ms ease;
}

.faq-list details[open] summary b {
    transform: rotate(45deg);
}

.faq-list p {
    margin: 12px 0 0;
    color: var(--ink-soft);
    font-size: 14px;
}

.site-footer {
    border-top: 1px solid var(--border);
    padding: 32px 0;
    color: var(--ink-soft);
    font-size: 14px;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.footer-inner p {
    margin: 0;
}

.footer-inner strong {
    color: var(--foreground);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
}

.footer-links a {
    font-size: 13px;
    font-weight: 750;
}

.footer-links a:hover {
    color: var(--brand);
}

.sticky-cta {
    display: none;
}

@media (max-width: 1000px) {
    body.admin-bar .site-header {
        top: 46px;
    }

    .section {
        padding: 68px 0;
    }

    .desktop-nav,
    .header-actions .button {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .hero {
        padding: 48px 0 68px;
    }

    .hero-grid,
    .split-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .model-grid,
    .tech-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reverse-mobile figure {
        order: 2;
    }

    .sticky-cta {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 35;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        border-top: 1px solid var(--border);
        background: rgba(255, 255, 255, 0.94);
        backdrop-filter: blur(14px);
        padding: 10px;
    }

    .sticky-cta .button {
        min-height: 44px;
        padding-inline: 10px;
        font-size: 13px;
    }

    .site-footer {
        padding-bottom: 86px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .brand-divider,
    .brand-text small {
        display: none;
    }

    .nissan-mark {
        flex-basis: 86px;
        width: 86px;
        min-width: 86px;
        min-height: 34px;
    }

    .nissan-mark img {
        width: 86px;
    }

    .hero-copy h1 {
        font-size: 40px;
    }

    .button-row {
        align-items: stretch;
        flex-direction: column;
    }

    .button-row .button {
        width: 100%;
    }

    .model-grid,
    .benefit-grid,
    .tech-grid {
        grid-template-columns: 1fr;
    }

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

    .span-2 {
        grid-column: auto;
    }

    .lead-form {
        padding: 24px;
    }

    ._form_1 {
        padding: 24px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
.apoiosBanner {
	width: 100%;
	text-align: center;
	margin: 20px 0;
}

.apoiosBanner a {
	width: fit-content;
	display: block;
    margin: 0 auto;
}