:root {
    --blue: #1e40af;
    --blue-dark: #1e3a8a;
    --blue-light: #dbeafe;
    --orange: #ea580c;
    /* Use slightly brighter orange for badges to pop */
    --orange-vivid: #f97316;
    --orange-dark: #c2410c;
    --orange-light: #ffedd5;
    --dark: #0f172a;
    --gray: #64748b;
    --light: #f8fafc;
    --white: #ffffff;
    --green: #00b67a;
}

/* UTILS */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

/* BRANDS SECTION CSS */
.brands-section {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid #e2e8f0;
}

.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.brand-img {
    height: 40px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s;
    object-fit: contain;
}

.brand-img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* FAQ MODERN CSS */
.faq-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.9);
}

.faq-question {
    padding: 20px 24px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark);
}

.faq-question span {
    flex: 1;
    text-align: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 24px;
    opacity: 0.8;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding-bottom: 24px;
    max-height: 500px;
    /* Increased to avoid cutoff */
}

.faq-icon {
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Dark mode variables */
body.dark-mode {
    --dark: #e2e8f0;
    --gray: #94a3b8;
    --light: #1e293b;
    --white: #0f172a;
}

body.dark-mode {
    background: #0f172a;
    color: #e2e8f0;
}

body.dark-mode .hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
}

body.dark-mode .section,
body.dark-mode .stats-bar,
body.dark-mode .guarantee,
body.dark-mode .trust-section,
body.dark-mode .mid-cta {
    background: #1e293b;
}

body.dark-mode .review-card,
body.dark-mode .problem-item,
body.dark-mode .step,
body.dark-mode .gallery-item,
body.dark-mode .faq-item {
    background: #334155;
    border-color: #475569;
}

body.dark-mode .urgency-bar {
    background: linear-gradient(90deg, #431407 0%, #7c2d12 50%, #431407 100%) !important;
}

body.dark-mode .urgency-bar p {
    color: #fed7aa !important;
}

body.dark-mode .footer {
    background: #0f172a;
    border-top: 1px solid #334155;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--dark);
    background-color: #f8fafc;
    background-image:
        radial-gradient(at 0% 0%, hsla(210, 100%, 56%, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 100%, hsla(25, 100%, 70%, 0.08) 0px, transparent 50%);
    background-attachment: fixed;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 70px;
    position: relative;
}

/* Noise texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.015;
    pointer-events: none;
    z-index: 9998;
}

/* Scroll reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Ripple effect for buttons */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
}

.ripple:active::after {
    animation: rippleEffect 0.6s ease-out;
}

@keyframes rippleEffect {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

/* Pulse attention animation */
@keyframes pulseAttention {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(234, 88, 12, 0.4);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 6px 30px rgba(234, 88, 12, 0.6);
    }
}

.pulse-attention {
    animation: pulseAttention 2s ease-in-out;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* STICKY CTA */
/* STICKY CTA */
/* STICKY CTA */
.cta-mobile-sticky {
    position: fixed;
    bottom: 24px;
    right: 24px;
    left: auto;
    background: none;
    padding: 0;
    z-index: 9990;
    display: block;
    /* Visible on desktop */
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--orange);
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 16px 32px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(234, 88, 12, 0.5);
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(234, 88, 12, 0.6);
}

.cta-button:active {
    transform: scale(0.98);
}

@media (max-width: 768px) {
    .cta-mobile-sticky {
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        padding: 12px 16px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    }

    .cta-button {
        width: 100%;
        padding: 14px;
        box-shadow: 0 4px 15px rgba(234, 88, 12, 0.4);
    }

    .cta-button:hover {
        transform: none;
    }
}

.pulse {
    width: 12px;
    height: 12px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.3);
    }
}

/* PHONE RING ANIMATION */
@keyframes ring {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: rotate(-10deg);
    }

    20%,
    40%,
    60%,
    80% {
        transform: rotate(10deg);
    }
}

.phone-ring {
    animation: ring 1.5s ease-in-out infinite;
    display: inline-block;
}

/* FREE CALL BADGE */
.free-badge {
    background: #22c55e;
    color: white;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
}

