/* ==================== RESET & BASE ==================== */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        :root {
            --navy:        #0d1f3c;
            --dark-bg:     #06111f;
            --red:         #c8251d;
            --red-dark:    #a81e17;
            --gold:        #e8920a;
            --blue:        #1e88e5;
            --green:       #10b981;
            --light:       #f4f6f9;
            --border:      #e8ecf2;
            --muted:       #8a96a8;
            --body-text:   #3a4558;
            --heading:     #0d1f3c;
            --white:       #ffffff;
            --shadow:      0 4px 8px rgba(0,0,0,0.09);
            --shadow-lg:   0 12px 30px rgba(0,0,0,0.14);
        }

        body {
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--body-text);
            font-size: 16px;
            line-height: 1.7;
            overflow-x: hidden;
            width: 100%;
        }

        main { width: 100%; overflow-x: hidden; }

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

        h1 { font-size: clamp(1.9rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.12; color: var(--white); }
        h2 { font-size: clamp(1.5rem, 3.8vw, 2.4rem); font-weight: 700; line-height: 1.2; color: var(--heading); margin-bottom: 14px; }
        h3 { font-size: clamp(1.05rem, 2.4vw, 1.3rem); font-weight: 700; line-height: 1.3; color: var(--heading); margin-bottom: 10px; }
        h4 { font-size: 0.98rem; font-weight: 700; color: var(--heading); margin-bottom: 7px; }
        p  { margin-bottom: 15px; line-height: 1.8; }
        a  { text-decoration: none; color: inherit; }
        ul { list-style: none; padding: 0; }

        /* ==================== BREADCRUMB ==================== */
        .breadcrumb { background: var(--dark-bg); border-bottom: 1px solid rgba(255,255,255,0.07); padding: 10px 20px; }
        .breadcrumb-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 0.76rem; font-weight: 500; color: rgba(255,255,255,0.38); }
        .breadcrumb-inner a { color: rgba(255,255,255,0.5); transition: color 0.15s; }
        .breadcrumb-inner a:hover { color: var(--gold); }
        .breadcrumb-sep { color: rgba(255,255,255,0.2); }
        .breadcrumb-current { color: var(--gold); }

        /* ==================== HERO ==================== */
        .hero { position: relative; background: var(--dark-bg); overflow: hidden; padding: 72px 20px 80px; }
        .hero::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, transparent, transparent 42px, rgba(255,255,255,0.011) 42px, rgba(255,255,255,0.011) 43px); }
        .hero-bar { position: absolute; top: 0; left: 0; width: 6px; height: 100%; background: linear-gradient(180deg, var(--red), var(--gold)); }
        .hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 48px; position: relative; z-index: 1; }
        .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(200,37,29,0.15); border: 1px solid rgba(200,37,29,0.38); border-radius: 4px; padding: 6px 14px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: #ffb3b3; margin-bottom: 16px; width: fit-content; }
        .hero h1 span { color: var(--gold); }
        .hero-sub { font-size: 1.06rem; color: rgba(255,255,255,0.62); line-height: 1.8; margin: 16px 0 28px; max-width: 600px; }
        .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
        .hero-trust { display: flex; gap: 20px; flex-wrap: wrap; }
        .trust-item { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.45); display: flex; align-items: center; gap: 5px; }
        .hero-right { display: flex; flex-direction: column; gap: 14px; }
        .emergency-box { background: rgba(200,37,29,0.12); border: 1px solid rgba(200,37,29,0.35); border-radius: 10px; padding: 22px 20px; }
        .emergency-box h3 { color: var(--white); font-size: 1rem; margin-bottom: 6px; }
        .emergency-box p { font-size: 0.84rem; color: rgba(255,255,255,0.55); margin-bottom: 14px; }
        .emergency-phone { display: flex; align-items: center; gap: 10px; background: var(--red); color: var(--white); padding: 12px 18px; border-radius: 6px; font-size: 1.2rem; font-weight: 800; transition: background 0.2s; }
        .emergency-phone:hover { background: var(--red-dark); color: var(--white); }
        .repair-type-list { display: flex; flex-direction: column; gap: 9px; }
        .repair-type-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 7px; padding: 12px 16px; display: flex; align-items: center; gap: 12px; font-size: 0.86rem; font-weight: 600; color: rgba(255,255,255,0.7); transition: all 0.2s; }
        .repair-type-item:hover { background: rgba(255,255,255,0.08); color: var(--white); border-color: rgba(255,255,255,0.15); }
        .repair-type-item .rt-icon { font-size: 1.1rem; flex-shrink: 0; }
        .repair-type-item .rt-check { margin-left: auto; color: var(--green); font-size: 0.8rem; }

        /* ==================== BUTTONS ==================== */
        .btn { display: inline-block; padding: 14px 28px; font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; border-radius: 6px; border: none; cursor: pointer; transition: all 0.25s ease; text-align: center; white-space: nowrap; }
        .btn-red    { background: var(--red); color: var(--white); box-shadow: 0 4px 14px rgba(200,37,29,0.3); }
        .btn-red:hover { background: var(--red-dark); transform: translateY(-2px); color: var(--white); }
        .btn-ghost  { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
        .btn-ghost:hover { background: var(--white); color: var(--navy); }
        .btn-outline-red { background: transparent; color: var(--red); border: 2px solid var(--red); }
        .btn-outline-red:hover { background: var(--red); color: var(--white); }

        .certified-strip { background:#ffffff; padding:36px 20px; border-top:4px solid var(--gold); border-bottom:1px solid #e8ecf2; text-align:center; }
        .certified-strip-inner { max-width:600px; margin:0 auto; }
        .certified-strip-inner img { max-width:100%; height:auto; display:block; margin:0 auto; }

        /* ==================== STATS STRIP ==================== */
        .stats-strip { background: var(--dark-bg); border-top: 1px solid rgba(255,255,255,0.07); }
        .stats-row { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); }
        .stat-cell { padding: 24px 18px; text-align: center; border-right: 1px solid rgba(255,255,255,0.07); }
        .stat-cell:last-child { border-right: none; }
        .stat-num { display: block; font-size: 2.2rem; font-weight: 800; color: var(--gold); line-height: 1; }
        .stat-lbl { display: block; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.09em; color: rgba(255,255,255,0.38); margin-top: 4px; }

        /* ==================== SHARED ==================== */
        .bg-white  { background: var(--white); }
        .bg-light  { background: var(--light); }
        .bg-dark   { background: var(--dark-bg); }

        .section-label { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--red); margin-bottom: 10px; }
        .section-label::before, .section-label::after { content: ''; display: inline-block; width: 22px; height: 2px; background: var(--red); border-radius: 1px; }
        .section-label.left   { justify-content: flex-start; }
        .section-label.left::before, .section-label.left::after { display: none; }
        .section-label.gold   { color: var(--gold); }
        .section-label.gold::before, .section-label.gold::after { background: var(--gold); }

        .section-head { text-align: center; margin-bottom: 48px; }
        .section-intro { font-size: 1rem; color: var(--body-text); max-width: 720px; margin: 0 auto; line-height: 1.82; }

        /* ==================== COMMON REPAIRS GRID ==================== */
        .repairs-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
        .repair-card { background: var(--white); border-radius: 12px; padding: 28px 24px; border: 2px solid transparent; box-shadow: var(--shadow); transition: all 0.3s ease; position: relative; overflow: hidden; }
        .repair-card::after { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--red); transform: scaleY(0); transform-origin: bottom; transition: transform 0.3s ease; }
        .repair-card:hover { border-color: rgba(200,37,29,0.18); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
        .repair-card:hover::after { transform: scaleY(1); }
        .rc-icon  { font-size: 2.4rem; margin-bottom: 14px; display: block; }
        .rc-tag   { display: inline-block; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--red); background: rgba(200,37,29,0.08); border: 1px solid rgba(200,37,29,0.18); border-radius: 4px; padding: 2px 9px; margin-bottom: 10px; }
        .repair-card h3 { font-size: 1.05rem; margin-bottom: 9px; }
        .repair-card p  { font-size: 0.88rem; color: var(--body-text); line-height: 1.75; margin-bottom: 14px; }
        .rc-details { display: flex; flex-direction: column; gap: 5px; margin-bottom: 0; }
        .rc-detail-item { display: flex; align-items: flex-start; gap: 8px; font-size: 0.82rem; color: var(--body-text); }
        .rc-detail-item::before { content: '→'; color: var(--red); font-size: 0.75rem; flex-shrink: 0; margin-top: 2px; }

        /* ==================== TWO-COL CONTENT ==================== */
        .two-col { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 48px; }
        .prose h2 { color: var(--heading); margin-bottom: 14px; }
        .prose h3 { margin-top: 26px; margin-bottom: 9px; font-size: 1.12rem; }
        .prose p  { font-size: 0.95rem; color: var(--body-text); line-height: 1.85; margin-bottom: 15px; }
        .prose ul { margin: 10px 0 18px; display: flex; flex-direction: column; gap: 8px; }
        .prose ul li { display: flex; align-items: flex-start; gap: 9px; font-size: 0.92rem; color: var(--body-text); line-height: 1.65; }
        .prose ul li::before { content: '❄'; flex-shrink: 0; margin-top: 2px; }
        .prose a  { color: var(--red); font-weight: 600; }
        .prose a:hover { text-decoration: underline; }
        .callout-box { background: #fff5f5; border-left: 4px solid var(--red); border-radius: 0 8px 8px 0; padding: 18px 20px; margin: 20px 0; }
        .callout-box p { font-size: 0.93rem; color: var(--heading); font-weight: 600; margin-bottom: 0; }
        .callout-gold { background: #fff8ec; border-left: 4px solid var(--gold); border-radius: 0 8px 8px 0; padding: 18px 20px; margin: 20px 0; }
        .callout-gold p { font-size: 0.93rem; color: var(--heading); margin-bottom: 0; }

        /* Sidebar */
        .sidebar { display: flex; flex-direction: column; gap: 18px; }
        .sidebar-box { background: var(--white); border-radius: 10px; border: 1px solid var(--border); padding: 22px 20px; box-shadow: var(--shadow); }
        .sidebar-box.dark { background: var(--dark-bg); border: none; position: relative; overflow: hidden; }
        .sidebar-box.dark::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--red), var(--gold)); }
        .sidebar-box h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 14px; }
        .sidebar-box.dark h4 { color: rgba(255,255,255,0.4); }
        .sidebar-box.dark h3 { color: var(--white); margin-bottom: 8px; }
        .sidebar-box.dark p  { font-size: 0.84rem; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
        .sidebar-phone-btn { display: flex; align-items: center; gap: 9px; background: var(--red); color: var(--white); padding: 12px 18px; border-radius: 6px; font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; transition: background 0.2s; }
        .sidebar-phone-btn:hover { background: var(--red-dark); color: var(--white); }
        .sidebar-hrs { font-size: 0.72rem; color: rgba(255,255,255,0.35); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
        .check-list { display: flex; flex-direction: column; gap: 8px; }
        .check-list li { display: flex; align-items: center; gap: 9px; font-size: 0.86rem; color: var(--body-text); font-weight: 500; }
        .check-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
        .sidebar-box .check-list li a { color: var(--red); }

        /* ==================== COST TABLE ==================== */
        .cost-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
        .cost-table { width: 100%; border-collapse: collapse; min-width: 520px; background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); }
        .cost-table thead tr { background: var(--dark-bg); }
        .cost-table thead th { padding: 15px 18px; text-align: left; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: rgba(255,255,255,0.6); }
        .cost-table thead th:first-child { color: var(--gold); }
        .cost-table tbody tr { border-bottom: 1px solid var(--border); }
        .cost-table tbody tr:last-child { border-bottom: none; }
        .cost-table tbody tr:nth-child(even) { background: var(--light); }
        .cost-table tbody td { padding: 13px 18px; font-size: 0.9rem; color: var(--body-text); }
        .cost-table tbody td:first-child { font-weight: 700; color: var(--heading); }
        .td-price { font-weight: 700; color: var(--red); }
        .td-note  { font-size: 0.8rem; color: var(--muted); }

        /* ==================== DIAGNOSTIC STEPS ==================== */
        .diag-steps { display: flex; flex-direction: column; gap: 0; }
        .diag-step { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--border); }
        .diag-step:last-child { border-bottom: none; }
        .ds-num { width: 42px; height: 42px; background: var(--dark-bg); color: var(--gold); font-size: 1rem; font-weight: 800; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
        .diag-step h4 { font-size: 0.97rem; color: var(--heading); margin-bottom: 5px; }
        .diag-step p  { font-size: 0.87rem; color: var(--body-text); line-height: 1.68; margin-bottom: 0; }

        /* ==================== BRANDS GRID ==================== */
        .brands-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
        .brand-chip { word-break: break-word; background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 11px 14px; text-align: center; font-size: 0.86rem; font-weight: 700; color: var(--heading); transition: all 0.2s; }
        .brand-chip:hover { border-color: var(--red); color: var(--red); }

        /* ==================== AREAS GRID ==================== */
        .areas-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
        .area-link { word-break: break-word; hyphens: auto; background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; font-size: 0.88rem; font-weight: 700; text-transform: uppercase; color: var(--heading); transition: all 0.2s; }
        .area-link:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(200,37,29,0.1); }
        .area-link span  { font-size: 0.72rem; color: var(--muted); }
        .area-link:hover span { color: var(--red); }

        /* ==================== REVIEWS ==================== */
        .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
        .review-card { background: var(--white); border-radius: 10px; padding: 24px 22px; border: 1px solid var(--border); box-shadow: var(--shadow); position: relative; transition: all 0.3s; }
        .review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
        .review-card::before { content: '\201C'; position: absolute; top: 12px; right: 18px; font-size: 3.5rem; color: rgba(200,37,29,0.06); font-family: Georgia, serif; line-height: 1; }
        .r-stars  { color: var(--gold); font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 10px; }
        .r-text   { font-size: 0.9rem; color: var(--body-text); font-style: italic; line-height: 1.72; margin-bottom: 14px; }
        .reviewer { display: flex; align-items: center; gap: 10px; }
        .avatar   { width: 38px; height: 38px; border-radius: 50%; background: var(--dark-bg); display: flex; align-items: center; justify-content: center; font-size: 0.82rem; font-weight: 700; color: var(--white); flex-shrink: 0; }
        .rname    { font-size: 0.88rem; font-weight: 700; color: var(--heading); }
        .rsource  { font-size: 0.72rem; color: var(--muted); }

        /* ==================== FAQ ==================== */
        .faq-stack { display: flex; flex-direction: column; gap: 10px; max-width: 900px; margin: 0 auto; }
        .faq-item { background: var(--white); border-radius: 8px; border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow); }
        .faq-btn { width: 100%; background: none; border: none; padding: 17px 22px; font-family: 'Poppins', sans-serif; font-size: 0.96rem; font-weight: 600; color: var(--heading); text-align: left; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 14px; transition: background 0.2s; }
        .faq-btn:hover { background: var(--light); }
        .faq-btn.open  { background: var(--dark-bg); color: var(--white); }
        .faq-plus { font-size: 1.2rem; flex-shrink: 0; color: var(--red); transition: transform 0.25s; }
        .faq-btn.open .faq-plus { transform: rotate(45deg); color: var(--gold); }
        .faq-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.25s ease; padding: 0 22px; }
        .faq-body.open { max-height: 600px; padding: 16px 22px 20px; }
        .faq-body p { font-size: 0.92rem; color: var(--body-text); line-height: 1.8; margin-bottom: 0; }

        /* ==================== INTERNAL LINKS ==================== */
        .int-links-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
        .int-link-card { background: var(--white); border: 2px solid var(--border); border-radius: 10px; padding: 20px 18px; display: flex; align-items: center; gap: 14px; transition: all 0.3s; box-shadow: var(--shadow); }
        .int-link-card:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
        .ilc-icon { font-size: 1.9rem; flex-shrink: 0; width: 44px; text-align: center; }
        .int-link-card h3 { font-size: 0.96rem; color: var(--heading); margin-bottom: 2px; }
        .int-link-card p  { font-size: 0.82rem; color: var(--muted); margin-bottom: 0; line-height: 1.45; }
        .ilc-arrow { margin-left: auto; color: var(--muted); font-size: 1rem; flex-shrink: 0; }
        .int-link-card:hover .ilc-arrow { color: var(--red); }

        /* ==================== CTA BAND ==================== */
        .cta-band { background: var(--dark-bg); padding: 68px 20px; position: relative; overflow: hidden; }
        .cta-band::before { content: ''; position: absolute; top: 0; left: 0; width: 7px; height: 100%; background: linear-gradient(180deg, var(--red), var(--gold)); }
        .cta-row { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; position: relative; z-index: 1; }
        .cta-text h2 { color: var(--white); margin-bottom: 7px; }
        .cta-text h2 span { color: var(--gold); }
        .cta-text p  { color: rgba(255,255,255,0.5); font-size: 0.94rem; margin-bottom: 0; }
        .cta-phone { display: flex; align-items: center; gap: 11px; background: var(--red); color: var(--white); padding: 15px 26px; border-radius: 6px; transition: background 0.2s; }
        .cta-phone:hover { background: var(--red-dark); color: var(--white); }
        .cta-phone-lbl { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; opacity: 0.75; display: block; line-height: 1; margin-bottom: 2px; color: var(--white); }
        .cta-phone-num { font-size: 1.6rem; font-weight: 800; line-height: 1; color: var(--white); }
        .cta-hrs       { font-size: 0.76rem; color: rgba(255,255,255,0.35); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }

        /* ==================== RESPONSIVE ==================== */
        .stats-row      { grid-template-columns: repeat(2, 1fr); }
        .hero-inner     { grid-template-columns: 1fr; gap: 32px; }
        .repairs-grid   { grid-template-columns: 1fr; }
        .two-col        { grid-template-columns: 1fr; }
        .brands-grid    { grid-template-columns: repeat(2, 1fr); }
        .areas-grid     { grid-template-columns: 1fr; }
        .reviews-grid   { grid-template-columns: 1fr; }
        .int-links-grid { grid-template-columns: 1fr; }

        .hero     { padding: 44px 16px 52px; }
        .section  { padding: 52px 16px; }
        .section-sm { padding: 44px 16px; }
        .cta-band { padding: 52px 16px; }

        .hero-btns { flex-direction: column; }
        .btn       { width: 100%; text-align: center; padding: 14px 18px; font-size: 0.98rem; }
        .cta-row        { flex-direction: column; align-items: flex-start; }
        .cta-phone      { width: 100%; justify-content: center; }
        .cta-hrs        { text-align: center; width: 100%; margin-top: 8px; }

        @media (min-width: 640px) {
            .hero     { padding: 60px 24px 68px; }
            .section  { padding: 64px 24px; }
            .section-sm { padding: 52px 24px; }
            .cta-band { padding: 64px 24px; }
            .btn      { width: auto; }
            .hero-btns { flex-direction: row; }
            .stats-row      { grid-template-columns: repeat(4, 1fr); }
            .repairs-grid   { grid-template-columns: repeat(2, 1fr); gap: 20px; }
            .areas-grid     { grid-template-columns: repeat(2, 1fr); }
            .reviews-grid   { grid-template-columns: repeat(2, 1fr); }
            .int-links-grid { grid-template-columns: repeat(2, 1fr); }
            .brands-grid    { grid-template-columns: repeat(4, 1fr); }
            .cta-row    { flex-direction: row; align-items: center; justify-content: space-between; }
            .cta-phone  { width: auto; justify-content: flex-start; }
            .cta-hrs    { text-align: right; width: auto; }
        }

        @media (min-width: 1024px) {
            .hero     { padding: 88px 20px 80px; }
            .section  { padding: 80px 20px; }
            .cta-band { padding: 74px 20px; }
            .hero-inner     { grid-template-columns: 3fr 2fr; gap: 60px; align-items: center; }
            .repairs-grid   { grid-template-columns: repeat(3, 1fr); gap: 24px; }
            .two-col        { grid-template-columns: 3fr 2fr; gap: 60px; align-items: start; }
            .reviews-grid   { grid-template-columns: repeat(3, 1fr); }
            .int-links-grid { grid-template-columns: repeat(3, 1fr); }
            .areas-grid     { grid-template-columns: repeat(4, 1fr); }
            .brands-grid    { grid-template-columns: repeat(6, 1fr); }
        }

        @media (min-width: 1440px) {
            .hero-inner, .container, .two-col, .stats-row, .cta-row { max-width: 1360px; }
        }

        /* ==================== TOP BANNER ==================== */
        @keyframes bannerPulse {
            0%   { background-color: rgba(180,28,22,0.92); }
            50%  { background-color: rgba(20,80,160,0.92); }
            100% { background-color: rgba(180,28,22,0.92); }
        }
        .top-banner { width:100%; animation:bannerPulse 8s ease-in-out infinite; background-color:rgba(180,28,22,0.92); padding:11px 20px; text-align:center; position:relative; z-index:100; }
        .top-banner-inner { max-width:1200px; margin:0 auto; display:flex; align-items:center; justify-content:center; gap:10px; flex-wrap:wrap; }
        .top-banner-text { font-size:0.82rem; font-weight:600; color:rgba(255,255,255,0.93); letter-spacing:0.02em; line-height:1.5; font-family:'Poppins',sans-serif; }
        .top-banner-text strong { color:#fff; font-weight:700; }
        .top-banner-cta { font-size:0.76rem; font-weight:700; color:#fff; background:rgba(255,255,255,0.15); border:1px solid rgba(255,255,255,0.35); border-radius:4px; padding:4px 12px; white-space:nowrap; transition:background 0.2s; font-family:'Poppins',sans-serif; }
        @media (max-width:480px) { .top-banner-text { font-size:0.76rem; } .top-banner { padding:10px 14px; } }