:root {
    --bg: #f6f8fb;
    --fg: #0f172a;
    --muted: #475569;
    --accent: #0ea5e9;
    --accent-2: #22c55e;
    --panel: #ffffff;
    --border: rgba(15, 23, 42, 0.08);
    --gradient: radial-gradient(circle at top, rgba(14, 165, 233, 0.08), transparent 65%);
    font-size: 16px;
}

/* Tablet and Mobile - Hide "Book a PDI" button in header */
@media (max-width: 1024px) {
    .site-header__cta {
        display: none !important;
    }

    .mobile-tagline {
        display: block;
    }

    .mobile-offer-bar {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .mobile-offer-bar .btn {
        white-space: nowrap;
        font-size: 0.9rem;
        padding: 0.7rem 1.25rem;
    }

    .motto-pill {
        display: none;
    }

    .site-header__inner {
        display: grid !important;
        grid-template-columns: auto 1fr auto !important;
        gap: 0.5rem;
        align-items: center;
    }

    .logo {
        order: 1;
    }

    .mobile-tagline {
        order: 2;
        justify-self: center;
    }

    .menu-toggle {
        display: flex !important;
        order: 3;
        justify-self: end;
    }

    .site-nav {
        position: fixed !important;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(350px, 80vw);
        background: #ffffff;
        flex-direction: column;
        padding: 5rem 1.5rem 2rem;
        transform: translateX(100%) !important;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(15, 23, 42, 0.15);
        z-index: 55;
        overflow-y: auto;
        visibility: hidden;
        display: none !important;
    }

    .site-nav.is-open {
        display: flex !important;
    }

    .site-nav.is-open {
        display: flex !important;
        transform: translateX(0) !important;
        visibility: visible;
    }

    .site-nav a {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    }

    .nav-close {
        display: block;
    }

    .hero {
        gap: 2rem;
    }

    .hero__visual .orb {
        filter: blur(20px);
    }
}

/* Tablet specific (769px to 1024px) - iPad Air, iPad Pro, etc. */
@media (min-width: 769px) and (max-width: 1024px) {
    .site-header {
        padding: 1rem 2rem;
    }

    .site-header__inner {
        grid-template-columns: auto 1fr auto;
    }

    .site-header .logo img {
        height: 54px;
    }

    .mobile-tagline {
        font-size: 0.8rem;
        justify-self: center;
    }

    .menu-toggle {
        display: flex;
        z-index: 60;
        justify-self: end;
    }

    .site-nav {
        position: fixed !important;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(400px, 65vw);
        background: #ffffff;
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        transform: translateX(100%) !important;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(15, 23, 42, 0.2);
        z-index: 55;
        overflow-y: auto;
        visibility: hidden;
        display: none !important;
    }

    .site-nav.is-open {
        display: flex !important;
        transform: translateX(0) !important;
        visibility: visible;
    }

    .site-nav a {
        font-size: 1.25rem;
        padding: 0.85rem 0;
        border-bottom: 1px solid rgba(15, 23, 42, 0.06);
        transition: all 0.2s ease;
    }

    .site-nav a:hover {
        color: var(--accent);
        padding-left: 0.5rem;
    }

    .site-nav a:last-child {
        border-bottom: none;
    }

    .nav-close {
        display: block;
    }

    .hero {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .hero__content h1 {
        font-size: clamp(2rem, 4vw, 2.8rem);
    }

    .hero__actions {
        flex-direction: row;
    }

    .hero__stats {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        gap: 2rem;
        flex-wrap: nowrap;
    }

    .stat {
        text-align: center;
        align-items: center;
    }

    .stat strong {
        font-size: 1.5rem;
    }

    .stat span {
        font-size: 0.85rem;
    }

    .process__grid,
    .scores__grid,
    .experts__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .diagnostics__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brands__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    section {
        padding: 3rem 2rem;
    }

    .lead__card {
        max-width: 600px;
        padding: 2rem;
    }

    .floating-footer-offer {
        padding: 1rem 2rem;
    }

    .offer-badge {
        font-size: 0.9rem;
    }

    .new-price {
        font-size: 1.75rem;
    }
}

/* iPad Air specific (820px x 1180px) */
@media (min-width: 810px) and (max-width: 830px) {
    .hero {
        grid-template-columns: 1fr 1fr;
    }

    .process__grid,
    .scores__grid,
    .experts__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* iPad Pro 11" (834px x 1194px) */
@media (min-width: 830px) and (max-width: 850px) {
    .hero {
        grid-template-columns: 1fr 1fr;
    }

    .section-head {
        max-width: 100%;
    }
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--fg);
    line-height: 1.6;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: var(--gradient);
    z-index: -1;
}

.site-nav__overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(3px);
    z-index: 50;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.site-nav__overlay:not([hidden]) {
    opacity: 1;
    pointer-events: auto;
}

.site-nav__overlay[hidden] {
    display: none;
}

body.nav-open {
    overflow: hidden;
}

.site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 1rem clamp(1.5rem, 6vw, 6rem);
    z-index: 50;
}

.site-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
}

