/* =========================================
   VARIABLES & RESET
   ========================================= */
:root {
    --bg-dark: #090d0b;
    --bg-card: #0f1510;
    --bg-card2: #131a14;
    --bg-section: #0c1209;
    --primary: #3dff7e;
    --primary-dark: #28e863;
    --primary-dim: rgba(61,255,126,0.08);
    --primary-border: rgba(61,255,126,0.18);
    --text-main: #FFFFFF;
    --text-muted: #7a9080;
    --text-dim: #4a6050;
    --border: rgba(255,255,255,0.055);
    --border-green: rgba(61,255,126,0.12);
    --font-heading: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --container-width: 1200px;
    --header-height: 70px;
    --r: 14px;
    /* colour tokens for new display cards */
    --red: rgba(239,68,68,1);
    --amber: rgba(249,115,22,1);
    --blue: rgba(59,130,246,1);
    --purple: rgba(168,85,247,1);
    --teal: rgba(20,184,166,1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img, svg { display: block; }
a { text-decoration: none; color: inherit; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
}

.bg-darker { background-color: var(--bg-card); }
.gradient-text { color: var(--primary); }
.green { color: var(--primary); }

/* scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: var(--primary-border); border-radius: 2px; }

/* =========================================
   CURSOR (desktop only)
   ========================================= */
@media (pointer: fine) {
    body { cursor: none; }
    .cursor {
        position: fixed; width: 36px; height: 36px;
        border: 1.5px solid var(--primary); border-radius: 50%;
        pointer-events: none; z-index: 9999;
        transform: translate(-50%,-50%);
        transition: all 0.12s ease; opacity: 0.5;
    }
    .cursor-dot {
        position: fixed; width: 6px; height: 6px;
        background: var(--primary); border-radius: 50%;
        pointer-events: none; z-index: 9999;
        transform: translate(-50%,-50%);
    }
    .cursor.hovered { width: 56px; height: 56px; opacity: 0.25; background: var(--primary-dim); }
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 26px;
    border-radius: 9px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.22s ease;
    font-size: 0.93rem;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
    letter-spacing: 0.01em;
}

.btn-primary,
.btn.btn-primary {
    background: var(--primary);
    color: #050e08;
    box-shadow: 0 4px 22px rgba(61,255,126,0.22);
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 26px; border-radius: 9px;
    font-weight: 700; font-size: 0.92rem;
    border: none; cursor: pointer;
    font-family: var(--font-body);
    transition: all 0.22s ease;
    white-space: nowrap;
}
.btn-primary:hover,
.btn.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(61,255,126,0.32);
}
.btn-primary svg, .btn-primary i { width: 18px; height: 18px; }
.btn-primary.full { width: 100%; justify-content: center; padding: 11px; }

.btn-secondary,
.btn-ghost {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.13);
    color: var(--text-muted);
    display: inline-flex; align-items: center; gap: 6px;
    padding: 13px 24px; border-radius: 9px;
    font-family: var(--font-body); font-weight: 500; font-size: 0.92rem;
    transition: all 0.22s ease; white-space: nowrap; cursor: pointer;
    text-decoration: none;
}
.btn-secondary:hover,
.btn-ghost:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.28);
    color: white;
}

.full-width { width: 100%; justify-content: center; }

/* =========================================
   NAVIGATION
   ========================================= */
nav,
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background: rgba(8,20,12,0.75);
    backdrop-filter: blur(24px) saturate(160%);
    border-bottom: 1px solid rgba(61,255,126,0.18);
    box-shadow: 0 1px 0 rgba(61,255,126,0.10), 0 4px 24px rgba(0,0,0,0.25);
    transition: background 0.3s, border-color 0.3s, transform 0.22s cubic-bezier(0.4,0,0.2,1), opacity 0.22s ease;
    opacity: 0;
    transform: translateY(-100%);
}

.nav-container,
.nav-inner {
    height: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
    display: flex;
    align-items: center;
    gap: 36px;
}

/* Text logo (new) */
.logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
    flex-shrink: 0;
    text-decoration: none;
}
.logo em { font-style: normal; color: var(--primary); }

/* Image logo wrapper (old) */
.logo-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
    flex-shrink: 0;
    text-decoration: none;
}
.text-logo {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #ffffff;
    line-height: 1;
}
.text-logo em { font-style: normal; color: var(--primary); }

/* Nav links */
.nav-links {
    display: flex;
    gap: 26px;
    align-items: center;
    margin-left: auto;
}
.nav-item,
.nav-link {
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color 0.2s;
    white-space: nowrap;
}
.nav-item:hover, .nav-link:hover { color: var(--primary); }

.nav-cta {
    padding: 9px 22px;
    background: var(--primary);
    color: #050e08;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    transition: all 0.22s;
    white-space: nowrap;
    box-shadow: 0 3px 18px rgba(61,255,126,0.22);
    font-family: var(--font-body);
    flex-shrink: 0;
}
.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(61,255,126,0.32);
}

/* Mobile toggle (old .mobile-toggle / new .burger) */
.mobile-toggle,
.burger {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    margin-left: auto;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.burger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text-main);
    transition: all 0.25s;
}

/* =========================================
   MOBILE MENU (old .mobile-menu / new .mobile-drawer)
   ========================================= */
.mobile-menu,
.mobile-drawer {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    padding: 16px clamp(20px, 4vw, 48px);
    transform: translateY(-150%);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    z-index: 999;
}
.mobile-menu.active,
.mobile-drawer.open { transform: translateY(0); }

.mobile-link,
.drawer-link {
    color: var(--text-muted);
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}
.mobile-link:hover, .drawer-link:hover { color: white; }
.mobile-link.highlight {
    color: var(--primary);
    border: none;
    font-weight: 700;
    padding-top: 18px;
}
.drawer-cta {
    margin-top: 16px;
    text-align: center;
    padding: 13px;
    background: var(--primary);
    color: #050e08;
    border-radius: 8px;
    font-weight: 700;
}

/* =========================================
   HERO
   ========================================= */
.hero {
    height: 100vh;
    min-height: unset;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--header-height);
    background: var(--bg-dark);
    overflow: hidden;
    box-sizing: border-box;
}

/* Canvas bg (new) */
#heroCanvas {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    opacity: 1; pointer-events: none; z-index: 0;
}

/* Grid overlay */
.hero-bg-grid,
.hero-grid {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 52px 52px;
}

.hero-glow {
    position: absolute;
    top: 45%; left: 28%;
    transform: translate(-50%,-50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(61,255,126,0.055) 0%, transparent 65%);
    z-index: 0; pointer-events: none;
}

