/* ============================================
   HOME PAGE — PREMIUM DARK-HERO + SECTIONS
   ============================================ */

/* ── HERO ── */
.home-hero {
    padding: 140px 0 50px !important;
    margin-top: 0 !important;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(36, 114, 191, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(111, 179, 255, 0.08) 0%, transparent 50%),
        linear-gradient(160deg, #081220 0%, #0B1F36 30%, #10345D 60%, #2472BF 100%) !important;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-height: auto !important;
}

.home-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
    z-index: 0;
}

/* ── Hero two-column grid ── */
.home-hero-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.home-hero-content {
    flex: 1;
    max-width: 640px;
}

.home-hero-graphic {
    flex: 0 0 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
}

/* ── Pill badge ── */
.home-hero .hero-pill {
    display: inline-block;
    background: rgba(111, 179, 255, 0.12);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #6FB3FF;
    border: 1px solid rgba(111, 179, 255, 0.2);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

/* ── Gradient title ── */
.home-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.home-hero h1 .text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #6FB3FF 60%, #a8d8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Subtitle ── */
.home-hero .hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* ── CTA buttons ── */
.home-hero .hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.home-hero .btn-hero-primary {
    background: linear-gradient(135deg, #2472BF 0%, #1a5a9e 100%);
    color: #fff;
    padding: 0.85rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 20px rgba(36, 114, 191, 0.3);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.home-hero .btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 35px rgba(36, 114, 191, 0.5);
    color: #fff;
}

.home-hero .btn-hero-outline {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.85rem 2.2rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.home-hero .btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ── Metrics row ── */
.home-hero .hero-metrics {
    display: flex;
    gap: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home-hero .hero-metric {
    display: flex;
    flex-direction: column;
}

.home-hero .hero-metric-number {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #6FB3FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-hero .hero-metric-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
    font-weight: 500;
}

/* ── Floating graphic ── */
.home-hero .graphic-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-hero .graphic-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(111, 179, 255, 0.12);
    border: 2px solid rgba(111, 179, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #6FB3FF;
    position: relative;
    z-index: 2;
    animation: homeFloat 6s ease-in-out infinite;
}

@keyframes homeFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

.home-hero .pulse-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(111, 179, 255, 0.15);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: homePulse 4s ease-in-out infinite;
}

.home-hero .pulse-ring-1 { width: 130px; height: 130px; animation-delay: 0s; }
.home-hero .pulse-ring-2 { width: 170px; height: 170px; animation-delay: 1s; }
.home-hero .pulse-ring-3 { width: 210px; height: 210px; animation-delay: 2s; }

@keyframes homePulse {
    0% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.1; transform: translate(-50%, -50%) scale(1.15); }
    100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
}

/* ── Coverage checker card (glassmorphism) ── */
.hero-checker-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 24px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.hero-checker-card .checker-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

.hero-checker-card .checker-row {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.hero-checker-card .checker-input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.hero-checker-card .checker-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.hero-checker-card .checker-input:focus {
    border-color: rgba(111, 179, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(111, 179, 255, 0.1);
}

.hero-checker-card .checker-btn {
    padding: 12px 24px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2472BF 0%, #1a5a9e 100%);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-checker-card .checker-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(36, 114, 191, 0.4);
    color: #fff;
}

.hero-checker-card .checker-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 10px;
}

.hero-checker-card .checker-note a {
    color: rgba(111, 179, 255, 0.7);
    text-decoration: none;
}

.hero-checker-card .checker-note a:hover {
    color: #6FB3FF;
}

/* Honeypot: visually hidden */
.hero-checker-card .hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .home-hero-grid {
        flex-direction: column;
        text-align: center;
    }
    .home-hero-content {
        max-width: 100%;
    }
    .home-hero .hero-subtitle {
        max-width: 100%;
    }
    .home-hero .hero-cta-group {
        justify-content: center;
    }
    .home-hero .hero-metrics {
        justify-content: center;
    }
    .home-hero-graphic {
        flex: 0 0 auto;
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .home-hero {
        padding: 120px 0 40px !important;
    }
    .home-hero h1 {
        font-size: 2.2rem;
    }
    .home-hero .hero-metrics {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    .home-hero .hero-metric-number {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .home-hero h1 {
        font-size: 1.8rem;
    }
    .home-hero .hero-pill {
        font-size: 0.65rem;
        padding: 0.3rem 1rem;
    }
    .home-hero .graphic-wrapper {
        width: 140px;
        height: 140px;
    }
    .home-hero .graphic-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    .home-hero .pulse-ring-1 { width: 100px; height: 100px; }
    .home-hero .pulse-ring-2 { width: 130px; height: 130px; }
    .home-hero .pulse-ring-3 { width: 160px; height: 160px; }
    .hero-checker-card {
        padding: 16px;
    }
    .hero-checker-card .checker-row {
        flex-direction: column;
    }
    .hero-checker-card .checker-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   COVERAGE SECTION — INLINE STYLES (moved)
   ============================================ */

.coverage-stat-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem 1rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
}

.coverage-stat-card:hover {
    transform: translateY(-6px);
    border-color: #2563eb;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.08);
}

.coverage-stat-card .stat-icon-wrapper {
    width: 52px;
    height: 52px;
    margin: 0 auto 0.5rem;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #2563eb;
    transition: all 0.3s ease;
}

.coverage-stat-card:hover .stat-icon-wrapper {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    transform: scale(1.05);
}

.coverage-stat-card .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.coverage-stat-card .stat-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 2px;
}

.coverage-stat-card .stat-bar {
    width: 100%;
    height: 4px;
    background: #e2e8f0;
    border-radius: 4px;
    margin-top: 0.75rem;
    overflow: hidden;
}

.coverage-stat-card .stat-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    border-radius: 4px;
    transition: width 1s ease;
}

.coverage-search-wrapper {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.coverage-search-wrapper .input-group {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.coverage-search-wrapper .input-group:focus-within {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.coverage-search-wrapper .input-group-text {
    padding: 0 0 0 1rem;
}

.coverage-search-wrapper .form-control {
    border: none;
    padding: 0.75rem 1rem;
    font-size: 1rem;
}

.coverage-search-wrapper .form-control:focus {
    box-shadow: none;
}

.coverage-search-wrapper .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0 8px 8px 0;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 992px) {
    .coverage-stat-card .stat-number {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .coverage-stat-card {
        padding: 1rem 0.75rem;
    }
    .coverage-stat-card .stat-number {
        font-size: 1.4rem;
    }
    .coverage-stat-card .stat-icon-wrapper {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    .coverage-search-wrapper .input-group {
        flex-wrap: wrap;
    }
    .coverage-search-wrapper .btn {
        width: 100%;
        border-radius: 0 0 8px 8px;
        justify-content: center;
    }
    .coverage-search-wrapper .form-control {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .coverage-stat-card .stat-number {
        font-size: 1.2rem;
    }
    .coverage-stat-card .stat-label {
        font-size: 0.7rem;
    }
    .coverage-stat-card .stat-icon-wrapper {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
    .coverage-search-wrapper {
        padding: 1rem;
    }
}
