/* ============================================================
   GREEN ELECTRIC — REFINED LUXURY SLATE DESIGN SYSTEM v4
   ============================================================ */

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  /* High-end neutral grey palette */
  --c-bg:          #1e1e1e;
  --c-bg-subtle:   #2a2a2a;
  --c-card:        rgba(24, 24, 24, 0.75);
  --c-card-h:      rgba(30, 30, 30, 0.92);
  --c-glass:       rgba(24, 24, 24, 0.9);
  --c-glass-h:     rgba(30, 30, 30, 0.97);

  --c-green:       #00e575;
  --c-green-m:     #10b981;
  --c-green-l:     #34d399;
  --c-green-d:     #047857;
  --c-cyan:        #38bdf8;
  --c-gold:        #fbbf24;
  --c-red:         #f87171;

  --c-text:        #f8fafc;
  --c-text2:       #cbd5e1;
  --c-text3:       #94a3b8;
  --c-border:      rgba(255, 255, 255, 0.12);
  --c-border-h:    rgba(0, 229, 117, 0.5);
  --c-border-g:    rgba(255, 255, 255, 0.08);

  --f-head: 'Outfit', system-ui, -apple-system, sans-serif;
  --f-body: 'Inter', system-ui, -apple-system, sans-serif;

  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   18px;
  --r-xl:   24px;
  --r-pill: 9999px;

  --nav-h:      46px;   /* navbar height */
  --urgency-h:  26px;   /* super thin urgency bar */
  --top-offset: calc(var(--nav-h) + var(--urgency-h));

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t1: .16s;
  --t2: .3s;

  --sh-card:  0 20px 40px -15px rgba(0, 0, 0, 0.55);
  --sh-green: 0 0 28px rgba(0, 229, 117, 0.16);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  background-color: var(--c-bg);
  overscroll-behavior-y: none;
}
body {
  font-family: var(--f-body);
  background: var(--c-bg);
  color: var(--c-text);
  min-height: 100dvh;
  overflow-x: hidden;
  padding-top: var(--top-offset);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: var(--f-body); cursor: pointer; border: none; background: none; }

