:root {
    --primary: #1f8a5a;
    --primary-strong: #166b44;
    --dark: #0f172a;
    --text-body: #334155;
    --text-muted: #64748b;
    --light: #f6f9fc;
    --white: #ffffff;
    --accent: #f25c2b;
    --accent-strong: #df4a1a;
    --radius-xs: 8px;
    --radius-sm: 12px;
    --radius: 16px;
    --radius-lg: 24px;
    --error: #e11d48;
    --ring: 0 0 0 4px rgba(31, 138, 90, 0.18);
    --shadow-sm: 0 6px 18px rgba(15, 23, 42, 0.06), 0 2px 6px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    --shadow-lg: 0 20px 45px rgba(15, 23, 42, 0.12), 0 10px 18px rgba(15, 23, 42, 0.06);
    --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
}
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--text-body); line-height: 1.6; overflow-x: hidden; background: radial-gradient(circle at 10% 0%, #fbfdff 0%, var(--light) 38%, #f3f7fb 100%); }
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--dark);
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}
h1 { font-size: clamp(2rem, 3.2vw + 1rem, 3.8rem); }
h2 { font-size: clamp(1.55rem, 2vw + 1rem, 2.75rem); }
h3 { font-size: clamp(1.15rem, 1.2vw + 0.9rem, 1.6rem); }
p { line-height: 1.6; color: var(--text-body); }
a { text-decoration: none; transition: color 0.35s var(--ease-premium), transform 0.35s var(--ease-premium), box-shadow 0.35s var(--ease-premium), background-color 0.35s var(--ease-premium), border-color 0.35s var(--ease-premium); }
img { display: block; max-width: 100%; }

:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 8px; }