/* COUNTER ANIMATION */
/* COUNTER ANIMATION */
.live-counter {
    background: var(--dark);
    color: white;
    padding: 10px;
    text-align: center;
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.live-counter strong {
    color: var(--orange);
}

/* HERO */
.hero {
    background: #13265c;
    color: white;
    padding: 80px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.radar-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
    font-size: 0.9rem;
    font-weight: 600;
}

.radar-ping {
    width: 10px;
    height: 10px;
    background: #4ade80;
    border-radius: 50%;
    position: relative;
}

.radar-ping::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: #4ade80;
    border-radius: 50%;
    animation: radarPing 2s infinite;
}

@keyframes radarPing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

/* ANIMATED BG ICONS */
.hero-bg-icon {
    position: absolute;
    opacity: 0.05;
    color: white;
    z-index: 0;
    pointer-events: none;
}

@keyframes floatTool {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes floatToolRev {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(20px) rotate(-5deg);
    }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero h1 .highlight {
    color: white;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    padding: 2px 12px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    display: inline-block;
    transform: skew(-5deg);
}

/* IMPROVED SECTION TITLES */
.section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--dark);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--orange);
    margin: 10px auto 0;
    border-radius: 2px;
}

.hero-sub {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--orange);
    color: white;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(234, 88, 12, 0.4);
    transition: all 0.2s;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(234, 88, 12, 0.5);
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
    font-size: 0.9rem;
    opacity: 0.8;
    flex-wrap: wrap;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* URGENCY BAR */
.urgency-bar {
    background: var(--orange-light);
    border-left: 4px solid var(--orange);
    padding: 16px 20px;
    margin: -30px 20px 0;
    border-radius: 8px;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.urgency-bar p {
    font-weight: 700;
    color: var(--orange-dark);
    text-align: center;
}

/* SECTION */
.section {
    padding: 50px 0;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--dark);
}

/* PROBLEMS */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 12px;
}

.problem-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    background: white;
    padding: 24px 16px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle border */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    /* Explicit "clickable" shadow */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.problem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--orange);
}

.problem-item:active {
    transform: scale(0.96);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Timeline connector */
.problems-list {
    position: relative;
}

.problems-list::before {
    content: '';
    position: absolute;
    left: 43px;
    top: 70px;
    bottom: 70px;
    width: 2px;
    background: linear-gradient(to bottom, var(--blue), var(--orange));
    animation: timelinePulse 2s ease-in-out infinite;
}

@keyframes timelinePulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.8;
    }
}

.problem-icon {
    width: 48px;
    height: 48px;
    background: var(--blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--blue);
    transition: transform 0.3s ease, background 0.3s ease;
    z-index: 1;
}

.problem-item:hover .problem-icon {
    transform: scale(1.15);
    background: var(--blue);
    color: white;
}

.problem-text {
    font-weight: 700;
    font-size: 1.1rem;
}

.problem-sub {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 2px;
}

/* MID CTA */
.mid-cta {
    background: var(--blue);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.mid-cta h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.mid-cta a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    font-size: 1.1rem;
}

/* TRUSTPILOT CAROUSEL */
.trust-section {
    padding: 50px 0;
    background: var(--light);
    overflow: hidden;
}

.trust-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.trustpilot-logo {
    font-weight: 800;
    font-size: 1.2rem;
    color: #191919;
}

.trust-stars {
    display: flex;
    gap: 2px;
    color: var(--green);
}

.trust-stars svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.trust-score {
    font-size: 1.5rem;
    font-weight: 800;
}

.trust-label {
    color: var(--gray);
    margin-bottom: 32px;
}

/* CAROUSEL AUTO-SCROLL */
.carousel-wrapper {
    position: relative;
    margin: 0 -20px;
    padding: 0 20px;
}

.reviews-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 10px 40px 20px 40px;
    scrollbar-width: none;
}

.reviews-carousel::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 300px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    scroll-snap-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    background: var(--blue-light);
    color: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.review-meta {
    text-align: left;
}

.review-author {
    font-weight: 700;
    font-size: 0.95rem;
}

.review-date {
    font-size: 0.8rem;
    color: var(--gray);
}