/* ── Ambient Background Layer ─────────────────────────────── */
.bg-layer {
  position: fixed; inset: -50px; pointer-events: none; z-index: 0; overflow: hidden;
  background:
    radial-gradient(ellipse 75% 45% at 75% -8%, rgba(16, 185, 129, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at -10% 45%, rgba(56, 189, 248, 0.06) 0%, transparent 55%);
  background-color: var(--c-bg);
}
.bg-grid {
  position: fixed; inset: -50px; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* ── Container ────────────────────────────────────────────── */
.container {
  width: 100%; max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  position: relative; z-index: 1;
}

/* ── Typography helpers ───────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--f-head); letter-spacing: -0.025em; line-height: 1.15; color: #fff; }
h1 { font-size: clamp(2rem, 4.6vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.65rem, 3.2vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); font-weight: 700; }
p  { color: var(--c-text2); font-size: 1rem; line-height: 1.65; }

.grad {
  background: linear-gradient(135deg, #ffffff 40%, var(--c-green) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.grad-g {
  background: linear-gradient(135deg, var(--c-green), var(--c-cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* ================================================================
   FIXED HEADER (NAVBAR) — Green #045534 theme
   ================================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 200;
  background: linear-gradient(135deg, #045534 0%, #022c1b 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--t2) var(--ease), box-shadow var(--t2) var(--ease);
}
.site-header.solid {
  background: linear-gradient(135deg, #045534 0%, #011f12 100%);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  border-bottom-color: rgba(0, 229, 117, 0.18);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 1rem;
}

/* Brand */
.brand {
  display: flex; align-items: center; gap: 0.65rem;
  min-width: 0; flex: 0 1 auto;
}
.brand-img {
  height: 32px; width: 32px;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform var(--t2) var(--ease);
}
.brand:hover .brand-img { transform: scale(1.04); }
.brand-words { min-width: 0; }
.brand-name {
  font-family: var(--f-head); font-size: 1rem; font-weight: 800;
  letter-spacing: 0.04em; color: #fff; line-height: 1.1; white-space: nowrap;
}
.brand-name em { color: var(--c-green); font-style: normal; }
.brand-sub {
  font-size: 0.55rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45); margin-top: 2px; white-space: nowrap;
}

/* Desktop Nav */
.main-nav { display: flex; align-items: center; gap: 0.25rem; }

.nav-item {
  position: relative;
}

.nav-a {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.86rem; font-weight: 500; color: rgba(255, 255, 255, 0.82);
  padding: 0.45rem 0.75rem; border-radius: var(--r-sm); white-space: nowrap;
  transition: color var(--t1), background var(--t1);
  text-decoration: none;
}
.nav-a:hover, .nav-a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.has-dropdown:hover .nav-a,
.has-dropdown:focus-within .nav-a {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.nav-chevron {
  flex-shrink: 0; opacity: 0.6;
  transition: transform var(--t2) var(--ease);
}
.has-dropdown:hover .nav-chevron,
.has-dropdown:focus-within .nav-chevron {
  transform: rotate(180deg); opacity: 1;
}

/* ── DROPDOWN MENU ─────────────────────────────────── */
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 240px;
  background: #0b1c14;
  border: 1px solid rgba(0, 229, 117, 0.18);
  border-radius: var(--r-lg);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255,255,255,0.04);
  padding: 0.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity var(--t2) var(--ease), transform var(--t2) var(--ease);
  z-index: 500;
}
/* small triangle pointer */
.nav-dropdown::before {
  content: '';
  position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  width: 12px; height: 6px;
  background: #0b1c14;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  border-top: none;
}
/* invisible hover bridge to prevent menu from closing when mouse crosses the gap */
.nav-dropdown::after {
  content: '';
  position: absolute; top: -12px; left: 0; right: 0; height: 12px;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dd-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.6rem 0.75rem; border-radius: var(--r-md);
  text-decoration: none; color: rgba(255,255,255,0.8);
  transition: background var(--t1), color var(--t1);
}
.dd-item:hover {
  background: rgba(0, 229, 117, 0.1);
  color: #fff;
}
.dd-icon {
  font-size: 1.1rem; width: 30px; height: 30px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05); border-radius: var(--r-sm);
  transition: background var(--t1);
}
.dd-item:hover .dd-icon { background: rgba(0, 229, 117, 0.15); }
.dd-text { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.dd-text strong { font-size: 0.84rem; font-weight: 600; color: #fff; font-family: var(--f-head); }
.dd-text small { font-size: 0.72rem; color: rgba(255,255,255,0.45); }
.dd-item:hover .dd-text small { color: rgba(0, 229, 117, 0.75); }

/* ── SEPARATOR line in long dropdown ───────────────── */
.dd-item + .dd-item { border-top: 1px solid rgba(255,255,255,0.04); }

/* Header Right */
.header-right {
  display: flex; align-items: center; gap: 0.65rem; flex-shrink: 0;
}

/* Hamburger button */
.ham {
  display: none;
  flex-direction: column; justify-content: center; align-items: center; gap: 4px;
  width: 32px; height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--r-sm);
  padding: 6px; cursor: pointer; flex-shrink: 0;
  transition: background var(--t1), border-color var(--t1);
}
.ham:hover {
  background: rgba(0, 229, 117, 0.2);
  border-color: rgba(0, 229, 117, 0.5);
}
.ham span {
  display: block; height: 2px; width: 100%; background: #ffffff;
  border-radius: 2px; transition: transform var(--t1) var(--ease), opacity var(--t1);
  transform-origin: center;
}
.ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================================
   URGENCY BAR — complementa el navbar verde
   ================================================================ */
.urgency-bar {
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  height: var(--urgency-h);
  z-index: 190;
  background: rgba(2, 44, 24, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 229, 117, 0.12);
  display: flex; align-items: center; justify-content: center;
}
.urgency-link-bar {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  height: 100%; width: 100%; text-decoration: none;
  padding: 0 1rem;
  transition: opacity var(--t1);
}
.urgency-link-bar:hover { opacity: 0.82; }

.urgency-dot {
  position: relative; width: 6px; height: 6px;
  background: #f97316; border-radius: 50%;
  box-shadow: 0 0 8px #f97316; flex-shrink: 0;
}
.urgency-dot::after {
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  border: 1px solid #f97316; opacity: 0.8;
  animation: pulse 1.8s infinite;
}
@keyframes pulse { 0% { transform: scale(0.5); opacity: 0.9; } 100% { transform: scale(2.2); opacity: 0; } }

.urgency-text {
  font-family: var(--f-head);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(249, 115, 22, 0.95);
  white-space: nowrap;
}
.urgency-arrow {
  color: rgba(249, 115, 22, 0.7); transition: transform var(--t1); flex-shrink: 0;
}
.urgency-link-bar:hover .urgency-arrow { transform: translateX(3px); }

/* ================================================================
   MOBILE DRAWER
   ================================================================ */
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
  z-index: 300; opacity: 0; pointer-events: none;
  transition: opacity var(--t2) var(--ease);
}
.drawer-backdrop.show { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed; top: 0; right: -100%; bottom: 0; width: min(320px, 86vw);
  background: linear-gradient(135deg, #045534 0%, #011f12 100%); border-left: 1px solid var(--c-border);
  z-index: 310; padding: 1.5rem;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: -16px 0 48px rgba(0, 0, 0, 0.65);
  transition: right var(--t2) var(--ease);
}
.drawer.show { right: 0; }

.drawer-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--c-border-g);
}
.drawer-brand {
  display: flex; align-items: center; gap: 0.6rem;
}
.drawer-logo {
  height: 36px; width: 36px;
  object-fit: cover; flex-shrink: 0;
}
.drawer-close {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--c-border-g);
  color: #fff; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; line-height: 1; padding-bottom: 2px;
  cursor: pointer;
}
.drawer-nav { display: flex; flex-direction: column; gap: 0.9rem; }
.drawer-nav a {
  font-size: 1rem; font-weight: 600; color: var(--c-text);
  padding: 0.5rem 0; display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--c-border-g);
  opacity: 0; transform: translateX(15px);
}
.drawer-nav a:hover { color: var(--c-green); }
.drawer-nav a:last-child { border: none; }