/* ── OLD hero layout (two-column split) ── */
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 64px;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 72px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-left { display: flex; flex-direction: column; }

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(61,255,126,0.07);
    border: 1px solid var(--primary-border);
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 26px;
    width: fit-content;
    font-family: var(--font-body);
}
.tag-dot {
    width: 6px; height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

.hero-left h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.4vw, 2.0rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: clamp(0.88rem, 1.6vw, 1rem);
    color: var(--text-muted);
    line-height: 1.72;
    margin-bottom: 34px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.trust-item {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex; align-items: center; gap: 7px;
}
.trust-check { color: var(--primary); font-weight: 700; }
.trust-divider { color: rgba(255,255,255,0.12); font-size: 0.9rem; }

/* ── NEW hero content (full-width, canvas bg) ── */
.hero-content {
    position: relative; z-index: 2;
    max-width: var(--container-width);
    margin: 0;
    padding: clamp(28px, 4vh, 52px) clamp(20px, 4vw, 48px) clamp(60px, 7vh, 80px);
    padding-left: clamp(126px, 9.8vw, 158px);  /* clear the left power column */
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center; gap: 8px;
    font-size: 0.68rem; font-weight: 600;
    letter-spacing: 0.04em; text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-dim);
    border: 1px solid var(--primary-border);
    padding: 5px 14px; border-radius: 30px;
    margin-bottom: clamp(8px, 1.2vh, 14px);
    width: fit-content;
    max-width: 100%;
    opacity: 0; animation: fadeUp 0.7s 1.5s forwards;
}
.badge-dot {
    width: 6px; height: 6px;
    background: var(--primary); border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Line-reveal for hero h1 */
.line-wrap { display: block; overflow: hidden; }
.line-in {
    display: block;
    opacity: 0; transform: translateY(100%);
    animation: lineUp 0.85s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-h1 .line-wrap:nth-child(1) .line-in { animation-delay: 1.62s; }
.hero-h1 .line-wrap:nth-child(2) .line-in { animation-delay: 1.76s; }
.hero-h1 .line-wrap:nth-child(3) .line-in { animation-delay: 1.90s; }

.line-in-delay { opacity: 0; animation: fadeUp 0.7s forwards; }
.hero-sub {
    animation-delay: 2.1s;
    font-size: clamp(0.84rem, 1.3vw, 0.96rem);
    color: var(--text-muted);
    max-width: 520px;
    margin: clamp(8px, 1.4vh, 16px) 0 clamp(12px, 2vh, 22px);
    line-height: 1.72;
}
.hero-actions.line-in-delay { animation-delay: 2.25s; margin-bottom: clamp(10px, 1.5vh, 20px); }

.hero-h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.6vw, 3.0rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.hero-scroll {
    display: flex; align-items: center; gap: 12px;
    opacity: 0; animation: fadeUp 0.6s 2.4s forwards;
}
.scroll-line { width: 40px; height: 1px; background: var(--primary); opacity: 0.4; }
.hero-scroll span { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); }

/* ── Hero Right — Dashboard Card (old layout) ── */
.hero-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.dashboard-card {
    background: var(--bg-card2);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    padding: 26px;
    width: 100%;
    box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.dash-header {
    display: flex; align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.dash-title {
    font-family: var(--font-body);
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.12em; color: var(--text-muted); text-transform: uppercase;
}
.dash-live {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.7rem; color: var(--primary);
    background: rgba(61,255,126,0.08);
    border: 1px solid var(--primary-border);
    padding: 4px 11px; border-radius: 20px; font-weight: 600;
}
.live-dot {
    width: 6px; height: 6px;
    background: var(--primary); border-radius: 50%;
    animation: pulse 1.5s infinite;
}
.charger-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 9px; margin-bottom: 18px;
}
.charger-slot {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.065);
    border-radius: 11px;
    padding: 16px 10px 12px;
    text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 7px;
    transition: all 0.2s;
}
.charger-slot svg, .charger-slot i { width: 22px; height: 22px; color: var(--text-dim); }
.charger-slot span { font-size: 0.69rem; color: var(--text-muted); white-space: nowrap; font-family: var(--font-body); }
.charger-slot.active, .charger-slot.charging {
    background: rgba(61,255,126,0.1);
    border-color: rgba(61,255,126,0.28);
}
.charger-slot.active svg, .charger-slot.active i,
.charger-slot.charging svg, .charger-slot.charging .slot-icon { color: var(--primary); }
.charger-slot.active span,
.charger-slot.charging span { color: var(--primary); }

.dash-meter {
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.055);
    border-radius: 11px; padding: 16px 20px;
}
.meter-label {
    display: block; font-size: 0.7rem;
    color: var(--text-muted); margin-bottom: 5px; font-family: var(--font-body);
}
.meter-value, .meter-val {
    font-family: var(--font-heading);
    font-size: 1.8rem; font-weight: 800;
    color: var(--primary); display: block; letter-spacing: -0.02em;
}
.meter-revenue {
    font-family: var(--font-heading);
    font-size: 1.35rem; font-weight: 700; color: white; display: block; letter-spacing: -0.01em;
}
.meter-status {
    font-family: var(--font-heading);
    font-size: 1rem; font-weight: 700; color: var(--text-main);
}
.meter-right { text-align: right; }

/* ── New floating EV panel ── */
.ev-panel {
    position: absolute;
    right: clamp(20px, 5vw, 80px);
    top: 50%; transform: translateY(-54%);
    z-index: 3;
    background: rgba(13,19,16,0.92);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px; padding: 18px;
    width: clamp(260px, 28vw, 340px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    opacity: 0; animation: fadeUp 0.8s 0.9s forwards;
}
.ev-panel-header {
    display: flex; align-items: center;
    justify-content: space-between; margin-bottom: 10px;
}
.ev-panel-title {
    font-size: 0.62rem; font-weight: 700;
    letter-spacing: 0.1em; color: var(--text-muted); text-transform: uppercase;
}
.ev-live {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.62rem; font-weight: 600; color: var(--primary);
    background: var(--primary-dim); border: 1px solid var(--primary-border);
    padding: 3px 9px; border-radius: 20px;
}
.live-pulse {
    width: 5px; height: 5px;
    background: var(--primary); border-radius: 50%;
    animation: pulse 1.5s infinite;
}
.ev-slots {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 5px; margin-bottom: 8px;
}
.ev-slot {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 9px; padding: 9px 6px 8px;
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    transition: all 0.3s;
}
.ev-slot .slot-icon { width: 16px; height: 16px; color: var(--text-dim); }
.ev-slot span { font-size: 0.60rem; color: var(--text-muted); white-space: nowrap; }
.ev-slot.charging { background: rgba(61,255,126,0.1); border-color: rgba(61,255,126,0.25); }
.ev-slot.charging .slot-icon { color: var(--primary); }
.ev-slot.charging span { color: var(--primary); }

/* =========================================
   MARQUEE STRIP
   ========================================= */
.marquee-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-card);
    overflow: hidden; padding: 10px 0;
}
/* Pinned to bottom of hero */
.hero-marquee {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 3;
    border-bottom: none;
    background: rgba(9,13,11,0.85);
    backdrop-filter: blur(8px);
}
.marquee-track {
    display: flex; gap: 0; white-space: nowrap;
    animation: marquee 5s linear infinite;
    will-change: transform;
}
.marquee-track span {
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dim);
    padding: 0 14px;
}
.marquee-track .dot { color: var(--primary); opacity: 0.5; padding: 0 2px; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* =========================================
   STATS BAND
   ========================================= */
.stats-band, .stats-bar {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
}
.stat-item {
    padding: 38px 34px;
    border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800; color: var(--primary);
    line-height: 1; margin-bottom: 7px; letter-spacing: -0.02em;
}
.stat-label {
    font-size: 0.85rem; color: white; font-weight: 500;
    margin-bottom: 4px; font-family: var(--font-body);
}
.stat-sub { font-size: 0.75rem; color: var(--text-muted); font-family: var(--font-body); }

/* =========================================
   SECTIONS GENERAL
   ========================================= */
.section-padding, .section {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
  box-sizing: border-box;
}
.section .container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 48px);
  padding-right: clamp(20px, 4vw, 48px);
  box-sizing: border-box;
}
.section-dark { background: var(--bg-card); position: relative; overflow: hidden; }
.section-dark .container { position: relative; z-index: 1; }

.section-header { margin-bottom: 8px; }
.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.4vw, 2.0rem);
    font-weight: 800; margin-bottom: 10px;
    line-height: 1.08; letter-spacing: -0.02em;
}
.section-header p {
    color: var(--text-muted); font-size: 0.98rem;
    line-height: 1.72; max-width: 540px;
}
.section-header.centered {
    text-align: center; max-width: 680px;
    margin-left: auto; margin-right: auto;
}
.section-header.centered p { margin: 0 auto; }

/* New section typography */
.section-label {
    display: inline-block;
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--text-dim); margin-bottom: 8px;
}
.accent-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--text-dim); margin-bottom: 14px;
}
.section-h {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.2vw, 1.85rem);
    font-weight: 800; line-height: 1.08;
    letter-spacing: -0.025em; margin-bottom: 6px;
}
.section-sub {
    color: var(--text-muted);
    font-size: clamp(0.76rem, 1.05vw, 0.86rem);
    line-height: 1.55; max-width: 520px;
    margin-bottom: clamp(10px, 1.4vh, 16px);
}

/* =========================================
   REVEAL ANIMATIONS
   ========================================= */
@keyframes pulse    { 0%,100%{opacity:1} 50%{opacity:0.25} }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp   { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }
@keyframes lineUp   { to { opacity: 1; transform: translateY(0); } }

/* =========================================
   CINEMATIC INTRO OVERLAY
   ========================================= */
.intro-overlay {
    position: fixed; inset: 0; z-index: 99999;
    pointer-events: none;
    animation: introFallback 0s 3s forwards; /* safety: auto-hide if JS stalls */
}
@keyframes introFallback { to { display: none; opacity: 0; } }
.intro-split {
    position: absolute; left: 0; right: 0;
    height: 50%;
    background: #050a06;
    transition: transform 0.72s cubic-bezier(0.76,0,0.24,1);
}
.intro-split-top { top: 0; transform: translateY(0); }
.intro-split-bot { bottom: 0; transform: translateY(0); }
.intro-overlay.open .intro-split-top { transform: translateY(-100%); }
.intro-overlay.open .intro-split-bot { transform: translateY(100%); }

.intro-logo {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 800; letter-spacing: -0.03em;
    color: #fff;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.intro-logo em { font-style: normal; color: var(--primary); margin-left: 0.3em; }
.intro-overlay.show-logo .intro-logo { opacity: 1; }
.intro-overlay.open .intro-logo { opacity: 0; transition: opacity 0.2s ease; }

.fade-in-up {
    opacity: 0; transform: translateY(22px);
    animation: fadeInUp 0.75s forwards;
}
.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.38s; }

/* Scroll reveal — works for both old and new class names */
/* ─── SCROLL REVEAL ─── */
/* .reveal / .reveal-text / .reveal-side: hidden until JS adds .visible */
.reveal-text, .reveal-side, .reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.2,0.8,0.2,1),
                transform 0.7s cubic-bezier(0.2,0.8,0.2,1);
}
.reveal-side { transform: translateX(-30px); }
.reveal-side.delay-1 { transition-delay: 0.18s; }

/* Cards: always visible, CSS animates them in with stagger.
   No dependency on JS — cards ALWAYS show. */
