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

        :root {
            --primary-navy:    #0d1f3c;
            --navy-mid:        #152d52;
            --dark-bg:         #06111f;
            --accent-red:      #c8251d;
            --accent-red-dark: #a81e17;
            --accent-gold:     #e8920a;
            --accent-blue:     #1e88e5;
            --light-gray:      #f4f6f9;
            --gray-border:     #e8ecf2;
            --gray-mid:        #8a96a8;
            --gray-dark:       #3a4558;
            --text-dark:       #1a2535;
            --white:           #ffffff;
            --green:           #10b981;
            --shadow:    0 4px 6px rgba(0,0,0,0.10);
            --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
        }

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

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

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

        h1 { font-size: clamp(1.9rem, 5vw, 3.4rem); font-weight: 700; line-height: 1.15; margin-bottom: 18px; }
        h2 { font-size: clamp(1.5rem, 4vw, 2.4rem); font-weight: 700; line-height: 1.2; margin-bottom: 16px; color: var(--primary-navy); }
        h3 { font-size: clamp(1.05rem, 2.5vw, 1.35rem); font-weight: 700; line-height: 1.3; margin-bottom: 10px; color: var(--primary-navy); }
        h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--primary-navy); }
        p  { margin-bottom: 15px; line-height: 1.78; color: var(--gray-dark); }
        img { max-width: 100%; height: auto; display: block; }
        a { text-decoration: none; color: inherit; }
        ul, ol { padding-left: 0; list-style: none; }

        /* ==================== 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; }
        }

        /* ==================== HERO ==================== */
        .hero-section {
            position: relative;
            background: var(--dark-bg);
            padding: 80px 20px 70px;
            color: var(--white);
            overflow: hidden;
            width: 100%;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(-45deg, transparent, transparent 42px, rgba(255,255,255,0.012) 42px, rgba(255,255,255,0.012) 43px);
        }

        .hero-accent-bar {
            position: absolute;
            top: 0; left: 0;
            width: 6px; height: 100%;
            background: linear-gradient(180deg, var(--accent-red) 0%, var(--accent-gold) 100%);
        }

        .hero-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 44px;
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(30,136,229,0.18);
            border: 1px solid rgba(30,136,229,0.42);
            border-radius: 4px;
            padding: 6px 14px;
            margin-bottom: 18px;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #90caf9;
        }

        .hero-content h1 { color: var(--white); }
        .hero-content h1 span { color: var(--accent-gold); }

        .hero-content > p {
            font-size: 1.05rem;
            color: rgba(255,255,255,0.65);
            line-height: 1.78;
            margin-bottom: 28px;
            max-width: 620px;
        }

        .hero-cta-row {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-bottom: 32px;
        }

        .hero-trust-row {
            display: flex;
            gap: 22px;
            flex-wrap: wrap;
        }

        .hero-trust-item {
            display: flex;
            align-items: center;
            gap: 7px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: rgba(255,255,255,0.55);
        }

        /* Hero sub-pages card stack */
        .hero-subpages {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .subpage-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 10px;
            padding: 20px 22px;
            display: flex;
            align-items: center;
            gap: 16px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .subpage-card:hover {
            background: rgba(255,255,255,0.09);
            border-color: var(--accent-gold);
            transform: translateX(4px);
        }

        .subpage-icon {
            width: 50px; height: 50px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .subpage-icon.red  { background: rgba(200,37,29,0.2); border: 1px solid rgba(200,37,29,0.3); }
        .subpage-icon.gold { background: rgba(232,146,10,0.2); border: 1px solid rgba(232,146,10,0.3); }
        .subpage-icon.blue { background: rgba(30,136,229,0.2); border: 1px solid rgba(30,136,229,0.3); }

        .subpage-text h3 { color: var(--white); font-size: 1rem; margin-bottom: 3px; }
        .subpage-text p  { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 0; line-height: 1.4; }

        .subpage-arrow { margin-left: auto; color: rgba(255,255,255,0.3); font-size: 1.2rem; flex-shrink: 0; }
        .subpage-card:hover .subpage-arrow { color: var(--accent-gold); }

        /* ==================== BUTTONS ==================== */
        .btn {
            padding: 14px 28px;
            font-size: clamp(0.95rem, 2vw, 1.05rem);
            font-weight: 700;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            white-space: nowrap;
            font-family: inherit;
        }

        .btn-primary   { background: var(--accent-red); color: var(--white); box-shadow: 0 4px 15px rgba(200,37,29,0.3); }
        .btn-primary:hover { background: var(--accent-red-dark); transform: translateY(-2px); color: var(--white); }
        .btn-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.42); }
        .btn-secondary:hover { background: var(--white); color: var(--primary-navy); }
        .btn-outline   { background: transparent; color: var(--accent-red); border: 2px solid var(--accent-red); }
        .btn-outline:hover { background: var(--accent-red); color: var(--white); }
        .btn-navy      { background: var(--dark-bg); color: var(--white); }
        .btn-navy:hover { background: var(--primary-navy); 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-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
        }

        .stat-block { padding: 26px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,0.07); }
        .stat-block:last-child { border-right: none; }
        .stat-block .num { font-size: 2.3rem; font-weight: 700; color: var(--accent-gold); line-height: 1; display: block; }
        .stat-block .lbl { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.42); margin-top: 4px; display: block; }

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

        .section-header { text-align: center; margin-bottom: 52px; }
        .section-header-left { margin-bottom: 36px; }

        .section-label {
            font-size: 0.78rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--accent-red);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .section-label::before,
        .section-label::after { content: ''; display: inline-block; width: 24px; height: 2px; background: var(--accent-red); }
        .section-label.left   { justify-content: flex-start; }
        .section-label.left::before, .section-label.left::after { display: none; }
        .section-label.gold   { color: var(--accent-gold); }
        .section-label.gold::before, .section-label.gold::after { background: var(--accent-gold); }

        .section-intro { font-size: 1.05rem; color: var(--gray-dark); max-width: 720px; margin: 0 auto; line-height: 1.78; }

        /* ==================== SERVICE OVERVIEW CARDS ==================== */
        .service-hub-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 28px;
        }

        .service-hub-card {
            background: var(--white);
            border-radius: 12px;
            padding: 36px 28px;
            box-shadow: var(--shadow);
            border: 2px solid transparent;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-hub-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
        }

        .service-hub-card.card-red::before   { background: var(--accent-red); }
        .service-hub-card.card-gold::before  { background: var(--accent-gold); }
        .service-hub-card.card-blue::before  { background: var(--accent-blue); }

        .service-hub-card:hover { border-color: rgba(200,37,29,0.2); transform: translateY(-6px); box-shadow: var(--shadow-lg); }

        .hub-icon { font-size: 2.6rem; margin-bottom: 16px; display: block; }

        .service-hub-card h3 { font-size: 1.35rem; color: var(--primary-navy); margin-bottom: 10px; }
        .service-hub-card > p { font-size: 0.94rem; color: var(--gray-dark); line-height: 1.75; margin-bottom: 20px; }

        .hub-features { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 7px; }

        .hub-features li {
            display: flex;
            align-items: flex-start;
            gap: 9px;
            font-size: 0.88rem;
            color: var(--gray-dark);
            line-height: 1.5;
        }

        .hub-features li::before {
            content: '✓';
            color: var(--green);
            font-weight: 700;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .hub-card-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--accent-red);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: gap 0.2s;
        }

        .hub-card-link:hover { gap: 10px; }

        /* ==================== WHY SAMMY'S ==================== */
        .why-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .why-card {
            background: var(--white);
            border-radius: 10px;
            padding: 26px 22px;
            border: 1px solid var(--gray-border);
            display: flex;
            gap: 16px;
            align-items: flex-start;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
        }

        .why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: rgba(200,37,29,0.2); }
        .why-icon { font-size: 1.8rem; flex-shrink: 0; width: 44px; text-align: center; }
        .why-card h3 { font-size: 1rem; margin-bottom: 5px; }
        .why-card p  { font-size: 0.87rem; color: var(--gray-mid); line-height: 1.65; margin-bottom: 0; }

        /* ==================== DEEP CONTENT SECTION ==================== */
        .content-two-col {
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .content-prose h2 { color: var(--primary-navy); margin-bottom: 14px; }
        .content-prose h3 { color: var(--primary-navy); margin-top: 28px; margin-bottom: 10px; font-size: 1.15rem; }
        .content-prose p  { font-size: 0.95rem; color: var(--gray-dark); line-height: 1.82; margin-bottom: 16px; }
        .content-prose ul { margin: 12px 0 18px; display: flex; flex-direction: column; gap: 8px; }
        .content-prose ul li {
            display: flex;
            align-items: flex-start;
            gap: 9px;
            font-size: 0.92rem;
            color: var(--gray-dark);
            line-height: 1.6;
        }
        .content-prose ul li::before { content: '❄'; flex-shrink: 0; margin-top: 1px; }

        .content-sidebar { display: flex; flex-direction: column; gap: 20px; }

        .sidebar-cta-box {
            background: var(--dark-bg);
            border-radius: 10px;
            padding: 28px 22px;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .sidebar-cta-box::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-red), var(--accent-gold));
        }

        .sidebar-cta-box h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 10px; }
        .sidebar-cta-box p  { font-size: 0.86rem; color: rgba(255,255,255,0.6); margin-bottom: 18px; }

        .sidebar-phone {
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--accent-red);
            color: var(--white);
            padding: 12px 18px;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 10px;
            transition: background 0.2s;
        }

        .sidebar-phone:hover { background: var(--accent-red-dark); color: var(--white); }

        .sidebar-hrs { font-size: 0.75rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }

        .sidebar-info-box {
            background: var(--white);
            border-radius: 10px;
            padding: 24px 20px;
            border: 1px solid var(--gray-border);
            box-shadow: var(--shadow);
        }

        .sidebar-info-box h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-mid); font-weight: 700; margin-bottom: 14px; }

        .sidebar-check-list { display: flex; flex-direction: column; gap: 9px; }

        .sidebar-check-list li {
            display: flex;
            align-items: center;
            gap: 9px;
            font-size: 0.87rem;
            color: var(--gray-dark);
            font-weight: 600;
        }

        .sidebar-check-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

        /* ==================== SIGNS / SYMPTOMS ==================== */
        .signs-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .sign-card {
            background: var(--white);
            border-radius: 8px;
            padding: 20px 18px;
            border-left: 4px solid var(--accent-red);
            box-shadow: var(--shadow);
            display: flex;
            gap: 14px;
            align-items: flex-start;
        }

        .sign-icon { font-size: 1.6rem; flex-shrink: 0; }
        .sign-card h4 { font-size: 0.95rem; color: var(--primary-navy); margin-bottom: 4px; }
        .sign-card p  { font-size: 0.84rem; color: var(--gray-mid); line-height: 1.6; margin-bottom: 0; }

        /* ==================== COMPARISON TABLE ==================== */
        .comparison-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 560px;
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .comparison-table thead tr { background: var(--dark-bg); color: var(--white); }
        .comparison-table thead th { padding: 16px 18px; text-align: left; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
        .comparison-table thead th:first-child { color: var(--accent-gold); }

        .comparison-table tbody tr { border-bottom: 1px solid var(--gray-border); }
        .comparison-table tbody tr:last-child { border-bottom: none; }
        .comparison-table tbody tr:nth-child(even) { background: var(--light-gray); }
        .comparison-table tbody td { padding: 14px 18px; font-size: 0.9rem; color: var(--gray-dark); vertical-align: top; }
        .comparison-table tbody td:first-child { font-weight: 700; color: var(--primary-navy); }

        .td-green { color: var(--green); font-weight: 700; }
        .td-red   { color: var(--accent-red); font-weight: 700; }

        /* ==================== PROCESS STEPS ==================== */
        .process-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0;
            position: relative;
        }

        .process-step {
            display: flex;
            gap: 22px;
            align-items: flex-start;
            padding: 24px 0;
            border-bottom: 1px solid var(--gray-border);
        }

        .process-step:last-child { border-bottom: none; }

        .step-num {
            width: 44px; height: 44px;
            background: var(--dark-bg);
            color: var(--accent-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        .process-step h4 { font-size: 1rem; color: var(--primary-navy); margin-bottom: 5px; }
        .process-step p  { font-size: 0.88rem; color: var(--gray-dark); line-height: 1.65; margin-bottom: 0; }

        /* ==================== AREAS GRID ==================== */
        .areas-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px;
        }

        .area-chip {
            word-break: break-word;
            background: var(--white);
            border: 1px solid var(--gray-border);
            border-radius: 6px;
            padding: 11px 14px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.2s;
            font-size: 0.88rem;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--primary-navy);
        }

        .area-chip:hover { border-color: var(--accent-red); color: var(--accent-red); box-shadow: 0 4px 14px rgba(200,37,29,0.1); }
        .area-chip span  { font-size: 0.72rem; color: var(--gray-mid); }
        .area-chip:hover span { color: var(--accent-red); }

        /* ==================== FAQ ==================== */
        .faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 860px; margin: 0 auto; }

        .faq-item {
            background: var(--white);
            border-radius: 8px;
            border: 1px solid var(--gray-border);
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .faq-q {
            width: 100%;
            padding: 18px 22px;
            background: none;
            border: none;
            font-family: inherit;
            font-size: 0.97rem;
            font-weight: 700;
            color: var(--primary-navy);
            text-align: left;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            transition: background 0.2s;
        }

        .faq-q:hover { background: var(--light-gray); }
        .faq-q.open  { background: var(--dark-bg); color: var(--white); }

        .faq-icon { font-size: 1.2rem; flex-shrink: 0; transition: transform 0.25s; color: var(--accent-red); }
        .faq-q.open .faq-icon { transform: rotate(45deg); color: var(--accent-gold); }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.25s ease;
            padding: 0 22px;
        }

        .faq-a.open {
            max-height: 500px;
            padding: 16px 22px 20px;
        }

        .faq-a p { font-size: 0.93rem; color: var(--gray-dark); line-height: 1.78; margin-bottom: 0; }

        /* ==================== REVIEWS STRIP ==================== */
        .review-strip { display: grid; grid-template-columns: 1fr; gap: 18px; }

        .review-card {
            background: var(--white);
            border-radius: 10px;
            padding: 24px 20px;
            border: 1px solid var(--gray-border);
            box-shadow: var(--shadow);
            transition: all 0.3s;
        }

        .review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
        .r-stars  { color: var(--accent-gold); font-size: 1rem; margin-bottom: 10px; letter-spacing: 2px; }
        .r-text   { font-size: 0.9rem; color: var(--gray-dark); font-style: italic; line-height: 1.7; margin-bottom: 14px; }
        .reviewer { display: flex; align-items: center; gap: 9px; }
        .avatar   { width: 36px; height: 36px; 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.86rem; font-weight: 700; color: var(--primary-navy); }
        .rsource  { font-size: 0.72rem; color: var(--gray-mid); }

        /* ==================== INTERNAL LINK HUB ==================== */
        .link-hub-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }

        .link-hub-card {
            background: var(--white);
            border-radius: 10px;
            padding: 22px 20px;
            border: 2px solid var(--gray-border);
            display: flex;
            align-items: center;
            gap: 16px;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
        }

        .link-hub-card:hover { border-color: var(--accent-red); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
        .link-hub-icon { font-size: 2rem; flex-shrink: 0; width: 48px; text-align: center; }
        .link-hub-card h3 { font-size: 1rem; color: var(--primary-navy); margin-bottom: 3px; }
        .link-hub-card p  { font-size: 0.84rem; color: var(--gray-mid); margin-bottom: 0; line-height: 1.5; }
        .link-hub-arrow { margin-left: auto; color: var(--gray-mid); font-size: 1.1rem; flex-shrink: 0; }
        .link-hub-card:hover .link-hub-arrow { color: var(--accent-red); }

        /* ==================== CTA BAND ==================== */
        .cta-band {
            background: var(--dark-bg);
            padding: 72px 20px;
            position: relative;
            overflow: hidden;
        }

        .cta-band::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 7px; height: 100%;
            background: linear-gradient(180deg, var(--accent-red), var(--accent-gold));
        }

        .cta-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 36px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .cta-text h2 { color: var(--white); margin-bottom: 8px; }
        .cta-text h2 span { color: var(--accent-gold); }
        .cta-text p  { color: rgba(255,255,255,0.52); font-size: 0.95rem; margin-bottom: 0; }

        .cta-phone-link {
            display: flex;
            align-items: center;
            gap: 11px;
            background: var(--accent-red);
            color: var(--white);
            padding: 15px 26px;
            border-radius: 6px;
            transition: background 0.2s ease;
        }

        .cta-phone-link:hover { background: var(--accent-red-dark); color: var(--white); }
        .cta-phone-lbl { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.8; display: block; line-height: 1; margin-bottom: 2px; color: var(--white); }
        .cta-phone-num { font-size: 1.65rem; font-weight: 700; line-height: 1; color: var(--white); }
        .cta-hrs       { font-size: 0.78rem; color: rgba(255,255,255,0.38); font-weight: 700; text-transform: uppercase; }

        /* ==================== RESPONSIVE — MOBILE FIRST ==================== */
        .stats-inner         { grid-template-columns: repeat(2, 1fr); }
        .hero-grid           { grid-template-columns: 1fr; gap: 32px; }
        .service-hub-grid    { grid-template-columns: 1fr; }
        .why-grid            { grid-template-columns: 1fr; }
        .content-two-col     { grid-template-columns: 1fr; }
        .signs-grid          { grid-template-columns: 1fr; }
        .areas-grid          { grid-template-columns: 1fr; }
        .review-strip        { grid-template-columns: 1fr; }
        .link-hub-grid       { grid-template-columns: 1fr; }
        .process-grid        { grid-template-columns: 1fr; }

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

        .hero-cta-row        { flex-direction: column; gap: 12px; }
        .btn                 { width: 100%; white-space: normal; padding: 14px 18px; font-size: 1rem; line-height: 1.4; text-align: center; display: block; }

        .cta-inner           { flex-direction: column; align-items: flex-start; gap: 20px; }
        .cta-phone-link      { width: 100%; justify-content: center; }
        .cta-hrs             { text-align: center; width: 100%; }

        @media (min-width: 640px) {
            .hero-section    { padding: 60px 24px 68px; }
            .content-section { padding: 64px 24px; }
            .content-section-sm { padding: 52px 24px; }
            .cta-band        { padding: 64px 24px; }

            .btn             { width: auto; display: inline-block; }
            .hero-cta-row    { flex-direction: row; }

            .stats-inner     { grid-template-columns: repeat(4, 1fr); }
            .service-hub-grid { grid-template-columns: 1fr; gap: 24px; }
            .why-grid        { grid-template-columns: 1fr; gap: 18px; }
            .signs-grid      { grid-template-columns: 1fr; gap: 16px; }
            .areas-grid      { grid-template-columns: repeat(2, 1fr); gap: 10px; }
            .review-strip    { grid-template-columns: 1fr; gap: 18px; }
            .link-hub-grid   { grid-template-columns: 1fr; gap: 16px; }

            .cta-inner       { flex-direction: row; align-items: center; justify-content: space-between; }
            .cta-phone-link  { width: auto; justify-content: flex-start; }
            .cta-hrs         { text-align: right; width: auto; }
        }

        @media (min-width: 1024px) {
            .hero-section    { padding: 90px 20px 80px; }
            .content-section { padding: 80px 20px; }
            .cta-band        { padding: 75px 20px; }

            .hero-grid       { grid-template-columns: 3fr 2fr; gap: 60px; align-items: center; }
            .service-hub-grid { grid-template-columns: 1fr; gap: 28px; }
            .why-grid        { grid-template-columns: 1fr; gap: 22px; }
            .signs-grid      { grid-template-columns: 1fr; gap: 18px; }
            .areas-grid      { grid-template-columns: repeat(4, 1fr); gap: 10px; }
            .review-strip    { grid-template-columns: 1fr; gap: 20px; }
            .link-hub-grid   { grid-template-columns: 1fr; gap: 18px; }
            .content-two-col { grid-template-columns: 3fr 2fr; gap: 60px; align-items: start; }
        }

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