/* Tween staggered animations for drawer items */
.drawer.show .drawer-nav a { animation: slideFadeIn 0.4s forwards var(--ease); }
.drawer.show .drawer-nav a:nth-child(1) { animation-delay: 0.1s; }
.drawer.show .drawer-nav a:nth-child(2) { animation-delay: 0.15s; }
.drawer.show .drawer-nav a:nth-child(3) { animation-delay: 0.2s; }
.drawer.show .drawer-nav a:nth-child(4) { animation-delay: 0.25s; }
.drawer.show .drawer-nav a:nth-child(5) { animation-delay: 0.3s; }

.drawer-footer { 
  display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem;
  opacity: 0; transform: translateY(15px);
}
.drawer.show .drawer-footer {
  animation: slideFadeInUp 0.4s forwards var(--ease);
  animation-delay: 0.4s;
}

@keyframes slideFadeIn { to { opacity: 1; transform: translateX(0); } }
@keyframes slideFadeInUp { to { opacity: 1; transform: translateY(0); } }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.75rem 1.45rem; border-radius: var(--r-pill);
  font-family: var(--f-head); font-size: 0.92rem; font-weight: 600;
  border: 1px solid transparent; cursor: pointer;
  transition: all var(--t2) var(--ease); text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--c-green), #059669);
  color: #03130a; font-weight: 700;
  box-shadow: 0 4px 18px rgba(0, 229, 117, 0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0, 229, 117, 0.45); }

.btn-outline {
  background: rgba(255, 255, 255, 0.03); color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
}
.btn-outline:hover { border-color: var(--c-green); color: var(--c-green); transform: translateY(-2px); }

.btn-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff; font-weight: 700;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45); }

.btn-sm { padding: 0.4rem 0.9rem; font-size: 0.78rem; }
.btn-lg { padding: 0.9rem 1.85rem; font-size: 0.98rem; }
.btn-block { width: 100%; justify-content: center; }

/* ================================================================
   SECTION HELPERS
   ================================================================ */
.section { padding: 5rem 0; position: relative; }
.section-tag {
  display: inline-block; font-family: var(--f-head); font-size: 0.72rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--c-green); padding: 0.28rem 0.8rem;
  background: rgba(0, 229, 117, 0.08); border: 1px solid rgba(0, 229, 117, 0.22);
  border-radius: var(--r-pill); margin-bottom: 0.75rem;
}
.section-head { text-align: center; max-width: 700px; margin: 0 auto 3.2rem; }
.section-head h2 { margin-bottom: 0.75rem; }
.section-head p { font-size: 1.02rem; }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  padding: 3.5rem 0 4.5rem;
  position: relative; overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem; align-items: center;
}

/* Left col */
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-bottom: 1.2rem; }
.badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.32rem 0.85rem; border-radius: var(--r-pill);
  font-size: 0.78rem; font-weight: 600;
}
.badge-stars {
  background: rgba(251, 191, 36, 0.08); border: 1px solid rgba(251, 191, 36, 0.25);
  color: #fcd34d;
}
.badge-cert {
  background: rgba(56, 189, 248, 0.08); border: 1px solid rgba(56, 189, 248, 0.25);
  color: var(--c-cyan);
}
.hero h1 { margin-bottom: 0.95rem; }
.hero-slogan {
  font-size: 1.15rem; font-style: italic; color: #fff;
  margin-bottom: 0.95rem; font-weight: 500;
}
.hero-slogan em { color: var(--c-green); font-style: normal; }
.hero-desc { margin-bottom: 1.85rem; line-height: 1.65; max-width: 550px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 2.2rem; }

/* Stats */
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; padding-top: 1.5rem;
  border-top: 1px solid var(--c-border);
}
.stat-val {
  font-family: var(--f-head); font-size: 1.75rem; font-weight: 800;
  color: #fff; line-height: 1;
}
.stat-val em { color: var(--c-green); font-style: normal; }
.stat-lbl { font-size: 0.72rem; color: var(--c-text3); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.3rem; }

/* Right col — showcase card */
.hero-visual { position: relative; width: 100%; }
.hero-card {
  border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-card);
  background: var(--c-card);
  transition: border-color var(--t2) var(--ease), box-shadow var(--t2) var(--ease);
}
.hero-card:hover { border-color: var(--c-border-h); box-shadow: var(--sh-card), var(--sh-green); }
.hero-img-wrap { height: 310px; overflow: hidden; position: relative; }
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.hero-card:hover .hero-img-wrap img { transform: scale(1.03); }
.hero-img-grad { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(14, 19, 24, 0.95)); }

.hero-card-body { padding: 1.35rem 1.5rem; background: rgba(17, 23, 30, 0.92); }
.card-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.45rem; }
.card-tag {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem; border-radius: var(--r-pill);
  background: rgba(0, 229, 117, 0.1); color: var(--c-green);
  border: 1px solid rgba(0, 229, 117, 0.22);
}
.card-loc { font-size: 0.76rem; color: var(--c-text2); }
.hero-card-body h3 { font-size: 1.15rem; margin-bottom: 0.25rem; }
.hero-card-body p { font-size: 0.84rem; color: var(--c-text2); margin: 0; }