.review-stars {
    color: var(--green);
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.review-stars svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.review-title {
    font-weight: 700;
    margin-bottom: 8px;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    background: #cbd5e1;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
}

.carousel-dot.active {
    background: var(--blue);
    width: 24px;
    border-radius: 4px;
}

/* GUARANTEE BANNER */
.guarantee {
    background: linear-gradient(135deg, rgba(240, 253, 244, 0.9) 0%, rgba(220, 252, 231, 0.9) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid #22c55e;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.15);
    border-radius: 16px;
    padding: 30px;
    margin: 40px 20px;
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.guarantee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #22c55e;
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-text h3 {
    font-weight: 800;
    color: #166534;
    margin-bottom: 4px;
}

.guarantee-text p {
    font-size: 0.9rem;
    color: #15803d;
}

/* STEPS */
.steps-list {
    counter-reset: step;
}

.step {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid #e2e8f0;
}

.step:last-child {
    border-bottom: none;
}

.step-num {
    counter-increment: step;
    width: 40px;
    height: 40px;
    background: var(--blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.step-num::before {
    content: counter(step);
}

.step h3 {
    font-weight: 700;
    margin-bottom: 4px;
}

.step p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ZONE */
.zone {
    padding: 40px 0;
    background: var(--blue-light);
}

.zone-title {
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--blue-dark);
}

.zone-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.zone-tag {
    background: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* FINAL CTA */
.final-cta {
    background: var(--dark);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.final-cta h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.final-cta p {
    opacity: 0.7;
    margin-bottom: 24px;
}

.final-cta a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--orange);
    color: white;
    padding: 20px 48px;
    border-radius: 8px;
    font-size: 1.3rem;
    font-weight: 800;
    text-decoration: none;
}

/* FOOTER */
footer {
    background: var(--dark);
    color: var(--gray);
    padding: 30px 20px;
    text-align: center;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer a {
    color: var(--gray);
    text-decoration: underline;
}

.phone-icon {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* STATS BAR */
.stats-bar {
    background: white;
    padding: 30px 0;
    border-bottom: 1px solid #e2e8f0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--blue);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
}

/* TRUST LOGOS */
.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 20px;
    background: var(--light);
    border-radius: 8px;
    margin: 20px;
}

.trust-logo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 600;
}

.trust-logo-item svg {
    color: var(--blue);
}

/* GALLERY */
.gallery-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.5);
    /* Subtle background for contrast */
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    /* Taller for better visual */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    color: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transform: translateY(0);
    transition: all 0.3s ease;
    text-align: center;
    /* Enforce Centering */
    display: flex;
    /* Ensure content centers */
    flex-direction: column;
    align-items: center;
}

.gallery-caption span {
    color: var(--gray);
    font-weight: 400;
}

/* MAP */
.map-section {
    background: var(--blue-light);
    padding: 40px 0;
}

.map-container {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.map-visual {
    height: 200px;
    background: linear-gradient(135deg, #e0e7ff, #dbeafe);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 16px;
}

.map-pin {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.3);
}

.map-legend {
    display: flex;
    gap: 20px;
    justify-content: center;
    font-size: 0.85rem;
}

.map-legend span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.legend-dot.orange {
    background: var(--orange);
}

.legend-dot.blue {
    background: var(--blue);
}

/* QUIZ */
.quiz-section {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: white;
    padding: 50px 0;
}

.quiz-box {
    background: white;
    border-radius: 12px;
    padding: 30px;
    color: var(--dark);
}

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
}

.quiz-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.quiz-options {
    display: grid;
    gap: 12px;
}

/* GLASS STEPS & QUIZ */
.step-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 24px;
    border-radius: 12px;
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.8);
}

.quiz-option {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 600;
    text-align: left;
}

/* GLASSMORPHISM UTILS - RESTORED */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent, #ffffff);
    /* To white (body bg matches overlay but we use pattern now... check match) */
    background: linear-gradient(to bottom, transparent, #f8fafc);
    /* Match new body bg */
    font-size: 0;
    z-index: 1;
    pointer-events: none;
}

