/* ===========================
   VARIABLES
   =========================== */
:root {
  --bg: #0b1f3b;
  --bg2: #0d274b;
  --card: #102d55;
  --card2: rgba(16, 45, 85, 0.72);
  --line: rgba(255, 255, 255, 0.10);
  --line2: rgba(0, 194, 184, 0.36);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --soft: rgba(255, 255, 255, 0.40);
  --teal: #00c2b8;
  --teal-light: #1addd4;
  --green: #25d366;
  --orange: #ffc24a;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --shadow-sm: 0 14px 40px rgba(0, 0, 0, 0.18);
  --radius: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --ease: 0.25s ease;
  --ease-long: 0.82s cubic-bezier(0.16, 1, 0.3, 1);
  --font-head: Poppins, sans-serif;
}

/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }

::selection {
  background: rgba(0, 194, 184, 0.28);
  color: white;
}

/* ===========================
   LAYOUT
   =========================== */
.container {
  width: min(1160px, calc(100% - 44px));
  margin-inline: auto;
}

.narrow {
  max-width: 760px;
  margin-inline: auto;
}

/* ===========================
   HEADER
   =========================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11, 31, 59, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--ease), background var(--ease);
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 194, 184, 0.5), transparent);
  opacity: 0;
  transition: opacity var(--ease);
}

.site-header.scrolled {
  background: rgba(11, 31, 59, 0.97);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.site-header.scrolled::after {
  opacity: 1;
}

.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  font-family: Poppins, sans-serif;
  font-size: 1.28rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.brand-text b { color: var(--teal); }

.desktop-nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.desktop-nav a {
  font-size: 0.84rem;
  color: var(--muted);
  padding: 9px 12px;
  border-radius: 999px;
  transition: var(--ease);
  white-space: nowrap;
}

.desktop-nav a:hover { color: white; background: rgba(255,255,255,0.08); }
.desktop-nav a.active { color: var(--teal); background: rgba(0,194,184,0.09); }

.header-btn {
  padding: 10px 20px !important;
  font-size: 0.84rem !important;
  flex-shrink: 0;
}

.menu-btn {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 10px;
  transition: background var(--ease);
}

.menu-btn:hover { background: rgba(255,255,255,0.08); }

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--ease);
}

.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  padding: 14px 22px 22px;
  background: rgba(11, 31, 59, 0.98);
  backdrop-filter: blur(20px);
}

.mobile-nav.open {
  display: grid;
  gap: 4px;
  animation: slideDown 0.22s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mobile-nav a:not(.btn) {
  padding: 13px 16px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--ease);
}

.mobile-nav a:not(.btn):hover { background: rgba(255,255,255,0.07); color: white; }
.mobile-nav .btn { margin-top: 10px; width: 100%; justify-content: center; }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 14px 26px;
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}

.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

.btn-whatsapp {
  background: #25d366;
  color: white;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.22);
}
.btn-whatsapp:hover {
  background: #20bf5a;
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.32);
}

.btn-outline {
  border: 1px solid rgba(0, 194, 184, 0.36);
  color: white;
  background: rgba(255, 255, 255, 0.03);
}
.btn-outline:hover {
  background: rgba(0, 194, 184, 0.12);
  border-color: rgba(0, 194, 184, 0.6);
}

.btn-teal {
  background: var(--teal);
  color: #06223f;
  box-shadow: 0 12px 30px rgba(0, 194, 184, 0.22);
}
.btn-teal:hover {
  background: var(--teal-light);
  box-shadow: 0 18px 40px rgba(0, 194, 184, 0.32);
}

.btn.wide { width: 100%; }
.btn.big  { padding: 18px 36px; font-size: 1rem; margin-top: 28px; }

/* ===========================
   FLOATING WHATSAPP
   =========================== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.42);
  transition: transform var(--ease), box-shadow var(--ease);
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 44px rgba(37, 211, 102, 0.55);
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 116px 0 76px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 18%, rgba(0,194,184,0.16), transparent 36%),
    radial-gradient(circle at 12% 72%, rgba(255,194,74,0.09), transparent 32%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-glow--teal {
  width: 500px;
  height: 500px;
  background: rgba(0, 194, 184, 0.18);
  top: -120px;
  right: -100px;
  animation: floatGlow 9s ease-in-out infinite;
}

.hero-glow--orange {
  width: 340px;
  height: 340px;
  background: rgba(255, 194, 74, 0.11);
  bottom: -80px;
  left: -80px;
  animation: floatGlow 11s ease-in-out infinite reverse;
}

@keyframes floatGlow {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-26px) scale(1.05); }
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  background: rgba(0, 194, 184, 0.12);
  border: 1px solid rgba(0, 194, 184, 0.28);
  color: var(--teal);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

h1, h2, h3 {
  font-family: Poppins, sans-serif;
  line-height: 1.08;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
  letter-spacing: -0.055em;
  font-weight: 900;
  margin-bottom: 22px;
}

h1 span {
  font-weight: 400;
  background: linear-gradient(90deg, var(--teal) 0%, #7effef 40%, var(--teal-light) 65%, var(--teal) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 5s linear infinite;
}

.hero-text {
  font-size: 1.06rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}

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

.legal-note {
  font-size: 0.75rem;
  color: var(--soft);
  margin-top: 20px;
  font-style: italic;
  max-width: 460px;
}

.hero-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 14px;
  transition: transform 0.14s ease, box-shadow 0.14s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.image-card {
  height: 480px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: #071b34;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.02);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(11, 31, 59, 0.75) 0%,
    rgba(11, 31, 59, 0.08) 50%,
    rgba(11, 31, 59, 0.22) 100%
  );
}

.floating-logo {
  position: absolute;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
  font-family: Poppins, sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  letter-spacing: 0.45em;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5), 0 0 60px rgba(0,194,184,0.3);
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.mini-stats div {
  background: rgba(0, 194, 184, 0.09);
  border: 1px solid rgba(0, 194, 184, 0.18);
  border-radius: 14px;
  padding: 14px 10px;
  text-align: center;
  transition: var(--ease);
}

.mini-stats div:hover {
  background: rgba(0, 194, 184, 0.15);
  border-color: rgba(0, 194, 184, 0.32);
}

.mini-stats span {
  display: block;
  color: var(--soft);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
}

.mini-stats strong {
  font-family: Poppins, sans-serif;
  font-size: 0.87rem;
  color: white;
}

/* ===========================
   SECTIONS BASE
   =========================== */