.reveal-card {
    opacity: 1;
    transform: translateY(0);
    animation: cardReveal 0.55s cubic-bezier(0.2,0.8,0.2,1) both;
    animation-timeline: view();
    animation-range: entry 0% entry 25%;
}
/* Fallback for browsers without animation-timeline support */
@supports not (animation-timeline: view()) {
    .reveal-card {
        animation: cardRevealSimple 0.55s cubic-bezier(0.2,0.8,0.2,1) forwards;
    }
    .reveal-card[data-index="0"] { animation-delay: 0.0s; }
    .reveal-card[data-index="1"] { animation-delay: 0.07s; }
    .reveal-card[data-index="2"] { animation-delay: 0.14s; }
    .reveal-card[data-index="3"] { animation-delay: 0.21s; }
    .reveal-card[data-index="4"] { animation-delay: 0.28s; }
    .reveal-card[data-index="5"] { animation-delay: 0.35s; }
    @keyframes cardRevealSimple {
        from { opacity: 0; transform: translateY(18px); }
        to   { opacity: 1; transform: translateY(0); }
    }
}
@keyframes cardReveal {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* JS .visible: instant override for transition-based elements */
.visible { opacity: 1 !important; transform: translateY(0) translateX(0) !important; }

/* =========================================
   DISPLAY CARDS — PROBLEM SECTION (NEW)
   ========================================= */
.display-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
}
.display-card {
    background: var(--bg-dark);
    padding: clamp(22px, 3vw, 36px);
    position: relative; overflow: hidden;
    transition: background 0.3s;
}
.display-card:hover { background: var(--bg-card); }
.display-card:hover .dc-line { width: 100%; }

.dc-number {
    font-family: var(--font-heading);
    font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.12em; color: var(--text-dim); margin-bottom: 20px;
}
.dc-icon {
    width: 44px; height: 44px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px; flex-shrink: 0;
}
.dc-icon svg { width: 20px; height: 20px; }
.dc-icon.red    { background: rgba(239,68,68,0.1);    color: var(--red); }
.dc-icon.amber  { background: rgba(249,115,22,0.1);   color: var(--amber); }
.dc-icon.blue   { background: rgba(59,130,246,0.1);   color: var(--blue); }
.dc-icon.purple { background: rgba(168,85,247,0.1);   color: var(--purple); }
.dc-icon.teal   { background: rgba(20,184,166,0.1);   color: var(--teal); }
.dc-icon.green  { background: var(--primary-dim);      color: var(--primary); }
.display-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem; font-weight: 700;
    letter-spacing: -0.01em; margin-bottom: 10px;
}
.display-card p {
    font-size: 0.85rem; color: var(--text-muted); line-height: 1.67;
}
.dc-line {
    position: absolute; bottom: 0; left: 0;
    height: 2px; background: var(--primary);
    width: 0; transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
}

/* =========================================
   OLD CARDS (.card / .grid-3) — kept intact
   ========================================= */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px;
}
.card {
    background: rgba(255,255,255,0.018);
    border: 1px solid rgba(255,255,255,0.055);
    padding: 28px; border-radius: var(--r);
    transition: border-color 0.3s, background 0.3s;
}
.card:hover {
    border-color: var(--primary-border);
    background: rgba(61,255,126,0.02);
}
.icon-box {
    width: 46px; height: 46px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px; flex-shrink: 0;
}
.icon-box i, .icon-box svg { width: 20px; height: 20px; }
.icon-box.red    { background: rgba(239,68,68,0.1);    color: #EF4444; }
.icon-box.orange { background: rgba(249,115,22,0.1);   color: #F97316; }
.icon-box.yellow { background: rgba(234,179,8,0.1);    color: #EAB308; }
.icon-box.green  { background: rgba(61,255,126,0.1);   color: var(--primary); }
.icon-box.blue   { background: rgba(59,130,246,0.1);   color: #3B82F6; }
.icon-box.purple { background: rgba(168,85,247,0.1);   color: #A855F7; }
.icon-box.teal   { background: rgba(20,184,166,0.1);   color: #14B8A6; }
.card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem; font-weight: 700;
    margin-bottom: 10px; letter-spacing: -0.01em;
}
.card p { color: var(--text-muted); font-size: 0.87rem; line-height: 1.67; font-family: var(--font-body); }

/* =========================================
   SOLUTION CARDS (NEW .sol-card)
   ========================================= */
.solution-canvas-wrap {
    position: absolute; inset: 0;
    pointer-events: none; z-index: 0;
}
#solutionCanvas { width: 100%; height: 100%; opacity: 0.4; }

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px;
}
.sol-card {
    background: rgba(255,255,255,0.018);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: clamp(22px, 2.5vw, 32px);
    transition: border-color 0.3s, background 0.3s;
    position: relative; overflow: hidden;
}
.sol-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0; transition: opacity 0.35s;
}
.sol-card:hover { border-color: var(--primary-border); background: rgba(61,255,126,0.025); }
.sol-card:hover::before { opacity: 0.6; }
.sol-card-num {
    font-family: var(--font-heading); font-size: 0.64rem;
    font-weight: 700; letter-spacing: 0.12em; color: var(--primary); margin-bottom: 16px;
}
.sol-card-icon {
    width: 40px; height: 40px;
    background: var(--primary-dim); border: 1px solid var(--primary-border);
    border-radius: 9px; display: flex; align-items: center;
    justify-content: center; margin-bottom: 16px;
}
.sol-card-icon svg { width: 18px; height: 18px; color: var(--primary); }
.sol-card h3 {
    font-family: var(--font-heading); font-size: 0.96rem;
    font-weight: 700; letter-spacing: -0.01em; margin-bottom: 9px;
}
.sol-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.67; }

/* =========================================
   OLD SPLIT LAYOUT
   ========================================= */
.split-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 72px; align-items: center;
}
.split-content h2 {
    font-family: var(--font-heading);
    font-size: 2.6rem; font-weight: 800;
    margin-bottom: 18px; line-height: 1.1; letter-spacing: -0.02em;
}
.split-content p {
    color: var(--text-muted); font-size: 0.98rem;
    margin-bottom: 34px; line-height: 1.72; font-family: var(--font-body);
}
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list i, .feature-list svg { color: var(--primary); margin-top: 2px; flex-shrink: 0; width: 18px; height: 18px; }
.feature-list strong { display: block; font-weight: 600; margin-bottom: 3px; font-size: 0.95rem; }
.feature-list span { color: var(--text-muted); font-size: 0.86rem; }
.visual-card {
    height: 360px; background: var(--bg-card2);
    border: 1px solid rgba(255,255,255,0.055);
    border-radius: 18px; position: relative; overflow: hidden;
}
.glow-effect {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(61,255,126,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.conduit-lines {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    justify-content: center; gap: 32px; padding: 0 36px;
}
.conduit-lines .line {
    height: 2px; background: rgba(61,255,126,0.12);
    border-radius: 2px; position: relative; overflow: hidden;
}
.conduit-lines .line::after {
    content: ''; position: absolute;
    top: 0; left: -100%; width: 40%; height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: flow 2.5s infinite linear;
}
.conduit-lines .line:nth-child(2)::after { animation-delay: 0.7s; }
.conduit-lines .line:nth-child(3)::after { animation-delay: 1.4s; }
@keyframes flow { 100% { transform: translateX(360%); } }
.charger-box {
    position: absolute; bottom: 26px; left: 26px;
    background: rgba(0,0,0,0.72); backdrop-filter: blur(8px);
    padding: 11px 18px; border-radius: 9px;
    border: 1px solid rgba(255,255,255,0.07);
    display: flex; align-items: center; gap: 9px;
    font-size: 0.85rem; font-family: var(--font-body);
}
.charger-box i, .charger-box svg { color: var(--primary); width: 16px; height: 16px; }

/* =========================================
   HOW IT WORKS
   ========================================= */

/* Old horizontal steps */
.process-steps {
    display: flex;
    align-items: flex-start;
}
.process-step {
    flex: 1; padding: 28px 24px;
    background: rgba(255,255,255,0.018);
    border: 1px solid rgba(255,255,255,0.055);
    border-radius: var(--r);
    transition: border-color 0.3s, background 0.3s;
}
.process-step:hover {
    border-color: var(--primary-border);
    background: rgba(61,255,126,0.02);
}
.step-number {
    font-family: var(--font-body); font-size: 0.68rem;
    font-weight: 700; letter-spacing: 0.1em;
    color: var(--primary); margin-bottom: 14px; text-transform: uppercase;
}
.process-step h3 {
    font-family: var(--font-heading); font-size: 1rem;
    font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em;
}
.process-step p {
    font-size: 0.84rem; color: var(--text-muted);
    line-height: 1.67; font-family: var(--font-body);
}
.process-arrow {
    font-size: 1.1rem; color: var(--primary);
    opacity: 0.28; padding: 0 10px; margin-top: 30px; flex-shrink: 0;
}

/* =========================================
   HOW IT WORKS — CLEAN STEPS
   ========================================= */
.steps-wrap {
    margin-top: clamp(24px, 3.5vh, 44px);
    position: relative;
}

/* ── Full-width track line sitting above all nodes ── */
.steps-track-line {
    position: absolute;
    top: 20px; /* vertically centred on the 40px circle */
    left: 12.5%;    /* centre of col 1 (1/8 of full width) */
    right: 12.5%;   /* centre of col 4 (1/8 from right)   */
    height: 2px;
    background: rgba(61,255,126,0.10);
    z-index: 0;
    overflow: visible;
    border-radius: 2px;
}
.steps-track-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), rgba(61,255,126,0.45));
    transition: width 1.4s cubic-bezier(0.16,1,0.3,1) 0.4s;
    position: relative;
    border-radius: 2px;
}
/* Travelling light pulse on the track */
.steps-track-fill::after {
    content: '';
    position: absolute;
    right: -20px; top: -3px;
    width: 44px; height: 8px;
    background: radial-gradient(ellipse at center, rgba(61,255,126,0.95) 0%, transparent 70%);
    border-radius: 50%;
    transition: opacity 0.3s;
}
.steps-wrap.visible .steps-track-fill {
    width: 100%;
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
}

