:root {
    --color-navy: #1B365D;
    --color-orange: #F38B3C;
    --color-offwhite: #F4F7F6;
    --color-white: #FFFFFF;
    --color-dark: #121F35;
    --color-gray: #7F8C8D;
    --transition-speed: 0.3s;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-navy);
    background-color: var(--color-offwhite);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-sm {
    max-width: 800px;
}

/* Typography Utilities */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: none;
    text-align: center;
    max-width: 100%;
    white-space: normal;
}

.btn-primary {
    background-color: var(--color-orange);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(243, 139, 60, 0.4);
}

.btn-primary:hover {
    background-color: #e07624;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 139, 60, 0.6);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
}

.btn-block {
    display: block;
    width: 100%;
}

.cta-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(243, 139, 60, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(243, 139, 60, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(243, 139, 60, 0);
    }
}

/* Glassmorphism Panel */
.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(27, 54, 93, 0.08);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.6s cubic-bezier(0.25, 1, 0.5, 1), padding 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 20px 0;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.70);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.nav-brand-name {
    display: none;
}

.logo-link {
    display: block;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: height 0.6s cubic-bezier(0.25, 1, 0.5, 1), width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-logo {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transform: scale(1.2) translateY(1%);
    /* Zooms the logo and shifts it down slightly within the mask */
    display: block;
}

.navbar.scrolled .logo-link {
    height: 45px;
    width: 45px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f2038 0%, #1B365D 80%), radial-gradient(circle at top right, rgba(243, 139, 60, 0.2) 0%, transparent 50%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
}

/* Sections Common */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-navy);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--color-orange);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-title.text-left::after {
    margin: 15px 0 0;
}

/* How it Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    position: relative;
    z-index: 1;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.step-number {
    width: 60px;
    height: 60px;
    background: rgba(243, 139, 60, 0.1);
    color: var(--color-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 25px;
    transition: all var(--transition-speed) ease;
}

.step-card:hover .step-number {
    background: var(--color-orange);
    color: var(--color-white);
}

.step-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.step-card p {
    color: var(--color-gray);
}

/* Pricing Section */
.pricing {
    background-color: var(--color-navy);
    color: var(--color-white);
}

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

.pricing-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-top: -30px;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    transition: transform var(--transition-speed) ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.pricing-card.featured {
    background: var(--color-white);
    color: var(--color-navy);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: none;
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-orange);
    color: var(--color-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card.featured h3 {
    border-bottom: 1px solid rgba(27, 54, 93, 0.1);
}

.repair-list {
    list-style: none;
}

.repair-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: 500;
}

.price-calc {
    color: var(--color-orange);
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Service Area */
.service-area {
    background: linear-gradient(to bottom, var(--color-offwhite) 0%, #E8EDEB 100%);
}

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

.service-info {
    font-size: 1.1rem;
}

.area-list {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    list-style: none;
}

.area-list li {
    position: relative;
    padding-left: 25px;
}

.area-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-orange);
    font-weight: bold;
}

.service-map {
    padding: 10px;
}

/* Booking Section */
.booking-section {
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z" fill="%231b365d" fill-opacity="0.03" fill-rule="evenodd"/></svg>');
    position: relative;
}

.booking-card {
    padding: 50px;
}

.custom-form .form-group {
    margin-bottom: 25px;
}

.custom-form .row {
    display: flex;
    gap: 20px;
}

.custom-form .col-half {
    flex: 1;
}

.custom-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-navy);
}

.custom-form input,
.custom-form select,
.custom-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #D1D9E6;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
    background: var(--color-white);
}

.custom-form input:focus,
.custom-form select:focus,
.custom-form textarea:focus {
    outline: none;
    border-color: var(--color-orange);
    box-shadow: 0 0 0 3px rgba(243, 139, 60, 0.2);
}

.form-privacy-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-gray);
    margin-top: 12px;
}

.success-message {
    text-align: center;
    padding: 30px;
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid #27ae60;
    border-radius: 8px;
    color: #27ae60;
}

/* Footer */
.footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 60px 0 20px;
}


.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
}