.section { padding: 110px 0; }
.section-alt { background: var(--bg2); }

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.section-head .eyebrow { margin-inline: auto; }

h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  letter-spacing: -0.045em;
  font-weight: 800;
}

.section-head h2 {
  max-width: 820px;
  margin-inline: auto;
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 14px auto 0;
  line-height: 1.65;
}

.cards-grid { display: grid; gap: 18px; }
.cards-grid.four  { grid-template-columns: repeat(4, 1fr); }
.cards-grid.three { grid-template-columns: repeat(3, 1fr); }

/* ===========================
   DIAGNÓSTICO CARDS
   =========================== */
.info-card {
  border: 1px solid var(--line);
  background: var(--card2);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 30px 24px;
  position: relative;
  overflow: hidden;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: var(--line2);
  box-shadow: 0 22px 50px rgba(0,0,0,0.26);
}

.info-card .icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(0, 194, 184, 0.12);
  border: 1px solid rgba(0, 194, 184, 0.2);
  color: var(--teal);
  font-family: Poppins, sans-serif;
  font-weight: 900;
  font-size: 0.76rem;
  margin-bottom: 20px;
}

.info-card h3 { font-size: 1rem; margin-bottom: 10px; }
.info-card p  { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

.result-card {
  margin-top: 28px;
  padding: 26px 30px;
  border: 1px solid var(--line2);
  border-radius: var(--radius-md);
  background: rgba(0, 194, 184, 0.09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow-sm);
}

.result-card p {
  font-weight: 700;
  font-size: 1rem;
  max-width: 480px;
}

/* ===========================
   BENEFITS — GLASSMORPHISM
   =========================== */
.benefits-section {
  position: relative;
  overflow: hidden;
}

.blur-bg {
  position: absolute;
  inset: 0;
  background: url('tributta-bg.png') center / cover no-repeat;
  filter: blur(18px) brightness(0.28) saturate(1.2);
  transform: scale(1.08);
}

.benefits-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 31, 59, 0.72) 0%,
    rgba(11, 31, 59, 0.88) 100%
  );
}

.content-over {
  position: relative;
  z-index: 1;
}

.glass-card {
  border: 1px solid var(--line);
  background: rgba(11, 31, 59, 0.68);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: transform var(--ease), border-color var(--ease), background var(--ease);
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: var(--line2);
  background: rgba(11, 31, 59, 0.82);
}

.glass-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: rgba(0, 194, 184, 0.12);
  border: 1px solid rgba(0, 194, 184, 0.22);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--teal);
}

.glass-icon svg { width: 20px; height: 20px; }

.glass-card h3 { font-size: 1rem; margin-bottom: 10px; }
.glass-card p  { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* ===========================
   COMPARISON
   =========================== */
.comparison {
  max-width: 900px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
}

.compare-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  position: relative;
}

