/* ============================================
   WATER CLEANIC — Premium Parametric Insurance
   ============================================ */

/* ── Reset & Base ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-teal: #1A6B8A;
    --medium-blue: #2196C8;
    --bright-cyan: #38B6E6;
    --sky-blue: #5CC8F0;
    --deep-navy: #1B4F6B;
    --droplet: #2EA5D3;
    --bg-light: #F5F5F5;
    --bg-white: #ffffff;
    --navy-900: #0A1628;
    --navy-800: #0d2d3f;
    --navy-700: #153a52;
    --navy-600: #1B4F6B;
    --text-primary: #1a1a2e;
    --text-secondary: #5a6578;
    --text-light: #94a3b8;
    --text-white: #f1f5f9;
    --glass-bg: rgba(255,255,255,0.06);
    --glass-border: rgba(255,255,255,0.1);
    --glass-light-bg: rgba(255,255,255,0.7);
    --glass-light-border: rgba(255,255,255,0.9);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.16);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 13px;
    line-height: 1.65;
    color: var(--text-primary);
    background: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Typography ── */
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.015em; }
h3 { font-size: 1.1rem; font-weight: 600; line-height: 1.3; }
h4 { font-size: 0.95rem; font-weight: 600; line-height: 1.3; }
h5 { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

.text-gradient {
    background: linear-gradient(135deg, var(--bright-cyan), var(--sky-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--medium-blue), var(--bright-cyan));
    color: #fff;
    box-shadow: 0 4px 16px rgba(33, 150, 200, 0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(33, 150, 200, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--medium-blue);
    border: 1.5px solid var(--medium-blue);
}
.btn-secondary:hover {
    background: var(--medium-blue);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(8px);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

.btn-lg {
    padding: 16px 36px;
    font-size: 15px;
}

/* ── Navigation ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.nav-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 52px;
    width: auto;
    border-radius: 0;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 28px;
}

.nav-links a {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    font-weight: 500;
    transition: color var(--transition);
}
.nav-links a:hover { color: #fff; }

.nav-cta {
    padding: 8px 20px !important;
    background: linear-gradient(135deg, var(--medium-blue), var(--bright-cyan));
    border-radius: 50px;
    color: #fff !important;
}
.nav-cta:hover { opacity: 0.9; }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-toggle span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--transition);
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-700) 40%, var(--deep-navy) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
    transform: scale(1.1);
    will-change: transform;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(56, 182, 230, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    animation: gradientPulse 6s ease-in-out infinite;
}

@keyframes gradientPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; }
}

.hero-particles {
    position: absolute;
    inset: 0;
}

.hero-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(56, 182, 230, 0.3);
    border-radius: 50%;
    animation: particleFloat 8s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-40px) scale(1.5); opacity: 0.7; }
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(56, 182, 230, 0.12);
    border: 1px solid rgba(56, 182, 230, 0.2);
    border-radius: 50px;
    color: var(--bright-cyan);
    font-size: 11.5px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--bright-cyan);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
    color: #fff;
    margin-bottom: 16px;
}

.hero-sub {
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    font-weight: 500;
}

.trust-item svg { color: var(--bright-cyan); stroke: var(--bright-cyan); }

/* Hero Dashboard */
.hero-dashboard { perspective: 1000px; }

.dash-card {
    background: rgba(15, 25, 40, 0.8);
    border: 1px solid rgba(56, 182, 230, 0.15);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.6s ease;
}
.dash-card:hover { transform: rotateY(0deg) rotateX(0deg); }

.dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
}

.dash-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dash-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 182, 230, 0.1);
    border-radius: 6px;
}

.dash-title {
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    font-weight: 600;
}

.dash-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 600;
    color: #22c55e;
    letter-spacing: 0.05em;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.dash-body { padding: 16px; }

.dash-reservoir { margin-bottom: 16px; }

.reservoir-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.reservoir-label {
    color: rgba(255,255,255,0.7);
    font-size: 11.5px;
    font-weight: 500;
}