/* Floating chips on hero */
.float-badge {
  position: absolute; display: flex; align-items: center; gap: 0.55rem;
  padding: 0.45rem 0.9rem; border-radius: var(--r-pill);
  background: rgba(17, 23, 30, 0.9); backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 229, 117, 0.25); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
  z-index: 2;
}
.float-badge.top-left { top: 1rem; left: 1rem; }
.float-badge-icon { font-size: 0.95rem; }
.float-badge-text { font-size: 0.76rem; font-weight: 700; color: #fff; white-space: nowrap; }
.float-badge-text small { display: block; font-size: 0.66rem; color: var(--c-green); font-weight: 500; }

.float-rating {
  position: absolute; bottom: -2.2rem; right: 1rem; z-index: 3;
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.6rem 1rem; border-radius: var(--r-lg);
  background: rgba(17, 23, 30, 0.95); backdrop-filter: blur(14px);
  border: 1px solid rgba(251, 191, 36, 0.32);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
}
.rating-score { font-family: var(--f-head); font-size: 1.6rem; font-weight: 900; color: var(--c-gold); line-height: 1; }
.rating-info .stars { color: var(--c-gold); font-size: 0.78rem; letter-spacing: 1px; }
.rating-info .count { font-size: 0.68rem; color: var(--c-text2); font-weight: 600; }

/* ================================================================
   TRUST BAR
   ================================================================ */
.trust-bar {
  padding: 1.6rem 0;
  border-top: 1px solid var(--c-border-g);
  border-bottom: 1px solid var(--c-border-g);
  background: rgba(19, 25, 32, 0.6);
}
.trust-grid {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-around; gap: 1.5rem;
}
.trust-item { display: flex; align-items: center; gap: 0.7rem; }
.trust-icon {
  width: 40px; height: 40px; border-radius: var(--r-md);
  background: rgba(16, 185, 129, 0.08); border: 1px solid rgba(16, 185, 129, 0.18);
  display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
  flex-shrink: 0;
}
.trust-text h4 { font-size: 0.88rem; color: #fff; line-height: 1.2; }
.trust-text p { font-size: 0.72rem; color: var(--c-text2); margin: 0; }

/* ================================================================
   SERVICES GRID
   ================================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.35rem;
}
.srv-card {
  background: var(--c-card); backdrop-filter: blur(14px);
  border: 1px solid var(--c-border); border-radius: var(--r-xl);
  padding: 1.7rem; display: flex; flex-direction: column;
  transition: all var(--t2) var(--ease); position: relative; overflow: hidden;
}
.srv-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-green), transparent);
  opacity: 0; transition: opacity var(--t2);
}
.srv-card:hover {
  transform: translateY(-4px); border-color: var(--c-border-h);
  box-shadow: var(--sh-card), var(--sh-green); background: var(--c-card-h);
}
.srv-card:hover::after { opacity: 1; }
.srv-card.feat {
  border-color: rgba(0, 229, 117, 0.25);
  background: linear-gradient(150deg, rgba(23, 33, 44, 0.85), rgba(16, 23, 30, 0.95));
}
.srv-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.15rem; }
.srv-icon {
  width: 48px; height: 48px; border-radius: var(--r-md);
  background: rgba(0, 229, 117, 0.08); border: 1px solid rgba(0, 229, 117, 0.18);
  display: flex; align-items: center; justify-content: center; font-size: 1.45rem;
  transition: transform var(--t2) var(--ease); flex-shrink: 0;
}
.srv-card:hover .srv-icon { transform: scale(1.08) rotate(3deg); }
.srv-chip {
  font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.2rem 0.55rem; border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.04); color: var(--c-text2);
  border: 1px solid var(--c-border-g); white-space: nowrap;
}
.srv-chip.hot { background: rgba(248, 113, 113, 0.12); color: #f87171; border-color: rgba(248, 113, 113, 0.25); }
.srv-card h3 { font-size: 1.18rem; margin-bottom: 0.5rem; }
.srv-card > p { font-size: 0.88rem; margin-bottom: 1.15rem; line-height: 1.55; }
.srv-list {
  list-style: none; display: flex; flex-direction: column; gap: 0.45rem;
  margin-bottom: 1.35rem; padding-top: 0.85rem;
  border-top: 1px solid var(--c-border-g);
}
.srv-list li {
  font-size: 0.8rem; color: var(--c-text); display: flex; align-items: center; gap: 0.45rem;
}
.srv-list li svg { color: var(--c-green); flex-shrink: 0; }
.srv-footer { margin-top: auto; }
.btn-srv { width: 100%; padding: 0.65rem 1rem; font-size: 0.84rem; }

/* ================================================================
   REVIEWS
   ================================================================ */
.reviews-summary {
  display: grid; grid-template-columns: 250px 1fr; gap: 2.5rem; align-items: center;
  background: var(--c-card); backdrop-filter: blur(16px);
  border: 1px solid var(--c-border); border-radius: var(--r-xl);
  padding: 2.2rem; box-shadow: var(--sh-card);
  max-width: 880px; margin: 0 auto 2.8rem;
}
.rating-left {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding-right: 2.5rem; border-right: 1px solid var(--c-border-g);
}
.score-big {
  font-family: var(--f-head); font-size: clamp(2.8rem, 4.5vw, 3.8rem); font-weight: 900;
  color: #fff; line-height: 1;
}
.score-big em { color: var(--c-gold); font-style: normal; font-size: 0.6em; }
.stars-lg { color: var(--c-gold); font-size: 1.25rem; letter-spacing: 3px; margin: 0.35rem 0; }
.rev-count { font-size: 0.95rem; font-weight: 700; color: var(--c-text); }
.rev-badge {
  display: inline-flex; align-items: center; gap: 0.35rem; margin-top: 0.75rem;
  font-size: 0.72rem; color: var(--c-green-l);
  background: rgba(16, 185, 129, 0.08); padding: 0.25rem 0.65rem; border-radius: var(--r-pill);
}
.bars { display: flex; flex-direction: column; gap: 0.65rem; }
.bar-row { display: grid; grid-template-columns: 75px 1fr 35px; align-items: center; gap: 0.85rem; font-size: 0.8rem; }
.bar-lbl { color: var(--c-text2); font-weight: 600; }
.bar-bg { height: 7px; background: rgba(255, 255, 255, 0.06); border-radius: var(--r-pill); overflow: hidden; }
.bar-fill { height: 100%; background: linear-gradient(90deg, var(--c-gold), #f59e0b); border-radius: var(--r-pill); }
.bar-pct { color: var(--c-text); font-weight: 700; text-align: right; }

.filter-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 2rem; }
.ftab {
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--c-border-g);
  color: var(--c-text2); padding: 0.45rem 0.95rem; border-radius: var(--r-pill);
  font-size: 0.82rem; font-weight: 600; cursor: pointer; transition: all var(--t1) var(--ease);
}
.ftab:hover, .ftab.active { background: rgba(0, 229, 117, 0.12); border-color: var(--c-green); color: #fff; }

.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.25rem; }
.rev-card {
  background: var(--c-card); backdrop-filter: blur(12px);
  border: 1px solid var(--c-border); border-radius: var(--r-lg);
  padding: 1.45rem; display: flex; flex-direction: column; justify-content: space-between;
  transition: all var(--t2) var(--ease);
}
.rev-card:hover { transform: translateY(-3px); border-color: rgba(251, 191, 36, 0.3); box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35); }
.rev-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.8rem; }
.rev-meta { display: flex; align-items: center; gap: 0.65rem; }
.rev-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, #059669, #0f2b20);
  color: var(--c-green); font-weight: 700; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(0, 229, 117, 0.25); flex-shrink: 0;
}
.rev-name { font-size: 0.88rem; color: #fff; font-weight: 600; }
.rev-loc { font-size: 0.7rem; color: var(--c-text3); }
.rev-stars { color: var(--c-gold); font-size: 0.78rem; letter-spacing: 1px; }
.rev-body { font-size: 0.88rem; color: var(--c-text); line-height: 1.55; font-style: italic; margin-bottom: 0.95rem; }
.rev-foot {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.72rem; color: var(--c-text3);
  padding-top: 0.65rem; border-top: 1px solid var(--c-border-g);
}
.rev-verified { display: flex; align-items: center; gap: 0.3rem; color: var(--c-green-l); font-weight: 600; }

/* ================================================================
   CALCULATOR
   ================================================================ */
.calc-card {
  background: linear-gradient(145deg, rgba(24, 32, 42, 0.88), rgba(17, 23, 30, 0.96));
  backdrop-filter: blur(18px);
  border: 1px solid rgba(0, 229, 117, 0.22); border-radius: var(--r-xl);
  padding: 2.3rem; box-shadow: var(--sh-card), var(--sh-green);
  max-width: 1000px; width: 100%; margin: 0 auto;
  box-sizing: border-box; min-width: 0;
  overflow: hidden;
}
.calc-grid {
  display: grid; grid-template-columns: 1.25fr 1fr; gap: 2.2rem;
  width: 100%; min-width: 0; box-sizing: border-box;
}
.calc-form {
  display: flex; flex-direction: column; gap: 1.35rem;
  width: 100%; min-width: 0; box-sizing: border-box;
}
.fgroup-title {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.92rem; color: #fff; font-weight: 600; margin-bottom: 0.65rem;
}
.step-n {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--c-green); color: #031208;
  font-size: 0.72rem; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.chips { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.55rem; width: 100%; min-width: 0; }
.chip {
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--c-border-g);
  border-radius: var(--r-md); padding: 0.65rem 0.5rem;
  color: var(--c-text2); font-size: 0.8rem; font-weight: 600;
  text-align: center; cursor: pointer; transition: all var(--t1) var(--ease);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.3rem;
  min-height: 62px; min-width: 0; box-sizing: border-box;
  overflow: hidden;
}
.chip-icon { font-size: 1.15rem; }
.chip:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(0, 229, 117, 0.25); color: #fff; }
.chip.sel {
  background: rgba(0, 229, 117, 0.1); border-color: var(--c-green);
  color: var(--c-green); box-shadow: 0 0 12px rgba(0, 229, 117, 0.16);
}
.field {
  width: 100%; max-width: 100%; min-width: 0; box-sizing: border-box;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--c-border-g); border-radius: var(--r-md);
  padding: 0.7rem 0.85rem; color: #fff; font-family: var(--f-body);
  font-size: 0.85rem; transition: border-color var(--t1);
  text-overflow: ellipsis; white-space: nowrap; overflow: hidden;
}
.field:focus { outline: none; border-color: var(--c-green); background: rgba(0, 229, 117, 0.03); }
.field option { background: #121820; color: #fff; }
.fields-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
  width: 100%; min-width: 0; box-sizing: border-box;
}