.compare-vs::before {
  content: '';
  position: absolute;
  top: 20px; bottom: 20px;
  width: 1px;
  background: var(--line);
}

.compare-vs span {
  background: var(--bg2);
  color: var(--soft);
  font-family: Poppins, sans-serif;
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  position: relative;
  z-index: 1;
}

.compare-card {
  border: 1px solid var(--line);
  background: var(--card2);
  box-shadow: var(--shadow-sm);
  padding: 38px 32px;
  position: relative;
}

.compare-card.muted {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  border-right: none;
}

.compare-card.featured {
  background: linear-gradient(145deg, rgba(0,194,184,0.14), rgba(16,45,85,0.72));
  border-color: var(--line2);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  border-left: none;
}

.tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #06223f;
  border-radius: 999px;
  padding: 5px 16px;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.compare-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}

.compare-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 900;
  flex-shrink: 0;
}

.compare-icon--muted  { background: rgba(255,255,255,0.06); color: var(--soft); }
.compare-icon--teal   { background: rgba(0,194,184,0.14);   color: var(--teal); }

.compare-card h3 { font-size: 1.1rem; }

.compare-card ul {
  list-style: none;
  display: grid;
  gap: 14px;
}

.compare-card li {
  color: var(--muted);
  display: flex;
  gap: 10px;
  font-size: 0.92rem;
  align-items: flex-start;
}

.compare-card li::before {
  content: "+";
  color: var(--teal);
  font-weight: 900;
  flex-shrink: 0;
}

.compare-card.muted li::before {
  content: "—";
  color: var(--soft);
}

.small-center {
  text-align: center;
  max-width: 640px;
  margin: 28px auto 0;
  color: var(--soft);
  font-size: 0.8rem;
  font-style: italic;
}

/* ===========================
   SIMULATOR
   =========================== */
.sim-savings {
  text-align: center;
  background: linear-gradient(135deg, rgba(0,212,172,0.12) 0%, rgba(0,212,172,0.05) 100%);
  border: 2px solid rgba(0,212,172,0.45);
  border-radius: var(--radius);
  padding: 44px 32px 36px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  animation: savingsBorderPulse 2.8s ease-in-out infinite;
}
.sim-savings::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(0,212,172,0.18), transparent 70%);
  pointer-events: none;
}
.sim-savings-label {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.sim-savings-amount {
  font-family: var(--font-head);
  font-size: clamp(4.5rem, 14vw, 8rem);
  font-weight: 900;
  line-height: 1;
  color: var(--teal);
  letter-spacing: -0.02em;
  text-shadow: 0 0 60px rgba(0,212,172,0.5);
  margin-bottom: 4px;
}
.sim-savings-unit {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  vertical-align: super;
  margin-left: 6px;
  color: rgba(0,212,172,0.85);
}
.sim-savings-note {
  font-size: 0.75rem;
  color: var(--soft);
  margin-top: 14px;
  letter-spacing: 0.02em;
}

.sim-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(16,45,85,0.95), rgba(13,39,75,0.88));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 38px;
}

.sim-label {
  text-align: center;
  color: var(--soft);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  margin-bottom: 26px;
}

.sim-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 22px;
}

.sim-numbers div {
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}

.sim-numbers span {
  display: block;
  color: var(--soft);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 8px;
}

.sim-numbers strong {
  font-family: Poppins, sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
}

.teal { color: var(--teal) !important; }

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.pill-row span {
  border: 1px solid rgba(0,194,184,0.26);
  background: rgba(0,194,184,0.09);
  color: var(--muted);
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
}

.progress-group {
  display: grid;
  gap: 18px;
  margin-bottom: 30px;
}

.progress-top {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.progress-top b { color: var(--teal); }

.progress-bar {
  height: 8px;
  background: rgba(255,255,255,0.10);
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), #3df2cf, var(--teal));
  background-size: 200% 100%;
  border-radius: 999px;
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  animation: progressShimmer 2.4s ease-in-out infinite;
}

/* ===========================
   STEPS — MÉTODO
   =========================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,194,184,0.45), transparent);
}

.step-card {
  padding: 0 22px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0,194,184,0.1);
  border: 1px solid rgba(0,194,184,0.3);
  color: var(--teal);
  font-family: Poppins, sans-serif;
  font-size: 0.85rem;
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  transition: var(--ease);
}

.step-card:hover .step-num {
  background: rgba(0,194,184,0.2);
  border-color: var(--teal);
  box-shadow: 0 0 26px rgba(0,194,184,0.28);
}

.step-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.step-card p  { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* ===========================
   QUOTES
   =========================== */