.reservoir-status {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.reservoir-status.critical { background: rgba(239, 68, 68, 0.15); color: #ef4444; }
.reservoir-status.stressed { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }
.reservoir-status.normal { background: rgba(34, 197, 94, 0.15); color: #22c55e; }

.reservoir-bar {
    height: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 4px;
}

.reservoir-fill {
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(90deg, #ef4444, #f97316);
    width: 0%;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.reservoir-pct {
    color: rgba(255,255,255,0.5);
    font-size: 10.5px;
    font-weight: 600;
}

.dash-zones { margin-bottom: 16px; }

.zone-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.zone-row:last-child { border-bottom: none; }

.zone-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}
.zone-dot.green { background: #22c55e; }
.zone-dot.orange { background: #f59e0b; }
.zone-dot.red { background: #ef4444; animation: pulse 2s ease-in-out infinite; }

.zone-name {
    color: rgba(255,255,255,0.7);
    font-size: 11.5px;
    flex: 1;
}

.zone-status {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.zone-status.normal { color: #22c55e; }
.zone-status.stressed { color: #f59e0b; }
.zone-status.critical { color: #ef4444; }

.dash-payout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius-sm);
}

.payout-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #22c55e;
    font-size: 11px;
    font-weight: 600;
}

.payout-amount {
    color: #22c55e;
    font-size: 16px;
    font-weight: 700;
}


/* ── Hero Dashboard V3 (Billion-Dollar Redesign) ── */
.dash-v3 {
    background: rgba(8, 14, 30, 0.92) !important;
    border: 1px solid rgba(56, 182, 230, 0.08) !important;
    border-radius: 14px !important;
    backdrop-filter: blur(30px) saturate(1.2) !important;
    box-shadow:
        0 30px 80px rgba(0,0,0,0.55),
        0 0 0 1px rgba(255,255,255,0.03),
        inset 0 1px 0 rgba(255,255,255,0.05) !important;
    overflow: hidden;
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) !important;
    transition: transform 0.7s cubic-bezier(0.2, 0, 0, 1) !important;
    max-width: 520px;
}
.dash-v3:hover { transform: perspective(1200px) rotateY(0deg) rotateX(0deg) !important; }

/* Topbar */
.d3-topbar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 8px 14px;
    background: rgba(255,255,255,0.015);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.d3-topbar-left { display: flex; align-items: center; gap: 6px; }
.d3-logo-icon {
    width: 22px; height: 22px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(56, 182, 230, 0.1); border-radius: 5px;
}
.d3-brand { color: rgba(255,255,255,0.85); font-size: 10.5px; font-weight: 700; letter-spacing: 0.01em; }
.d3-sep { width: 1px; height: 10px; background: rgba(255,255,255,0.1); }
.d3-sub { color: rgba(255,255,255,0.3); font-size: 10px; font-weight: 500; }
.d3-live-pill {
    display: flex; align-items: center; gap: 4px;
    font-size: 8px; font-weight: 700; color: #22c55e;
    letter-spacing: 0.1em;
    background: rgba(34,197,94,0.06); border: 1px solid rgba(34,197,94,0.15);
    padding: 2px 8px; border-radius: 50px;
}
.d3-live-dot {
    width: 5px; height: 5px; background: #22c55e; border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 4px rgba(34,197,94,0.5);
}

/* KPI Row */
.d3-kpi-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 14px;
    background: rgba(255,255,255,0.015);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.d3-kpi { text-align: center; flex: 1; }
.d3-kpi-val {
    display: block;
    font-family: 'Space Grotesk', monospace;
    font-size: 16px; font-weight: 700;
    color: rgba(255,255,255,0.9);
    line-height: 1;
}
.d3-kpi-val.d3-kpi-danger { color: #ef4444; }
.d3-kpi-val.d3-kpi-green { color: #22c55e; }
.d3-kpi-val.d3-kpi-warn { color: #f59e0b; }
.d3-kpi-label {
    display: block; font-size: 8px; font-weight: 500;
    color: rgba(255,255,255,0.3); text-transform: uppercase;
    letter-spacing: 0.06em; margin-top: 3px;
}
.d3-kpi-divider { width: 1px; height: 24px; background: rgba(255,255,255,0.06); }

/* Body Grid */
.d3-body { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 10px; }

/* Panels */
.d3-panel {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 8px; overflow: hidden;
}
.d3-panel-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 7px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.d3-ph-title { font-size: 9px; font-weight: 600; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.05em; }
.d3-ph-badge { font-size: 7.5px; font-weight: 700; padding: 1px 6px; border-radius: 50px; letter-spacing: 0.06em; }
.d3-badge-crit { background: rgba(239,68,68,0.12); color: #ef4444; }
.d3-ph-tag { font-size: 9px; font-weight: 600; color: #ef4444; }
.d3-ph-count { font-size: 9px; color: rgba(255,255,255,0.3); }

/* Gauge */
.d3-gauge-row { display: flex; align-items: center; gap: 10px; padding: 10px; }
.d3-gauge-wrap { position: relative; width: 72px; height: 72px; flex-shrink: 0; }
.d3-gauge-svg { width: 100%; height: 100%; filter: drop-shadow(0 0 6px rgba(239,68,68,0.25)); }
.d3-gauge-inner {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center; gap: 0;
}
.d3-gv {
    font-family: 'Space Grotesk', monospace;
    color: #ef4444; font-size: 22px; font-weight: 800; line-height: 1;
}
.d3-gu { color: rgba(239,68,68,0.5); font-size: 10px; font-weight: 600; margin-top: 3px; }

/* Gauge Meta */
.d3-gauge-meta { flex: 1; }
.d3-gm-row { display: flex; justify-content: space-between; padding: 2.5px 0; }
.d3-gm-label { font-size: 9px; color: rgba(255,255,255,0.3); }
.d3-gm-val { font-family: 'Space Grotesk', monospace; font-size: 9px; font-weight: 600; color: rgba(255,255,255,0.7); }
.d3-gm-danger { color: #ef4444; }

/* Trend Chart */
.d3-trend-panel { margin-top: 8px; }
.d3-trend-chart { width: 100%; height: 40px; padding: 0 10px; display: block; }

/* Zone List */
.d3-zone-list { padding: 6px 0; }
.d3-zr {
    display: grid; grid-template-columns: 8px 70px 1fr 32px;
    align-items: center; gap: 6px;
    padding: 4px 10px;
    transition: background 0.2s;
}
.d3-zr:hover { background: rgba(255,255,255,0.02); }
.d3-zr-dot { width: 5px; height: 5px; border-radius: 50%; }
.d3-zr-name { font-size: 9.5px; color: rgba(255,255,255,0.55); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.d3-zr-bar { height: 3px; background: rgba(255,255,255,0.04); border-radius: 3px; overflow: hidden; }
.d3-zr-fill { height: 100%; border-radius: 3px; transition: width 1.5s cubic-bezier(0.4,0,0.2,1); }
.d3-zr-pct { font-family: 'Space Grotesk', monospace; font-size: 9px; font-weight: 600; color: rgba(255,255,255,0.5); text-align: right; }
.d3-zr-crit { color: #ef4444; }
.d3-zr-warn { color: #f59e0b; }

/* Payout Banner */
.d3-payout {
    display: flex; align-items: center; justify-content: space-between;
    padding: 8px 14px;
    background: linear-gradient(90deg, rgba(34,197,94,0.06), rgba(34,197,94,0.02));
    border-top: 1px solid rgba(34,197,94,0.1);
}
.d3-payout-left { display: flex; align-items: center; gap: 6px; color: #22c55e; font-size: 10px; font-weight: 600; }
.d3-payout-pulse {
    width: 5px; height: 5px; background: #22c55e; border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(34,197,94,0.4);
}
.d3-payout-zone { color: rgba(34,197,94,0.5); font-weight: 400; }
.d3-payout-right { display: flex; align-items: baseline; gap: 6px; }
.d3-payout-amt {
    font-family: 'Space Grotesk', monospace;
    color: #22c55e; font-size: 15px; font-weight: 700;
}
.d3-payout-time { color: rgba(34,197,94,0.4); font-size: 8px; }


/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 3;
    line-height: 0;
}

.hero-wave svg { width: 100%; height: 80px; }

.wave-path {
    fill: var(--bg-light);
}

.wave-1 {
    opacity: 0.5;
    animation: wave 8s ease-in-out infinite;
}

.wave-2 {
    opacity: 0.8;
    animation: wave 6s ease-in-out infinite reverse;
}

@keyframes wave {
    0%, 100% { d: path("M0,60 C360,120 720,0 1080,60 C1260,90 1380,80 1440,60 L1440,120 L0,120Z"); }
    50% { d: path("M0,80 C360,20 720,100 1080,40 C1260,20 1380,60 1440,80 L1440,120 L0,120Z"); }
}

/* ── Sections ── */
.section {
    padding: 100px 0;
    position: relative;
}

.section-light { background: var(--bg-light); }
.section-dark { background: linear-gradient(160deg, var(--navy-900), var(--navy-800)); }
.section-navy { background: linear-gradient(160deg, var(--navy-800), var(--navy-900)); }
.section-accent {
    background: linear-gradient(160deg, #f0f9ff, #e0f2fe);
}

.section-dark h2, .section-dark p, .section-navy h2, .section-navy p {
    color: var(--text-white);
}
.section-dark .section-desc, .section-navy .section-desc {
    color: var(--text-light);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(33, 150, 200, 0.1);
    color: var(--medium-blue);
    font-size: 11px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}

.section-tag.light {
    background: rgba(56, 182, 230, 0.12);
    color: var(--bright-cyan);
}

.section-desc {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 12px;
    line-height: 1.7;
}

/* ── How It Works ── */
.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.step-card {
    background: var(--bg-white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    max-width: 280px;
    flex: 1;
    min-width: 240px;
    transition: all var(--transition);
    position: relative;
}
.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(33, 150, 200, 0.15);
}

.step-number {
    font-size: 40px;
    font-weight: 700;
    color: rgba(33, 150, 200, 0.08);
    position: absolute;
    top: 16px;
    right: 20px;
}

.step-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(33, 150, 200, 0.08);
    border-radius: var(--radius-md);
    margin: 0 auto 16px;
}

.step-card h3 {
    margin-bottom: 8px;
    color: var(--text-primary);
}

.step-card p {
    color: var(--text-secondary);
    font-size: 13px;
}

.step-connector {
    flex-shrink: 0;
}

/* ── Features Grid (Why Us) ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    padding: 28px 24px;
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.feature-card.glass {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
}

.feature-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
    border-color: rgba(56, 182, 230, 0.2);
    box-shadow: 0 8px 32px rgba(56, 182, 230, 0.1);
}

.feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 182, 230, 0.1);
    border-radius: var(--radius-sm);
    margin-bottom: 14px;
}

.feature-card h4 {
    color: var(--text-white);
    margin-bottom: 6px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 12.5px;
    line-height: 1.6;
}

/* ── Product Single Card ── */
.product-single {
    max-width: 900px;
    margin: 0 auto;
}

.product-card {
    background: var(--bg-white);
    border: 2px solid rgba(33, 150, 200, 0.15);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    transition: all var(--transition-slow);
}
.product-card:hover {
    box-shadow: 0 20px 60px rgba(33, 150, 200, 0.15);
    transform: translateY(-4px);
}

.product-image-section {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.6), rgba(33, 150, 200, 0.3));
}

.product-price-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(56, 182, 230, 0.3);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.product-currency {
    font-size: 20px;
    font-weight: 700;
    color: var(--bright-cyan);
}

.product-amount {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.product-period {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

.product-details {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-name-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.product-name-row h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
}

.product-type-tag {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(33, 150, 200, 0.1);
    color: var(--medium-blue);
    font-size: 10px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.product-tagline {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.product-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.product-feature {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.pf-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(33, 150, 200, 0.08);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.product-feature strong {
    display: block;
    font-size: 12.5px;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.product-feature span {
    font-size: 11.5px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.product-compliance {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding: 12px 16px;
    background: rgba(34, 197, 94, 0.06);
    border: 1px solid rgba(34, 197, 94, 0.12);
    border-radius: var(--radius-sm);
}

.product-compliance span {
    font-size: 11px;
    color: #16a34a;
    font-weight: 500;
}

/* ── Dashboard Full ── */
.dashboard-full { perspective: 1200px; }

.dashboard-panel {
    background: rgba(10, 20, 35, 0.9);
    border: 1px solid rgba(56, 182, 230, 0.12);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.04);
    backdrop-filter: blur(20px);
}

.db-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
}

.db-topbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 600;
}

.db-topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.db-time {
    color: rgba(255,255,255,0.5);
    font-size: 11px;
    font-family: 'DM Sans', monospace;
    font-weight: 500;
}

.db-live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    color: #22c55e;
    letter-spacing: 0.05em;
}

.db-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1px;
    background: rgba(255,255,255,0.04);
}

.db-grid > * {
    padding: 20px 24px;
    background: rgba(10, 20, 35, 0.95);
}

.db-map-section {
    grid-row: 1 / 3;
}

.db-section-title {
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
    font-size: 10px;
}

/* Zone Map */
.db-map {
    position: relative;
    height: 260px;
    background:
        radial-gradient(ellipse 100% 100% at 50% 50%, rgba(56, 182, 230, 0.04) 0%, transparent 70%),
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 100% 100%, 30px 30px, 30px 30px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.04);
    margin-bottom: 12px;
}

.map-zone {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all var(--transition);
}
.map-zone:hover { transform: scale(1.1); }

.map-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: relative;
}
.map-dot.green { background: #22c55e; box-shadow: 0 0 8px rgba(34,197,94,0.4); }
.map-dot.orange { background: #f59e0b; box-shadow: 0 0 8px rgba(245,158,11,0.4); }
.map-dot.red { background: #ef4444; box-shadow: 0 0 12px rgba(239,68,68,0.5); }
.map-dot.pulse::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(239, 68, 68, 0.4);
    animation: mapPulse 2s ease-out infinite;
}
@keyframes mapPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

.map-label {
    color: rgba(255,255,255,0.7);
    font-size: 10px;
    font-weight: 500;
    white-space: nowrap;
}

.map-legend {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.map-legend span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.5);
    font-size: 10.5px;
}

.legend-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
}
.legend-dot.green { background: #22c55e; }
.legend-dot.orange { background: #f59e0b; }
.legend-dot.red { background: #ef4444; }

/* Reservoir Bars */
.reservoir-list { display: flex; flex-direction: column; gap: 12px; }

.res-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.res-name {
    color: rgba(255,255,255,0.7);
    font-size: 11px;
    font-weight: 500;
}

.res-pct {
    color: rgba(255,255,255,0.5);
    font-size: 11px;
    font-weight: 600;
}

.res-bar {
    height: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    overflow: hidden;
}

.res-fill {
    height: 100%;
    border-radius: 10px;
    width: 0%;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.res-fill.normal { background: linear-gradient(90deg, #22c55e, #4ade80); }
.res-fill.stressed { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.res-fill.critical { background: linear-gradient(90deg, #ef4444, #f97316); }

/* Trigger Table */
.trigger-table {
    width: 100%;
    border-collapse: collapse;
}

.trigger-table th {
    color: rgba(255,255,255,0.4);
    font-size: 9.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 8px 8px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trigger-table td {
    color: rgba(255,255,255,0.7);
    font-size: 11.5px;
    padding: 8px 8px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.status-pill {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 9.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.status-pill.critical { background: rgba(239,68,68,0.12); color: #ef4444; }
.status-pill.stressed { background: rgba(245,158,11,0.12); color: #f59e0b; }
.status-pill.normal { background: rgba(34,197,94,0.12); color: #22c55e; }

.trigger-active {
    color: #ef4444;
    font-size: 10.5px;
    font-weight: 700;
    animation: triggerBlink 1.5s ease-in-out infinite;
}

@keyframes triggerBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.trigger-watch { color: #f59e0b; font-size: 10.5px; font-weight: 600; }
.trigger-safe { color: rgba(34,197,94,0.6); font-size: 10.5px; font-weight: 500; }

.db-footer {
    display: flex;
    justify-content: space-between;
    padding: 10px 24px;
    border-top: 1px solid rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.3);
    font-size: 10px;
}

/* ── Impact / Stats Section ── */
.section-impact {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.section-impact h2,
.section-impact p,
.section-impact h4 {
    color: var(--text-white);
}

.section-impact .section-desc {
    color: var(--text-light);
}

.impact-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.impact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(10, 22, 40, 0.92), rgba(27, 79, 107, 0.88));
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.stat-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.stat-card.glass {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
}

.stat-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
    border-color: rgba(56, 182, 230, 0.3);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--bright-cyan);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 12.5px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.target-areas {
    text-align: center;
}

.target-areas h4 {
    margin-bottom: 20px;
    font-size: 1rem;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.area-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(56, 182, 230, 0.1);
    border: 1px solid rgba(56, 182, 230, 0.2);
    border-radius: 50px;
    color: var(--bright-cyan);
    font-size: 13px;
    font-weight: 500;
    transition: all var(--transition);
}

.area-tag:hover {
    background: rgba(56, 182, 230, 0.2);
    border-color: rgba(56, 182, 230, 0.4);
    transform: translateY(-2px);
}

/* ── About ── */
.about-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    align-items: start;
}

.about-content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-pillars {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 24px 0;
}

.pillar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-white);
    border: 1px solid rgba(33, 150, 200, 0.12);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.pillar-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(33, 150, 200, 0.3);
}

.pillar-item span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 20px;
    box-shadow: var(--shadow-lg);
}

.about-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.about-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(transparent, rgba(10, 22, 40, 0.8));
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    font-weight: 500;
}

.about-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
}

.mission-block {
    padding: 20px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0,0,0,0.06);
}

.mission-block h4 {
    color: var(--dark-teal);
    margin-bottom: 8px;
}

.mission-block p {
    font-size: 12.5px;
    margin-bottom: 0;
}

.about-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.badge-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 24px 16px;
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.badge-card.glass {
    background: var(--bg-white);
    border: 1px solid rgba(0,0,0,0.06);
}

.badge-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.badge-card span {
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-teal);
}

/* ── Partners ── */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.partner-card {
    background: var(--bg-white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    text-align: center;
    transition: all var(--transition);
}
.partner-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(33, 150, 200, 0.15);
}

.partner-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 107, 138, 0.06);
    border-radius: var(--radius-md);
    margin: 0 auto 14px;
}

.partner-card h4 {
    color: var(--text-primary);
    margin-bottom: 8px;
}

.partner-card p {
    color: var(--text-secondary);
    font-size: 12.5px;
    line-height: 1.6;
}

/* ── FAQ ── */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: color var(--transition);
}
.faq-question:hover { color: var(--medium-blue); }

.faq-chevron {
    flex-shrink: 0;
    transition: transform var(--transition);
    color: var(--text-secondary);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--medium-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 18px;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.7;
}

/* ── Contact ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 36px;
    align-items: start;
}

.contact-form {
    padding: 36px;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
    font-size: 11.5px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form-group input,
.form-group select {
    padding: 11px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    color: #fff;
    font-family: inherit;
    font-size: 13px;
    transition: all var(--transition);
    outline: none;
}

.form-group input::placeholder { color: rgba(255,255,255,0.25); }

.form-group input:focus,
.form-group select:focus {
    border-color: var(--bright-cyan);
    box-shadow: 0 0 0 3px rgba(56, 182, 230, 0.15);
}

.form-group select option { background: var(--navy-900); color: #fff; }

.contact-form .btn { margin-top: 8px; }

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius-sm);
    margin-top: 16px;
}
.form-success.show { display: flex; }
.form-success p { color: #22c55e; font-size: 12.5px; font-weight: 500; margin: 0; }

.contact-info { display: flex; flex-direction: column; gap: 20px; }

.info-card {
    padding: 28px 24px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
}

.info-card h4 {
    color: var(--text-white);
    margin-bottom: 16px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}
.info-item:last-child { margin-bottom: 0; }
.info-item svg { margin-top: 2px; flex-shrink: 0; }

.info-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 2px;
}

.info-item a,
.info-item span {
    color: rgba(255,255,255,0.75);
    font-size: 13px;
}
.info-item a:hover { color: var(--bright-cyan); }

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    color: rgba(255,255,255,0.5);
    transition: all var(--transition);
}
.social-link:hover {
    background: var(--medium-blue);
    color: #fff;
    border-color: var(--medium-blue);
    transform: translateY(-2px);
}

/* ── Footer ── */
.footer {
    background: var(--navy-900);
    padding: 60px 0 0;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
    height: 48px;
    width: auto;
    border-radius: 0;
    object-fit: contain;
    margin-bottom: 14px;
}

.footer-brand p {
    color: rgba(255,255,255,0.45);
    font-size: 12.5px;
    line-height: 1.65;
    max-width: 260px;
}

.footer-links h5 {
    color: rgba(255,255,255,0.8);
    margin-bottom: 16px;
    font-size: 12px;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    color: rgba(255,255,255,0.4);
    font-size: 12.5px;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--bright-cyan); }

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.3);
    font-size: 11.5px;
}

.footer-address {
    margin-top: 4px;
    font-size: 11px !important;
}

/* ── Scroll Animations ── */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}
.scroll-animate.delay-1 { transition-delay: 0.15s; }
.scroll-animate.delay-2 { transition-delay: 0.3s; }
.scroll-animate.delay-3 { transition-delay: 0.45s; }

.animate-in {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.animate-in.delay-1 { animation-delay: 0.3s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ── Water Ripple Effect ── */
@keyframes waterRipple {
    0% { transform: scale(0); opacity: 0.6; }
    100% { transform: scale(4); opacity: 0; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-dashboard { max-width: 480px; margin: 0 auto; }
    .dash-card { transform: none; }
    .dash-card:hover { transform: none; }

    .features-grid { grid-template-columns: repeat(2, 1fr); }

    .product-card { grid-template-columns: 1fr; }
    .product-image-section { min-height: 260px; }

    .db-grid { grid-template-columns: 1fr; }
    .db-map-section { grid-row: auto; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }

    .about-grid { grid-template-columns: 1fr; }
    .about-badges { grid-template-columns: repeat(4, 1fr); }

    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 22, 40, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 0;
        transition: right var(--transition);
        box-shadow: -10px 0 30px rgba(0,0,0,0.3);
    }
    .nav-links.open { right: 0; }
    .nav-links li { width: 100%; }
    .nav-links a {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        font-size: 14px;
    }
    .nav-cta { text-align: center; margin-top: 16px; }
    .mobile-toggle { display: flex; }

    .section { padding: 72px 0; }
    .section-header { margin-bottom: 40px; }

    .steps-grid { flex-direction: column; }
    .step-connector { transform: rotate(90deg); }
    .step-card { max-width: 100%; }

    .features-grid { grid-template-columns: 1fr; }

    .product-features-grid { grid-template-columns: 1fr; }

    .about-badges { grid-template-columns: 1fr 1fr; }

    .partners-grid { grid-template-columns: 1fr; }

    .form-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 28px; }

    .db-map { height: 200px; }

    /* Dashboard V3 Mobile */
    .dash-v3 { max-width: 100% !important; transform: none !important; }
    .dash-v3:hover { transform: none !important; }
    .d3-body { grid-template-columns: 1fr; gap: 6px; }
    .d3-kpi-row { padding: 8px 10px; gap: 4px; }
    .d3-kpi-val { font-size: 14px; }
    .d3-kpi-label { font-size: 7px; }
    .d3-gauge-row { gap: 8px; padding: 8px; }
    .d3-gauge-wrap { width: 60px; height: 60px; }
    .d3-gv { font-size: 18px; }
    .d3-gm-row { padding: 2px 0; }
    .d3-zr { grid-template-columns: 6px 60px 1fr 28px; gap: 4px; padding: 3px 8px; }
    .d3-zr-name { font-size: 9px; }

    .stats-grid { grid-template-columns: 1fr 1fr; }

    .impact-bg { background-attachment: scroll; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.65rem; letter-spacing: -0.025em; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1rem; }
    .hero { padding-top: 70px; min-height: auto; padding-bottom: 80px; }
    .hero-sub { font-size: 13px; line-height: 1.6; }
    .hero-buttons { flex-direction: column; align-items: stretch; gap: 10px; }
    .hero-buttons .btn { font-size: 13px; padding: 12px 20px; }
    .hero-trust { flex-direction: column; align-items: center; gap: 6px; }
    .hero-trust .trust-item { font-size: 11px; }
    .hero-badge { font-size: 10px; }
    .section { padding: 56px 0; }
    .section-header { margin-bottom: 32px; }
    .section-tag { font-size: 9.5px; padding: 3px 10px; }
    .section-desc { font-size: 12.5px; }
    .contact-form { padding: 20px 16px; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-number { font-size: 2rem; }
    .product-compliance { flex-direction: column; gap: 6px; }
    .container { padding: 0 16px; }
    .step-card { padding: 24px 20px; }
    .step-card h3 { font-size: 15px; }
    .step-card p { font-size: 12.5px; }
    .feature-card { padding: 20px 16px; }
    .feature-card h4 { font-size: 13px; }
    .feature-card p { font-size: 11.5px; }
    .faq-question { font-size: 13px; padding: 14px 16px; }
    .faq-answer p { font-size: 12px; }
    .pricing-card, .product-card { border-radius: 12px; }
    .footer-bottom p { font-size: 10.5px; }
    .nav-logo img { height: 44px; }
}

/* ── Utility: smooth glass on light sections ── */
.section-light .glass, .section-accent .glass {
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
}


/* ── Mobile-First Premium Polish ── */
@media (max-width: 768px) {
    .hero-content h1 { text-align: center; }
    .hero-dashboard { margin-top: 20px; }
    .pricing-grid { gap: 16px; }
    .partners-grid { gap: 12px; }
    .partner-card { padding: 24px 20px; }
    .partner-card h4 { font-size: 14px; }
    .partner-card p { font-size: 12px; }
    .info-card { padding: 20px 16px; }
    .info-card h4 { font-size: 14px; }
    .info-item { gap: 10px; }
    .about-content p { font-size: 13px; }
    .mission-block h4 { font-size: 14px; }
    .mission-block p { font-size: 12px; }
    .badge-card { padding: 14px 12px; font-size: 11px; }
    .badge-card svg { width: 22px; height: 22px; }
}

@media (max-width: 380px) {
    h1 { font-size: 1.45rem !important; }
    .hero-badge { font-size: 9px; padding: 3px 10px; }
    .d3-kpi-val { font-size: 12px; }
    .d3-kpi-label { font-size: 6.5px; }
    .d3-topbar { padding: 6px 10px; }
    .d3-brand { font-size: 9px; }
    .container { padding: 0 12px; }
    .nav-logo img { height: 38px; }
}

/* ── Smooth Scroll + Selection ── */
::selection { background: rgba(56, 182, 230, 0.25); color: inherit; }

/* ── Better button transitions ── */
.btn {
    transition: all 0.25s cubic-bezier(0.2, 0, 0, 1);
}
.btn:active {
    transform: scale(0.97);
}

/* ── Subtle card hover lifts ── */
.step-card:hover, .feature-card:hover, .partner-card:hover, .badge-card:hover {
    transform: translateY(-3px);
    transition: transform 0.3s cubic-bezier(0.2, 0, 0, 1);
}

/* ── Number font for all stats ── */
.stat-number, .pricing-price .amount, .d3-kpi-val, .d3-gv, .d3-payout-amt, .d3-zr-pct, .d3-gm-val {
    font-family: 'Space Grotesk', 'Inter', monospace;
}