.footer-info {
    max-width: 400px;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
    /* Adjusting the logo specifically for dark footer if needed (filter: brightness(0) invert(1) etc) - assuming its transparent or looks good on dark */
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.footer-cloud-badge {
    text-align: right;
    opacity: 0.8;
}

.footer-cloud-badge p {
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

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

@media (max-width: 768px) {
    /* Mobile Navbar Reformatting */
    .navbar {
        position: absolute;
        padding: 20px 0;
    }
    
    .navbar.scrolled {
        background-color: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
        border-bottom: none;
        padding: 20px 0; /* Keep original padding */
    }

    .nav-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }
    
    .logo-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .nav-brand-name {
        display: block;
        font-family: var(--font-heading);
        font-weight: 800;
        font-size: 1.4rem;
        color: var(--color-white);
        text-align: center;
        line-height: 1.2;
    }

    .navbar.scrolled .nav-brand-name {
        font-size: 1.4rem;
    }
    
    .logo-link {
        height: 90px;
        width: 90px;
        flex-shrink: 0;
    }

    .navbar.scrolled .logo-link {
        height: 90px;
        width: 90px;
    }

    .nav-cta {
        display: none;
    }

    .hero-title {
        font-size: 3rem;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .custom-form .row {
        flex-direction: column;
        gap: 0;
    }

    .area-list {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-cloud-badge {
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 20px;
    }

    .social-links {
        justify-content: center;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--color-offwhite);
}

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

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 24px;
    text-decoration: none;
    color: inherit;
    border-radius: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.contact-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-orange);
    margin-bottom: 6px;
}

.contact-value {
    font-size: 1rem;
    font-weight: 500;
    word-break: break-all;
}

/* Footer contact links */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

.footer-contact a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: #fff;
}

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

/* ── Trust Bar ─────────────────────────────────────────────────────── */
.trust-bar {
    background: var(--color-white);
    padding: 32px 0;
    border-bottom: 1px solid rgba(27, 54, 93, 0.08);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.trust-icon {
    font-size: 1.8rem;
}

.trust-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* ── CTA Strips ────────────────────────────────────────────────────── */
.cta-strip {
    padding: 60px 0;
}

.cta-strip-dark {
    background: linear-gradient(135deg, #0f2038 0%, #1B365D 100%);
    color: var(--color-white);
}

.cta-strip-light {
    background: rgba(243, 139, 60, 0.07);
    border-top: 1px solid rgba(243, 139, 60, 0.15);
    border-bottom: 1px solid rgba(243, 139, 60, 0.15);
}

.cta-strip-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-strip-headline {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    flex: 1;
}

.cta-strip-dark .cta-strip-headline {
    color: var(--color-white);
}

.cta-strip-light .cta-strip-headline {
    color: var(--color-navy);
}

@media (max-width: 768px) {
    .cta-strip-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
}

/* ── Pricing Notes ─────────────────────────────────────────────────── */
.pricing-note-global {
    text-align: center;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: -30px;
    margin-bottom: 40px;
}

.pricing-note-global a {
    color: var(--color-orange);
    text-decoration: underline;
}

.pricing-card-note {
    text-align: center;
    font-size: 0.8rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -20px;
    margin-bottom: 20px;
}

.pricing-card.featured .pricing-card-note {
    color: rgba(27, 54, 93, 0.5);
}

/* ── Extras Section ────────────────────────────────────────────────── */
.extras-section {
    background: var(--color-offwhite);
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--color-gray);
    margin-top: -30px;
    margin-bottom: 50px;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.extra-card {
    padding: 48px 40px;
    text-align: center;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.extra-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(27, 54, 93, 0.12);
}

.extra-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.extra-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--color-navy);
}

.extra-card p {
    color: var(--color-gray);
    line-height: 1.7;
}

.extras-cta {
    text-align: center;
}

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

    .extra-card {
        padding: 36px 28px;
    }
}

/* ── FAQ Section ───────────────────────────────────────────────────── */
.faq-section {
    background: var(--color-white);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(27, 54, 93, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid rgba(27, 54, 93, 0.08);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-navy);
    cursor: pointer;
    gap: 16px;
    transition: background-color var(--transition-speed) ease;
}

.faq-question:hover {
    background-color: rgba(243, 139, 60, 0.04);
}

.faq-question[aria-expanded="true"] {
    color: var(--color-orange);
    background-color: rgba(243, 139, 60, 0.05);
}

.faq-icon {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-orange);
    flex-shrink: 0;
    transition: transform var(--transition-speed) ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer.open {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 28px 22px;
    color: var(--color-gray);
    line-height: 1.75;
    font-size: 0.97rem;
}

/* ── Price Calculator Quiz ──────────────────────────────────────────── */