.step-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.16,1,0.3,1);
}
.step-item.visible { opacity: 1; transform: translateY(0); }
.step-item:nth-child(1) { transition-delay: 0s; }
.step-item:nth-child(2) { transition-delay: 0.18s; }
.step-item:nth-child(3) { transition-delay: 0.36s; }
.step-item:nth-child(4) { transition-delay: 0.54s; }

/* Number bubble — centred in column, sits ON the track line */
.step-num-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
    height: 40px;
}

.step-num {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(61,255,126,0.25);
    background: var(--bg-dark);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.72rem; font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
    position: relative; z-index: 2;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.step-item.visible .step-num {
    background: rgba(61,255,126,0.06);
    border-color: rgba(61,255,126,0.45);
    box-shadow: 0 0 0 6px rgba(61,255,126,0.04), 0 0 18px rgba(61,255,126,0.12);
}
.step-item:hover .step-num {
    background: rgba(61,255,126,0.12);
    border-color: var(--primary);
    box-shadow: 0 0 0 8px rgba(61,255,126,0.06), 0 0 24px rgba(61,255,126,0.2);
}

/* Card */
.step-card {
    padding: clamp(12px, 1.4vh, 18px) clamp(14px, 1.4vw, 20px);
    border: 1px solid var(--border);
    border-radius: var(--r);
    margin-right: 12px;
    background: rgba(255,255,255,0.016);
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
    position: relative; overflow: hidden;
}
.step-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(61,255,126,0.4), transparent);
    opacity: 0; transition: opacity 0.3s;
}
.step-item:hover .step-card {
    border-color: rgba(61,255,126,0.18);
    background: rgba(61,255,126,0.025);
    transform: translateY(-2px);
}
.step-item:hover .step-card::before { opacity: 1; }
.step-item:last-child .step-card { margin-right: 0; }

.step-card h3 {
    font-family: var(--font-heading);
    font-size: clamp(0.82rem, 1.1vw, 0.95rem);
    font-weight: 700; letter-spacing: -0.01em;
    margin-bottom: 6px; color: var(--text-main);
}
.step-card p {
    font-size: clamp(0.74rem, 0.9vw, 0.82rem);
    color: var(--text-muted); line-height: 1.62;
}

/* Mobile */
@media (max-width: 700px) {
    .steps-row { grid-template-columns: 1fr; gap: 12px; }
    .steps-track-line { display: none; }
    .step-num-wrap { justify-content: flex-start; margin-bottom: 10px; }
    .step-card { margin-right: 0; }
}

/* =========================================
   WHY US
   ========================================= */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px;
}
.why-card {
    background: rgba(255,255,255,0.018);
    border: 1px solid rgba(255,255,255,0.055);
    border-radius: var(--r);
    padding: clamp(20px, 2.5vw, 28px);
    display: flex; gap: 18px; align-items: flex-start;
    transition: border-color 0.3s, background 0.3s;
}
.why-card:hover {
    border-color: var(--primary-border);
    background: rgba(61,255,126,0.02);
}
.why-icon {
    width: 44px; height: 44px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.why-icon i, .why-icon svg { width: 20px; height: 20px; }
.why-icon.green  { background: rgba(61,255,126,0.1);  color: var(--primary); }
.why-icon.blue   { background: rgba(59,130,246,0.1);  color: #3B82F6; }
.why-icon.purple { background: rgba(168,85,247,0.1);  color: #A855F7; }
.why-icon.teal   { background: rgba(20,184,166,0.1);  color: #14B8A6; }
.why-icon.amber  { background: rgba(249,115,22,0.1);  color: var(--amber); }
.why-card h3 {
    font-family: var(--font-heading); font-size: 1rem;
    font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em;
}
.why-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.67; font-family: var(--font-body); }

/* =========================================
   CONTACT
   ========================================= */
.contact-outer { max-width: 1100px; margin: 0 auto; }

.contact-wrapper,
.contact-wrap {
    background: rgba(61,255,126,0.03);
    border: 1px solid rgba(61,255,126,0.1);
    border-radius: 18px;
    padding: clamp(14px, 1.8vw, 22px);
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: clamp(24px, 3vw, 44px);
    align-items: start;
}

/* Contact left / info */
.contact-info h2,
.contact-h {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
    font-weight: 800; line-height: 1.1;
    margin-bottom: 10px; letter-spacing: -0.02em;
}
.contact-info > p,
.contact-p {
    color: var(--text-muted); font-size: 0.82rem;
    line-height: 1.6; margin-bottom: 14px; font-family: var(--font-body);
}
.contact-list,
.contact-details { display: flex; flex-direction: column; gap: 4px; }

.contact-row {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.80rem; color: var(--text-muted);
    font-family: var(--font-body);
    padding: 7px 12px; border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.2s;
}
.contact-row:hover { color: var(--primary); border-color: var(--primary-border); background: var(--primary-dim); }
.contact-row i, .contact-row svg { color: var(--primary); flex-shrink: 0; width: 14px; height: 14px; }
.contact-row span, .contact-row a {
    color: var(--text-muted); text-decoration: none;
    line-height: 1.5; transition: color 0.2s;
}
.contact-row a:hover { color: var(--primary); }
.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.info-item { display: flex; gap: 12px; align-items: flex-start; font-size: 0.87rem; }
.info-item i, .info-item svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; width: 16px; height: 16px; }
.info-item strong { display: block; font-weight: 600; margin-bottom: 4px; color: white; }
.info-item span, .info-item a {
    display: block; color: var(--text-muted); font-size: 0.85rem;
    text-decoration: none; transition: color 0.2s;
}
.info-item a:hover { color: var(--primary); }

/* Form */
.contact-form h3,
.form-title {
    font-family: var(--font-heading);
    font-size: clamp(1.0rem, 1.4vw, 1.2rem);
    font-weight: 700; letter-spacing: -0.01em;
    color: var(--text-main); margin-bottom: 4px;
}
.form-row,
.form-row-2 {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 8px; margin-bottom: 8px;
}
.form-group,
.form-field { margin-bottom: 8px; }
.form-group:last-of-type { margin-bottom: 10px; }

.form-group input,
.form-field input {
    width: 100%; padding: 12px 16px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px; color: white;
    font-size: 0.88rem; font-family: var(--font-body);
    outline: none; transition: border-color 0.2s, background 0.2s;
}
.form-group input::placeholder,
.form-field input::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus,
.form-field input:focus {
    border-color: var(--primary-border);
    background: rgba(61,255,126,0.03);
}

.form-reassurance,
.form-note {
    text-align: center; font-size: 0.76rem;
    color: var(--text-dim); margin-top: 12px;
    font-family: var(--font-body);
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    border-top: 1px solid rgba(255,255,255,0.18);
    padding: 30px 0; background: var(--bg-dark);
}
.footer-content,
.footer-inner {
    display: flex; align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; gap: 14px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.72);
    font-family: var(--font-body);
}
.footer-logo { font-size: 1.1rem; }
.footer-copy { font-size: 0.84rem; color: rgba(255,255,255,0.62); letter-spacing: 0.01em; }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
    color: rgba(255,255,255,0.68); text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary); }

/* =========================================
   WHATSAPP FLOAT
   ========================================= */
.whatsapp-float,
.wa-float {
    position: fixed;
    bottom: clamp(18px, 4vw, 28px);
    right: clamp(18px, 4vw, 28px);
    width: 52px; height: 52px;
    background: #25D366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 28px rgba(37,211,102,0.42);
    z-index: 9998; transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}
.whatsapp-float:hover,
.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 36px rgba(37,211,102,0.58);
}

/* =========================================
   SUCCESS TOAST
   ========================================= */