.calc-summary {
  background: rgba(14, 19, 25, 0.85); border: 1px solid var(--c-border);
  border-radius: var(--r-lg); padding: 1.5rem;
  display: flex; flex-direction: column; justify-content: space-between; gap: 1.2rem;
  width: 100%; min-width: 0; box-sizing: border-box;
}
.sum-head { border-bottom: 1px solid var(--c-border-g); padding-bottom: 0.85rem; margin-bottom: 0.3rem; }
.sum-head h3 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.sum-head p { font-size: 0.76rem; color: var(--c-text3); margin: 0; }
.sum-lines { display: flex; flex-direction: column; gap: 0.5rem; width: 100%; min-width: 0; }
.sum-line {
  display: flex; justify-content: space-between; align-items: center; gap: 0.6rem;
  padding: 0.5rem 0.7rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--r-sm);
  font-size: 0.8rem; min-width: 0; box-sizing: border-box;
}
.sum-line span {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--c-text3); flex-shrink: 0;
}
.sum-line strong {
  color: #ffffff; font-weight: 600; text-align: right;
  font-size: 0.8rem; min-width: 0; word-break: break-word; white-space: normal; line-height: 1.3;
}
.sum-note {
  background: rgba(16, 185, 129, 0.06); border: 1px solid rgba(16, 185, 129, 0.16);
  border-radius: var(--r-md); padding: 0.7rem 0.8rem; font-size: 0.75rem;
  color: var(--c-text2); line-height: 1.45;
}
.sum-note strong { color: var(--c-green-l); }