.quotes-section { background: var(--bg2); }

.quote-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.quote-card {
  border: 1px solid var(--line);
  background: var(--card2);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 38px 26px 32px;
  font-family: Poppins, sans-serif;
  color: var(--muted);
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--ease), border-color var(--ease);
}

.quote-card:hover {
  transform: translateY(-4px);
  border-color: var(--line2);
}

.quote-mark {
  position: absolute;
  top: 8px;
  left: 18px;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(0,194,184,0.13);
  pointer-events: none;
  user-select: none;
}

.quote-card p { position: relative; z-index: 1; line-height: 1.55; }
.quote-card b { color: white; }

.quote-card.accent { border-color: rgba(255,194,74,0.22); }
.quote-card.accent .quote-mark { color: rgba(255,194,74,0.13); }

.quote-card.teal { border-color: rgba(0,194,184,0.36); background: rgba(0,194,184,0.08); }
.quote-card.teal b { color: var(--teal); }
.quote-card.teal .quote-mark { color: rgba(0,194,184,0.22); }

/* ===========================
   LOCATION
   =========================== */
.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.location-grid h2 { margin-bottom: 28px; }

.address-box {
  border: 1px solid var(--line);
  background: var(--card2);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  margin-bottom: 26px;
}

.address-box h3 {
  font-size: 1.08rem;
  margin-bottom: 12px;
  color: var(--teal);
}

.address-box p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }

.phone {
  margin-top: 16px !important;
  color: white !important;
  font-weight: 700;
  font-size: 1rem !important;
}

.map-card {
  height: 380px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #081b34, #102d55);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,194,184,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,194,184,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
}

.map-streets { position: absolute; inset: 0; }

.map-street { position: absolute; background: rgba(0,194,184,0.11); }
.map-street.horizontal { left: 0; right: 0; height: 10px; }
.map-street.vertical   { top: 0; bottom: 0; width: 10px; }

.map-building {
  position: absolute;
  top: 38%;
  left: 34%;
  width: 52px;
  height: 52px;
  background: rgba(0,194,184,0.14);
  border: 1px solid rgba(0,194,184,0.3);
  border-radius: 6px;
  transform: translate(-50%, -50%);
}

.pin {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50% 50% 50% 0;
  background: var(--teal);
  transform: rotate(-45deg);
  box-shadow: 0 0 0 16px rgba(0,194,184,0.12), 0 0 50px rgba(0,194,184,0.5);
  animation: pinPulse 2.4s ease-in-out infinite;
}

@keyframes pinPulse {
  0%, 100% { box-shadow: 0 0 0 16px rgba(0,194,184,0.12), 0 0 50px rgba(0,194,184,0.45); }
  50%       { box-shadow: 0 0 0 26px rgba(0,194,184,0.06), 0 0 70px rgba(0,194,184,0.7); }
}

.pin::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: white;
  left: 16px;
  top: 16px;
}

.map-label {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.82rem;
  white-space: nowrap;
  background: rgba(11,31,59,0.82);
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

/* ===========================
   FAQ
   =========================== */
.faq-list { display: grid; gap: 10px; }

.faq-item {
  border: 1px solid var(--line);
  background: var(--card2);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--ease);
}

.faq-item.active,
.faq-item:hover { border-color: var(--line2); }

.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  color: white;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: left;
}

.faq-toggle {
  color: var(--teal);
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--ease);
}

.faq-item.active .faq-toggle { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.36s ease;
}

.faq-answer p {
  padding: 0 26px 24px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ===========================
   CTA FINAL
   =========================== */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(0,194,184,0.2), transparent 42%),
    var(--bg2);
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-section .eyebrow { margin-inline: auto; }

.cta-sub {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 18px auto 0;
  max-width: 580px;
  line-height: 1.7;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  padding: 48px 0 32px;
  background: #07182e;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}

.footer-brand h3 {
  font-family: Poppins, sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  font-weight: 900;
  color: white;
  margin-bottom: 6px;
}

.footer-brand p { color: var(--muted); font-size: 0.85rem; letter-spacing: 0.06em; }

.footer-contact p { color: var(--muted); font-size: 0.88rem; line-height: 1.85; }

.footer-legal {
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding-top: 20px;
  color: var(--soft);
  font-size: 0.76rem;
  line-height: 1.6;
}

/* ===========================
   REVEAL ANIMATIONS
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.82s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.82s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.14s; }

/* ===========================
   SCROLL PROGRESS BAR
   =========================== */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), #7effef, var(--teal-light));
  box-shadow: 0 0 14px rgba(0,194,184,0.75);
  z-index: 2001;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ===========================
   CUSTOM CURSOR
   =========================== */