.success-toast,
/* ═══════════════════════════════════════════
   PREMIUM TOAST — slides in from right with
   animated checkmark, progress bar, close btn
═══════════════════════════════════════════ */
.toast {
    position: fixed;
    bottom: clamp(24px, 3.5vw, 36px);
    right: clamp(16px, 3vw, 30px);
    background: rgba(7,12,9,0.97);
    backdrop-filter: blur(24px) saturate(200%);
    border: 1px solid rgba(61,255,126,0.20);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    width: min(340px, calc(100vw - 32px));
    box-shadow: 0 12px 48px rgba(0,0,0,0.65),
                0 0 0 1px rgba(61,255,126,0.06),
                inset 0 1px 0 rgba(255,255,255,0.04);
    z-index: 9999;
    opacity: 0;
    transform: translateX(calc(100% + 32px));
    pointer-events: none;
    transition: transform 0.55s cubic-bezier(0.16,1,0.3,1),
                opacity 0.3s ease;
}
.toast.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}
/* Left green accent bar */
.toast::before {
    content: '';
    display: block;
    width: 3px;
    flex-shrink: 0;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(61,255,126,0.35) 100%);
}
/* Bottom progress bar — depletes as toast times out */
.toast::after {
    content: '';
    position: absolute;
    bottom: 0; left: 3px; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), rgba(61,255,126,0.25));
    transform-origin: left center;
    transform: scaleX(0);
}
.toast.show::after {
    animation: toastDrain 4.5s linear 0.1s forwards;
}
@keyframes toastDrain {
    from { transform: scaleX(1); }
    to   { transform: scaleX(0); }
}
/* Inner layout */
.toast-inner {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px 16px 18px 16px;
    flex: 1;
    min-width: 0;
}
/* Animated checkmark circle */
.toast-icon {
    width: 38px; height: 38px;
    background: rgba(61,255,126,0.10);
    border: 1.5px solid rgba(61,255,126,0.28);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    position: relative;
}
.toast-icon svg {
    width: 17px; height: 17px;
    stroke-dasharray: 26;
    stroke-dashoffset: 26;
    transition: stroke-dashoffset 0.5s cubic-bezier(0.16,1,0.3,1) 0.25s;
}
.toast.show .toast-icon svg {
    stroke-dashoffset: 0;
}
/* Ripple ring on icon */
.toast.show .toast-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1.5px solid rgba(61,255,126,0.40);
    animation: toastRipple 1.6s ease-out 0.35s forwards;
}
@keyframes toastRipple {
    0%   { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.9); opacity: 0; }
}
/* Text */
.toast-body { flex: 1; min-width: 0; }
.toast strong {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 0.90rem;
    font-weight: 700;
    display: block;
    margin-bottom: 3px;
    letter-spacing: -0.01em;
}
.toast span {
    color: var(--text-muted);
    font-size: 0.79rem;
    font-family: var(--font-body);
    display: block;
    line-height: 1.4;
}
/* Close button */
.toast-close {
    background: none;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 6px;
    align-self: flex-start;
    margin-top: 1px;
    line-height: 0;
    flex-shrink: 0;
    transition: color 0.18s, background 0.18s;
}
.toast-close:hover {
    color: white;
    background: rgba(255,255,255,0.08);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1080px) {
    .hero-layout { grid-template-columns: 1fr; gap: 48px; }
    .hero-right { justify-content: flex-start; }
    .dashboard-card { max-width: 500px; }
    .ev-panel { display: none; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
    .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
    .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
    .display-grid { grid-template-columns: repeat(2,1fr); }
    .solution-grid { grid-template-columns: repeat(2,1fr); }
    .grid-3 { grid-template-columns: repeat(2,1fr); }
    .split-layout { grid-template-columns: 1fr; gap: 48px; }
    .process-steps { flex-wrap: wrap; gap: 14px; }
    .process-arrow { display: none; }
    .process-step { flex: 1 1 calc(50% - 7px); }
    .why-grid { grid-template-columns: 1fr; }
    .contact-wrapper, .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    body {
        height: auto;
        overflow-y: auto;
    }
    .section-padding, .section {
        min-height: auto;
        height: auto;
        padding: 60px 0;
    }
    #contact {
        min-height: auto;
        padding: 60px 0 !important;
    }

    .nav-links { display: none; }
    .nav-cta { display: none; }
    .mobile-toggle, .burger { display: flex; }

    .hero-left h1 { font-size: 2.8rem; }
    .hero-h1 { font-size: clamp(1.7rem, 7vw, 2.6rem); }
    .hero-desc, .hero-sub { font-size: 0.93rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn,
    .hero-actions .btn-primary,
    .hero-actions .btn-ghost,
    .hero-actions .btn-secondary { width: 100%; justify-content: center; }
    .hero-scroll { display: none; }
    .ev-panel { display: none; }

    .section-header h2, .section-h { font-size: 1.45rem; }

    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .stat-num { font-size: 2.4rem; }
    .stat-item { padding: 26px 22px; }

    .display-grid { grid-template-columns: 1fr; }
    .solution-grid { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
    .process-steps { flex-direction: column; }
    .process-step { width: 100%; }
    .process-line { display: none; }
    .proc-step { gap: 16px; }
    .why-grid { grid-template-columns: 1fr; }

    /* ── Contact section: unified card layout ── */
    #contact {
        padding: 48px 0 36px !important;
        min-height: auto !important;
    }
    #contact .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    .contact-wrapper, .contact-wrap {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
        background: transparent;
        border: none;
        border-radius: 0;
    }
    .contact-left {
        background: rgba(61,255,126,0.03);
        border: 1px solid rgba(61,255,126,0.10);
        border-radius: 16px 16px 0 0;
        padding: 22px 18px 18px;
        border-bottom: 1px solid rgba(61,255,126,0.08);
    }
    .contact-right {
        background: rgba(61,255,126,0.02);
        border: 1px solid rgba(61,255,126,0.10);
        border-top: none;
        border-radius: 0 0 16px 16px;
        padding: 22px 18px 24px;
    }
    .contact-info h2, .contact-h {
        font-size: 1.4rem;
        line-height: 1.12;
        margin-bottom: 8px;
    }
    .contact-p {
        font-size: 0.82rem;
        line-height: 1.55;
        margin-bottom: 14px;
    }
    .contact-details { gap: 3px; }
    .contact-row {
        font-size: 0.81rem;
        padding: 8px 10px;
        gap: 10px;
        align-items: flex-start;
    }
    .contact-row svg { margin-top: 2px; flex-shrink: 0; width: 13px; height: 13px; }
    .form-row, .form-row-2 { grid-template-columns: 1fr; gap: 0; }
    .form-title { font-size: 1.05rem !important; font-weight: 700 !important; letter-spacing: -0.01em !important; text-transform: none !important; color: var(--text-main) !important; }
    .form-subtitle { font-size: 0.78rem; }
    .form-field { margin-bottom: 10px; }
    .form-label { font-size: 0.65rem; margin-bottom: 5px; }
    .input-wrap input { padding: 10px 12px 10px 36px; font-size: 16px; }
    .contact-form .btn-primary.full { padding: 12px; font-size: 0.90rem; }
    .form-note { font-size: 0.73rem; margin-top: 10px; }

    .footer-content, .footer-inner { flex-direction: column; gap: 14px; text-align: center; }
    .footer-links { justify-content: center; flex-wrap: wrap; gap: 16px; }
    .footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.62) !important; }
    .whatsapp-float, .wa-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
    .toast { right: 16px; left: 16px; width: auto; bottom: 72px; }
}

@media (max-width: 480px) {
    .hero-h1 { font-size: clamp(1.5rem, 8vw, 2.2rem); }
    .container { padding: 0 18px; }
}

@media (min-width: 1400px) {
    .hero-left h1 { font-size: 6rem; }
    .hero-h1 { font-size: 2.8rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
/* ═══════════════════════════════════════════════════════════
   NEVORA ECO — ADDITIONS
   Nav hide · Glow text · Horizontal scroll cards · Mobile
═══════════════════════════════════════════════════════════ */

#contact { 
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px,8vh,100px) 0 !important;
  position: relative;
}
#contact .container {
  flex: 0 0 auto;
  padding-top: 0;
  padding-bottom: 0;
}
footer {
  flex: 0 0 auto;
  scroll-snap-align: none;
  min-height: auto;
  height: auto;
  max-height: none;
  overflow: visible;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-dark);
}
/* ─── Nav show/hide via JS ─── */
#navbar.nav-hidden {
  opacity: 0;
  transform: translateY(-100%);
}
#navbar.nav-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Hero — fits one 1080p viewport without scrolling ─── */
.hero-content {
  padding: clamp(28px,4vh,52px) clamp(20px,4vw,48px) clamp(32px,5vh,60px) !important;
}
.hero-h1 {
  font-size: clamp(1.8rem, 3.6vw, 3.0rem) !important;
  margin-bottom: clamp(8px,1.2vh,14px) !important;
  line-height: 1.08 !important;
}
.hero-sub {
  margin: clamp(8px,1.2vh,14px) 0 clamp(12px,1.8vh,22px) !important;
  font-size: clamp(0.84rem,1.3vw,0.96rem) !important;
  max-width: 500px;
}
.hero-actions.line-in-delay {
  margin-bottom: clamp(10px,1.6vh,22px) !important;
}

/* ─── Glow text — Terminal Industries style ─── */
.glow-text {
  transition: opacity 0.8s ease, text-shadow 0.8s ease;
  opacity: 0.15;
}
.glow-text.visible { opacity: 1 !important; }

/* ─── HORIZONTAL SCROLL CARD TRACK ─── */
.hscroll-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: clamp(120px, 28vh, 200px);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-top: clamp(10px, 1.5vh, 18px);
}

