/* services.css - rules unique to services.html */

:root {
    --navy: #0B1F3A;
    --navy-mid: #1A3358;
    --blue: oklch(0.488 0.243 264.376);
    --blue-light: oklch(0.623 0.214 259.815);
    --accent: oklch(0.623 0.214 259.815);
    --accent-light: oklch(0.488 0.243 264.376);
    --white: #FFFFFF;
    --off-white: #F4F6F9;
    --grey-light: #E8ECF2;
    --grey-mid: #9AAABB;
    --grey-dark: #4A5A6B;
    --text: #1A2B3C;
    --font-head: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --radius: 6px;
    --shadow: 0 4px 24px rgba(11, 31, 58, 0.12);
    --shadow-lg: 0 12px 48px rgba(11, 31, 58, 0.18);
}

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

/* ── TYPOGRAPHY ── */
h1,
h2,
h3,
h4 {
    font-family: var(--font-head);
    line-height: 1.1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.label {
    display: none;
}

.label--light {
    display: none;
}

/* NAV chrome and the Free Quote button (.nav-cta .btn--gold) now live in
   shared.css — single source so the header matches every page. The base
   .btn and the page-specific body buttons (.btn-primary, …) stay below. */

.btn {
    display: inline-block;
    padding: 11px 24px;
    border-radius: var(--radius);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all .22s ease;
}

.btn-primary {
    background: var(--accent);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-outline-dark {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-outline-dark:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-lg {
    padding: 15px 34px;
    font-size: 17px;
}

/* ── HERO ── */
#hero {
    /* Nav (92px) now takes its own space in the flow, so the hero fills the rest
       of the viewport and align-items:center keeps the content centered in it. */
    min-height: calc(100vh - 92px);
    background: var(--navy);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(11, 31, 58, 0.92) 0%, rgba(11, 31, 58, 0.78) 45%, rgba(11, 31, 58, 0.55) 100%),
        url("../images/hero-bg-165de7a3fbe0.png") center/cover no-repeat;
}

/* Grid texture */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Blue accent line */
.hero-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 40px 24px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 24px;
}

.hero-eyebrow span {
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
}

.hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-h1 {
    font-size: clamp(48px, 7vw, 84px);
    font-weight: 800;
    color: #f0f6ff;
    line-height: 1.0;
    margin-bottom: 20px;
}

.hero-h1 em {
    font-style: normal;
    color: oklch(0.623 0.214 259.815);
}

.hero-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.72);
    max-width: 520px;
    margin-bottom: 32px;
    line-height: 1.65;
    font-weight: 400;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 0;
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-head);
    letter-spacing: 0.04em;
}

.trust-pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

/* ── HERO FORM ── */
.hero-form-card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px 28px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.hero-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 12px 12px 0 0;
}

.form-heading {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
}

.form-sub {
    font-size: 14px;
    color: var(--grey-dark);
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--grey-dark);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--grey-light);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text);
    background: var(--off-white);
    transition: border-color .2s;
    outline: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--blue-light);
    background: var(--white);
}

.form-field textarea {
    resize: vertical;
    min-height: 70px;
}

.form-submit {
    width: 100%;
    padding: 14px;
    background: var(--accent);
    color: #ffffff;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .22s;
    margin-top: 4px;
}

.form-submit:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
}

.form-note {
    font-size: 14px;
    color: var(--grey-mid);
    text-align: center;
    margin-top: 10px;
}

/* ── SECTION SHARED ── */
section {
    padding: 96px 24px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 56px;
}

.section-title {
    font-size: clamp(34px, 5vw, 54px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.08;
    max-width: 720px;
}

.section-title--white {
    color: var(--white);
}

.section-lead {
    font-size: 17px;
    color: var(--grey-dark);
    max-width: 640px;
    margin-top: 14px;
    line-height: 1.7;
}

/* ── INTRO / VALUE PROP ── */
#intro {
    background: var(--off-white);
    padding: 80px 24px;
}

.intro-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-bold {
    font-family: var(--font-head);
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.intro-bold em {
    color: var(--blue);
    font-style: normal;
}

.intro-p {
    font-size: 16px;
    color: var(--grey-dark);
    line-height: 1.75;
    margin-bottom: 16px;
}

.icon-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
}

.icon-card {
    background: var(--white);
    border: 1.5px solid var(--grey-light);
    border-radius: 10px;
    padding: 20px 16px;
    text-align: center;
    transition: border-color .2s, box-shadow .2s;
}

.icon-card:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.15);
}

.icon-card-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.icon-card-label {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.04em;
    line-height: 1.25;
}

/* safety warning box */
.safety-box {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-radius: 12px;
    padding: 36px 32px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.safety-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
}

.safety-box-title {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.safety-box p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
    margin-bottom: 22px;
}

.safety-box p:last-child {
    margin-bottom: 0;
}