.cursor-dot {
  position: fixed;
  width: 7px; height: 7px;
  background: var(--teal);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  display: none;
  mix-blend-mode: normal;
}

.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(0,194,184,0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  display: none;
  transition: width 0.22s ease, height 0.22s ease, border-color 0.22s ease, opacity 0.22s;
}

.cursor-ring.cursor-hover {
  width: 56px; height: 56px;
  border-color: rgba(0,194,184,0.95);
  background: rgba(0,194,184,0.06);
}

@media (pointer: fine) {
  html, html * { cursor: none !important; }
  .cursor-dot, .cursor-ring { display: block; }
}

/* ===========================
   CARD CURSOR GLOW
   =========================== */
.info-card::after,
.glass-card::after,
.quote-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle 220px at var(--gx, -999px) var(--gy, -999px),
    rgba(0,194,184,0.12),
    transparent 72%
  );
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.35s;
  border-radius: inherit;
}

.info-card:hover::after,
.glass-card:hover::after,
.quote-card:hover::after { opacity: 1; }

.info-card > *,
.glass-card > *,
.quote-card > * { position: relative; z-index: 1; }

/* ===========================
   BUTTON SHINE SWEEP
   =========================== */
.btn { position: relative; overflow: hidden; }

.btn::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: translateX(-160%);
  transition: none;
  pointer-events: none;
}

.btn:hover::after {
  transform: translateX(300%);
  transition: transform 0.55s ease;
}

/* ===========================
   KEYFRAMES
   =========================== */
@keyframes gradientFlow {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@keyframes savingsBorderPulse {
  0%, 100% {
    border-color: rgba(0,212,172,0.38);
    box-shadow: 0 0 28px rgba(0,212,172,0.07), inset 0 0 28px rgba(0,212,172,0.03);
  }
  50% {
    border-color: rgba(0,212,172,0.92);
    box-shadow: 0 0 65px rgba(0,212,172,0.35), inset 0 0 55px rgba(0,212,172,0.08);
  }
}

@keyframes progressShimmer {
  0%, 100% { background-position: 0% center; }
  50%       { background-position: 200% center; }
}

/* ===========================
   RESPONSIVE — Tablet ≤980px
   =========================== */
@media (max-width: 980px) {
  .desktop-nav,
  .header-btn { display: none; }

  .menu-btn { display: flex; }

  .hero { min-height: auto; padding: 108px 0 62px; }

  .hero-grid,
  .location-grid { grid-template-columns: 1fr; }

  .image-card { height: 420px; }

  .cards-grid.four,
  .cards-grid.three,
  .quote-grid { grid-template-columns: repeat(2, 1fr); }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .steps-grid::before { display: none; }

  .step-card {
    text-align: left;
    padding: 28px 24px;
    border: 1px solid var(--line);
    background: var(--card2);
    border-radius: var(--radius-md);
  }

  .step-num { margin-bottom: 16px; }

  .comparison {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .compare-vs { display: none; }

  .compare-card.muted {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    border-right: 1px solid var(--line);
    border-bottom: none;
  }

  .compare-card.featured {
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    border-left: 1px solid var(--line2);
    border-top: 1px solid var(--line2);
  }

  .footer-inner { flex-direction: column; gap: 20px; }

  .floating-logo { letter-spacing: 0.3em; }

  .wa-float .wa-label { display: none; }
  .wa-float {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
  }
}

/* ===========================
   RESPONSIVE — Mobile ≤640px
   =========================== */
@media (max-width: 640px) {
  .container { width: calc(100% - 32px); }

  .header-inner { height: 64px; }
  .brand-logo { height: 28px; }
  .brand-text { font-size: 1.05rem; }

  .hero { padding: 102px 0 56px; }

  h1 { font-size: 2.7rem; }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .image-card { height: 340px; }

  .mini-stats span  { font-size: 0.62rem; }
  .mini-stats strong { font-size: 0.8rem; }

  .cards-grid.four,
  .cards-grid.three,
  .quote-grid,
  .steps-grid { grid-template-columns: 1fr; }

  .section { padding: 80px 0; }

  .result-card { flex-direction: column; align-items: stretch; }
  .result-card .btn { width: 100%; justify-content: center; }

  .sim-card { padding: 26px 22px; }
  .sim-numbers { grid-template-columns: 1fr; }

  .comparison { max-width: 100%; }
  .map-card { height: 300px; }

  .floating-logo { font-size: 1.3rem; letter-spacing: 0.22em; }

  .btn.big { width: 100%; justify-content: center; }
  .footer-legal { font-size: 0.72rem; }
}