/* ─── hcard (Problem & Solution cards) ─── */
.hcard {
  background: var(--bg-dark);
  padding: clamp(8px, 1.1vh, 14px) clamp(10px, 1.2vw, 16px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
  min-height: unset;
}
.hcard:hover { background: var(--bg-card); }

.hcard-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 6px;
}
.hcard-icon.red    { background: rgba(239,68,68,0.12);   color: #ef4444; border: 1px solid rgba(239,68,68,0.2); }
.hcard-icon.amber  { background: rgba(249,115,22,0.12);  color: #f97316; border: 1px solid rgba(249,115,22,0.2); }
.hcard-icon.blue   { background: rgba(59,130,246,0.12);  color: #3b82f6; border: 1px solid rgba(59,130,246,0.2); }
.hcard-icon.purple { background: rgba(168,85,247,0.12);  color: #a855f7; border: 1px solid rgba(168,85,247,0.2); }
.hcard-icon.teal   { background: rgba(20,184,166,0.12);  color: #14b8a6; border: 1px solid rgba(20,184,166,0.2); }
.hcard-icon.green  { background: var(--primary-dim);      color: var(--primary); border: 1px solid var(--primary-border); }

.hcard-title {
  font-family: var(--font-heading);
  font-size: 0.83rem; font-weight: 700;
  letter-spacing: -0.015em; margin-bottom: 4px; line-height: 1.2;
}
.hcard-desc {
  font-size: 0.74rem; color: var(--text-muted); line-height: 1.48;
  flex: 1; margin-bottom: 4px;
}
.hcard-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 6px; border-top: 1px solid var(--border);
  margin-top: auto;
}
.hcard-tag {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-dim);
}
.hcard-icon {
  width: 30px; height: 30px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.hcard-icon svg { width: 15px; height: 15px; }
.hcard-num {
  font-family: var(--font-heading);
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.14em; color: var(--text-dim);
}
.hcard-tag {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-dim);
}
.hcard-arrow {
  width: 14px; height: 14px; color: var(--text-dim);
  transition: transform 0.3s, color 0.3s;
}
.hcard:hover .hcard-arrow { transform: translateX(4px); color: rgba(255,255,255,0.5); }

/* Accent line on top */
.hcard::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  opacity: 0; transition: opacity 0.35s;
}
.hcard:hover::before { opacity: 1; }
/* Problem section: each card has its accent colour */
.hcard[data-index="0"]::before { background: linear-gradient(90deg,transparent,rgba(239,68,68,0.7),transparent); }
.hcard[data-index="1"]::before { background: linear-gradient(90deg,transparent,rgba(249,115,22,0.7),transparent); }
.hcard[data-index="2"]::before { background: linear-gradient(90deg,transparent,rgba(59,130,246,0.7),transparent); }
.hcard[data-index="3"]::before { background: linear-gradient(90deg,transparent,rgba(168,85,247,0.7),transparent); }
.hcard[data-index="4"]::before { background: linear-gradient(90deg,transparent,rgba(20,184,166,0.7),transparent); }
.hcard[data-index="5"]::before { background: linear-gradient(90deg,transparent,rgba(61,255,126,0.7),transparent); }
/* Solution section: each card matches its icon colour */
.hcard-sol[data-index="0"]::before { background: linear-gradient(90deg,transparent,rgba(61,255,126,0.65),transparent); }
.hcard-sol[data-index="1"]::before { background: linear-gradient(90deg,transparent,rgba(59,130,246,0.65),transparent); }
.hcard-sol[data-index="2"]::before { background: linear-gradient(90deg,transparent,rgba(249,115,22,0.65),transparent); }
.hcard-sol[data-index="3"]::before { background: linear-gradient(90deg,transparent,rgba(168,85,247,0.65),transparent); }
.hcard-sol[data-index="4"]::before { background: linear-gradient(90deg,transparent,rgba(20,184,166,0.65),transparent); }
.hcard-sol[data-index="5"]::before { background: linear-gradient(90deg,transparent,rgba(61,255,126,0.65),transparent); }
/* Solution glows match icon colours */
.hcard-sol[data-index="0"] .hcard-glow { background: rgba(61,255,126,0.08) !important; }
.hcard-sol[data-index="1"] .hcard-glow { background: rgba(59,130,246,0.09) !important; }
.hcard-sol[data-index="2"] .hcard-glow { background: rgba(249,115,22,0.09) !important; }
.hcard-sol[data-index="3"] .hcard-glow { background: rgba(168,85,247,0.09) !important; }
.hcard-sol[data-index="4"] .hcard-glow { background: rgba(20,184,166,0.09) !important; }
.hcard-sol[data-index="5"] .hcard-glow { background: rgba(61,255,126,0.08) !important; }

/* Glow blob */
.hcard-glow {
  position: absolute; width: 160px; height: 160px; border-radius: 50%;
  bottom: -50px; right: -30px; pointer-events: none;
  opacity: 0; transition: opacity 0.5s; filter: blur(44px); z-index: 0;
}
.hcard:hover .hcard-glow { opacity: 1; }
.hcard-glow.red    { background: rgba(239,68,68,0.12); }
.hcard-glow.amber  { background: rgba(249,115,22,0.12); }
.hcard-glow.blue   { background: rgba(59,130,246,0.12); }
.hcard-glow.purple { background: rgba(168,85,247,0.12); }
.hcard-glow.teal   { background: rgba(20,184,166,0.12); }
.hcard-glow.green  { background: rgba(61,255,126,0.08); }

/* Solution cards — show foot like problem cards */
.hcard-sol { min-height: unset; }

/* ─── Why-Us horizontal cards — same grid as problem ─── */
.why-track {
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: clamp(120px, 28vh, 200px);
  margin-top: clamp(10px, 1.5vh, 18px);
}
.why-hcard {
  background: rgba(255,255,255,0.018);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: clamp(18px,2.5vw,26px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.3s, background 0.3s;
}
.why-hcard:hover {
  border-color: var(--primary-border);
  background: rgba(61,255,126,0.02);
}
.why-hcard-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.why-hcard-icon svg { width: 19px; height: 19px; }
.why-hcard-icon.green  { background: rgba(61,255,126,0.1);  color: var(--primary); }
.why-hcard-icon.blue   { background: rgba(59,130,246,0.1);  color: #3b82f6; }
.why-hcard-icon.purple { background: rgba(168,85,247,0.1);  color: #a855f7; }
.why-hcard-icon.amber  { background: rgba(249,115,22,0.1);  color: #f97316; }
.why-hcard-icon.teal   { background: rgba(20,184,166,0.1);  color: #14b8a6; }
.why-hcard h3 { font-family: var(--font-heading); font-size: 0.97rem; font-weight: 700; margin-bottom: 4px; }
.why-hcard p  { font-size: 0.83rem; color: var(--text-muted); line-height: 1.65; }

/* ─── MOBILE HORIZONTAL SCROLL ─── */
@media (max-width: 1024px) {
  .hscroll-track {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-track {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  /* Convert to horizontal scroll on phones */
  .hscroll-track {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    padding-bottom: 12px;
    /* Hide scrollbar but keep scrolling */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .hscroll-track::-webkit-scrollbar { display: none; }

  .hcard {
    flex: 0 0 82vw;
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-right: 12px;
    min-height: auto;
  }
  .hcard:first-child { margin-left: 4px; }
  .hcard:last-child  { margin-right: 20px; }

  .why-track {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 0;
    border: none;
    background: transparent;
    border-radius: 0;
    scrollbar-width: none;
    padding-bottom: 12px;
  }
  .why-track::-webkit-scrollbar { display: none; }
  /* why-track hcards on mobile */
  .why-track .hcard {
    flex: 0 0 82vw;
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-right: 12px;
    min-height: auto;
  }
  .why-track .hcard:first-child { margin-left: 4px; }
  .why-track .hcard:last-child  { margin-right: 20px; }

  /* Scroll hint arrow */
  .hscroll-track::after,
  .why-track::after {
    content: '';
    flex: 0 0 1px;
  }

  /* Hero fits phone viewport */
  .hero-h1 { font-size: clamp(1.6rem, 7vw, 2.4rem) !important; }
  .hero-sub { font-size: 0.9rem !important; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; justify-content: center; }
  .hero-scroll { display: none; }
  .ev-panel { display: none; }

  /* Sections */
  .section { padding: 36px 0; }
  .section-h { font-size: 1.45rem; }
}

@media (max-width: 480px) {
  .hcard { flex: 0 0 88vw; }
  .why-hcard { flex: 0 0 80vw; }
  .why-track .hcard { flex: 0 0 88vw; }
  .hero-h1 { font-size: clamp(1.4rem,8vw,2.1rem) !important; }
  /* Prevent iOS form zoom */
  .form-group input,
  .form-field input { font-size: 16px !important; }
}

/* ─── iOS safe area ─── */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .wa-float { bottom: calc(clamp(18px,4vw,28px) + env(safe-area-inset-bottom)); }
}

/* ─── Scroll indicator dots under cards ─── */
.scroll-dots {
  display: none;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}
.scroll-dots span {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--border);
  transition: background 0.3s;
}
.scroll-dots span.active { background: var(--primary); }
@media (max-width: 700px) { .scroll-dots { display: flex; } }

/* ── Hero canvas — full cover, behind content ── */
#heroCanvas {
    position: absolute; inset: 0;
    width: 100% !important; height: 100% !important;
    opacity: 0.9;
    pointer-events: none; z-index: 0;
    will-change: contents;
}

/* ── Will-change hints for smooth mobile GPU compositing ── */
.pcard, .sol-card, .why-card {
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
.reveal, .reveal-card {
    will-change: transform, opacity;
}
#solutionCanvas {
    will-change: contents;
}

/* ── Cursor fixed position (transform-based) ── */
.cursor, .cursor-dot {
    position: fixed;
    left: 0; top: 0;
    pointer-events: none;
    z-index: 9999;
}
.cursor {
    width: 34px; height: 34px;
    border: 1.5px solid #3dff7e; border-radius: 50%;
    opacity: 0.45;
    transition: width .15s, height .15s, opacity .15s, background .15s;
    display: none;
}
.cursor-dot {
    width: 5px; height: 5px;
    background: #3dff7e; border-radius: 50%;
    display: none;
}
@media (pointer:fine) {
    body { cursor: none; }
    .cursor, .cursor-dot { display: block; }
    .cursor.hovered { width: 52px; height: 52px; opacity: 0.18; background: rgba(61,255,126,0.07); }
}

/* ── Word glow spans ── */
.gw {
    display: inline;
    transition: opacity 0.5s ease, text-shadow 0.5s ease;
}

/* ══════════════════════════════════════
   PREMIUM FORM REDESIGN
══════════════════════════════════════ */
.form-header {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.form-title {
    font-family: var(--font-heading, 'Syne',sans-serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
    margin-bottom: 5px;
    text-transform: none;
    letter-spacing: 0;
}
.form-subtitle {
    font-size: 0.76rem;
    color: var(--text-muted, #7a9080);
    font-family: var(--font-body, 'DM Sans',sans-serif);
}
.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.68rem;
}
.input-wrap {
    position: relative;
}
.input-icon {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    color: rgba(61,255,126,0.4);
    pointer-events: none;
    flex-shrink: 0;
}
.input-wrap input {
    width: 100%;
    padding: 9px 12px 9px 36px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 9px;
    color: #fff;
    font-size: 16px;
    font-family: var(--font-body, 'DM Sans',sans-serif);
    outline: none;
    transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
    -webkit-appearance: none;
}
.input-wrap input::placeholder {
    color: rgba(255,255,255,0.18);
}
.input-wrap input:focus {
    border-color: rgba(61,255,126,0.45);
    background: rgba(61,255,126,0.04);
    box-shadow: 0 0 0 3px rgba(61,255,126,0.08);
}
.input-wrap input:focus + .input-icon,
.input-wrap:focus-within .input-icon {
    color: rgba(61,255,126,0.7);
}
.contact-form .btn-primary.full {
    margin-top: 6px;
    letter-spacing: 0.01em;
    font-size: 0.94rem;
}
/* Remove old form-field input styles that conflict */
.form-field input {
    /* Overridden by .input-wrap input */
}

/* ══════════════════════════════════════
   SWIPE HINT + DOTS
══════════════════════════════════════ */
.swipe-hint {
    display: none; /* hidden on desktop */
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding-bottom: 4px;
}
.swipe-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.22);
    display: flex;
    align-items: center;
    gap: 6px;
}
.swipe-label::before, .swipe-label::after {
    content: '';
    display: block;
    width: 18px;
    height: 1px;
    background: rgba(255,255,255,0.15);
}
.swipe-dots {
    display: flex;
    gap: 5px;
    align-items: center;
}
.sdot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    transition: all 0.3s ease;
    cursor: pointer;
}
.sdot.active {
    width: 18px;
    border-radius: 3px;
    background: #3dff7e;
}

@media (max-width: 768px) {
    .swipe-hint { display: flex; }
    /* Ensure carousel padding is right */
    .cards-grid {
        /* Extra right padding so last card fully visible */
        padding-right: 20vw !important;
    }
}

/* ══════════════════════════════════════
   HERO CANVAS — visible on mobile
══════════════════════════════════════ */
#heroCanvas {
    opacity: 1 !important;
    z-index: 0 !important;
}


/* ══════════════════════════════════════
   GREEN COLOUR REFINEMENT
   #3dff7e = vivid neon. We add a softer
   secondary accent for headings.
══════════════════════════════════════ */
/* The primary green is already good for CTAs.
   Section headings use white with green glow — this reads better.
   Only "You Handle Nothing." uses full green — that's correct brand impact. */

/* ═══════════════════════════════════════
   MOBILE HERO — animation below text
   hero-scene-mobile is a dedicated zone
   BELOW the text block, not behind it.
═══════════════════════════════════════ */

/* Desktop: canvas is absolute full-cover bg */
#heroCanvas { position:absolute; inset:0; width:100%; height:100%; opacity:1; pointer-events:none; z-index:0; }

/* Mobile: flex-column layout — text on top, scene below */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    height: 100svh;
    min-height: unset;
    padding-bottom: 0;
  }
  #heroCanvas { display: none !important; } /* desktop canvas hidden on mobile */
  .hero-content {
    padding: clamp(28px,5vh,56px) clamp(18px,4vw,32px) 20px !important;
    flex-shrink: 0;
  }
  .hero-scroll { display: none; }
  /* Dedicated scene strip below text */
  .hero-scene-mobile {
    width: 100%;
    height: 220px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
  }
  .hero-scene-mobile canvas {
    display: block;
    width: 100%;
    height: 100%;
  }
}

/* Desktop: hero-scene-mobile is hidden */
@media (min-width: 769px) {
  .hero-scene-mobile { display: none; }
}
/* ═══════════════════════════════════════════════════
   NEVORA — MODIFICATIONS (Website_Modifications-150326)
═══════════════════════════════════════════════════ */

/* ── PC6: Section labels → green ── */
.section-label {
    color: var(--primary) !important;
    margin-bottom: 6px !important;
}

/* ── Mobile3: Swipe to Explore → green ── */
.swipe-label {
    color: var(--primary) !important;
}
.swipe-label::before,
.swipe-label::after {
    background: var(--primary-border) !important;
}

/* ── PC1: Hero H1 — heavier weight, tighter tracking ── */
.hero-h1 {
    font-weight: 800 !important;
    letter-spacing: -0.035em !important;
    line-height: 0.98 !important;
}

/* ── Contact 12: Let's Future-Proof heading — left aligned ── */
.contact-h {
    text-align: left !important;
}

/* ═══════════════════════════════════════════════════
   PC7: HOW IT WORKS — ROADMAP DESIGN
   Horizontal 4-step pathway on desktop,
   vertical with connector on mobile.
═══════════════════════════════════════════════════ */
.process-line { display: none; }

@media (min-width: 769px) {
    .process-steps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        position: relative;
        align-items: start;
    }
    /* Dashed path connecting the 4 steps */
    .process-steps::before {
        content: '';
        position: absolute;
        top: 23px;
        left: calc(12.5% + 23px);
        right: calc(12.5% + 23px);
        height: 2px;
        background: repeating-linear-gradient(
            90deg,
            var(--primary) 0px,
            var(--primary) 8px,
            transparent 8px,
            transparent 18px
        );
        opacity: 0.28;
        z-index: 0;
    }
    .proc-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 clamp(10px, 2vw, 22px);
        border-bottom: none !important;
        position: relative;
        z-index: 1;
    }
    .proc-dot {
        margin-bottom: 18px;
        background: var(--bg-section);
        border: 2px solid var(--primary-border);
        width: 46px; height: 46px;
    }
    .proc-step:hover .proc-dot {
        background: var(--primary-dim);
        border-color: var(--primary);
        box-shadow: 0 0 0 6px rgba(61,255,126,0.07);
    }
    .proc-body {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .proc-body h3 {
        text-align: center;
        margin-top: 0;
        font-size: 0.94rem;
    }
    .proc-body p {
        text-align: center;
        max-width: 210px;
        font-size: 0.82rem;
    }
}

@media (max-width: 768px) {
    .process-steps {
        display: flex;
        flex-direction: column;
    }
    .proc-step {
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
        padding: 20px 0;
        border-bottom: 1px solid var(--border);
    }
    .proc-step:last-child { border-bottom: none; }
    .proc-body h3 { text-align: left; }
    .proc-body p  { text-align: left; max-width: 100%; }
    /* Vertical dashed connector on mobile */
    .process-track::before {
        content: '';
        position: absolute;
        left: 23px;
        top: 58px;
        bottom: 20px;
        width: 2px;
        background: repeating-linear-gradient(
            to bottom,
            var(--primary) 0px, var(--primary) 6px,
            transparent 6px, transparent 14px
        );
        opacity: 0.22;
    }
}

/* ── Footer social links — icon alignment ── */
.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.footer-links svg { opacity: 0.75; flex-shrink: 0; }
.footer-links a:hover svg { opacity: 1; }
.footer-copy { font-size: 0.78rem !important; color: rgba(255,255,255,0.62) !important; }

/* ═══════════════════════════════════════════════════
   NEVORA STANDARD SECTION
═══════════════════════════════════════════════════ */
.nevora-standard-wrap {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
}

/* ── Left: feature list ── */
.nstandard-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.nstandard-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: clamp(8px, 1vh, 13px) 0;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}
.nstandard-item:last-child { border-bottom: none; }
.nstandard-item:hover .nstandard-icon { transform: scale(1.08); }

.nstandard-icon {
    width: 36px; height: 36px;
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s;
}
.nstandard-icon svg { width: 16px; height: 16px; }
.nstandard-icon.green  { background: rgba(61,255,126,0.10);  color: var(--primary);    border: 1px solid rgba(61,255,126,0.18); }
.nstandard-icon.blue   { background: rgba(59,130,246,0.10);  color: #3b82f6;           border: 1px solid rgba(59,130,246,0.18); }
.nstandard-icon.amber  { background: rgba(249,115,22,0.10);  color: #f97316;           border: 1px solid rgba(249,115,22,0.18); }
.nstandard-icon.purple { background: rgba(168,85,247,0.10);  color: #a855f7;           border: 1px solid rgba(168,85,247,0.18); }

.nstandard-body h3 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 3px;
    margin-top: 5px;
}
.nstandard-body p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ── Right: metrics panel ── */
.nstandard-right {
    position: sticky;
    top: calc(var(--header-height) + 24px);
}
.nstandard-panel {
    background: linear-gradient(145deg, rgba(13,19,14,0.99), rgba(8,12,9,0.99));
    border: 1px solid rgba(61,255,126,0.12);
    border-radius: 20px;
    padding: clamp(18px, 2vw, 26px);
    box-shadow: 0 32px 80px rgba(0,0,0,0.6), inset 0 1px 0 rgba(61,255,126,0.07);
    position: relative; overflow: hidden;
}
.nstandard-panel::after {
    content: '';
    position: absolute; bottom: -80px; left: -40px;
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(61,255,126,0.055) 0%, transparent 65%);
    pointer-events: none;
}
.nstandard-panel-label {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.62rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--primary); margin-bottom: 18px; opacity: 0.8;
}

/* ── Premium metric rows ── */
.ndiff-rows {
    display: flex; flex-direction: column; gap: 8px;
    margin-bottom: 18px;
}
.ndiff-row {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.055);
    border-radius: 12px;
    transition: background 0.25s, border-color 0.25s;
    position: relative; overflow: hidden;
}
.ndiff-row::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
    background: linear-gradient(to bottom, var(--primary), rgba(61,255,126,0.2));
    border-radius: 2px 0 0 2px;
    opacity: 0; transition: opacity 0.3s;
}
.ndiff-row:hover { background: rgba(61,255,126,0.04); border-color: rgba(61,255,126,0.16); }
.ndiff-row:hover::before { opacity: 1; }