/* HEADER & DROPDOWN MENU */
header { position: fixed; top: 0; width: 100%; z-index: 1000; background: rgba(255, 255, 255, 0.98); border-bottom: 1px solid rgba(0,0,0,0.08); padding: 10px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 50px; width: auto; }
.hamburger { display: none; background: transparent; border: none; font-size: 26px; color: var(--dark); cursor: pointer; padding: 5px; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { color: var(--dark); font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
.nav-links a:hover { color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: 15px; }
.btn-call { background: var(--dark); color: white; padding: 12px 24px; border-radius: 50px; font-weight: 700; font-size: 14px; white-space: nowrap; box-shadow: var(--shadow-sm); transition: transform 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium), background 0.4s var(--ease-premium); }
.btn-call:hover { background: #1e293b; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-call:active { transform: translateY(0); }

.dropdown { position: relative; display: inline-block; }
.dropdown-content { display: none; position: absolute; background-color: white; min-width: 240px; box-shadow: 0px 10px 30px rgba(0,0,0,0.1); z-index: 1001; border-radius: 8px; top: 100%; left: -20px; overflow: hidden; border: 1px solid #f1f5f9; padding: 10px 0; }
.dropdown-content a { color: var(--dark); padding: 12px 20px; text-decoration: none; display: block; text-transform: none; font-weight: 500; font-size: 14px; letter-spacing: 0; }
.dropdown-content a:hover { background-color: #f8fafc; color: var(--primary); padding-left: 25px; }
@media (min-width: 901px) { .dropdown:hover .dropdown-content { display: block; animation: fadeInMenu 0.2s ease-out; } }
@keyframes fadeInMenu { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

/* HERO SECTION */
.hero-wrapper { margin-top: 70px; position: relative; background-color: var(--dark); }
.hero-desktop { position: relative; height: 85vh; min-height: 650px; display: flex; align-items: center; overflow: hidden; }
.hero-bg-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; z-index: 0; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(175deg, rgba(15, 23, 42, 0.72) 0%, rgba(15, 23, 42, 0.6) 50%, rgba(15, 23, 42, 0.75) 100%); z-index: 1; }
.hero-content h1 { color: #ffffff !important; font-size: clamp(2.2rem, 4vw, 3.8rem); margin-bottom: 20px; text-shadow: 0 2px 8px rgba(0,0,0,0.5), 0 6px 24px rgba(0,0,0,0.3); }
.hero-content p { color: #f1f5f9 !important; font-size: 1.2rem; margin-bottom: 35px; max-width: 700px; text-shadow: 0 2px 8px rgba(0,0,0,0.5); font-weight: 500; }
.cta-buttons { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 30px; }
.btn-primary { background: linear-gradient(135deg, #ff6a3d 0%, var(--accent) 60%, var(--accent-strong) 100%); color: white; padding: 15px 30px; border-radius: var(--radius-sm); font-weight: 700; font-size: 15px; border: none; cursor: pointer; display: inline-block; text-align: center; box-shadow: 0 4px 14px rgba(242, 92, 43, 0.35), var(--shadow-sm); transition: transform 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium), background 0.4s var(--ease-premium); letter-spacing: 0.01em; }
.btn-primary:hover { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%); color: white; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(242, 92, 43, 0.4), var(--shadow-md); }
.btn-primary:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(242, 92, 43, 0.3); }
.btn-secondary { background: linear-gradient(135deg, #25a56d 0%, var(--primary) 65%, var(--primary-strong) 100%); color: white; padding: 15px 30px; border-radius: var(--radius-sm); font-weight: 700; font-size: 15px; display: flex; align-items: center; gap: 8px; box-shadow: 0 4px 14px rgba(31, 138, 90, 0.3), var(--shadow-sm); transition: transform 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium), background 0.4s var(--ease-premium); letter-spacing: 0.01em; }
.btn-secondary:hover { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-strong) 100%); color: white; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(31, 138, 90, 0.35), var(--shadow-md); }
.btn-secondary:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(31, 138, 90, 0.25); }
.btn-tertiary { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.25); backdrop-filter: blur(10px) saturate(120%); -webkit-backdrop-filter: blur(10px) saturate(120%); color: white; padding: 15px 30px; border-radius: var(--radius-sm); font-weight: 700; font-size: 15px; display: inline-block; text-align: center; transition: transform 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium), background 0.4s var(--ease-premium), border-color 0.4s var(--ease-premium); }
.btn-tertiary:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.45); color: white; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); }
.btn-tertiary:active { transform: translateY(0); }
.custom-shape-divider-bottom-1 { position: absolute; bottom: 0; left: 0; width: 100%; overflow: hidden; line-height: 0; z-index: 3; }
.custom-shape-divider-bottom-1 svg { position: relative; display: block; width: calc(100% + 1.3px); height: 60px; }
.custom-shape-divider-bottom-1 .shape-fill { fill: #f8fafc; }

/* FORMS */
.lead-form-box { background: rgba(255, 255, 255, 0.96); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); padding: 14px; border-radius: var(--radius); display: flex; gap: 10px; box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08), 0 16px 36px rgba(15, 23, 42, 0.14), 0 32px 64px -12px rgba(15, 23, 42, 0.08); max-width: 850px; position: relative; border: 1px solid rgba(255, 255, 255, 0.5); transition: box-shadow 0.4s var(--ease-premium), border-color 0.4s var(--ease-premium); }
.form-select-wrapper { position: relative; min-width: 200px; border-right: 1px solid #e2e8f0; display: flex; align-items: center; }
.select-icon { position: absolute; left: 15px; color: var(--primary); z-index: 1; pointer-events: none;}
.form-select { width: 100%; height: 100%; padding: 15px 15px 15px 45px; border: none; font-weight: 600; font-size: 15px; color: var(--dark); outline: none; appearance: none; cursor: pointer; background: transparent; }
.form-select-wrapper::after { content: ''; position: absolute; right: 20px; top: 50%; margin-top: -3px; border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 6px solid #94a3b8; pointer-events: none; }
.input-wrapper { flex-grow: 1; position: relative; }
.form-input { width: 100%; padding: 15px 20px; border: none; font-size: 16px; outline: none; color: var(--dark); border-radius: var(--radius-xs); background: transparent; transition: border-color 0.35s var(--ease-premium), box-shadow 0.35s var(--ease-premium), background-color 0.35s var(--ease-premium); }
.form-input:focus { background: #ffffff; }
.form-btn { background: linear-gradient(135deg, #ff6a3d 0%, var(--accent) 60%, var(--accent-strong) 100%); color: white; border: none; padding: 14px 40px; font-weight: 700; font-size: 15px; border-radius: var(--radius-sm); cursor: pointer; white-space: normal; display: inline-block; text-align: center; box-shadow: 0 4px 14px rgba(242, 92, 43, 0.35); transition: transform 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium), background 0.4s var(--ease-premium); letter-spacing: 0.01em; word-break: break-word; max-width: 100%; }
.form-btn:hover { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%); color: white; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(242, 92, 43, 0.4), var(--shadow-md); }
.form-btn:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(242, 92, 43, 0.3); }
.autocomplete-items { position: absolute; border: 1px solid #e2e8f0; border-top: none; z-index: 9999; top: 100%; left: 0; right: 0; margin-top: 5px; border-radius: 8px; overflow: hidden; box-shadow: 0 15px 35px rgba(0,0,0,0.15); display: none; background: white; max-height: 250px; overflow-y: auto; }
.autocomplete-items div { padding: 15px 20px; cursor: pointer; background-color: #fff; border-bottom: 1px solid #f1f5f9; color: #333; font-size: 14px; display: flex; align-items: center; gap: 15px; }
.autocomplete-items div:hover { background-color: #f8fafc; }

/* SECTIONS & CARDS */
.trust-badges { display: flex; gap: 15px; align-items: center; margin-top: 30px; flex-wrap: wrap; }
.badge-item { background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(5px); padding: 8px 16px; border-radius: 50px; color: white; font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,0.25); }
.badge-item i { color: #4ade80; }
.feature-section { display: flex; align-items: center; min-height: 600px; overflow: hidden; padding-top: 60px; padding-bottom: 60px; background: var(--light); }
.feature-image { flex: 1; height: 550px; position: relative; box-shadow: 0 20px 50px rgba(0,0,0,0.1); border-radius: 20px; overflow: hidden; margin-left: 20px;}
.feature-image img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.feature-content { flex: 1; padding: 60px; max-width: 700px; }
.feature-title { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 20px; color: var(--dark); }
.bg-dark { background: var(--dark); color: white; padding-top: 80px; padding-bottom: 80px; }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: #ffffff !important; }
.bg-dark p, .bg-dark li, .bg-dark span, .bg-dark a:not(.btn-primary):not(.btn-secondary):not(.form-btn) { color: #cbd5e1; }
.bg-dark .feature-title { color: #ffffff !important; }
.section-services { padding: 80px 0; background: white; border-top: 1px solid #e2e8f0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-top: 40px; }
.card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 6px 16px rgba(15, 23, 42, 0.06), 0 12px 28px -4px rgba(15, 23, 42, 0.04); border: 1px solid rgba(148, 163, 184, 0.15); transition: transform 0.45s var(--ease-premium), box-shadow 0.45s var(--ease-premium), border-color 0.45s var(--ease-premium); display: flex; flex-direction: column; }
.card:hover { transform: translateY(-6px); box-shadow: 0 2px 6px rgba(15, 23, 42, 0.05), 0 12px 28px rgba(15, 23, 42, 0.1), 0 24px 48px -8px rgba(15, 23, 42, 0.06); border-color: rgba(31, 138, 90, 0.18); }
.card-body { padding: 30px; display: flex; flex-direction: column; flex-grow: 1; }
.card-body h2 { font-size: clamp(1.2rem, 3vw, 1.5rem); margin-bottom: 10px; color: var(--dark); }
.card-body p { flex-grow: 1; margin-bottom: 20px; color: #64748b; }

/* SERVICE PAGES */
.service-page-hero { padding: 120px 20px; text-align: center; color: white; margin-top: 70px; background-size: cover; background-position: center; position: relative; }
.service-page-hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(175deg, rgba(15, 23, 42, 0.78) 0%, rgba(15, 23, 42, 0.68) 50%, rgba(15, 23, 42, 0.8) 100%); z-index: 1; }
.service-page-hero-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.service-page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 15px; color: #ffffff !important; text-shadow: 0 2px 8px rgba(0,0,0,0.5), 0 6px 24px rgba(0,0,0,0.25); }
.service-page-hero p { color: #e2e8f0 !important; text-shadow: 0 2px 8px rgba(0,0,0,0.4); }
.service-page-hero h2 { color: #ffffff !important; }
.service-page-details { padding: 80px 20px; max-width: 900px; margin: 0 auto; background: white; border-radius: var(--radius-lg); margin-top: -40px; position: relative; z-index: 5; box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04), 0 12px 28px rgba(15, 23, 42, 0.08), 0 24px 48px -8px rgba(15, 23, 42, 0.04); border: 1px solid rgba(148, 163, 184, 0.12); }
.service-page-details h2 { font-size: clamp(1.5rem, 4vw, 2rem); color: var(--dark); margin-bottom: 20px; }
.service-page-details p { font-size: 1.1rem; color: #475569; margin-bottom: 20px; }
.service-bullet-list { list-style: none; margin: 30px 0; }
.service-bullet-list li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 15px; font-size: 1.1rem; color: #334155; }
.service-bullet-list i { color: var(--primary); font-size: 1.3rem; margin-top: 3px; }

.specialized-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 20px; }
.specialized-card { padding: 20px; background: rgba(248, 250, 252, 0.7); border-radius: var(--radius); border: 1px solid rgba(148, 163, 184, 0.15); box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03), 0 6px 16px rgba(15, 23, 42, 0.05); transition: transform 0.45s var(--ease-premium), box-shadow 0.45s var(--ease-premium), border-color 0.45s var(--ease-premium); }
.specialized-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1), 0 16px 36px -6px rgba(15, 23, 42, 0.06); border-color: rgba(31, 138, 90, 0.2); }
.specialized-card i { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; background: #dff7ee; color: #0f8f53; border-radius: 8px; margin-bottom: 10px; font-size: 1.2rem; }
.specialized-card h4 { margin: 10px 0 8px; font-size: 1.1rem; }
.specialized-card p { font-size: 0.95rem; line-height: 1.5; color: #334155; }

/* QUOTE PAGE & FORMS */
.page-wrapper { display: flex; min-height: 100vh; padding-top: 70px; }
.info-side { width: 45%; background: var(--dark); color: white; padding: 60px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.info-side h1, .info-side h2, .info-side h3, .info-side h4 { color: #ffffff !important; }
.info-side p, .info-side li, .info-side span { color: #cbd5e1; }
.info-title { font-size: clamp(1.8rem, 4vw, 2.2rem); margin-bottom: 20px; color: #ffffff !important; }
.trust-list li { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; font-size: 1.1rem; font-weight: 500; color: #e2e8f0; }
.trust-list i { color: #4ade80; font-size: 1.2rem; }
.form-side { width: 55%; background: white; padding: 50px; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.form-card { width: 100%; max-width: 500px; }
.form-group { margin-bottom: 15px; }
.label { display: block; font-weight: 600; font-size: 13px; color: var(--dark); margin-bottom: 6px; text-transform: uppercase; }
.input-group { position: relative; }
.input-group i { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #94a3b8; }
.form-control, .form-input, input, select, textarea { font-size: 16px; }
.form-control { width: 100%; padding: 14px 14px 14px 45px; border: 2px solid #e2e8f0; border-radius: var(--radius-xs); font-size: 16px; font-family: 'Poppins', sans-serif; color: var(--dark); outline: none; background: rgba(248, 250, 252, 0.6); transition: border-color 0.35s var(--ease-premium), box-shadow 0.35s var(--ease-premium), background-color 0.35s var(--ease-premium); }
form:not(#quoteForm) .form-control { padding-left: 14px; }
form:not(#quoteForm) select.form-control { appearance: auto; cursor: pointer; }
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(31, 138, 90, 0.12); background: #ffffff; }
.form-control.locked { background-color: #f8fafc; border-color: #e2e8f0; color: #475569; pointer-events: none;}
.submit-btn { width: 100%; background: linear-gradient(135deg, #ff6a3d 0%, var(--accent) 60%, var(--accent-strong) 100%); color: white; padding: 16px; font-size: 16px; font-weight: 700; border: none; border-radius: var(--radius-sm); cursor: pointer; margin-top: 10px; box-shadow: 0 4px 14px rgba(242, 92, 43, 0.35); transition: transform 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium), background 0.4s var(--ease-premium); letter-spacing: 0.01em; }
.submit-btn:hover { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(242, 92, 43, 0.4), var(--shadow-md); }
.submit-btn:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(242, 92, 43, 0.3); }

/* VISIBLE LEAD FORM (INDEX) */
.lead-form-section { background: var(--light); padding: 80px 20px; }
.lead-form-container { max-width: 700px; margin: 0 auto; background: white; padding: 50px; border-radius: var(--radius-lg); box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03), 0 12px 28px rgba(15, 23, 42, 0.07), 0 24px 52px -8px rgba(15, 23, 42, 0.04); border: 1px solid rgba(148, 163, 184, 0.12); }
.lead-form-container h2 { font-size: clamp(1.5rem, 4vw, 2rem); color: var(--dark); margin-bottom: 10px; text-align: center; }
.lead-form-container > p { text-align: center; color: #64748b; margin-bottom: 30px; font-size: 1.1rem; }
.lead-form-container textarea { resize: vertical; min-height: 100px; }
.cta-phone { text-align: center; margin-top: 20px; font-weight: 600; font-size: 1.1rem; color: #475569; }
.cta-phone a { color: var(--primary); }

/* FOOTER */
.service-area-section { padding: 80px 0; background: var(--light); text-align: center; border-top: 1px solid #e2e8f0; }
.area-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 30px; max-width: 1000px; margin-left: auto; margin-right: auto; }
.city-tag { background: white; padding: 10px 20px; border-radius: 8px; font-weight: 600; color: #475569; font-size: 0.9rem; border: 1px solid #e2e8f0; }
footer { background: #0b1120; color: #94a3b8; padding: 70px 0 30px; }
footer h1, footer h2, footer h3, footer h4 { color: #ffffff !important; }
footer p, footer li { color: #94a3b8; }
footer a { color: #cbd5e1; }
footer a:hover { color: #ffffff; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 40px; }
.copyright { text-align: center; margin-top: 40px; font-size: 0.9rem; color: #64748b; opacity: 0.7; }
.footer-compliance {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 24px;
    padding: 14px 0 4px;
    text-align: center;
}
.footer-compliance p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.02em;
    margin: 0;
}

/* ── COMBO LINKS SECTION (S-9) ─────────────────────────────────────────────── */
.combo-links-section {
    background: #f8fafc;
    padding: 60px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
.combo-links-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 10px;
}
.combo-links-section > .container > p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 1.05rem;
}
.combo-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}
.combo-link-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 20px 22px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
    box-shadow: var(--shadow-sm);
}
.combo-link-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(31,138,90,0.12);
    transform: translateY(-2px);
}
.combo-link-card i {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 4px;
}
.combo-link-card span { font-size: 0.95rem; line-height: 1.3; }
.combo-link-card small { font-size: 0.78rem; color: var(--text-muted); font-weight: 400; }

/* ── WHAT HAPPENS NEXT (C-8) ─────────────────────────────────────────────── */
.next-steps-list {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.next-steps-list h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.55);
    margin-bottom: 18px;
    font-weight: 600;
}
.next-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}
.step-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 2px;
}
.step-body { display: flex; flex-direction: column; gap: 3px; }
.step-body strong { color: white; font-size: 0.95rem; }
.step-body span { color: rgba(255,255,255,0.6); font-size: 0.83rem; }

/* ── IDPH TRUST LINE (C-6) ───────────────────────────────────────────────── */
.idph-trust-line {
    text-align: center;
    font-size: 0.78rem;
    color: #64748b;
    margin: 10px 0 4px;
    letter-spacing: 0.02em;
}
.idph-trust-line i { color: var(--primary); margin-right: 5px; }

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
    .logo img { height: 40px; }
    .btn-call { padding: 10px 14px; font-size: 13px; }
    .hamburger { display: block; }
    .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: white; padding: 12px 16px; box-shadow: 0 15px 30px rgba(0,0,0,0.1); border-top: 1px solid #e2e8f0; gap: 4px; z-index: 1000; }
    .nav-links.active { display: flex; animation: fadeInMenu 0.2s ease-out; }
    .dropdown-content { position: static; box-shadow: none; border: none; border-left: 2px solid var(--primary); border-radius: 0; margin-left: 10px; margin-top: 4px; padding: 4px 0 4px 14px; display: none; }
    .dropdown.active .dropdown-content { display: block; }
    .hero-desktop { display: none; }
    .hero-wrapper { margin-top: 70px; display: flex; flex-direction: column; }
    .mobile-hero-image { display: block; width: 100%; height: 280px; background-image: url('hero_bg.jpg'); background-size: cover; background-position: center; }
    .hero-content { background: white; padding: 40px 20px 25px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); position: relative; top: -20px; border-radius: 20px 20px 0 0; margin-bottom: 0; }
    .hero-content h1 { color: var(--dark) !important; font-size: 2rem; text-shadow: none !important; margin: 0 0 10px; word-break: break-word; overflow-wrap: break-word; white-space: normal; line-height: 1.2; }
    .hero-content p { color: #475569 !important; display: block; font-size: 1rem; text-shadow: none !important; margin: 0 0 20px; word-break: break-word; overflow-wrap: break-word; white-space: normal; line-height: 1.5; }
    .cta-buttons { flex-direction: column; }
    .cta-buttons a { text-align: center; justify-content: center; }
    .lead-form-box { flex-direction: column; padding: 0; box-shadow: none; border-radius: 0; }
    .form-select-wrapper { border: 1px solid #e2e8f0; border-radius: 10px; width: 100%; margin-bottom: 10px; min-width: auto; }
    .select-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--primary); z-index: 1; pointer-events: none; }
    .form-select-wrapper::after { right: 16px; }
    .form-select { width: 100%; height: 100%; padding: 12px 16px 12px 42px; border: none; font-weight: 600; font-size: 15px; color: var(--dark); outline: none; appearance: none; cursor: pointer; background: transparent; max-width: 100%; }
    .input-wrapper { border: 1px solid #e2e8f0; border-radius: 10px; margin-bottom: 10px;}
    .form-btn { width: 100%; padding: 11px 16px; margin-top: 5px; min-height: 48px; display: flex; align-items: center; justify-content: center; text-align: center; line-height: normal; }
    .trust-badges { margin-top: 25px; justify-content: center; }
    .badge-item { background: #f1f5f9; color: var(--dark); border: 1px solid #e2e8f0; text-shadow: none; }
    .custom-shape-divider-bottom-1 { display: none; }
    .feature-section { flex-direction: column; height: auto; padding: 40px 0; }
    .feature-image { width: 90%; height: 250px; flex: none; margin: 0 auto 30px auto; }
    .feature-content { padding: 0 25px; width: 100%; text-align: center; }
    .service-page-hero h1 { font-size: clamp(1.8rem, 6vw, 2.2rem); }
    .service-page-details { margin-top: -20px; padding: 40px 20px; }
    .lead-form-container { padding: 30px 20px; }
    .page-wrapper { flex-direction: column; }
    .info-side { width: 100%; padding: 40px 20px; min-height: auto; background: var(--dark); }
    .form-side { width: 100%; padding: 40px 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    /* Additional mobile padding reductions */
    .bg-dark { padding-top: 40px; padding-bottom: 40px; }
    .section-services { padding: 40px 0; }
    .service-page-hero { padding: 60px 20px; }
    .service-page-details { padding: 40px 20px; }
    .feature-section { padding: 30px 0; }
}

/* EXTRA SMALL DEVICES - PHONES UNDER 480px */
@media (max-width: 480px) {
    /* HEADER OPTIMIZATIONS */
    header { padding: 8px 0; }
    .logo img { height: 35px; }
    .hamburger { font-size: 24px; padding: 8px; }
    .nav-links { padding: 10px 14px; gap: 2px; }
    .nav-links a { font-size: 13px; padding: 8px 14px; min-height: 40px; }
    .btn-call { padding: 8px 12px; font-size: 12px; }
    .dropdown-content { margin-left: 5px; padding: 4px 0 4px 10px; }
    .dropdown-content a { padding: 7px 14px; font-size: 12.5px; min-height: 36px; }

    /* HERO OPTIMIZATIONS */
    .hero-wrapper { margin-top: 60px; }
    .mobile-hero-image { height: 220px; }
    .hero-content { padding: 65px 18px 25px !important; top: -15px; }
    .hero-content h1 { font-size: 1.8rem; margin: 0 0 10px; line-height: 1.3; }
    .hero-content p { font-size: 1rem; margin: 0 0 18px; line-height: 1.5; }
    .cta-buttons { gap: 10px; }
    .form-select-wrapper { min-height: 60px !important; }
    .form-select-wrapper .select-icon { left: 12px !important; top: 50% !important; transform: translateY(-50%) !important; font-size: 1rem !important; }
    .form-select { padding: 12px 16px 12px 70px !important; }
    .btn-primary, .btn-secondary, .btn-tertiary { padding: 12px 20px; font-size: 14px; min-height: 48px; display: flex; align-items: center; justify-content: center; }
    .lead-form-box { max-width: none; }
    .form-select-wrapper, .input-wrapper { margin-bottom: 8px; }
    .form-select, .form-input { padding: 12px; font-size: 16px; /* Prevents zoom on iOS */ }
    .form-btn { min-height: 48px; font-size: 14px; }
    .trust-badges { gap: 8px; margin-top: 20px; flex-wrap: wrap; justify-content: center; }
    .badge-item { padding: 6px 12px; font-size: 0.8rem; min-height: 32px; }

    /* SECTIONS & CARDS */
    .container { padding: 0 15px; }
    .feature-section { padding: 30px 0; }
    .feature-image { width: 95%; height: 200px; margin-bottom: 20px; }
    .feature-content { padding: 0 20px; }
    .feature-title { font-size: 2rem; margin-bottom: 15px; }
    .section-services { padding: 60px 0; }
    .services-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 30px; }
    .card-body { padding: 20px; }
    .card-body h2 { font-size: 1.3rem; margin-bottom: 8px; }
    .card-body p { margin-bottom: 15px; font-size: 0.95rem; }

    /* SERVICE PAGES */
    .service-page-hero { padding: 80px 15px; margin-top: 60px; }
    .service-page-hero h1 { font-size: 2rem; margin-bottom: 12px; }
    .service-page-details { padding: 30px 15px; margin-top: -15px; }
    .service-page-details h2 { font-size: 1.8rem; margin-bottom: 15px; }
    .service-page-details p { font-size: 1rem; margin-bottom: 15px; }
    .service-bullet-list { margin: 20px 0; }
    .service-bullet-list li { font-size: 1rem; margin-bottom: 12px; gap: 12px; }

    /* FORMS */
    .lead-form-container { padding: 25px 15px; margin: 0 15px; }
    .lead-form-container h2 { font-size: 1.8rem; margin-bottom: 8px; }
    .lead-form-container > p { font-size: 1rem; margin-bottom: 20px; }
    .form-group { margin-bottom: 12px; }
    .label { font-size: 12px; margin-bottom: 4px; }
    .form-control { padding: 12px 14px 12px 40px; font-size: 16px; min-height: 48px; }
    #quoteForm select.form-control { padding-left: 14px !important; -webkit-padding-start: 14px !important; }
    .input-group:has(select) i { display: none; }
    form:not(#quoteForm) .form-control { padding-left: 14px; }
    .submit-btn { padding: 14px; font-size: 16px; min-height: 48px; margin-top: 8px; }
    .cta-phone { font-size: 1rem; margin-top: 15px; }

    /* QUOTE PAGE */
    .page-wrapper { padding-top: 60px; }
    .info-side { padding: 30px 15px; }
    .info-title { font-size: 2rem; margin-bottom: 15px; }
    .trust-list li { margin-bottom: 15px; font-size: 1rem; }
    .form-side { padding: 30px 15px; }
    .form-card { max-width: none; }

    /* FOOTER */
    footer { padding: 50px 0 20px; }
    .footer-grid { gap: 25px; padding-bottom: 30px; }
    .copyright { margin-top: 30px; font-size: 0.85rem; }

    /* SERVICE AREAS */
    .service-area-section { padding: 60px 0; }
    .area-grid { gap: 8px; margin-top: 25px; }
    .city-tag { padding: 8px 16px; font-size: 0.85rem; }

    /* EXIT POPUP */
    .exit-popup-content { padding: 25px 20px; max-width: 350px; }
    .exit-popup h3 { font-size: 1.4rem; margin-bottom: 12px; }
    .exit-popup p { font-size: 0.95rem; margin-bottom: 15px; }
    .exit-popup .btn-primary { padding: 10px 20px; font-size: 14px; margin: 0 auto; width: fit-content; }
    /* Additional padding reductions for small screens */
    .bg-dark { padding-top: 30px; padding-bottom: 30px; }
    .section-services { padding: 30px 0; }
    .service-page-hero { padding: 50px 15px; }
    .service-page-details { padding: 30px 15px; }
    .feature-section { padding: 25px 0; }
}
@media (min-width: 901px) {
    .mobile-hero-image { display: none; }
    .hero-content-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; z-index: 5; }
}

/* EXIT INTENT POPUP */
.exit-popup { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 9999; display: none; justify-content: center; align-items: center; }
.exit-popup.show { display: flex; }
.exit-popup-content { background: white; padding: 36px; border-radius: var(--radius-lg); max-width: 420px; width: 90%; text-align: center; position: relative; box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1), 0 20px 48px rgba(15, 23, 42, 0.22), 0 36px 64px -12px rgba(15, 23, 42, 0.08); border: 1px solid rgba(148, 163, 184, 0.1); }
.exit-popup-close { position: absolute; top: 10px; right: 15px; font-size: 24px; cursor: pointer; color: #64748b; }
.exit-popup-close:hover { color: #334155; }
.exit-popup h3 { color: var(--dark); font-size: 1.5rem; margin-bottom: 15px; }
.exit-popup p { color: #64748b; font-size: 1rem; margin-bottom: 20px; }
.exit-popup .btn-primary { background: linear-gradient(135deg, #ff6a3d 0%, var(--accent) 60%, var(--accent-strong) 100%); color: white; padding: 14px 28px; border-radius: var(--radius-sm); font-weight: 700; border: none; cursor: pointer; box-shadow: 0 4px 14px rgba(242, 92, 43, 0.35); transition: transform 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium), background 0.4s var(--ease-premium); }
.exit-popup .btn-primary:hover { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(242, 92, 43, 0.4); }

/* ══════════════════════════════════════════════════
   CRO PILLAR 1 — SCARCITY BANNER
   ══════════════════════════════════════════════════ */
.scarcity-banner { background: linear-gradient(90deg, #fef3c7 0%, #fde68a 100%); border: 2px solid #f59e0b; border-radius: 10px; padding: 14px 20px; margin-bottom: 30px; display: flex; align-items: center; justify-content: center; text-align: center; gap: 12px; animation: scarcityPulse 3s ease-in-out infinite; }
.scarcity-banner .scarcity-icon { font-size: 1.5rem; flex-shrink: 0; }
.scarcity-banner .scarcity-text { font-size: 0.95rem; color: #92400e; font-weight: 600; line-height: 1.4; }
.scarcity-banner .scarcity-text strong { color: #b91c1c; }
@keyframes scarcityPulse { 0%, 100% { border-color: #f59e0b; } 50% { border-color: #ef4444; box-shadow: 0 0 12px rgba(239,68,68,0.2); } }

/* ══════════════════════════════════════════════════
   CRO PILLAR 2 — TRUST & AUTHORITY STACK
   ══════════════════════════════════════════════════ */
.trust-authority-section { background: #ffffff; padding: 70px 20px; border-top: 1px solid #e2e8f0; }
.trust-authority-inner { max-width: 1100px; margin: 0 auto; }
.trust-authority-inner h2 { text-align: center; font-size: clamp(1.6rem, 4vw, 2.2rem); color: var(--dark); margin-bottom: 10px; }
.trust-authority-inner > p { text-align: center; color: #64748b; font-size: 1.05rem; margin-bottom: 40px; }
.trust-counter { text-align: center; margin-bottom: 40px; }
.trust-counter .counter-number { font-family: 'Montserrat', sans-serif; font-size: clamp(2.5rem, 6vw, 3.8rem); font-weight: 800; color: var(--primary); line-height: 1; }
.trust-counter .counter-label { font-size: 1.1rem; color: #475569; font-weight: 500; margin-top: 6px; }
.badge-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; margin-bottom: 50px; }
.authority-badge { display: flex; align-items: center; gap: 10px; background: rgba(248, 250, 252, 0.7); border: 1px solid rgba(148, 163, 184, 0.15); border-radius: var(--radius); padding: 14px 22px; font-weight: 600; font-size: 0.95rem; color: var(--dark); box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03), 0 4px 12px rgba(15, 23, 42, 0.04); transition: transform 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium), border-color 0.4s var(--ease-premium), background 0.4s var(--ease-premium); }
.authority-badge i { font-size: 1.4rem; color: var(--primary); }
.authority-badge:hover { border-color: rgba(31, 138, 90, 0.3); background: #f0fdf4; transform: translateY(-3px); box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08), 0 12px 28px -4px rgba(15, 23, 42, 0.05); }
.reviews-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 24px;
    padding-bottom: 8px;
    scrollbar-width: none;
}
.reviews-grid::-webkit-scrollbar { display: none; }
.reviews-grid .review-card {
    flex: 0 0 min(400px, 85vw);
    scroll-snap-align: start;
}
/* Carousel navigation */
.review-carousel-wrap { position: relative; }
.review-carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
}
.review-carousel-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}
.review-carousel-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
}
.review-carousel-dot.active {
    background: var(--primary);
    transform: scale(1.25);
}
.review-carousel-arrow {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: white;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s, border-color 0.2s;
    flex-shrink: 0;
}
.review-carousel-arrow:hover { background: #f1f5f9; border-color: var(--primary); }
.review-card { background: rgba(248, 250, 252, 0.7); border: 1px solid rgba(148, 163, 184, 0.15); border-radius: 20px; padding: 30px; position: relative; box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03), 0 6px 16px rgba(15, 23, 42, 0.05); transition: transform 0.45s var(--ease-premium), box-shadow 0.45s var(--ease-premium), border-color 0.45s var(--ease-premium); }
.review-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1), 0 16px 36px -6px rgba(15, 23, 42, 0.06); border-color: rgba(31, 138, 90, 0.18); }
.review-card .review-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-card .review-text { color: #475569; font-size: 0.98rem; line-height: 1.6; margin-bottom: 16px; font-style: italic; }
.review-card .review-author { display: flex; align-items: center; gap: 12px; }
.review-card .review-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--primary); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; }
.review-card .review-name { font-weight: 600; color: var(--dark); font-size: 0.95rem; }
.review-card .review-location { font-size: 0.85rem; color: #94a3b8; }
.review-card .review-google { position: absolute; top: 20px; right: 20px; color: #4285F4; font-size: 1.3rem; }

/* ══════════════════════════════════════════════════
   CRO PILLAR 3 — RISK REVERSAL GUARANTEE BLOCK
   ══════════════════════════════════════════════════ */
.guarantee-block { margin: 45px 0; padding: 35px 30px; background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 50%, #a7f3d0 100%); border: 2px solid #34d399; border-radius: 16px; position: relative; overflow: hidden; }
.guarantee-block::before { content: ''; position: absolute; top: -30px; right: -30px; width: 120px; height: 120px; background: rgba(46,139,87,0.08); border-radius: 50%; }
.guarantee-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.guarantee-shield { width: 56px; height: 56px; background: var(--primary); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.6rem; flex-shrink: 0; box-shadow: 0 4px 12px rgba(46,139,87,0.3); }
.guarantee-header h3 { font-size: 1.4rem; color: var(--dark); line-height: 1.3; }
.guarantee-block p { font-size: 1.05rem; color: #1e293b; line-height: 1.7; }
.guarantee-block .guarantee-terms { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 18px; }
.guarantee-block .guarantee-term { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; color: #15803d; font-weight: 600; }
.guarantee-block .guarantee-term i { font-size: 1.1rem; }

/* ══════════════════════════════════════════════════
   CRO PILLAR 4 — MOBILE STICKY BOTTOM BAR
   ══════════════════════════════════════════════════ */
.mobile-sticky-bar { display: none; }
@media (max-width: 900px) {
    .mobile-sticky-bar { display: flex; position: fixed; bottom: 0; left: 0; width: 100%; z-index: 9998; background: var(--dark); box-shadow: 0 -4px 20px rgba(0,0,0,0.25); border-top: 2px solid var(--primary); }
    .mobile-sticky-bar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 16px 0; font-weight: 700; font-size: 15px; text-decoration: none; text-align: center; transition: 0.2s; }
    .mobile-sticky-bar .sticky-call { background: var(--primary); color: white; }
    .mobile-sticky-bar .sticky-call:active { background: #226f45; }
    .mobile-sticky-bar .sticky-quote { background: var(--accent); color: white; }
    .mobile-sticky-bar .sticky-quote:active { background: #ea580c; }
    .mobile-sticky-bar i { font-size: 1.1rem; }
    /* Pad body bottom so content isn't hidden behind sticky bar */
    body { padding-bottom: 58px; }
    footer { margin-bottom: 0; padding-bottom: 30px; }
}

/* HEADER SCROLL SHADOW (applied via JS) */
header.header-scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.12); border-bottom-color: transparent; }

/* ── C-10: Desktop Sticky CTA Bar ───────────────────────────────────────── */
.desktop-sticky-cta {
    display: none; /* JS reveals it after 400px scroll */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background: var(--dark);
    border-bottom: 2px solid var(--primary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    padding: 10px 24px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transform: translateY(-100%);
    transition: transform 0.3s var(--ease-premium), opacity 0.3s;
    opacity: 0;
}
.desktop-sticky-cta.visible {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}
.desktop-sticky-cta .dsc-brand {
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
}
.desktop-sticky-cta .dsc-brand span { color: var(--primary); }
.desktop-sticky-cta .dsc-actions { display: flex; align-items: center; gap: 12px; }
.desktop-sticky-cta .dsc-phone {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    text-decoration: none;
    white-space: nowrap;
}
.desktop-sticky-cta .dsc-phone:hover { color: white; }
.desktop-sticky-cta .dsc-phone i { color: var(--primary); margin-right: 6px; }
.desktop-sticky-cta .dsc-btn {
    background: var(--accent);
    color: white;
    padding: 9px 22px;
    border-radius: var(--radius-xs);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}
.desktop-sticky-cta .dsc-btn:hover { background: var(--accent-strong); }
@media (max-width: 900px) { .desktop-sticky-cta { display: none !important; } }

/* ── T-9: 640px Breakpoint (medium phones gap-fill) ─────────────────────── */
@media (max-width: 640px) {
    /* Hero */
    .hero-content { padding: 30px 16px 20px !important; top: -12px; }
    .hero-content h1 { font-size: 1.65rem; line-height: 1.25; }
    .hero-content p { font-size: 0.95rem; }
    .cta-buttons { gap: 9px; }
    .btn-primary, .btn-secondary { font-size: 0.9rem; padding: 13px 18px; }
    /* Lead form box */
    .lead-form-box { gap: 10px; }
    .form-input, .form-select { font-size: 0.9rem; min-height: 52px; }
    .form-btn { font-size: 0.9rem; padding: 14px 16px; }
    /* Services grid */
    .services-grid { grid-template-columns: 1fr; gap: 14px; }
    .card { padding: 20px; }
    /* Section headings */
    .section-services .container h2 { font-size: 1.8rem; }
    /* Lead form section */
    .lead-form-section { padding: 40px 14px; }
    .lead-form-container h2 { font-size: 1.5rem; }
    /* Trust section */
    .trust-authority-section { padding: 36px 12px; }
    .trust-counter .counter-number { font-size: 2.2rem; }
    .badge-row { flex-wrap: wrap; gap: 8px; }
    .authority-badge { font-size: 0.78rem; padding: 8px 10px; }
    /* Reviews */
    .reviews-grid .review-card { flex: 0 0 85vw; padding: 18px; }
    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    /* Combo links */
    .combo-links-grid { grid-template-columns: 1fr; }
}

/* ── C-7: Verified Real Review Card ─────────────────────────────────────── */
.review-card.verified .review-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}
.review-card.verified .review-verified-badge i { font-size: 0.7rem; }
.review-card.verified .review-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ── Funnel Step Indicator (C-1) ─────────────────────────────────────────── */
.funnel-steps {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}
.funnel-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
}
.fs-num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}
.fs-label {
    font-size: 0.72rem;
    color: #94a3b8;
    font-weight: 500;
    white-space: nowrap;
}
.funnel-step--done .fs-num { background: #dcfce7; color: var(--primary); }
.funnel-step--done .fs-label { color: var(--primary); font-weight: 600; }
.funnel-step--active .fs-num { background: var(--primary); color: white; }
.funnel-step--active .fs-label { color: var(--dark); font-weight: 700; }
.funnel-step-arrow {
    flex: 0 0 20px;
    text-align: center;
    color: #cbd5e1;
    font-size: 0.75rem;
}
.funnel-step-arrow::before { content: '›'; font-size: 1.2rem; line-height: 30px; }

/* ══════════════════════════════════════════════════
   RESPONSIVE ADJUSTMENTS FOR CRO ELEMENTS
   ══════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .trust-authority-section { padding: 50px 15px; }
    .badge-row { gap: 10px; }
    .authority-badge { padding: 10px 14px; font-size: 0.85rem; }
    .authority-badge i { font-size: 1.1rem; }
    .reviews-grid { gap: 16px; }
    .reviews-grid .review-card { padding: 22px; }
    .guarantee-block { padding: 25px 20px; margin: 35px 0; }
    .guarantee-header h3 { font-size: 1.2rem; }
    .guarantee-shield { width: 46px; height: 46px; font-size: 1.3rem; }
    .scarcity-banner { padding: 12px 14px; gap: 10px; }
    .scarcity-banner .scarcity-text { font-size: 0.88rem; }
}
@media (max-width: 480px) {
    .trust-authority-section { padding: 40px 12px; }
    .trust-counter .counter-number { font-size: 2.5rem; }
    .badge-row { gap: 8px; }
    .authority-badge { padding: 8px 12px; font-size: 0.8rem; gap: 6px; }
    .guarantee-block { padding: 20px 16px; }
    .guarantee-header { gap: 12px; }
    .guarantee-header h3 { font-size: 1.1rem; }
    .mobile-sticky-bar a { padding: 14px 0; font-size: 14px; }
}

/* ══════════════════════════════════════════════════
   QUOTE PAGE — LOADING SPINNER & PROGRESS BAR
   (Extracted from quote.html inline <style> — Point 27)
   ══════════════════════════════════════════════════ */
.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #2E8B57;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 8px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.progress-bar {
    width: 100%;
    height: 4px;
    background-color: #f3f3f3;
    border-radius: 2px;
    overflow: hidden;
    margin-top: 10px;
}
.progress-fill {
    height: 100%;
    background-color: #2E8B57;
    width: 0%;
    animation: progress 3s ease-in-out infinite;
}
@keyframes progress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* ══════════════════════════════════════════════════
   SUCCESS PAGE — NEIGHBORHOOD SHIELD
   (Extracted from success.html inline <style> — Point 26)
   ══════════════════════════════════════════════════ */
.success-page { min-height: 100vh; padding-top: 70px; background: var(--light); }

/* Confirmation Hero */
.confirm-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a2f 50%, #0f172a 100%);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.confirm-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(46,139,87,0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(249,115,22,0.1) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite;
}
@keyframes heroGlow {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-2%, 2%) rotate(3deg); }
}
.confirm-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}
.confirm-checkmark {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: white;
    margin-bottom: 24px;
    box-shadow: 0 8px 30px rgba(34,197,94,0.4);
    animation: checkPop 0.6s ease-out;
}
@keyframes checkPop {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}
.confirm-hero h1 {
    color: #ffffff;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 12px;
    text-shadow: none;
}
.confirm-hero .confirm-name { color: #4ade80; display: inline; }
.confirm-hero p { color: #94a3b8; font-size: 1.15rem; margin: 0; line-height: 1.6; }

/* What Happens Next Timeline */
.next-steps { max-width: 700px; margin: -30px auto 0; padding: 0 20px; position: relative; z-index: 5; }
.next-steps-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}
.next-steps-card h2 { font-size: 1.5rem; color: var(--dark); margin-bottom: 28px; text-align: center; }
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item { display: flex; gap: 20px; position: relative; padding-bottom: 28px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 21px;
    top: 46px;
    width: 2px;
    height: calc(100% - 46px);
    background: #e2e8f0;
}
.timeline-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    font-weight: 700;
    color: white;
    z-index: 2;
}
.timeline-dot.green { background: linear-gradient(135deg, #22c55e, #16a34a); }
.timeline-dot.blue  { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.timeline-dot.orange { background: linear-gradient(135deg, #f97316, #ea580c); }
.timeline-info h3 { font-size: 1.05rem; color: var(--dark); margin-bottom: 4px; }
.timeline-info p { font-size: 0.95rem; color: #64748b; line-height: 1.5; margin: 0; }

/* Neighborhood Shield Section */
.shield-section { max-width: 700px; margin: 40px auto; padding: 0 20px; }
.shield-card {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 40%, #f0fdf4 100%);
    border: 2px solid #34d399;
    border-radius: 20px;
    padding: 45px 40px;
    position: relative;
    overflow: hidden;
}
.shield-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: rgba(46,139,87,0.06);
    border-radius: 50%;
}
.shield-card::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 150px;
    height: 150px;
    background: rgba(52,211,153,0.08);
    border-radius: 50%;
}
.shield-card-inner { position: relative; z-index: 2; }
.shield-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    border: 1px solid #86efac;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #15803d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}
.shield-badge i { font-size: 1rem; }
.shield-card h2 { font-size: clamp(1.6rem, 4vw, 2rem); color: var(--dark); margin-bottom: 12px; line-height: 1.3; }
.shield-card > .shield-card-inner > p.shield-subtitle { font-size: 1.1rem; color: #475569; margin-bottom: 30px; line-height: 1.6; }

/* $25 Off Highlight */
.reward-box {
    background: white;
    border: 2px solid #2E8B57;
    border-radius: 14px;
    padding: 28px;
    text-align: center;
    margin-bottom: 28px;
    position: relative;
}
.reward-box .reward-amount { font-family: 'Montserrat', sans-serif; font-size: clamp(2.5rem, 6vw, 3.5rem); font-weight: 800; color: #2E8B57; line-height: 1; margin-bottom: 6px; }
.reward-box .reward-label { font-size: 1.1rem; color: #0f172a; font-weight: 600; }
.reward-box .reward-detail { font-size: 0.9rem; color: #64748b; margin-top: 4px; }

/* Referral Link Area */
.referral-link-box {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    transition: 0.3s;
}
.referral-link-box:focus-within { border-color: #2E8B57; }
.referral-link-box input { flex: 1; border: none; outline: none; font-size: 14px; color: #475569; font-family: 'Poppins', sans-serif; background: transparent; min-width: 0; }
.copy-btn {
    background: var(--dark);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.copy-btn:hover { background: #1e293b; }
.copy-btn.copied { background: #2E8B57; }
.copy-tooltip { display: none; text-align: center; font-size: 0.85rem; color: #2E8B57; font-weight: 600; margin-bottom: 8px; }
.copy-tooltip.show { display: block; animation: fadeInUp 0.3s ease-out; }
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Share Buttons */
.share-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.share-btn {
    flex: 1;
    min-width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: 0.2s;
    text-decoration: none;
}
.share-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(0,0,0,0.15); }
.share-btn.nextdoor { background: #00b246; color: white; }
.share-btn.nextdoor:hover { background: #009e3e; }
.share-btn.sms { background: #3b82f6; color: white; }
.share-btn.sms:hover { background: #2563eb; }
.share-btn.email-share { background: #6366f1; color: white; }
.share-btn.email-share:hover { background: #4f46e5; }

/* Shield Progress Bar */
.shield-progress-section { max-width: 700px; margin: 0 auto 40px; padding: 0 20px; }
.shield-progress-card {
    background: white;
    border-radius: 16px;
    padding: 35px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    text-align: center;
}
.shield-progress-card h3 { font-size: 1.3rem; color: var(--dark); margin-bottom: 8px; }
.shield-progress-card .progress-subtitle { font-size: 0.95rem; color: #64748b; margin-bottom: 24px; }
.progress-track {
    width: 100%;
    height: 28px;
    background: #f1f5f9;
    border-radius: 50px;
    overflow: hidden;
    position: relative;
    border: 1px solid #e2e8f0;
    margin-bottom: 16px;
}
.progress-fill-bar {
    height: 100%;
    background: linear-gradient(90deg, #22c55e 0%, #2E8B57 60%, #f97316 100%);
    border-radius: 50px;
    width: 0%;
    transition: width 1.5s ease-out;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 14px;
}
.progress-fill-bar .progress-label { font-size: 12px; font-weight: 700; color: white; white-space: nowrap; }
.progress-stats { display: flex; justify-content: space-between; font-size: 0.85rem; color: #94a3b8; }
.progress-stats .current-count { color: var(--primary); font-weight: 700; }
.shield-icon-row { display: flex; justify-content: center; gap: 4px; margin-top: 20px; flex-wrap: wrap; }
.mini-shield { width: 28px; height: 28px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 12px; transition: 0.2s; }
.mini-shield.active { background: linear-gradient(135deg, #d1fae5, #a7f3d0); color: #16a34a; border: 1px solid #86efac; }
.mini-shield.inactive { background: #f8fafc; color: #cbd5e1; border: 1px solid #e2e8f0; }
.mini-shield.you {
    background: linear-gradient(135deg, #2E8B57, #16a34a);
    color: white;
    border: 1px solid #2E8B57;
    box-shadow: 0 2px 8px rgba(46,139,87,0.3);
    animation: youPulse 2s ease-in-out infinite;
}
@keyframes youPulse {
    0%, 100% { box-shadow: 0 2px 8px rgba(46,139,87,0.3); }
    50% { box-shadow: 0 2px 16px rgba(46,139,87,0.5); }
}

/* Bottom CTA */
.bottom-cta { max-width: 700px; margin: 0 auto 60px; padding: 0 20px; text-align: center; }
.bottom-cta p { font-size: 1rem; color: #64748b; margin-bottom: 16px; }
.bottom-cta .cta-links { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.bottom-cta .cta-links a { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 8px; font-weight: 600; font-size: 14px; }

/* Success Page Mobile Adjustments */
@media (max-width: 600px) {
    .confirm-hero { padding: 45px 16px; }
    .confirm-checkmark { width: 72px; height: 72px; font-size: 34px; margin-bottom: 18px; }
    .next-steps-card { padding: 28px 20px; }
    .shield-card { padding: 30px 20px; }
    .reward-box { padding: 22px 18px; }
    .share-buttons { flex-direction: column; }
    .share-btn { min-width: auto; }
    .shield-progress-card { padding: 28px 20px; }
    .referral-link-box { flex-direction: column; }
    .copy-btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════
   GENERAL TREATMENT — PRICING TABLE
   ═══════════════════════════════════════════════ */
.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.pricing-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 8px 20px rgba(15, 23, 42, 0.06), 0 16px 36px -6px rgba(15, 23, 42, 0.04);
    padding: 32px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(148, 163, 184, 0.15);
    transition: transform 0.45s var(--ease-premium), box-shadow 0.45s var(--ease-premium), border-color 0.45s var(--ease-premium);
}
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.05), 0 14px 32px rgba(15, 23, 42, 0.12), 0 28px 56px -10px rgba(15, 23, 42, 0.06);
    border-color: rgba(31, 138, 90, 0.18);
}
.pricing-card.popular {
    border-color: #2E8B57;
    transform: scale(1.05);
}
.pricing-card.popular::before {
    content: 'Most Popular';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #2E8B57;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}
.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}
.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2E8B57;
    margin-bottom: 20px;
}
.pricing-price span {
    font-size: 1rem;
    font-weight: 500;
    color: #64748b;
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}
.pricing-features li {
    padding: 8px 0;
    color: #475569;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}
.pricing-features li::before {
    content: '✓';
    color: #2E8B57;
    font-weight: bold;
    margin-right: 10px;
}
.pricing-btn {
    background: linear-gradient(135deg, #25a56d 0%, var(--primary) 65%, var(--primary-strong) 100%);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 4px 14px rgba(31, 138, 90, 0.3);
    transition: transform 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium), background 0.4s var(--ease-premium);
    letter-spacing: 0.01em;
}
.pricing-btn:hover { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-strong) 100%); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(31, 138, 90, 0.35), var(--shadow-md); }
.pricing-btn:active { transform: translateY(0); }
.pricing-card.popular .pricing-btn { background: #f97316; }
.pricing-card.popular .pricing-btn:hover { background: #ea580c; }

@media (max-width: 768px) {
    .service-page-hero { padding: 80px 20px; margin-top: 60px; }
    .service-page-hero h1 { font-size: clamp(2.5rem, 8vw, 3rem) !important; line-height: 1.2; margin-bottom: 20px; }
    .service-page-hero p { font-size: 1.1rem !important; line-height: 1.4; }
    .service-page-details { padding: 30px 20px; margin-top: -30px; border-radius: 8px; }
    .service-page-details h2 { font-size: 1.8rem; line-height: 1.3; margin-bottom: 25px; }
    .service-page-details p { font-size: 1rem; line-height: 1.6; margin-bottom: 20px; }
    .pricing-table { grid-template-columns: 1fr; gap: 25px; margin: 30px 0; padding: 0 15px; }
    .pricing-card { padding: 25px 20px; border-radius: 10px; }
    .pricing-card.popular { transform: none; order: -1; }
    .pricing-title { font-size: 1.4rem; margin-bottom: 15px; }
    .pricing-price { font-size: 2.2rem; margin-bottom: 20px; }
    .pricing-features { margin: 20px 0; }
    .pricing-features li { font-size: 0.9rem; padding: 6px 0; }
    .pricing-btn { padding: 14px 20px; font-size: 1rem; }
    .service-bullet-list { margin: 25px 0; }
    .service-bullet-list li { font-size: 1rem; padding: 8px 0; line-height: 1.5; }
}

/* ══════════════════════════════════════════════════
   PREMIUM UI OVERHAUL — VISUAL SYSTEM OVERRIDES
   ══════════════════════════════════════════════════ */

header {
    background: rgba(255, 255, 255, 0.84);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    backdrop-filter: blur(14px) saturate(145%);
    -webkit-backdrop-filter: blur(14px) saturate(145%);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}

.nav-links a {
    position: relative;
    color: var(--dark);
    font-weight: 600;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), #36b37e);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease-premium);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after { transform: scaleX(1); }

/* Supplementary premium rules for elements not rewritten in-place */
.copy-btn,
.share-btn,
.bottom-cta .cta-links a {
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium), background-color 0.4s var(--ease-premium), color 0.4s var(--ease-premium);
}
.copy-btn:hover,
.share-btn:hover,
.bottom-cta .cta-links a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.pricing-card.popular .pricing-btn,
.mobile-sticky-bar .sticky-quote {
    background: linear-gradient(135deg, #ff6a3d 0%, var(--accent) 60%, var(--accent-strong) 100%);
}
.mobile-sticky-bar .sticky-call {
    background: linear-gradient(135deg, #25a56d 0%, var(--primary) 65%, var(--primary-strong) 100%);
}

/* Containers that don't have standalone hover—just elevation uplift */
.shield-progress-card,
.next-steps-card,
.form-side,
.feature-image {
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

/* Consistent premium background for form fields (bare HTML elements) */
.form-select,
input,
select,
textarea {
    border-radius: var(--radius-xs);
    transition: border-color 0.35s var(--ease-premium), box-shadow 0.35s var(--ease-premium), background-color 0.35s var(--ease-premium);
}
input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(31, 138, 90, 0.12);
}

.form-select-wrapper,
.input-wrapper {
    border-radius: var(--radius-sm);
}

.section-services,
.trust-authority-section,
.lead-form-section,
.service-area-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 249, 252, 0.98) 100%);
}

.city-tag,
.badge-item,
.shield-badge,
.reward-box,
.referral-link-box,
.progress-track {
    border-radius: var(--radius-sm);
}

@media (max-width: 900px) {

    /* ── FIX 1: Pure white header — kill glassmorphism on mobile ── */
    header {
        background-color: #ffffff !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-bottom: 1px solid #e2e8f0;
    }

    /* ── Tap targets — buttons keep 48px, nav items get compact 44px ── */
    .btn-primary,
    .btn-secondary,
    .btn-tertiary,
    .form-btn,
    .submit-btn,
    .btn-call,
    .mobile-sticky-bar a {
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    .nav-links a {
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 10px 20px;
        font-size: 13.5px;
    }

    .dropdown-content a {
        min-height: 40px;
        display: flex;
        align-items: center;
        padding: 8px 16px;
        font-size: 13px;
    }

    /* ── FIX 2 & 3: Compact + scrollable nav container ── */
    .nav-links {
        background: #ffffff;
        border-top: 1px solid #e2e8f0;
        border-radius: 0 0 var(--radius) var(--radius);
        box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12), 0 4px 12px rgba(15, 23, 42, 0.06);
        gap: 4px;
        padding: 12px 16px;
    }

    .nav-links.active {
        max-height: calc(100vh - 60px);
        max-height: calc(100dvh - 60px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 100px;
    }

    /* Force dropdown to block-level for accordion flow */
    .dropdown {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        position: static;
    }

    /* Center the Services toggle to match other nav links */
    .dropdown > a {
        justify-content: center !important;
        text-align: center !important;
        width: auto;
    }

    /* Reinforce accordion: no floating, push content down */
    .dropdown-content {
        position: static !important;
        box-shadow: none !important;
        border: none;
        border-left: 3px solid var(--primary);
        border-radius: 0 !important;
        margin-left: 12px;
        margin-top: 4px;
        padding: 4px 0 4px 14px;
        width: auto;
        min-width: 0;
        background: #f8fafc;
    }

    .dropdown.active .dropdown-content {
        display: block;
        animation: fadeInMenu 0.15s ease-out;
    }

    .mobile-sticky-bar {
        background: rgba(15, 23, 42, 0.84);
        backdrop-filter: blur(16px) saturate(140%);
        -webkit-backdrop-filter: blur(16px) saturate(140%);
        border-top: 1px solid rgba(255, 255, 255, 0.18);
    }

    .hero-content,
    .lead-form-container,
    .service-page-details {
        border-radius: 20px;
    }
}

/* Optional HTML hooks for premium consistency */
.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 2.8vw, 2.8rem);
    color: var(--dark);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: clamp(1rem, 1vw + 0.85rem, 1.15rem);
    max-width: 740px;
    margin: 0 auto 2rem;
}

.premium-surface {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

/* ══════════════════════════════════════════════════
   PHASE 3 — WCAG CONTRAST & MOBILE POLISH
   ══════════════════════════════════════════════════ */

/* --- Confirm-Hero (success page) text fix --- */
.confirm-hero h1,
.confirm-hero h2,
.confirm-hero h3 { color: #ffffff !important; text-shadow: none; }
.confirm-hero p { color: #94a3b8 !important; }

/* --- Guarantee block text: dark bg section variant --- */
.bg-dark .guarantee-header h3 { color: #ffffff !important; }
.bg-dark .guarantee-block p { color: #e2e8f0; }

/* ── MOBILE: Solid Backgrounds, Spacing & Tap Targets ── */
@media (max-width: 900px) {

    /* 1. Solid white backgrounds — stop cards blending into body */
    .card,
    .specialized-card,
    .review-card,
    .pricing-card,
    .lead-form-container,
    .service-page-details,
    .exit-popup-content,
    .next-steps-card,
    .shield-progress-card,
    .form-side,
    .authority-badge,
    .scarcity-banner,
    .guarantee-block {
        background-color: #ffffff;
    }

    /* Keep review/specialized subtle tint on mobile */
    .review-card,
    .specialized-card {
        background-color: #f9fafb;
    }

    /* 2. Ensure box-shadows remain visible on mobile */
    .card {
        box-shadow: 0 2px 6px rgba(15, 23, 42, 0.06), 0 8px 20px rgba(15, 23, 42, 0.08);
    }
    .lead-form-container,
    .service-page-details {
        box-shadow: 0 2px 6px rgba(15, 23, 42, 0.05), 0 10px 24px rgba(15, 23, 42, 0.09);
    }
    .review-card,
    .specialized-card,
    .authority-badge {
        box-shadow: 0 1px 4px rgba(15, 23, 42, 0.05), 0 4px 12px rgba(15, 23, 42, 0.06);
    }
    .pricing-card {
        box-shadow: 0 2px 6px rgba(15, 23, 42, 0.06), 0 10px 24px rgba(15, 23, 42, 0.1);
    }

    /* 3. Generous spacing between blocks — not cramped */
    .services-grid {
        gap: 24px;
        margin-top: 32px;
    }
    .reviews-grid {
        gap: 20px;
    }
    .specialized-grid {
        gap: 16px;
    }
    .specialized-card {
        text-align: center;
    }
    .specialized-card i {
        margin-left: auto;
        margin-right: auto;
    }
    .pricing-table {
        gap: 28px;
    }
    .card-body {
        padding: 28px 22px;
        text-align: center;
    }
    .card-icon {
        margin-left: auto;
        margin-right: auto;
    }

    /* 4. Section padding: tight outside, generous inside */
    .section-services {
        padding: 48px 0;
    }
    .trust-authority-section {
        padding: 48px 16px;
    }
    .lead-form-section {
        padding: 48px 16px;
    }
    .service-area-section {
        padding: 48px 0;
    }

    /* 5. Guaranteed minimum tap target height */
    .btn-primary,
    .btn-secondary,
    .btn-tertiary,
    .form-btn,
    .submit-btn,
    .btn-call,
    .pricing-btn,
    .share-btn,
    .copy-btn,
    .city-tag,
    .authority-badge,
    .mobile-sticky-bar a,
    .dropdown-content a,
    .nav-links a {
        min-height: 48px;
    }

    /* 6. Mobile hero card — solid white, crisp shadow */
    .hero-content {
        background: #ffffff;
        box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08), 0 8px 24px rgba(15, 23, 42, 0.06);
    }

    /* Force mobile hero text to dark (it's on white bg) */
    .hero-content h1 { color: var(--dark) !important; text-shadow: none !important; }
    .hero-content p { color: #475569 !important; text-shadow: none !important; }

    /* Lead form box spacing on mobile */
    .lead-form-box {
        gap: 8px;
        padding: 0;
    }
    .form-select-wrapper,
    .input-wrapper {
        background: #ffffff;
        border-color: #e2e8f0;
    }
}

/* ── Extra Small Devices ── */
@media (max-width: 480px) {

    .card {
        border-radius: 16px;
        box-shadow: 0 2px 6px rgba(15, 23, 42, 0.06), 0 6px 16px rgba(15, 23, 42, 0.08);
    }
    .card-body {
        padding: 24px 18px;
    }
    .services-grid {
        gap: 20px;
    }
    .reviews-grid {
        gap: 16px;
    }
    .pricing-table {
        gap: 24px;
    }

    /* Tap targets */
    .btn-primary,
    .btn-secondary,
    .btn-tertiary,
    .form-btn,
    .submit-btn,
    .pricing-btn {
        min-height: 48px;
        font-size: 15px;
    }
    .form-control,
    .form-input,
    .form-select {
        min-height: 48px;
    }

    /* Section spacing balance */
    .section-services { padding: 36px 0; }
    .trust-authority-section { padding: 36px 12px; }
    .lead-form-section { padding: 36px 12px; }
    .service-area-section { padding: 36px 0; }

    /* Service page hero mobile contrast */
    .service-page-hero h1 { color: #ffffff !important; text-shadow: 0 2px 8px rgba(0,0,0,0.5) !important; }
}

/* ═══════════════════════════════════════════════════════
   HOMEPAGE PRICING SECTION (Premium CRO Redesign)
   ═══════════════════════════════════════════════════════ */
.pricing-section {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}
.pricing-section .pricing-header {
    text-align: center;
    margin-bottom: 48px;
}
.pricing-section .pricing-header h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 10px;
}
.pricing-section .pricing-header > p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}
.pricing-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(31,138,90,0.08);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 14px;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}
.pricing-grid .pricing-card {
    display: flex;
    flex-direction: column;
    padding: 40px 30px;
    background: #fff;
    border-radius: 16px;
    border: 1.5px solid rgba(148,163,184,0.15);
    box-shadow: 0 1px 3px rgba(15,23,42,0.04), 0 8px 24px rgba(15,23,42,0.06);
    position: relative;
    transition: transform 0.35s var(--ease-premium), box-shadow 0.35s var(--ease-premium), border-color 0.35s var(--ease-premium);
}
.pricing-grid .pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 2px 6px rgba(15,23,42,0.05), 0 16px 40px rgba(15,23,42,0.12);
    border-color: rgba(31,138,90,0.2);
}
.pricing-card--featured {
    border-color: var(--primary) !important;
    background: linear-gradient(160deg, #f0faf5 0%, #ffffff 50%) !important;
    box-shadow: 0 8px 32px rgba(31,138,90,0.15), 0 0 0 1px rgba(31,138,90,0.08) !important;
    transform: scale(1.03);
}
.pricing-card--featured:hover {
    transform: scale(1.03) translateY(-8px);
}
.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #25a56d 0%, var(--primary) 100%);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 30px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(31,138,90,0.3);
    display: flex;
    align-items: center;
    gap: 5px;
}
.pricing-badge i {
    font-size: 0.65rem;
}
.pricing-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(31,138,90,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.pricing-icon i {
    font-size: 1.2rem;
    color: var(--primary);
}
.pricing-grid .pricing-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--dark);
}
.pricing-grid .pricing-card > p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    flex-grow: 0;
}
.pricing-grid .pricing-card .pricing-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.price-from {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}
.price-num {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.price-period {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}
.pricing-grid .pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex-grow: 1;
}
.pricing-grid .pricing-features li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 8px;
}
.pricing-grid .pricing-features li i {
    color: var(--primary);
    font-size: 0.85rem;
    flex-shrink: 0;
}
.pricing-cta {
    display: block;
    text-align: center;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid var(--primary);
    color: var(--primary);
    transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
    margin-top: auto;
}
.pricing-cta:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(31,138,90,0.25);
}
.pricing-cta--primary {
    background: linear-gradient(135deg, #25a56d 0%, var(--primary) 65%, var(--primary-strong) 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 18px rgba(31,138,90,0.3);
    font-size: 1rem;
    padding: 15px 20px;
}
.pricing-cta--primary:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-strong) 100%);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(31,138,90,0.35);
}
/* Risk Reversal Trust Bar */
.pricing-trust-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 28px;
    margin-top: 36px;
    padding: 20px 24px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(148,163,184,0.12);
    box-shadow: 0 1px 4px rgba(15,23,42,0.04);
}
.pricing-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
}
.pricing-trust-item i {
    color: var(--primary);
    font-size: 1rem;
}
.pricing-note {
    text-align: center;
    font-size: 0.84rem;
    color: var(--text-muted);
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.pricing-note i { color: var(--primary); }

@media (max-width: 900px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .pricing-card--featured { order: -1; transform: none; }
    .pricing-card--featured:hover { transform: translateY(-8px); }
    .pricing-trust-bar { gap: 10px 20px; padding: 16px 18px; }
    .pricing-trust-item { font-size: 0.82rem; }
}

/* ═══════════════════════════════════════════════════════
   SMS OPT-IN (Task 4)
   ═══════════════════════════════════════════════════════ */
.sms-optin {
    margin: 18px 0 10px;
    padding: 14px 18px;
    background: rgba(31,138,90,0.05);
    border: 1.5px solid rgba(31,138,90,0.18);
    border-radius: var(--radius-xs);
}
.sms-optin-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}
.sms-checkbox {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: var(--primary);
    margin-top: 2px;
    cursor: pointer;
}
.sms-optin-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.4;
    flex-wrap: wrap;
}
.sms-optin-text i {
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}
.sms-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 30px;
    vertical-align: middle;
}

/* ============================================================
   PHASE 1 CRO — New Styles
   ============================================================ */

/* Services — Primary 3-card grid */
.services-grid--primary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 28px;
}
.card--primary {
    position: relative;
    border: 1.5px solid rgba(31, 138, 90, 0.15);
    border-radius: var(--radius);
    transition: transform 0.3s var(--ease-premium), box-shadow 0.3s var(--ease-premium);
}
.card--primary:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
    border-color: rgba(31, 138, 90, 0.3);
}
.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e8f5ef 0%, #d1fae5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 14px;
}

/* Services — Secondary pill row */
.services-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 8px;
}
.service-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1.5px solid #e2e8f0;
    border-radius: 100px;
    background: #f8fafc;
    color: var(--dark);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s var(--ease-premium);
}
.service-pill i {
    color: var(--primary);
    font-size: 0.95rem;
}
.service-pill:hover {
    background: #f0fdf4;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 138, 90, 0.12);
}

@media (max-width: 900px) {
    .services-grid--primary {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
@media (max-width: 640px) {
    .services-pills {
        gap: 8px;
    }
    .service-pill {
        padding: 8px 14px;
        font-size: 0.82rem;
    }
}

/* ============================================================
   Why EcoWall — Combined Team + Pet-Safe + Fleet
   ============================================================ */
.why-ecowall-section {
    padding: 70px 20px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}
.why-ecowall-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.why-card {
    background: #ffffff;
    border-radius: var(--radius);
    border: 1.5px solid rgba(148, 163, 184, 0.15);
    overflow: hidden;
    transition: transform 0.3s var(--ease-premium), box-shadow 0.3s var(--ease-premium);
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    border-color: rgba(31, 138, 90, 0.2);
}
.why-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center 15%;
    display: block;
}
.why-card-body {
    padding: 28px;
}
.why-card-body h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 10px;
}
.why-card-body p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
}
.why-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 10px;
}
.why-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.why-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 100px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary-strong);
}
@media (max-width: 768px) {
    .why-ecowall-grid {
        grid-template-columns: 1fr;
    }
    .why-card-img {
        height: 180px;
    }
    .why-card-body {
        text-align: center;
    }
    .why-badge-row {
        justify-content: center;
    }
    .why-eyebrow {
        justify-content: center;
    }
}

/* ============================================================
   Footer — Modernized 4-Column
   ============================================================ */
.footer-grid--modern {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 50px 0 30px;
}
.footer-col h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 16px;
    font-weight: 700;
}
.footer-col p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}
.footer-col a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col a:hover {
    color: #ffffff;
}
.footer-col i {
    width: 18px;
    text-align: center;
    margin-right: 6px;
    color: var(--primary);
}
.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5) !important;
    margin-bottom: 12px !important;
}
.footer-license {
    font-size: 0.78rem !important;
    color: rgba(255, 255, 255, 0.4) !important;
    line-height: 1.5 !important;
}
.footer-area-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
}
.footer-area-links a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 2px 0;
}
.footer-area-links a:hover {
    color: #ffffff;
}
.footer-all-areas {
    width: 100%;
    margin-top: 6px;
    color: var(--primary) !important;
    font-weight: 600;
    font-size: 0.85rem !important;
}
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
}
.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}
.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: underline;
}
.footer-bottom a:hover {
    color: #ffffff;
}
@media (max-width: 900px) {
    .footer-grid--modern {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        text-align: center;
    }
    .footer-col i {
        display: inline;
    }
    .footer-area-links {
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .footer-grid--modern {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    .footer-area-links {
        justify-content: center;
    }
}

/* Hero call fallback text (replaces CTA buttons) */
.hero-call-fallback {
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin-top: 12px;
    font-weight: 400;
}
.hero-call-fallback a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.hero-call-fallback a:hover {
    color: var(--accent);
}
@media (max-width: 900px) {
    .hero-call-fallback { color: #64748b; }
    .hero-call-fallback a { color: var(--primary); }
}

/* Hero form micro-headline */
.hero-form-headline {
    text-align: center;
    font-size: 0.88rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.hero-form-headline i {
    color: #fbbf24;
    font-size: 0.9rem;
}
@media (max-width: 900px) {
    .hero-form-headline {
        color: var(--dark);
    }
}

/* Guarantee block homepage wrapper */
.guarantee-block-homepage {
    background: #f8fafc;
    padding: 0 20px 10px;
}
.guarantee-block-homepage .guarantee-block {
    max-width: 1200px;
    margin: 0 auto;
}

/* How It Works — 3-column strip */
.how-it-works-strip {
    background: #ffffff;
    padding: 48px 20px;
    border-bottom: 1px solid #e2e8f0;
}
.how-it-works-heading {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 28px;
}
.how-it-works-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}
.how-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}
.how-step-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25a56d 0%, var(--primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(31, 138, 90, 0.25);
}
.how-step-num {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
}
.how-step-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
}
.how-step-arrow {
    color: var(--primary);
    font-size: 1.2rem;
    opacity: 0.5;
    margin-top: -10px;
}

/* Mini CTA strip */
.mini-cta-strip {
    text-align: center;
    padding: 22px 20px;
    background: #f0fdf4;
    border-top: 1px solid #d1fae5;
    border-bottom: 1px solid #d1fae5;
}
.mini-cta-strip p {
    margin: 0;
    font-size: 1rem;
    color: var(--dark);
    font-weight: 500;
}
.mini-cta-phone {
    color: var(--primary) !important;
    text-decoration: none;
}
.mini-cta-phone:hover {
    color: var(--accent) !important;
}
.mini-cta-phone i {
    margin-right: 4px;
}
.mini-cta-link {
    color: var(--accent) !important;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.mini-cta-link:hover {
    color: #ff8c5a !important;
}

/* Pricing period unit */
.pricing-period {
    font-size: 14px;
    color: #2E8B57;
    font-weight: 500;
}

/* Trust stat line (replaces counter widget) */
.trust-stat-line {
    font-size: 1.25rem;
    color: var(--dark);
    text-align: center;
    margin: 0 0 24px;
}
.trust-stat-line strong {
    font-size: 1.5rem;
    color: var(--primary);
}

/* Review rating number next to stars */
.review-rating {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    margin-left: 4px;
    vertical-align: middle;
}

/* Form trust widget (above submit button) */
.form-trust-widget {
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 14px;
    padding: 8px 0;
}
.form-trust-stars {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 1px;
}
.form-trust-widget strong {
    color: var(--dark);
}

/* Responsive — How It Works */
@media (max-width: 640px) {
    .how-it-works-inner {
        flex-direction: column;
        gap: 20px;
    }
    .how-step {
        flex-direction: row;
        gap: 14px;
        text-align: center;
    }
    .how-step-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 1rem;
    }
    .how-step-arrow {
        display: none;
    }
    .how-step-num {
        display: none;
    }
    .mini-cta-strip p {
        font-size: 0.9rem;
    }
}