/* ================================================================
   SOLAR SHOWCASE BANNER
   ================================================================ */
.solar-card {
  border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--c-border); box-shadow: var(--sh-card);
  background: var(--c-card); width: 100%; box-sizing: border-box;
}
.solar-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: stretch;
  width: 100%; min-width: 0;
}
.solar-content {
  padding: 3.2rem; display: flex; flex-direction: column; justify-content: center;
  min-width: 0; overflow: hidden; box-sizing: border-box;
}
.solar-content h2, .solar-content p { word-break: break-word; overflow-wrap: break-word; }
.solar-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin: 1.5rem 0; }
.solar-stat strong { font-size: 1.2rem; display: block; }
.solar-stat strong.g { color: var(--c-green); }
.solar-stat strong.c { color: var(--c-cyan); }
.solar-stat span { font-size: 0.78rem; color: var(--c-text2); }
.solar-img-wrap { min-height: 360px; position: relative; overflow: hidden; }
.solar-img-wrap img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

/* ================================================================
   COVERAGE / RADAR
   ================================================================ */
.coverage-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.8rem; align-items: center; }
.cov-info h2 { margin-bottom: 0.95rem; }
.cov-info p { margin-bottom: 1.5rem; }
.zone-cloud { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1.4rem; }
.zone-tag {
  font-size: 0.78rem; font-weight: 500; padding: 0.3rem 0.75rem;
  border-radius: var(--r-pill); border: 1px solid var(--c-border-g);
  color: var(--c-text); background: rgba(255, 255, 255, 0.04);
  transition: all var(--t1) var(--ease); cursor: default;
}
.zone-tag:hover { background: rgba(0, 229, 117, 0.08); border-color: var(--c-green); color: var(--c-green); transform: translateY(-1px); }
.zone-note { font-size: 0.84rem; color: var(--c-green-l); }

.radar-card {
  background: var(--c-card); backdrop-filter: blur(14px);
  border: 1px solid var(--c-border); border-radius: var(--r-xl);
  padding: 1.7rem; box-shadow: var(--sh-card);
}
.radar-wrap {
  height: 260px; border-radius: var(--r-lg);
  background: radial-gradient(circle at 50% 50%, #152720, #0c1218);
  border: 1px solid rgba(0, 229, 117, 0.16);
  position: relative; display: flex; align-items: center; justify-content: center;
  overflow: hidden; margin-bottom: 1.15rem;
}
.radar-ring {
  position: absolute; border-radius: 50%; border: 1px solid rgba(0, 229, 117, 0.16);
  animation: spin 7s linear infinite;
}
.radar-ring:nth-child(1) { width: 230px; height: 230px; }
.radar-ring:nth-child(2) { width: 150px; height: 150px; animation-duration: 5s; animation-direction: reverse; }
.radar-ring::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 50%; height: 50%;
  background: conic-gradient(from 0deg, rgba(0, 229, 117, 0.25), transparent 55%);
  transform-origin: 0 0; border-radius: 100% 0 0 0;
}
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.radar-dot {
  width: 10px; height: 10px; background: var(--c-green); border-radius: 50%;
  box-shadow: 0 0 16px var(--c-green); position: relative; z-index: 2;
}
.radar-node {
  position: absolute; font-size: 0.65rem; font-weight: 700; color: #fff;
  background: rgba(14, 20, 26, 0.92); border: 1px solid var(--c-green);
  border-radius: var(--r-pill); padding: 0.2rem 0.5rem; z-index: 3;
}
.rn-caba  { top: 42%; left: 44%; }
.rn-norte { top: 18%; left: 30%; }
.rn-oeste { top: 60%; left: 16%; }
.rn-sur   { top: 72%; left: 60%; }
.radar-caption { text-align: center; }
.radar-caption h4 { font-size: 0.92rem; margin-bottom: 0.2rem; }
.radar-caption p { font-size: 0.78rem; margin: 0; }