.ndiff-row-icon {
    width: 32px; height: 32px; flex-shrink: 0;
    border-radius: 8px;
    background: rgba(61,255,126,0.08);
    border: 1px solid rgba(61,255,126,0.14);
    display: flex; align-items: center; justify-content: center;
}
.ndiff-row-icon svg { width: 14px; height: 14px; color: var(--primary); }

.ndiff-row-info {
    flex: 1; min-width: 0;
    display: flex; flex-direction: column;
}
.ndiff-row-name {
    font-size: 0.76rem; font-weight: 600;
    color: rgba(255,255,255,0.8); white-space: nowrap;
    overflow: hidden; text-overflow: ellipsis;
}
.ndiff-row-bar { display: none; }
.ndiff-bar { display: none; }
.ndiff-bar::after { display: none; }

.ndiff-row-tag {
    font-size: 0.58rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--primary); opacity: 0.75;
    background: rgba(61,255,126,0.07);
    border: 1px solid rgba(61,255,126,0.14);
    padding: 3px 8px; border-radius: 20px;
    flex-shrink: 0; white-space: nowrap;
}

/* ── Chips ── */
.ndiff-chips {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6px; margin-bottom: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(61,255,126,0.07);
}
.ndiff-chip {
    display: flex; align-items: center; gap: 7px;
    font-size: 0.70rem; color: rgba(255,255,255,0.5);
    padding: 8px 10px; border-radius: 10px;
    background: rgba(255,255,255,0.018);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.25s;
}
.ndiff-chip svg { width: 13px; height: 13px; color: var(--primary); flex-shrink: 0; opacity: 0.8; }
.ndiff-chip:hover {
    background: rgba(61,255,126,0.05);
    border-color: rgba(61,255,126,0.2);
    color: rgba(255,255,255,0.85);
}