/* ── CTA BAR ── */
.cta-bar {
    background: var(--off-white);
    border-top: 1px solid var(--grey-light);
    border-bottom: 1px solid var(--grey-light);
    padding: 28px 24px;
}

.cta-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cta-bar-text {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
}

/* ── ABOUT ── */
#about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-photo {
    background: var(--grey-light);
    border-radius: 10px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey-mid);
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.04em;
    position: relative;
    overflow: hidden;
}

.about-photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

.about-copy h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 20px;
}

.about-copy p {
    font-size: 16px;
    color: var(--grey-dark);
    line-height: 1.75;
    margin-bottom: 16px;
}

.checklist {
    list-style: none;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    color: var(--navy);
}

.checklist li::before {
    content: '✦';
    color: var(--accent);
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── SERVICES ── */
#services {
    background: var(--off-white);
}

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

.service-card {
    background: var(--white);
    border: 1.5px solid var(--grey-light);
    border-radius: 10px;
    padding: 28px 24px;
    transition: all .25s;
    position: relative;
    overflow: hidden;
}

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

.service-card:hover {
    border-color: var(--blue-light);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.service-card.featured {
    border-color: var(--accent);
}

.service-card.featured::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 32px;
    margin-bottom: 14px;
}

/* The rock-chip design uses inline SVG service icons (the ADAS page uses emoji);
   constrain + color them. Emoji icons ignore these (no <svg> child). */
.service-icon svg {
    width: 40px;
    height: 40px;
    display: block;
    color: var(--btn);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 16px;
    color: var(--grey-dark);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-link {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s;
}

.badge-free {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #1A3D6B;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 10px;
}

/* ── USPS ── */
#usps {
    background: var(--navy);
}

.usps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 48px;
}

.usp-item {
    background: rgba(11, 31, 58, 0.6);
    padding: 32px 28px;
    transition: background .2s;
}

.usp-item:hover {
    background: rgba(30, 77, 140, 0.4);
}

.usp-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.usp-item h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.usp-item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
}

/* ── PROCESS ── */
#process {
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 48px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--grey-light), var(--accent), var(--grey-light));
}

.process-step {
    text-align: center;
    padding: 0 8px;
    position: relative;
}

.step-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    position: relative;
    z-index: 2;
    border: 3px solid var(--grey-light);
    transition: all .25s;
}

.process-step:hover .step-num {
    background: var(--accent);
    color: var(--navy);
    border-color: var(--accent);
}

.step-title {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: 0.03em;
}

.step-desc {
    font-size: 16px;
    color: var(--grey-dark);
    line-height: 1.6;
}

/* Reviews section now lives in shared.css + partials/reviews.njk
   (single source, identical on every page). */

/* ── CERTS ── */
#certs {
    background: var(--white);
}

.certs-lead {
    font-size: 16px;
    color: var(--grey-dark);
    line-height: 1.75;
    max-width: 680px;
    margin-top: 14px;
    margin-bottom: 40px;
}

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

.cert-item {
    border: 1.5px solid var(--grey-light);
    border-radius: 10px;
    padding: 28px 24px;
    text-align: center;
    transition: border-color .2s;
}

.cert-item:hover {
    border-color: var(--accent);
}

.cert-item h4 {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
}

.cert-item p {
    font-size: 16px;
    color: var(--grey-dark);
    line-height: 1.6;
}

.cert-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.cert-note {
    font-size: 14px;
    color: var(--grey-mid);
    font-style: italic;
    margin-top: 28px;
    text-align: center;
}

/* ── GALLERY ── */
#gallery {
    background: var(--navy);
    padding: 80px 24px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: 12px;
    margin-top: 40px;
}

.gallery-grid .gallery-item:nth-child(1) {
    grid-column: span 2;
}

.gallery-grid .gallery-item:nth-child(4) {
    grid-column: span 2;
}

.gallery-item {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: opacity .2s;
}

.gallery-item:hover {
    opacity: 0.85;
}

.gallery-caption {
    position: relative;
    z-index: 1;
    background: linear-gradient(transparent, rgba(11, 31, 58, 0.9));
    padding: 20px 16px 14px;
    width: 100%;
}

.gallery-caption-title {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.04em;
}

.gallery-caption-loc {
    font-size: 14px;
    color: var(--accent);
    letter-spacing: 0.06em;
}

.gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Empty-state caption shown in gallery cells that don't have a photo yet. */
.gallery-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.15);
    font-size: 13px;
    letter-spacing: 0.08em;
    font-family: var(--font-head);
    text-transform: uppercase;
}

/* ── SERVICE AREAS ── */
#service-areas {
    background: var(--off-white);
}

.areas-intro {
    font-size: 16px;
    color: var(--grey-dark);
    line-height: 1.75;
    max-width: 680px;
    margin-top: 14px;
    margin-bottom: 40px;
}

.area-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.area-pill {
    background: var(--white);
    border: 1.5px solid var(--grey-light);
    border-radius: 100px;
    padding: 9px 20px;
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    transition: all .2s;
    letter-spacing: 0.04em;
}