.quiz-option:hover {
    border-color: var(--blue);
    background: rgba(219, 234, 254, 0.8);
    /* Blue light glass */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.quiz-progress {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.quiz-dot {
    width: 40px;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
}

.quiz-dot.done {
    background: var(--blue);
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }

    .review-card {
        flex: 0 0 280px;
    }

    .guarantee {
        flex-direction: column;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* PRICE MARQUEE */
.price-marquee {
    background: var(--orange);
    color: white;
    overflow: hidden;
    padding: 12px 0;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
}

.price-content {
    display: flex;
    width: fit-content;
    animation: priceScroll 30s linear infinite;
}

.price-item {
    white-space: nowrap;
    margin-right: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

@keyframes priceScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- GEO MODAL CSS --- */
#geo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}

#geo-modal.hidden {
    opacity: 0;
    pointer-events: none;
}

.geo-card {
    background: white;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 400px;
    width: 90%;
    position: relative;
    /* overflow: hidden; Removed to allow dropdown overflow */
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.geo-loader {
    width: 60px;
    height: 60px;
    border: 4px solid #e2e8f0;
    border-top: 4px solid var(--orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.geo-step {
    display: none;
    animation: modalPopIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPopIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.geo-step.active {
    display: block;
}

.geo-btn {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    margin-top: 12px;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    border: none;
    font-size: 1rem;
}

.geo-btn-primary {
    background: var(--orange);
    color: white;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
}

.geo-btn-secondary {
    background: #f1f5f9;
    color: #475569;
}

.geo-btn:active {
    transform: scale(0.98);
}

/* Autocomplete Styles */
.city-input-group {
    position: relative;
    margin-top: 20px;
}

#cityInput {
    width: 100%;
    padding: 14px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

#cityInput:focus {
    border-color: var(--orange);
}

.suggestions-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    margin-top: 8px;
    max-height: 250px;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    /* Ensure it floats above everything */
    text-align: left;
    display: none;
}

.suggestion-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: #fff7ed;
    /* Light orange tint */
    color: var(--orange);
}

.suggestion-zip {
    color: #64748b;
    font-size: 0.85rem;
    margin-left: 6px;
}

@keyframes pulseWarning {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes shimmerBg {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.urgency-bar {
    background-size: 200% 100%;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes pulseRipple {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 768px) {

    /* Urgency Bar Mobile Fix */
    .urgency-bar {
        flex-direction: column !important;
        text-align: center !important;
        gap: 12px !important;
        padding: 16px !important;
    }

    .urgency-bar>div {
        text-align: center !important;
    }

    .urgency-bar a {
        width: 100% !important;
        text-align: center !important;
    }

    /* Hero section */
    .hero {
        padding: 50px 0 70px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .hero-cta {
        padding: 14px 28px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }

    /* Sections */
    .section {
        padding: 30px 0;
    }

    .section-title {
        font-size: 1.4rem;
    }

    /* Problems grid */
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .problem-item {
        padding: 16px 12px;
    }

    .problem-icon {
        width: 40px;
        height: 40px;
    }

    .problem-text {
        font-size: 0.9rem;
    }

    /* Mid CTA */
    .mid-cta {
        padding: 30px 16px;
    }

    .mid-cta h2 {
        font-size: 1.2rem;
    }

    .mid-cta a {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    /* Final CTA */
    .final-cta {
        padding: 40px 16px;
    }

    .final-cta h2 {
        font-size: 1.5rem;
    }

    .final-cta a {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 1.1rem;
    }

    /* Zone Section */
    .zone-list {
        gap: 6px;
    }

    .zone-tag {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    /* Footer */
    footer {
        padding: 20px 16px;
    }

    /* Reviews Carousel */
    .review-card {
        min-width: 280px;
    }

    /* Stats bar */
    .stats-bar {
        flex-direction: column;
        gap: 16px;
    }

    /* Gallery */
    .gallery-scroll {
        gap: 12px;
    }

    .gallery-item {
        min-width: 260px;
    }

    /* Steps */
    .steps-list {
        gap: 16px;
    }

    .step {
        padding: 16px;
    }

    /* FAQ */
    .faq-question {
        padding: 16px;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 16px;
        font-size: 0.9rem;
    }

    /* Radar badge */
    .radar-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    /* Container padding */
    .container {
        padding: 0 16px;
    }

    /* Hide geolocation modal on mobile if it exists */
    #geo-modal {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .problems-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .problem-text {
        font-size: 0.8rem;
    }

    .problem-icon {
        width: 36px;
        height: 36px;
    }
}

/* Zone List Styles */
.zone-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.zone-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
    border: 1px solid #e2e8f0;
}

.zone-tag:hover {
    background: white;
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}


.zone-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--dark);
}

/* Map Profile Markers - EXACT MATCH */
.profile-marker {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.profile-marker img {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}