/* Mobile specific (up to 768px) */
@media (max-width: 768px) {
    .site-header__inner {
        grid-template-columns: auto 1fr auto;
        gap: 0.5rem;
    }

    .site-header {
        padding: 0.75rem 1.25rem;
    }

    .site-header .logo img {
        height: 48px;
    }

    .mobile-tagline {
        font-size: 0.65rem;
        justify-self: center;
    }

    .menu-toggle {
        display: flex;
        z-index: 60;
        justify-self: end;
    }

    .site-nav {
        position: fixed !important;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(320px, 85vw);
        background: #ffffff;
        flex-direction: column;
        padding: 5rem 1.5rem 2rem;
        transform: translateX(100%) !important;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(15, 23, 42, 0.15);
        z-index: 55;
        overflow-y: auto;
        visibility: hidden;
    }

    .site-nav.is-open {
        transform: translateX(0) !important;
        visibility: visible;
    }

    .site-nav a {
        font-size: 1.15rem;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(15, 23, 42, 0.06);
        transition: all 0.2s ease;
    }

    .site-nav a:hover {
        color: var(--accent);
        padding-left: 0.5rem;
    }

    .site-nav a:last-child {
        border-bottom: none;
    }

    .nav-close {
        display: block;
    }

    .site-header__cta {
        display: none !important;
    }

    .mobile-offer-bar {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem 1.25rem;
    }

    .mobile-offer-bar div {
        text-align: center;
    }

    .mobile-offer-bar .btn {
        width: 100%;
        text-align: center;
    }

    section {
        padding: 2rem 1.25rem;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero__content h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .hero__actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero__actions .btn {
        width: 100%;
        text-align: center;
    }

    .hero__stats {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 1rem;
        width: 100%;
        flex-wrap: nowrap;
    }

    .stat {
        text-align: center;
        align-items: center;
        flex: 1;
        min-width: 0;
    }

    .stat strong {
        font-size: 1.3rem;
    }

    .stat span {
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .hero__visual {
        order: -1;
    }

    .hero__image {
        max-width: 100%;
        border-radius: 16px;
    }

    .process__grid,
    .scores__grid,
    .experts__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .diagnostics__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .brands__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .brands__grid figure {
        padding: 0.75rem;
    }

    .brands__grid img {
        max-width: 80px;
        max-height: 40px;
    }

    .lead__card {
        padding: 1.5rem;
    }

    .section-head h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .eyebrow {
        font-size: 0.7rem;
    }

    .lead {
        font-size: 1rem;
    }
}

.site-header .logo img {
    height: 60px;
    display: block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0.6rem;
    position: relative;
    z-index: 60;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.menu-toggle:hover {
    background: rgba(14, 165, 233, 0.1);
}

.menu-toggle:active {
    background: rgba(14, 165, 233, 0.2);
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--fg);
    display: block;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.site-nav {
    display: flex;
    gap: 1.25rem;
    font-weight: 600;
    justify-self: center;
}

.site-nav a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-nav a:hover {
    color: var(--fg);
}

.nav-close {
    display: none;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--fg);
    transition: all 0.2s ease;
    border-radius: 8px;
}

.nav-close:hover {
    background: rgba(14, 165, 233, 0.1);
    color: var(--accent);
}

.nav-close svg {
    display: block;
}

.site-header__cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.motto-pill {
    background: rgba(14, 165, 233, 0.12);
    color: var(--accent);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}

.mobile-tagline {
    display: none;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

section {
    padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 6vw, 6rem);
}

.mobile-offer-bar {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(120deg, rgba(14, 165, 233, 0.15), rgba(34, 197, 94, 0.15));
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.mobile-offer-bar p {
    margin: 0;
    font-weight: 600;
}

.mobile-offer-bar small {
    color: var(--muted);
}

.hero {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
    min-height: auto;
}

.hero__content h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.15;
    margin: 0.8rem 0;
}

.hero__content span {
    display: block;
    color: var(--accent);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.75rem;
    color: var(--muted);
}

.lead {
    font-size: 1.1rem;
    color: var(--muted);
}

.lead.motto {
    color: var(--accent);
    font-weight: 600;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1.5rem 0 2rem;
}

.btn {
    border-radius: 999px;
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(94, 234, 212, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #ffffff;
}

.btn-ghost {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

.btn-ghost:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.hero__stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat strong {
    font-size: 1.6rem;
    display: block;
}

.stat span {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
}

.hero__visual {
    position: relative;
}

.hero__visual .orb {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(94, 234, 212, 0.3), transparent 65%);
    filter: blur(30px);
    opacity: 0.7;
}

.hero__image {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 80px rgba(15, 23, 42, 0.12);
    object-fit: cover;
}

.section-head {
    max-width: 720px;
    margin-bottom: 2rem;
}

.section-head h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin: 0.5rem 0;
}

.process__grid,
.scores__grid,
.experts__grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.process__grid article,
.scores__grid article,
.experts__grid article {
    padding: 1.5rem;
    border-radius: 20px;
    background: var(--panel);
    border: 1px solid var(--border);
}

.process__grid article span {
    display: inline-flex;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    margin-bottom: 1rem;
    color: var(--muted);
}

.lead {
    background: linear-gradient(135deg, rgba(94, 234, 212, 0.05), rgba(56, 189, 248, 0.05));
}

.lead__card {
    max-width: 520px;
    margin: 0 auto;
    padding: 2.5rem;
    border-radius: 32px;
    background: var(--panel);
    border: 1px solid var(--border);
}

.lead__form form {
    display: grid;
    gap: 1rem;
}

.lead__form label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.lead__form input,
.lead__form select {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(15, 23, 42, 0.6);
    color: var(--fg);
    font-family: inherit;
}

form .btn-primary {
    width: 100%;
    justify-content: center;
}

.ride-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ride-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--fg);
}

