* { box-sizing: border-box; margin: 0; padding: 0; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }
body { background-color: var(--bg-main); color: var(--text-main); line-height: 1.6; }
.container { max-width: 800px; margin: 0 auto; padding: 40px 20px; }

h1 { font-size: 2.5rem; margin-bottom: 20px; color: var(--text-main); }
h2 { font-size: 1.8rem; margin: 40px 0 20px 0; color: var(--primary); }
h3 { font-size: 1.3rem; margin: 20px 0 10px 0; color: var(--text-main); }
p { margin-bottom: 15px; color: var(--text-muted); }

/* Updated styles for clickable building links */
.housing-link { color: var(--text-main); text-decoration: none; display: block; margin-bottom: 8px; transition: color 0.2s; }
.housing-link:hover { color: var(--primary); text-decoration: underline; }

.expert-box { background: var(--bg-card); padding: 30px; border-radius: 12px; border: 1px solid var(--border); margin: 30px 0; }
.housing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 20px 0; }
.grid-item { background: #1e293b; padding: 20px; border-radius: 8px; }

.service-list { list-style: none; margin: 20px 0; }
.service-list li { padding-left: 30px; position: relative; margin-bottom: 15px; }
.service-list li::before { content: "✅"; position: absolute; left: 0; }

.btn-primary { display: block; width: 100%; padding: 20px; background: var(--primary); color: #042F1A; text-align: center; font-weight: 800; font-size: 18px; border-radius: 8px; text-decoration: none; margin-top: 40px; }

.copyright .footer-copyright-link { color: var(--text-muted); font-size: 12px; margin-top: 20px; border-top: 1px solid var(--border); padding-top: 20px; text-align: center; text-decoration: none;}

* { box-sizing: border-box; margin: 0; padding: 0; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }
body { background-color: var(--bg-main); color: var(--text-main); line-height: 1.6; }
.container { max-width: 680px; margin: 0 auto; padding: 24px; }

.form-group { margin-bottom: 24px; }
label { display: block; margin-bottom: 8px; font-size: 14px; color: var(--text-muted); font-weight: 600; }
.form-control { width: 100%; padding: 15px; background: var(--input-bg); border: 1px solid var(--border); border-radius: 6px; color: var(--text-main); font-size: 16px; }
.flexibility-note { font-size: 13px; color: var(--primary); display: block; margin-top: 8px; font-weight: 500; }

.btn-primary { display: block; width: 100%; padding: 16px; border-radius: 8px; font-weight: 700; background-color: var(--primary); color: #042F1A; border: none; cursor: pointer; text-align: center; font-size: 16px; }

/* Professional Footer Styling */
footer { background: #05080d; border-top: 1px solid var(--border); padding: 40px 20px; margin-top: 60px; }
.footer-content { max-width: 680px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.footer-content h4 { color: var(--primary); margin-bottom: 15px; font-size: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color 0.3s; }
.footer-links a:hover { color: var(--primary); }






* { box-sizing: border-box; margin: 0; padding: 0; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }
body { background-color: var(--bg-main); color: var(--text-main); line-height: 1.6; }
.container { max-width: 680px; margin: 0 auto; padding: 24px; }

.form-group { margin-bottom: 24px; }
label { display: block; margin-bottom: 8px; font-size: 14px; color: var(--text-muted); font-weight: 600; }
.form-control { width: 100%; padding: 15px; background: var(--input-bg); border: 1px solid var(--border); border-radius: 6px; color: var(--text-main); font-size: 16px; }
.flexibility-note { font-size: 13px; color: var(--primary); display: block; margin-top: 8px; font-weight: 500; }

.btn-primary { display: block; width: 100%; padding: 16px; border-radius: 8px; font-weight: 700; background-color: var(--primary); color: #042F1A; border: none; cursor: pointer; text-align: center; font-size: 16px; }

/* Professional Footer Styling */
footer { background: #05080d; border-top: 1px solid var(--border); padding: 40px 20px; margin-top: 60px; }
.footer-content { max-width: 680px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.footer-content h4 { color: var(--primary); margin-bottom: 15px; font-size: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color 0.3s; }
.footer-links a:hover { color: var(--primary); }

.copyright .footer-copyright-link { color: var(--text-muted); font-size: 12px; margin-top: 20px; border-top: 1px solid var(--border); padding-top: 20px; text-align: center; text-decoration: none;}



    /* CSS Variable System Supporting Both Modes Dynamically */
    :root {
        --primary: #22C55E;
        --primary-hover: #16A34A;
        --discount-blue: #3B82F6;
        --transition-speed: 0.25s;

        /* Dark Mode Core Values (Default State) */
        --bg-main: #090D16;
        --bg-card: #131926;
        --text-main: #F9FAFB;
        --text-muted: #9CA3AF;
        --border: #1E293B;
        --input-bg: #090D16;
        --hero-glow: rgba(34, 197, 94, 0.15);
        --header-bg: rgba(9, 13, 22, 0.85);
        --call-gradient-end: #0d2718;
        --modal-overlay-bg: rgba(4, 7, 13, 0.9);

        --logo-filter: invert(0.9) hue-rotate(180deg) brightness(1.2);
        --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
        --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    /* Light Mode Token Configuration Overrides */
    [data-theme="light"] {
        --bg-main: #F8FAFC;
        --bg-card: #FFFFFF;
        --text-main: #0F172A;
        --text-muted: #475569;
        --border: #CBD5E1;
        --input-bg: #F1F5F9;
        --hero-glow: rgba(34, 197, 94, 0.05);
        --header-bg: rgba(248, 250, 252, 0.85);
        --call-gradient-end: #F0FDF4;
        --modal-overlay-bg: rgba(15, 23, 42, 0.4);

        --logo-filter: none;
        --shadow-sm: 0 2px 8px rgba(148, 163, 184, 0.1);
        --shadow-md: 0 10px 30px rgba(148, 163, 184, 0.15);
    }

    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        -webkit-tap-highlight-color: transparent;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        background-color: var(--bg-main);
        color: var(--text-main);
        line-height: 1.6;
        transition: background-color var(--transition-speed), color var(--transition-speed);
    }

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

    /* Sticky Header Navigation */
    header {
        border-bottom: 1px solid var(--border);
        padding: 14px 0;
        position: sticky;
        top: 0;
        background: var(--header-bg);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        z-index: 90;
        transition: background var(--transition-speed), border-color var(--transition-speed);
    }

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

    .logo {
        font-size: 22px;
        font-weight: 800;
        color: var(--text-main);
        text-decoration: none;
        letter-spacing: -0.5px;
        transition: transform var(--transition-speed);
    }
    .logo:hover {
        transform: scale(1.02);
    }

    .logo span {
        color: var(--primary);
    }

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

    .btn-call-nav {
        background: rgba(34, 197, 94, 0.1);
        border: 1.5px solid var(--primary);
        color: var(--primary);
        padding: 8px 14px;
        border-radius: 6px;
        font-weight: 700;
        font-size: 14px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: all var(--transition-speed);
    }

    [data-theme="light"] .btn-call-nav {
        background: rgba(34, 197, 94, 0.06);
        color: #15803D;
        border-color: #16A34A;
    }

    .btn-call-nav:hover {
        background: var(--primary);
        color: #042F1A;
        border-color: var(--primary);
        transform: translateY(-1px);
    }

    .utility-btn {
        background: var(--bg-card);
        border: 1px solid var(--border);
        color: var(--text-main);
        padding: 6px;
        border-radius: 6px;
        cursor: pointer;
        font-weight: bold;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all var(--transition-speed);
        height: 38px;
        width: 38px;
    }
    .utility-btn:hover {
        border-color: var(--primary);
        transform: translateY(-1px);
    }

    /* Hero Layout */
    .hero {
        padding: 40px 0;
        border-bottom: 1px solid var(--border);
    }

    .hero-flex {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        gap: 32px;
        text-align: center;
    }

    .hero-text {
        width: 100%;
    }

    .hero-logo-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
        perspective: 1000px;
        cursor: pointer;
    }

    .hero-brand-logo {
        width: 180px;
        height: 180px;
        object-fit: contain;
        filter: drop-shadow(0 10px 20px var(--hero-glow)) var(--logo-filter);
        transform-style: preserve-3d;
        will-change: transform;
        transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), filter var(--transition-speed);
        animation: brandPulse 3s ease-in-out infinite alternate;
    }

    @keyframes brandPulse {
        0% {
            transform: scale(0.97);
            filter: drop-shadow(0 5px 10px rgba(34, 197, 94, 0.1)) var(--logo-filter);
        }
        100% {
            transform: scale(1.03);
            filter: drop-shadow(0 15px 25px rgba(34, 197, 94, 0.25)) var(--logo-filter);
        }
    }

    .hero-logo-wrapper:hover .hero-brand-logo {
        animation-play-state: paused;
    }

    .seo-badge {
        display: inline-block;
        background: rgba(34, 197, 94, 0.1);
        color: var(--primary);
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 700;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    [data-theme="light"] .seo-badge {
        background: #DCFCE7;
        color: #15803D;
    }

    h1 {
        font-size: clamp(28px, 4.5vw, 42px);
        font-weight: 800;
        margin-bottom: 20px;
        letter-spacing: -0.03em;
        line-height: 1.2;
        text-wrap: balance;
    }

    h1 span {
        color: var(--primary);
        display: inline-block;
    }

    [data-theme="light"] h1 span {
        color: #16A34A;
    }

    .hero p {
        font-size: clamp(15px, 1.8vw, 17px);
        color: var(--text-muted);
        margin-bottom: 32px;
        max-width: 100%;
    }

    .cta-group {
        display: flex;
        flex-direction: column;
        gap: 14px;
        width: 100%;
    }

    .btn {
        display: block;
        width: 100%;
        padding: 16px 26px;
        border-radius: 8px;
        font-weight: 700;
        text-decoration: none;
        cursor: pointer;
        font-size: 16px;
        transition: all var(--transition-speed);
        text-align: center;
        box-shadow: var(--shadow-sm);
    }

    .btn-primary {
        background-color: var(--primary);
        color: #042F1A;
        border: none;
    }

    [data-theme="light"] .btn-primary {
        background-color: #16A34A;
        color: #FFFFFF;
    }

    .btn-primary:hover {
        background-color: var(--primary-hover);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .btn-primary:disabled {
        background-color: #166534;
        color: #a3e635;
        cursor: not-allowed;
        opacity: 0.6;
        transform: none;
    }

    .btn-secondary {
        border: 1.5px solid var(--border);
        color: var(--text-main);
        background-color: transparent;
    }
    .btn-secondary:hover {
        border-color: var(--primary);
        transform: translateY(-2px);
    }

    /* SVG Value Proposition Cards Row */
    .seo-props-row {
        display: flex;
        flex-direction: column;
        gap: 18px;
        margin: 36px 0;
    }

    .prop-item {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 24px;
        display: flex;
        gap: 18px;
        align-items: flex-start;
        transition: border-color var(--transition-speed), transform var(--transition-speed);
    }
    .prop-item:hover {
        border-color: var(--primary);
        transform: translateY(-4px);
    }

    .prop-icon-wrapper {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(34, 197, 94, 0.1);
        color: var(--primary);
        border-radius: 8px;
        flex-shrink: 0;
    }

    [data-theme="light"] .prop-icon-wrapper {
        background: #DCFCE7;
        color: #16A34A;
    }

    .prop-icon {
        width: 26px;
        height: 26px;
        fill: currentColor;
    }

    .prop-text h4 {
        margin-bottom: 6px;
        font-size: 17px;
        font-weight: 700;
    }

    .prop-text p {
        color: var(--text-muted);
        font-size: 15px;
    }

    /* Fleet Trust Proof Section */
    .trust-proof-section {
        padding: 36px 0;
        border-bottom: 1px solid var(--border);
    }

    .proof-grid {
        display: flex;
        flex-direction: column;
        gap: 28px;
    }

    .proof-image-wrapper {
        width: 100%;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid var(--border);
        box-shadow: var(--shadow-sm);
    }

    .proof-img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    .proof-image-wrapper:hover .proof-img {
        transform: scale(1.03);
    }

    .proof-text-side h3 {
        font-size: 26px;
        font-weight: 800;
        margin-bottom: 14px;
        letter-spacing: -0.5px;
        line-height: 1.3;
    }

    .proof-text-side p {
        color: var(--text-muted);
        font-size: 15.5px;
        margin-bottom: 18px;
    }

    .proof-mini-title {
        font-size: 12px;
        font-weight: 700;
        color: var(--primary);
        letter-spacing: 1px;
        text-transform: uppercase;
        display: block;
        margin-bottom: 6px;
    }

    .proof-bullets {
        list-style: none;
    }

    .proof-bullets li {
        margin-bottom: 12px;
        font-size: 15px;
        font-weight: 600;
        display: flex;
        align-items: flex-start;
        gap: 10px;
        transition: transform var(--transition-speed);
    }
    .proof-bullets li:hover {
        transform: translateX(4px);
    }

    .proof-bullets li span {
        color: var(--primary);
    }

    /* Pricing Area Layout */
    .section-title {
        text-align: center;
        font-size: 28px;
        font-weight: 800;
        margin: 44px 0 10px 0;
        letter-spacing: -0.5px;
    }

    .section-subtitle {
        text-align: center;
        color: var(--text-muted);
        margin-bottom: 36px;
        font-size: 15px;
    }

    .grid {
        display: flex;
        flex-direction: column;
        gap: 22px;
        margin-bottom: 32px;
    }

    .card {
        background-color: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 28px;
        display: flex;
        flex-direction: column;
        transition: all var(--transition-speed);
        box-shadow: var(--shadow-sm);
    }
    .card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
        border-color: var(--primary);
    }

    .card-header h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .card-header p {
        color: var(--text-muted);
        font-size: 15px;
    }

    .price {
        font-size: 40px;
        font-weight: 800;
        margin: 18px 0;
        color: var(--text-main);
    }

    .price span {
        font-size: 16px;
        color: var(--text-muted);
        font-weight: normal;
    }

    .features-list {
        list-style: none;
        margin: 18px 0 28px 0;
        border-top: 1px solid var(--border);
        padding-top: 18px;
    }

    .features-list li {
        margin-bottom: 12px;
        color: var(--text-main);
        display: flex;
        align-items: flex-start;
        font-size: 15px;
    }

    .features-list li::before {
        content: "➔";
        color: var(--primary);
        margin-right: 12px;
        font-weight: bold;
        flex-shrink: 0;
    }

    /* Interactive Estimation Slider Panel */
    .calculator-panel {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 24px;
        margin-bottom: 44px;
        box-shadow: var(--shadow-sm);
    }

    .calc-title-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 16px;
    }

    .calc-title-row h4 {
        font-size: 16px;
        font-weight: 700;
    }

    .calc-hours-display {
        background: rgba(34, 197, 94, 0.1);
        color: var(--primary);
        padding: 4px 10px;
        border-radius: 6px;
        font-weight: 700;
        font-size: 14px;
    }

    [data-theme="light"] .calc-hours-display {
        background: #DCFCE7;
        color: #16A34A;
    }

    .slider-control {
        width: 100%;
        -webkit-appearance: none;
        background: var(--border);
        height: 6px;
        border-radius: 3px;
        outline: none;
        margin-bottom: 20px;
    }

    .slider-control::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: var(--primary);
        cursor: pointer;
        transition: transform 0.1s ease;
    }

    .slider-control::-webkit-slider-thumb:hover {
        transform: scale(1.2);
    }

    .calc-output-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        border-top: 1px dashed var(--border);
        padding-top: 16px;
    }

    .calc-output-box {
        padding: 12px;
        border-radius: 8px;
        transition: background var(--transition-speed);
    }

    .calc-output-box.highlighted-plan {
        background: rgba(34, 197, 94, 0.08);
        border: 1px solid rgba(34, 197, 94, 0.3);
    }

    .calc-output-box h5 {
        font-size: 12px;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 2px;
    }

    .calc-output-box p {
        font-size: 22px;
        font-weight: 800;
        color: var(--text-main);
    }

    .calc-output-box p span {
        color: var(--primary);
    }

    .student-banner {
        background: rgba(59, 130, 246, 0.08);
        border: 1px dashed var(--discount-blue);
        border-radius: 8px;
        padding: 18px;
        text-align: center;
        margin-bottom: 44px;
        font-size: 15px;
        transition: transform var(--transition-speed);
    }
    .student-banner:hover {
        transform: scale(1.01);
    }

    .student-banner strong {
        color: #3B82F6;
    }

    /* Optimized FAQ Accordion Section */
    .faq-section {
        margin: 44px 0;
    }

    .faq-container {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .faq-item {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 8px;
        overflow: hidden;
        transition: border-color var(--transition-speed);
    }

    .faq-trigger {
        width: 100%;
        background: none;
        border: none;
        padding: 20px 24px;
        text-align: left;
        color: var(--text-main);
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 18px;
        transition: color var(--transition-speed), padding-left var(--transition-speed);
    }
    .faq-trigger:hover {
        color: var(--primary);
        padding-left: 30px;
    }

    .faq-icon {
        font-size: 13px;
        color: var(--text-muted);
        transition: transform var(--transition-speed);
    }

    .faq-item.active .faq-icon {
        transform: rotate(180deg);
        color: var(--primary);
    }

    .faq-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
        padding: 0 24px;
        opacity: 0;
    }

    .faq-item.active {
        border-color: var(--primary);
    }

    .faq-item.active .faq-content {
        max-height: 1000px;
        padding-bottom: 20px;
        opacity: 1;
    }

    .faq-content p {
        color: var(--text-muted);
        font-size: 15px;
        line-height: 1.6;
    }

    /* Booking Communications Blocks */
    .call-option-block {
        background: linear-gradient(135deg, var(--bg-card) 0%, var(--call-gradient-end) 100%);
        border: 1.5px solid var(--primary);
        border-radius: 12px;
        padding: 26px;
        margin-bottom: 22px;
        text-align: center;
        transition: transform var(--transition-speed);
    }
    .call-option-block:hover {
        transform: translateY(-2px);
    }

    [data-theme="light"] .call-option-block {
        border-color: #16A34A;
    }

    .call-option-block h3 {
        font-size: 19px;
        margin-bottom: 6px;
    }

    .phone-link {
        display: block;
        font-size: 28px;
        font-weight: 800;
        color: var(--primary);
        text-decoration: none;
        margin: 10px 0;
        transition: transform var(--transition-speed);
        display: inline-block;
    }
    .phone-link:hover {
        transform: scale(1.03);
    }

    [data-theme="light"] .phone-link {
        color: #16A34A;
    }

    .booking-section {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 28px;
        margin-bottom: 64px;
        position: relative;
    }

    .form-group {
        margin-bottom: 18px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-size: 14px;
        color: var(--text-muted);
        font-weight: 600;
    }

    .form-control {
        width: 100%;
        padding: 15px;
        background: var(--input-bg);
        border: 1px solid var(--border);
        border-radius: 6px;
        color: var(--text-main);
        font-size: 16px; /* Prevents auto-zoom scales in iOS safari environments */
        -webkit-appearance: none;
        transition: border-color var(--transition-speed), box-shadow var(--transition-speed);
    }

    .form-control:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
    }

    .form-row-2, .form-row-3 {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .privacy-notice {
        font-size: 12.5px;
        color: var(--text-muted);
        margin-top: 8px;
        display: block;
        line-height: 1.4;
    }

    /* Inline Beautiful Success Banner State */
    .success-panel {
        display: none;
        text-align: center;
        padding: 40px 20px;
        animation: fadeIn 0.4s ease forwards;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: scale(0.96); }
        to { opacity: 1; transform: scale(1); }
    }

    .success-icon {
        width: 64px;
        height: 64px;
        background: rgba(34, 197, 94, 0.1);
        color: var(--primary);
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        margin-bottom: 20px;
    }

    .success-panel h3 {
        font-size: 22px;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .success-panel p {
        color: var(--text-muted);
        font-size: 15px;
        max-width: 440px;
        margin: 0 auto;
    }

    /* Language Selector Modal Box */
    .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--modal-overlay-bg);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .modal-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

    .modal-content {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 36px 28px;
        text-align: center;
        width: 88%;
        max-width: 400px;
        box-shadow: var(--shadow-md);
    }

    .modal-title {
        font-size: 24px;
        font-weight: 800;
        margin-bottom: 8px;
    }

    .modal-subtitle {
        color: var(--text-muted);
        font-size: 15px;
        margin-bottom: 26px;
    }

    .modal-btn-group {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .modal-btn {
        padding: 15px;
        border-radius: 8px;
        font-weight: 700;
        font-size: 16px;
        cursor: pointer;
        border: 1px solid var(--border);
        background: var(--input-bg);
        color: var(--text-main);
        transition: all var(--transition-speed);
    }
    .modal-btn:hover {
        border-color: var(--primary);
        transform: translateY(-1px);
    }

    footer {
        border-top: 1px solid var(--border);
        padding: 36px 0;
        text-align: center;
        color: var(--text-muted);
        font-size: 14px;
    }

    /* Desktop Media Queries */
    @media (min-width: 769px) {
        .hero { padding: 60px 0; }
        .hero-flex { display: grid; grid-template-columns: 1.25fr 0.75fr; text-align: left; gap: 40px; }
        .hero-brand-logo { width: 260px; height: 260px; }

        .hero p { max-width: 54ch; }
        .section-subtitle { font-size: 16px; max-width: 65ch; margin-left: auto; margin-right: auto; }
        .prop-text p { max-width: 32ch; }
        .proof-text-side p { font-size: 16px; max-width: 55ch; }
        .card-header p { max-width: 34ch; }
        .faq-content p { max-width: 78ch; }

        .cta-group { flex-direction: row; width: auto; }
        .btn { width: auto; }
        .seo-props-row { flex-direction: row; gap: 24px; margin: 54px 0; }
        .prop-item { flex: 1; }
        .proof-grid { grid-template-columns: 1.1fr 0.9fr; display: grid; gap: 54px; align-items: center; }
        .grid { flex-direction: row; gap: 26px; }
        .card { flex: 1; }

        .form-row-2 { flex-direction: row; }
        .form-row-2 .form-group { flex: 1; }
        .form-row-3 { flex-direction: row; }
        .form-row-3 .form-group:nth-child(1) { flex: 1.5; }
        .form-row-3 .form-group:nth-child(2) { flex: 1.2; }
        .form-row-3 .form-group:nth-child(3) { flex: 1.3; }

        .call-option-block, .booking-section, .calculator-panel { max-width: 680px; margin-left: auto; margin-right: auto; }
        .modal-btn-group { flex-direction: row; }
        .modal-btn { flex: 1; }
    }