.quiz-intro {
    text-align: center;
    color: var(--color-gray);
    font-size: 1.05rem;
    margin-bottom: 36px;
}

.quiz-progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.quiz-pip {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #D1D9E6;
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.quiz-pip.active {
    background: var(--color-orange);
    transform: scale(1.2);
}

.quiz-pip.done {
    background: var(--color-navy);
}

.quiz-progress-line {
    flex: 1;
    max-width: 80px;
    height: 2px;
    background: #D1D9E6;
    margin: 0 4px;
}

.quiz-slide {
    display: none;
}

.quiz-slide.active {
    display: block;
}

.quiz-back {
    background: none;
    border: none;
    color: var(--color-gray);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0;
    margin-bottom: 20px;
    font-family: var(--font-body);
    transition: color 0.2s;
}

.quiz-back:hover {
    color: var(--color-navy);
}

.quiz-question {
    font-size: 1.4rem;
    color: var(--color-navy);
    margin-bottom: 28px;
    text-align: center;
}

/* Slide 1 – Generation grid */
.gen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gen-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 16px;
    background: var(--color-white);
    border: 2px solid #D1D9E6;
    border-radius: 12px;
    cursor: pointer;
    gap: 6px;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.gen-card:hover {
    border-color: var(--color-orange);
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(27, 54, 93, 0.1);
}

.gen-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-navy);
}

.gen-sub {
    font-size: 0.78rem;
    color: var(--color-gray);
}

/* Slide 2 – Variant grid */
.variant-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.variant-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 16px;
    background: var(--color-white);
    border: 2px solid #D1D9E6;
    border-radius: 10px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-navy);
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.variant-card:hover {
    border-color: var(--color-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(27, 54, 93, 0.1);
}

/* Slide 3 – Repair layout */
.repair-layout {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 28px;
    align-items: start;
}

.repair-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.repair-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 18px;
    background: var(--color-white);
    border: 2px solid #D1D9E6;
    border-radius: 10px;
    cursor: pointer;
    text-align: left;
    gap: 4px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.repair-card:hover {
    border-color: var(--color-orange);
}

.repair-card.selected {
    border-color: var(--color-orange);
    background: rgba(243, 139, 60, 0.07);
}

.repair-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-navy);
}

.repair-tag {
    font-size: 0.8rem;
    color: var(--color-gray);
}

.repair-other {
    border-top: 1px solid #D1D9E6;
    padding-top: 16px;
}

.other-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--color-navy);
    cursor: pointer;
    margin-bottom: 10px;
}

.other-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-orange);
    cursor: pointer;
}

.other-textarea {
    display: none;
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #D1D9E6;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    resize: vertical;
    min-height: 80px;
    transition: border-color 0.2s;
}

.other-textarea:focus {
    outline: none;
    border-color: var(--color-orange);
    box-shadow: 0 0 0 3px rgba(243, 139, 60, 0.2);
}

/* Price sidebar */
.price-sidebar {
    position: sticky;
    top: 100px;
}

.price-box {
    background: var(--color-navy);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    margin-bottom: 14px;
}

.price-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 10px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: #4ade80;
    line-height: 1;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.price-amount.custom {
    color: var(--color-orange);
    font-size: 1.6rem;
}

.price-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
}

.price-savings {
    margin-top: 12px;
}

.savings-badge {
    display: inline-block;
    background: rgba(74, 222, 128, 0.15);
    border: 1px solid rgba(74, 222, 128, 0.4);
    color: #4ade80;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
}

.price-disclaimer {
    font-size: 0.75rem;
    color: var(--color-gray);
    text-align: center;
    margin-top: 10px;
    line-height: 1.4;
}

/* Slide 4 – Confirmation banner */
.conf-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--color-navy);
    border-radius: 10px;
    padding: 18px 24px;
    margin-bottom: 28px;
}

.conf-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.conf-amount {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #4ade80;
}

.conf-amount.custom {
    color: var(--color-orange);
    font-size: 1.3rem;
}

.label-opt {
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--color-gray);
}

.calendly-placeholder {
    border: 2px dashed #D1D9E6;
    border-radius: 10px;
    padding: 22px;
    text-align: center;
    color: var(--color-gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Quiz responsive */
@media (max-width: 768px) {
    .gen-grid {
        grid-template-columns: 1fr;
    }

    .repair-layout {
        grid-template-columns: 1fr;
    }

    .price-sidebar {
        position: static;
        order: -1;
    }

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