/* Bottom status */
.nstandard-bottom { padding-top: 14px; border-top: 1px solid rgba(61,255,126,0.07); }
.nstd-status { display: flex; align-items: center; gap: 8px; font-size: 0.70rem; color: rgba(255,255,255,0.35); }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .nevora-standard-wrap {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .nstandard-right {
        position: static;
    }
    .nstandard-panel {
        max-width: 560px;
    }
}
@media (max-width: 768px) {
    .nstandard-item { gap: 14px; }
    .nstandard-badges { grid-template-columns: 1fr; }
    .nstandard-panel { max-width: 100%; }
}

/* ═══════════════════════════════════════════════════
   VIEWPORT FIT — each section fills but not exceeds
   one screen at 1920×1080 on desktop
═══════════════════════════════════════════════════ */
@media (min-width: 769px) {
    /* Hero: tall enough to fill viewport, compact content */
    .hero {
        height: 100vh;
        min-height: unset;
    }
    .hero-h1 { font-size: clamp(1.7rem, 3.4vw, 2.8rem) !important; }
    /* Tighter hero-sub font on desktop */
    .hero-sub {
        font-size: clamp(0.84rem, 1.35vw, 0.96rem);
    }
    /* Process steps compact on desktop */
    .proc-body h3 { font-size: 0.88rem; }
    .proc-body p { max-width: 185px; font-size: 0.80rem; }
    /* Why hcard compact */
    .why-hcard { padding: clamp(12px, 1.6vw, 20px) !important; }
    .why-hcard h3 { font-size: 0.92rem; }
    .why-hcard p { font-size: 0.80rem; line-height: 1.55; }
    /* Nstandard compact */
    .nstandard-item { padding: clamp(10px, 1.4vw, 16px) 0; }
    .nstandard-body h3 { font-size: 0.92rem; }
    .nstandard-body p { font-size: 0.81rem; }
    /* Section labels smaller */
    .section-label, .accent-label { font-size: 0.65rem; margin-bottom: 6px; }
}

/* Reveal fallback removed — JS observer handles all reveals */

/* ═══════════════════════════════════════════════════
   HERO STAT CHIPS — floating data overlays
   Positioned in the dead space above the hero text
═══════════════════════════════════════════════════ */
.hero-stats {
    position: absolute;
    top: clamp(18px, 2.5vh, 32px);
    left: clamp(20px, 4vw, 48px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 1.4s forwards;
}
.hstat-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(7,14,10,0.72);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(61,255,126,0.14);
    border-radius: 30px;
    padding: 6px 14px 6px 10px;
    width: fit-content;
}
.hstat-chip--2 { transform: translateX(18px); }
.hstat-chip--3 { transform: translateX(8px); }
.hstat-dot {
    width: 6px; height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 1.8s infinite;
    flex-shrink: 0;
}
.hstat-dot--amber { background: #f97316; animation: pulseAmber 2s infinite; }
@keyframes pulseAmber { 0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(249,115,22,0.4)} 50%{opacity:0.6;box-shadow:0 0 0 5px rgba(249,115,22,0)} }
.hstat-label {
    font-size: 0.68rem;
    font-family: var(--font-body);
    color: var(--text-muted);
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.hstat-val {
    font-size: 0.78rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.01em;
}

/* Hide stat chips on mobile and small screens */



/* ════════════════════════════════════════════════════
   FINAL OVERRIDES — high specificity, applied last
   Navbar theme, nav link visibility, hero text position
════════════════════════════════════════════════════ */

/* Navbar: dark green theme matching hero */
#navbar {
    background: rgba(8,20,12,0.75) !important;
    backdrop-filter: blur(24px) saturate(140%) !important;
    border-bottom: 1px solid rgba(61,255,126,0.12) !important;
    box-shadow: 0 1px 0 rgba(61,255,126,0.06), 0 4px 24px rgba(0,0,0,0.3) !important;
}

/* Nav links: clearly visible white, hover to green */
.nav-link, .nav-item {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500 !important;
}
.nav-link:hover, .nav-item:hover {
    color: var(--primary) !important;
}

/* Hero text: pushed right of left power column */
.hero-content {
    padding-left: clamp(126px, 9.8vw, 158px) !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}

/* On mobile, reset to normal padding */
@media (max-width: 768px) {
    .hero-content {
        padding-left: clamp(18px, 4vw, 32px) !important;
    }
    #navbar {
        background: rgba(8,20,12,0.92) !important;
    }
}


/* Marquee is standalone below hero — hero height lets it peek */