.ride-form input,
.ride-form select,
.ride-form textarea {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #f8fafc;
    padding: 0.9rem 1.1rem;
    font-size: 1rem;
    font-family: inherit;
    color: var(--fg);
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.ride-form textarea {
    min-height: 140px;
    resize: vertical;
}

.ride-form select {
    appearance: none;
    background-image: url('data:image/svg+xml,%3Csvg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M4 6l4 4 4-4" stroke="%230f172a" stroke-width="1.5" stroke-linecap="round"/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 14px;
}

.ride-form input:focus,
.ride-form select:focus,
.ride-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.ride-form button,
.ride-form input[type="submit"] {
    border: none;
    border-radius: 999px;
    padding: 0.95rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ride-form button:hover,
.ride-form input[type="submit"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.25);
}

.ride-form--contact {
    gap: 1.25rem;
}

/* Comprehensive PDI Section */
.comprehensive-pdi {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.comprehensive-pdi::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.comprehensive-pdi .section-head {
    max-width: 900px;
    text-align: center;
    margin: 0 auto 3rem;
}

.comprehensive-pdi__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pdi-feature {
    background: var(--panel);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pdi-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.15);
    border-color: var(--accent);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(2, 132, 199, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.pdi-feature h3 {
    font-size: 1.15rem;
    margin: 0;
    color: var(--fg);
    font-weight: 600;
}

.pdi-feature p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

.comprehensive-pdi__cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.3);
}

.btn-large:hover {
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.4);
}

.cta-note {
    margin-top: 1rem;
    color: var(--muted);
    font-size: 0.9rem;
    font-style: italic;
}

@media (max-width: 1024px) {
    .comprehensive-pdi__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .comprehensive-pdi__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .pdi-feature {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
    }

    .pdi-feature h3 {
        font-size: 1.05rem;
    }

    .comprehensive-pdi__cta {
        margin-top: 2rem;
    }

    .btn-large {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Impact Stats Section */
.impact-stats {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.impact-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.impact-stats__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.impact-stat {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
}

.impact-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.impact-stat__number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    background: linear-gradient(135deg, #22d3ee 0%, #a78bfa 50%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

.impact-stat__text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.impact-stat__text strong {
    color: #22d3ee;
}

@media (max-width: 1024px) {
    .impact-stats__container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .impact-stats__container {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .impact-stat {
        padding: 1.5rem 0.75rem;
    }

    .impact-stat__number {
        font-size: 2rem;
    }

    .impact-stat__text {
        font-size: 0.8rem;
    }
}

.diagnostics {
    background: #ffffff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.diagnostics__grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.diagnostics__grid article {
    padding: 1.75rem;
    border-radius: 24px;
    background: #f8fafc;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.05);
}

.brands {
    background: #f0f6ff;
}

.brands__grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    align-items: center;
    justify-items: center;
}

.brands__grid figure {
    margin: 0;
    padding: 1rem;
    border-radius: 16px;
    border: 1px dashed rgba(14, 165, 233, 0.4);
    width: 100%;
    text-align: center;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.brands__grid img {
    max-width: 110px;
    max-height: 55px;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 0.95;
}

.brands__grid figcaption {
    margin-top: 0.6rem;
    font-size: 0.85rem;
    color: var(--muted);
}

/* Additional responsive improvements */
@media (max-width: 480px) {
    :root {
        font-size: 14px;
    }

    .site-header .logo img {
        height: 42px;
    }

    .hero__content h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero__actions .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero__stats {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 0.5rem;
        flex-wrap: nowrap;
    }

    .stat {
        flex: 1;
        min-width: 0;
    }

    .stat strong {
        font-size: 1.2rem;
    }

    .stat span {
        font-size: 0.7rem;
    }

    .section-head h2 {
        font-size: 1.5rem;
    }

    .lead__card {
        padding: 1.25rem;
    }

    .mobile-offer-bar {
        padding: 0.75rem 1rem;
    }

    .mobile-offer-bar p {
        font-size: 0.9rem;
    }

    .mobile-offer-bar small {
        font-size: 0.75rem;
    }
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Prevent horizontal scroll on mobile */
body {
    overflow-x: hidden;
}

/* Better touch targets for mobile */
@media (max-width: 768px) {
    a, button, .btn {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        grid-template-columns: 1fr 1fr;
    }

    .hero__visual {
        order: 2;
    }

    section {
        padding: 1.5rem 1.25rem;
    }
}

/* Floating Footer Offer - Redesigned */
.floating-footer-offer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
    z-index: 100;
    padding: 1rem 1.5rem;
    border-top: 2px solid var(--accent);
    display: none; /* Hidden by default on desktop */
    backdrop-filter: blur(10px);
}

.floating-footer-offer__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.offer-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.offer-timer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.timer-icon {
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.timer-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.timer-label {
    color: #94a3b8;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.timer-countdown {
    color: #fbbf24;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: 'Courier New', monospace;
}

.offer-pricing {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.price-old {
    color: #64748b;
    text-decoration: line-through;
    font-size: 0.95rem;
    font-weight: 500;
}

.price-new {
    color: #22c55e;
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1;
}

.price-save {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-action {
    flex-shrink: 0;
}

.btn-offer {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 2.25rem;
    font-size: 1.05rem;
    font-weight: 700;
    white-space: nowrap;
    background: linear-gradient(135deg, var(--accent), #0284c7);
    color: #fff;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-offer:hover::before {
    left: 100%;
}

.btn-offer:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.5);
}

.btn-offer svg {
    transition: transform 0.3s ease;
    width: 20px;
    height: 20px;
}

.btn-offer:hover svg {
    transform: translateX(4px);
}

/* Floating footer responsive */
@media (max-width: 1024px) {
    .floating-footer-offer {
        display: block; /* Show on tablet and mobile */
        padding: 0.9rem 1.5rem;
    }

    .offer-info {
        gap: 1.5rem;
    }

    .timer-countdown {
        font-size: 0.9rem;
    }

    .price-new {
        font-size: 1.6rem;
    }

    .btn-offer {
        padding: 0.85rem 1.75rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .floating-footer-offer {
        padding: 0.85rem 1rem;
    }

    .floating-footer-offer__content {
        flex-direction: column;
        gap: 0.85rem;
    }

    .offer-info {
        width: 100%;
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .offer-timer {
        width: 100%;
        justify-content: space-between;
    }

    .timer-icon {
        font-size: 1.3rem;
    }

    .timer-label {
        font-size: 0.65rem;
    }

    .timer-countdown {
        font-size: 0.85rem;
    }

    .offer-pricing {
        width: 100%;
        justify-content: space-between;
        gap: 0.5rem;
    }

    .price-old {
        font-size: 0.85rem;
    }

    .price-new {
        font-size: 1.5rem;
    }

    .price-save {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }

    .offer-action {
        width: 100%;
    }

    .btn-offer {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Add padding to body to prevent content from being hidden behind floating footer */
    body {
        padding-bottom: 150px;
    }
}

@media (max-width: 480px) {
    .timer-icon {
        font-size: 1.2rem;
    }

    .timer-label {
        font-size: 0.6rem;
    }

    .timer-countdown {
        font-size: 0.8rem;
    }

    .price-old {
        font-size: 0.8rem;
    }

    .price-new {
        font-size: 1.35rem;
    }

    .price-save {
        font-size: 0.6rem;
    }

    .btn-offer {
        font-size: 0.9rem;
        padding: 0.85rem 1.25rem;
    }

    body {
        padding-bottom: 160px;
    }
}

/* Tablet padding adjustment */
@media (min-width: 769px) and (max-width: 1024px) {
    body {
        padding-bottom: 100px;
    }
}

/* Desktop - no padding needed */
@media (min-width: 1025px) {
    body {
        padding-bottom: 0;
    }

    .floating-footer-offer {
        display: none !important; /* Ensure it's hidden on desktop */
    }
}

/* Trust Banner */
.trust-banner {
    background: linear-gradient(135deg, var(--accent) 0%, #0284c7 100%);
    color: white;
    padding: 0.75rem 0;
    text-align: center;
    position: relative;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.trust-banner__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.trust-banner__content svg {
    color: #fbbf24;
    flex-shrink: 0;
}

.trust-banner__content strong {
    font-weight: 600;
}

@media (max-width: 768px) {
    .trust-banner {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }

    .trust-banner__content {
        font-size: 0.75rem;
    }

    .trust-banner__content svg {
        width: 14px;
        height: 14px;
    }
}

/* Professional Footer */
.site-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #e2e8f0;
    padding: 4rem 2rem 2rem;
    margin-top: 0;
}

.site-footer__main {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.1);
}

.footer-about {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-tagline {
    font-weight: 600;
    color: var(--accent);
    font-size: 0.95rem;
    margin: 0;
}

.footer-description {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(14, 165, 233, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(14, 165, 233, 0.2);
    margin-top: 0.5rem;
}

.footer-badge svg {
    color: #fbbf24;
    flex-shrink: 0;
}

.footer-badge span {
    font-size: 0.85rem;
    color: #e2e8f0;
}

.footer-section h3 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #94a3b8;
}

.footer-contact svg {
    color: var(--accent);
    flex-shrink: 0;
}

.footer-contact a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(226, 232, 240, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.2s;
}

.footer-social a:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}

.site-footer__bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: #64748b;
}

.footer-compliance {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-compliance span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

@media (max-width: 1024px) {
    .site-footer__main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .site-footer__main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .site-footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-compliance {
        justify-content: center;
    }
}

/* Testimonials Section on Landing Page */
.testimonials {
    padding: 6rem 2rem;
    background: var(--bg);
}

.testimonials__grid {
    max-width: 1400px;
    margin: 3rem auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--panel);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    color: #fbbf24;
}

.testimonial-card blockquote {
    margin: 0;
    font-style: italic;
    color: var(--muted);
    line-height: 1.7;
    flex: 1;
}

.testimonial-card blockquote p {
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #0284c7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-info strong {
    color: var(--fg);
    font-size: 0.95rem;
}

.vehicle-info {
    color: var(--muted);
    font-size: 0.85rem;
}

.inspection-date {
    color: #94a3b8;
    font-size: 0.8rem;
}

.testimonial-score {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(14, 165, 233, 0.05);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-top: auto;
}

.score-label {
    font-size: 0.85rem;
    color: var(--muted);
}

.score-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.testimonials__cta {
    text-align: center;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 4rem 1.5rem;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Dedicated Testimonials Page */
.testimonials-hero {
    background: var(--bg);
    padding: 6rem 2rem 4rem;
    text-align: center;
    position: relative;
}

.testimonials-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: var(--gradient);
    z-index: 0;
}

.testimonials-hero__content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonials-hero .eyebrow {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.testimonials-hero h1 {
    font-size: 3rem;
    margin: 1rem 0;
    line-height: 1.2;
    color: var(--fg);
}

.testimonials-hero .lead {
    font-size: 1.2rem;
    color: var(--muted);
    margin: 1.5rem 0 2rem;
    line-height: 1.6;
}

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.testimonials-stats .stat {
    text-align: center;
    padding: 2rem;
    background: var(--panel);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    min-width: 150px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.testimonials-stats .stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.testimonials-stats strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--accent), #0284c7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-stats span {
    font-size: 0.95rem;
    color: var(--muted);
}

.testimonials-list {
    padding: 4rem 2rem;
    background: var(--bg);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-grid-full {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonials-load-more {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
}

.testimonials-load-more .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.testimonials-load-more .btn svg {
    transition: transform 0.2s;
}

.testimonials-load-more .btn:hover svg {
    transform: translateY(2px);
}

.btn-secondary {
    background: var(--panel);
    color: var(--fg);
    border: 2px solid var(--border);
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.testimonial-card-detailed {
    background: var(--panel);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.testimonial-card-detailed:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.testimonial-author-full {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.author-avatar-large {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #0284c7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.author-details h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    color: var(--fg);
}

.author-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0.25rem 0;
}

.author-location svg {
    color: var(--accent);
}

.testimonial-rating-large {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.testimonial-rating-large svg {
    color: #fbbf24;
}

.rating-text {
    font-weight: 600;
    color: var(--fg);
    margin-left: 0.5rem;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.verified-badge svg {
    stroke: #16a34a;
}

.vehicle-info-card {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05), rgba(2, 132, 199, 0.05));
    border: 1px solid rgba(14, 165, 233, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
}

.vehicle-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.vehicle-details h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: var(--fg);
}

.vehicle-details p {
    margin: 0 0 0.5rem 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.vehicle-details .inspection-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #94a3b8;
}

.vehicle-details .inspection-date svg {
    color: var(--accent);
}

.inspection-score-badge {
    text-align: center;
}

.score-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--accent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
}

.score-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.score-max {
    font-size: 0.85rem;
    color: var(--muted);
}

.score-label {
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-review {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--muted);
    font-style: italic;
    margin: 0;
}

.testimonial-review p {
    margin: 0;
}

.testimonials-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonials-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(14, 165, 233, 0.15), transparent 50%);
    z-index: 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    color: #e2e8f0;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Dark background variant of btn-ghost */
.testimonials-cta .btn-ghost,
.cta-content .btn-ghost {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.testimonials-cta .btn-ghost:hover,
.cta-content .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .vehicle-info-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .vehicle-icon {
        margin: 0 auto;
    }

    .vehicle-details .inspection-date {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .testimonials-hero {
        padding: 4rem 1.5rem 3rem;
    }

    .testimonials-hero h1 {
        font-size: 2rem;
    }

    .testimonials-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }

    .testimonials-stats .stat {
        padding: 1.5rem;
    }

    .testimonials-stats strong {
        font-size: 2rem;
    }

    .testimonials-list {
        padding: 3rem 1.5rem;
    }

    .testimonial-card-detailed {
        padding: 1.5rem;
    }

    .testimonial-header {
        flex-direction: column;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn,
    .cta-actions .btn-ghost {
        width: 100%;
    }
}

/* Legal Pages */
.legal-page {
    padding: 4rem 2rem;
    background: var(--bg);
    min-height: 70vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--panel);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.legal-container h1 {
    font-size: 2.5rem;
    color: var(--fg);
    margin-bottom: 0.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent);
}

.legal-updated {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-content {
    color: var(--muted);
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.75rem;
    color: var(--fg);
    margin: 2.5rem 0 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.legal-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-content h3 {
    font-size: 1.25rem;
    color: var(--fg);
    margin: 1.5rem 0 0.75rem;
}

.legal-content p {
    margin: 1rem 0;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content li {
    margin: 0.5rem 0;
}

.legal-content strong {
    color: var(--fg);
    font-weight: 600;
}

.legal-content a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.legal-content a:hover {
    border-bottom-color: var(--accent);
}

@media (max-width: 768px) {
    .legal-page {
        padding: 3rem 1.5rem;
    }

    .legal-container {
        padding: 2rem 1.5rem;
    }

    .legal-container h1 {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }

    .legal-content h3 {
        font-size: 1.1rem;
    }
}

/* =====================================================
   PDI SUCCESS MODAL STYLES
   ===================================================== */
.pdi-success-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    overflow-y: auto;
    padding: 1rem;
}

.pdi-success-modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.pdi-success-modal__content {
    background: #ffffff;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    margin: 2rem auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
    animation: pdiModalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

@keyframes pdiModalSlideIn {
    from {
        transform: translateY(-40px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.pdi-success-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pdi-success-modal__close:hover {
    background: #ffffff;
    color: #0f172a;
    transform: scale(1.1);
}

.pdi-success-modal__header {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 2.5rem 2rem;
    text-align: center;
    color: white;
}

.pdi-success-modal__icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    animation: pdiIconPulse 2s ease-in-out infinite;
}

@keyframes pdiIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pdi-success-modal__icon svg {
    color: white;
}

.pdi-success-modal__header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.pdi-success-modal__subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.pdi-success-modal__body {
    padding: 2rem;
}

.pdi-success-modal__body h3 {
    font-size: 1.25rem;
    color: #0f172a;
    margin: 0 0 1.5rem;
    text-align: center;
}

.pdi-success-modal__steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pdi-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.2s;
}

.pdi-step:hover {
    background: #f1f5f9;
    transform: translateX(4px);
}

.pdi-step__number {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: linear-gradient(135deg, var(--accent) 0%, #0284c7 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.pdi-step__content h4 {
    font-size: 1rem;
    color: #0f172a;
    margin: 0 0 0.25rem;
}

.pdi-step__content p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.pdi-success-modal__dashboard-info {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    border-radius: 12px;
    margin-top: 1.5rem;
    border: 1px solid #a5b4fc;
}

.pdi-dashboard-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #6366f1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.pdi-dashboard-text h4 {
    font-size: 1rem;
    color: #3730a3;
    margin: 0 0 0.25rem;
}

.pdi-dashboard-text p {
    font-size: 0.875rem;
    color: #4338ca;
    margin: 0;
    line-height: 1.5;
}

.pdi-success-modal__footer {
    padding: 1.5rem 2rem 2rem;
    text-align: center;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
}

.pdi-success-modal__footer .btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.pdi-success-modal__contact {
    font-size: 0.875rem;
    color: #64748b;
    margin: 1rem 0 0;
}

.pdi-success-modal__contact a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.pdi-success-modal__contact a:hover {
    text-decoration: underline;
}

/* Mobile Responsive Styles for Success Modal */
@media (max-width: 640px) {
    .pdi-success-modal {
        padding: 0.5rem;
    }

    .pdi-success-modal__content {
        margin: 1rem auto;
        border-radius: 16px;
    }

    .pdi-success-modal__header {
        padding: 2rem 1.5rem;
    }

    .pdi-success-modal__header h2 {
        font-size: 1.5rem;
    }

    .pdi-success-modal__icon {
        width: 64px;
        height: 64px;
    }

    .pdi-success-modal__icon svg {
        width: 36px;
        height: 36px;
    }

    .pdi-success-modal__body {
        padding: 1.5rem;
    }

    .pdi-step {
        padding: 0.875rem;
    }

    .pdi-success-modal__dashboard-info {
        flex-direction: column;
        text-align: center;
    }

    .pdi-dashboard-icon {
        margin: 0 auto;
    }

    .pdi-success-modal__footer {
        padding: 1.25rem 1.5rem 1.5rem;
    }

    .pdi-success-modal__footer .btn {
        width: 100%;
    }
}