/* ================================================================
   FAQ
   ================================================================ */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--c-card); backdrop-filter: blur(12px);
  border: 1px solid var(--c-border); border-radius: var(--r-lg);
  overflow: hidden; transition: border-color var(--t1);
}
.faq-item.open { border-color: var(--c-border-h); }
.faq-q {
  width: 100%; padding: 1.15rem 1.4rem; background: transparent; border: none;
  color: #fff; font-family: var(--f-head); font-size: 0.98rem; font-weight: 600;
  text-align: left; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; gap: 1rem;
}
.faq-icon {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--c-border-g);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; color: var(--c-green);
  transition: transform var(--t1) var(--ease), background var(--t1);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(0, 229, 117, 0.16); }
.faq-a {
  max-height: 0; overflow: hidden; padding: 0 1.4rem;
  color: var(--c-text2); font-size: 0.9rem; line-height: 1.6;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 280px; padding-bottom: 1.25rem; }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: #080c10; border-top: 1px solid var(--c-border);
  padding: 3.8rem 0 2rem; position: relative; z-index: 10;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem; margin-bottom: 2.8rem;
}
.foot-brand p { margin: 0.9rem 0 1.2rem; font-size: 0.86rem; max-width: 280px; }
.foot-socials { display: flex; gap: 0.6rem; }
.soc {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--c-border-g);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-text); font-size: 0.95rem; transition: all var(--t1) var(--ease);
}
.soc:hover { background: var(--c-green); color: #031208; transform: translateY(-2px); box-shadow: 0 0 12px var(--c-green); }
.foot-col h4 { font-size: 0.95rem; color: #fff; margin-bottom: 1rem; }
.foot-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.foot-links a { color: var(--c-text2); font-size: 0.84rem; transition: color var(--t1), padding var(--t1); }
.foot-links a:hover { color: var(--c-green); padding-left: 3px; }
.foot-contact { display: flex; flex-direction: column; gap: 0.8rem; }
.fci { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.84rem; color: var(--c-text2); }
.fci svg { color: var(--c-green); flex-shrink: 0; margin-top: 2px; }
.fci strong { color: #fff; display: block; }
.foot-bottom {
  border-top: 1px solid var(--c-border-g); padding-top: 1.5rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
  font-size: 0.78rem; color: var(--c-text3);
}

/* ================================================================
   FLOATING WHATSAPP — Official FAB with Ambient Pulse Glow
   ================================================================ */
.wa-float {
  position: fixed;
  bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  right: 1.5rem;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  min-width: 58px;
  min-height: 58px;
  border-radius: 50%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  background: transparent;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  animation: waFloatGlow 2.8s ease-in-out infinite;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform, filter;
}

.wa-float::before,
.wa-float::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.65) 0%, rgba(37, 211, 102, 0.15) 55%, transparent 72%);
  z-index: -1;
  pointer-events: none;
  will-change: transform, opacity;
}

.wa-float::before {
  animation: waPulseRing 2.4s cubic-bezier(0.2, 0.8, 0.4, 1) infinite;
}

.wa-float::after {
  animation: waPulseRing 2.4s cubic-bezier(0.2, 0.8, 0.4, 1) 1.2s infinite;
}

.wa-float-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.wa-float:hover {
  transform: scale(1.1) translateY(-3px);
}

.wa-float:hover .wa-float-img {
  filter: drop-shadow(0 6px 18px rgba(37, 211, 102, 0.75));
}

.wa-float:active {
  transform: scale(0.92);
}

@keyframes waFloatGlow {
  0%, 100% {
    filter: drop-shadow(0 0 8px rgba(37, 211, 102, 0.5)) drop-shadow(0 0 20px rgba(37, 211, 102, 0.28));
  }
  50% {
    filter: drop-shadow(0 0 16px rgba(37, 211, 102, 0.85)) drop-shadow(0 0 32px rgba(37, 211, 102, 0.45));
  }
}