.area-pill:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.area-pill.home {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

/* ── FAQ ── */
#faq {
    background: var(--white);
}

#faq .faq-header {
    text-align: center;
}

/* .section-title is max-width:720px with no auto margins, so center the box too. */
#faq .faq-header .section-title {
    margin-left: auto;
    margin-right: auto;
}

#faq .faq-grid {
    grid-template-columns: 1fr;
    max-width: 820px;
    margin: 0 auto;
}

/* ── FINAL CTA ── */
#final-cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    position: relative;
    overflow: hidden;
    padding: 96px 24px;
}

#final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.cta-content {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 20px;
}

.cta-content h2 em {
    color: var(--accent);
    font-style: normal;
}

.cta-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    margin-bottom: 36px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

/* ── THANK-YOU PAGE (form submission confirmation) ── */
#thank-you {
    min-height: calc(100vh - 92px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    position: relative;
    overflow: hidden;
    padding: 96px 24px;
}

#thank-you::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.ty-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.ty-badge {
    width: 76px;
    height: 76px;
    margin: 0 auto 28px;
    border-radius: 50%;
    background: var(--accent);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.35);
}

.ty-badge svg {
    width: 40px;
    height: 40px;
    display: block;
}

.ty-content h1 {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 24px;
}

.ty-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    margin-bottom: 18px;
}

.ty-content p:last-of-type {
    margin-bottom: 36px;
}

/* ── MAP ── */
/* The location map is now the shared .map-section (partials/map.njk),
   styled in shared.css. The old #map / .map-placeholder rules were removed. */

/* FOOTER chrome now lives in shared.css — single source for every page. */

/* ── KLARNA FINANCING CTA ── */
.klarna-cta {
    background: var(--off-white);
    padding: 80px 24px;
}

.klarna-card {
    max-width: 920px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff 0%, #f4f8fd 100%);
    border: 1.5px solid var(--grey-light);
    border-radius: 12px;
    padding: 48px 48px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px -20px rgba(11, 31, 58, 0.18);
}

.klarna-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent), var(--accent-light));
}

.klarna-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
}

.klarna-eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.klarna-h2 {
    font-family: var(--font-head);
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.14;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    text-wrap: balance;
}

.klarna-h2-em {
    color: var(--accent);
}

.klarna-copy {
    color: var(--grey-dark);
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 26px;
    max-width: 680px;
}

.klarna-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}


/* ── PACKAGES (PPF coverage tiers, paint-protection-film page) ── */
#packages { background: var(--off-white); }
.pkg-photo {
  width: 100%; height: 340px; object-fit: cover;
  border-radius: 10px; margin: 0 0 48px;
  position: relative; display: block;
  box-shadow: var(--shadow);
}
.pkg-photo-wrap { position: relative; margin-bottom: 48px; }
.pkg-photo-wrap::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 0 0 10px 10px;
}
.pkg-photo-wrap .pkg-photo { margin-bottom: 0; }
.pkg-photo-fallback {
  display: none; align-items: center; justify-content: center; text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: rgba(255,255,255,0.6);
  font-family: var(--font-head); font-size: 15px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.pkg-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.pkg-card {
  background: var(--white);
  border: 1.5px solid var(--grey-light);
  border-radius: 10px;
  padding: 30px 26px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: all .25s;
}
.pkg-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .25s;
}
.pkg-card:hover { border-color: var(--blue-light); box-shadow: var(--shadow); transform: translateY(-3px); }
.pkg-card:hover::before { transform: scaleX(1); }
.pkg-card.featured { border-color: var(--accent); box-shadow: var(--shadow); }
.pkg-card.featured::before { transform: scaleX(1); }
.pkg-popular {
  align-self: flex-start;
  background: var(--accent); color: var(--navy);
  font-family: var(--font-head); font-size: 11px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px; margin-bottom: 14px;
}
.pkg-name {
  font-family: var(--font-head); font-size: 24px; font-weight: 800;
  color: var(--navy); line-height: 1.05; margin-bottom: 6px;
}
.pkg-price {
  font-family: var(--font-head); font-size: 30px; font-weight: 800;
  color: var(--blue); margin-bottom: 16px; letter-spacing: 0.01em;
}
.pkg-desc { font-size: 14px; color: var(--grey-dark); line-height: 1.7; margin-bottom: 20px; }
.pkg-inc-label {
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy);
  margin-bottom: 12px; padding-top: 18px; border-top: 1.5px solid var(--grey-light);
}
.pkg-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.pkg-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; color: var(--text); font-weight: 500; }
.pkg-list li::before { content: '✦'; color: var(--accent); font-size: 12px; flex-shrink: 0; margin-top: 3px; }
.pkg-note { font-size: 14px; color: var(--grey-mid); font-style: italic; line-height: 1.6; margin: -8px 0 20px; }
.pkg-cta { margin-top: auto; }