@keyframes waPulseRing {
  0% {
    transform: scale(0.85);
    opacity: 0.85;
  }
  65% {
    transform: scale(1.55);
    opacity: 0;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .hero h1, .hero-badges, .hero-ctas, .hero-stats, .hero-desc, .hero-slogan {
    text-align: center;
  }
  .hero-badges, .hero-ctas { justify-content: center; }
  .hero-stats { max-width: 480px; margin-left: auto; margin-right: auto; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-visual { max-width: 500px; margin: 0 auto; }

  .calc-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr; }
  .solar-grid { grid-template-columns: 1fr; }
  .solar-img-wrap { min-height: 250px; position: relative; }
  .solar-img-wrap img { position: relative; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .reviews-summary { grid-template-columns: 1fr; max-width: 580px; }
  .rating-left { border-right: none; border-bottom: 1px solid var(--c-border-g); padding-right: 0; padding-bottom: 1.3rem; margin-bottom: 0.5rem; }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 58px;
    --urgency-h: 25px;
    --top-offset: calc(var(--nav-h) + var(--urgency-h));
  }

  .main-nav, .header-right .btn-wa {
    display: none;
  }
  .ham {
    display: flex;
  }
  .brand {
    gap: 0.5rem;
  }
  .brand-img {
    height: 32px;
  }
  .brand-name {
    font-size: 1.05rem;
  }
  .brand-sub {
    display: none;
  }

  .hero { padding: 2rem 0 3rem; }
  .section { padding: 3.5rem 0; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .fields-row { grid-template-columns: 1fr; }
  .calc-card { padding: 1.4rem 1.1rem; }
  .calc-summary { padding: 1.25rem 1rem; }
  .wa-float {
    bottom: calc(1.15rem + env(safe-area-inset-bottom, 0px));
    right: 1.15rem;
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
  }
}

@media (max-width: 480px) {
  .hero-badges { gap: 0.4rem; }
  .badge { font-size: 0.74rem; padding: 0.28rem 0.7rem; }
  .urgency-text { font-size: 0.68rem; letter-spacing: 0.05em; }
  .hero-stats { grid-template-columns: 1fr 1fr 1fr; gap: 0.5rem; }
  .stat-val { font-size: 1.45rem; }
}

/* ================================================================
   LOADING SCREEN (4s duration) & PAGE ENTRANCE TWEENS
   ================================================================ */
html.is-loading,
body.is-loading {
  overflow: hidden !important;
  touch-action: none;
}

.loader-screen {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: radial-gradient(circle at center, #2a2a2a 0%, #1e1e1e 60%, #141414 100%);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), filter 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
}

.loader-screen.fade-out {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: scale(1.06) !important;
  filter: blur(10px) !important;
}

/* Hero & Header Entrance Tweens */
body.is-loading .site-header,
body.is-loading .urgency-bar,
body.is-loading .hero-badges,
body.is-loading .hero h1,
body.is-loading .hero-slogan,
body.is-loading .hero-desc,
body.is-loading .hero-ctas,
body.is-loading .hero-stats,
body.is-loading .hero-visual,
body.is-loading .trust-item {
  opacity: 0;
}

body.loaded .site-header,
body.loaded .urgency-bar {
  animation: navFadeDown 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
}

body.loaded .hero-badges {
  animation: heroFadeSlideUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}

body.loaded .hero h1 {
  animation: heroFadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both;
}

body.loaded .hero-slogan {
  animation: heroFadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.32s both;
}

body.loaded .hero-desc {
  animation: heroFadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.42s both;
}

body.loaded .hero-ctas {
  animation: heroFadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.52s both;
}

body.loaded .hero-stats {
  animation: heroFadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.62s both;
}

body.loaded .hero-visual {
  animation: heroFadeSlideRight 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

body.loaded .trust-item:nth-child(1) { animation: trustSlideRight 0.75s var(--ease) 0.65s both; }
body.loaded .trust-item:nth-child(2) { animation: trustSlideRight 0.75s var(--ease) 0.75s both; }
body.loaded .trust-item:nth-child(3) { animation: trustSlideLeft 0.75s var(--ease) 0.85s both; }
body.loaded .trust-item:nth-child(4) { animation: trustSlideLeft 0.75s var(--ease) 0.95s both; }

@keyframes trustSlideRight {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes trustSlideLeft {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes heroFadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeSlideRight {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes navFadeDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.loader-backdrop-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(0, 229, 117, 0.18) 0%, rgba(0, 229, 117, 0.04) 45%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: loaderGlowPulse 3s infinite ease-in-out;
}

.loader-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  z-index: 2;
  gap: 1.2rem;
}

.loader-spinner-wrapper {
  position: relative;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-ring {
  position: absolute;
  border-radius: 50%;
}

.loader-ring-outer {
  inset: 0;
  border: 2.5px solid transparent;
  border-top-color: var(--c-green, #00e575);
  border-right-color: rgba(0, 229, 117, 0.35);
  animation: loaderSpinOuter 1.4s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  box-shadow: 0 0 18px rgba(0, 229, 117, 0.28);
}

.loader-ring-inner {
  inset: 10px;
  border: 2px solid transparent;
  border-bottom-color: #38bdf8;
  border-left-color: rgba(56, 189, 248, 0.35);
  animation: loaderSpinInner 1.1s cubic-bezier(0.5, 0, 0.5, 1) infinite reverse;
}

.loader-core {
  position: relative;
  width: 66px;
  height: 66px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), inset 0 0 12px rgba(0, 229, 117, 0.15);
  animation: loaderCorePulse 2s infinite ease-in-out;
}

.loader-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0, 229, 117, 0.45));
}

.loader-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.loader-title {
  font-family: var(--f-head, 'Outfit', sans-serif);
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.8);
}

.loader-title span {
  color: var(--c-green, #00e575);
  text-shadow: 0 0 16px rgba(0, 229, 117, 0.5);
}

.loader-tagline {
  font-family: var(--f-body, 'Inter', sans-serif);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #94a3b8;
  margin: 0;
  text-transform: uppercase;
}

.loader-progress-track {
  width: 140px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  margin-top: 0.3rem;
}

.loader-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #00e575, #38bdf8);
  border-radius: 999px;
  box-shadow: 0 0 8px rgba(0, 229, 117, 0.8);
  animation: loaderProgressFill 4s cubic-bezier(0.1, 0.6, 0.2, 1) forwards;
}

@keyframes loaderSpinOuter {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes loaderSpinInner {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes loaderGlowPulse {
  0%, 100% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
}

@keyframes loaderCorePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

@keyframes loaderProgressFill {
  0% { width: 0%; }
  25% { width: 28%; }
  60% { width: 72%; }
  90% { width: 95%; }
  100% { width: 100%; }
}
