/* ===== Tokens & Design System ===== */
:root {
  --cream: #090b10;
  --cream-2: #12151e;
  --ink: #ffffff;
  --ink-soft: #f0f2f8;
  --blue: #1552f0;
  --blue-dark: #0b3ac2;
  --blue-light: #00d2ff;
  --cyan: #00f0ff;
  --grey-line: rgba(255, 255, 255, 0.1);
  --grey-line-2: rgba(255, 255, 255, 0.18);
  --text-mid: #a3a9bd;
  --text-soft: #c4c9da;
  --text-faint: #787f95;
  --whatsapp: #25D366;
  --glass-bg: rgba(18, 21, 30, 0.85);
  --glass-border: rgba(255, 255, 255, 0.14);
  --glass-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}
body.menu-open {
  overflow: hidden !important;
  touch-action: none;
}
body.menu-open .float-whatsapp {
  z-index: 30;
}

/* Background Glowing Mesh Gradients */
body::before {
  content: '';
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 120vw;
  height: 800px;
  background: radial-gradient(circle, rgba(21, 82, 240, 0.15) 0%, rgba(0, 240, 255, 0.08) 35%, rgba(9, 11, 16, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; display: block; }
a { color: var(--blue-light); text-decoration: none; transition: all .25s ease; }
a:hover { color: var(--cyan); }
::selection { background: var(--blue); color: #fff; }

/* Modern Sleek Futuristic Typography */
.serif, h1, h2, h3, .heading-syne {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  letter-spacing: -.02em;
}
em {
  font-style: normal;
  background: linear-gradient(135deg, #00f0ff 0%, #1552f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
}

/* Full Width Screen Wrapper */
.wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

/* ===== PROMO BAR (Top Urgent Banner) ===== */
.promo-bar {
  background: linear-gradient(90deg, #07090e 0%, #1552f0 50%, #07090e 100%);
  color: #ffffff;
  padding: 12px clamp(20px, 4vw, 60px);
  font-size: 13.5px;
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  width: 100%;
}
.promo-bar-badge {
  background: #ff3b30;
  color: #fff;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  animation: pulseGlow 2s infinite ease-in-out;
}
.promo-bar-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.promo-timer {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 8px;
  font-family: monospace;
  font-size: 13.5px;
  color: var(--cyan);
  font-weight: 700;
  letter-spacing: 0.05em;
  border: 1px solid rgba(0, 240, 255, 0.3);
}
.promo-btn {
  background: #ffffff;
  color: #07090e;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 800;
  margin-left: 6px;
  transition: all .25s ease;
  white-space: nowrap;
}
.promo-btn:hover {
  background: var(--cyan);
  color: #07090e;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

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

/* ===== Logos ===== */
.logo-img { height: 50px; width: auto; display: block; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(0, 229, 255, 0.15)); }
.footer-logo-img { height: 38px; width: auto; object-fit: contain; }

/* ===== Loader ===== */
.loader {
  position: fixed; inset: 0; z-index: 200; background: var(--cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px;
  animation: loader-out .7s ease forwards; animation-delay: 1.2s;
}
.loader-mark { animation: fade-up .9s ease both; text-align: center; }
.loader-logo { height: 50px; width: auto; margin: 0 auto; }
.loader-bar { width: 220px; height: 3px; background: var(--grey-line); overflow: hidden; border-radius: 4px; }
.loader-bar-fill { width: 100%; height: 100%; background: var(--cyan); transform-origin: left; transform: scaleX(0); animation: bar 1s cubic-bezier(.65,0,.35,1) forwards; }
@keyframes loader-out { to { opacity: 0; visibility: hidden; } }
@keyframes bar { to { transform: scaleX(1); } }
@keyframes fade-up { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

[data-reveal] { opacity: 0; }
.no-js [data-reveal] { opacity: 1; }

/* ===== Header & Nav ===== */
.nav {
  position: relative; z-index: 50; display: flex; align-items: center; justify-content: space-between;
  padding: 24px clamp(24px, 5vw, 90px); gap: 20px; width: 100%;
  transition: all .35s ease;
}
.nav.is-scrolled {
  background: rgba(9, 11, 16, 0.92);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  border-bottom: 1px solid var(--grey-line);
  z-index: 50;
}
.logo { display: flex; align-items: center; }
.logo:hover { opacity: .9; transform: scale(1.02); }
.nav-links { display: flex; gap: 36px; font-size: 14.5px; color: var(--text-mid); font-weight: 600; }
.nav-links a { color: var(--text-mid); position: relative; padding: 6px 0; }
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: var(--cyan); font-weight: 700; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--cyan);
}

/* Nav Mobile Backdrop Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 12, 0.75);
  backdrop-filter: blur(8px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s ease, visibility .35s ease;
}
.nav-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-weight: 700; border-radius: 100px; cursor: pointer; transition: all .3s ease; white-space: nowrap; border: none; font-size: 15px; }
.btn-ghost { border: 1px solid var(--grey-line-2); color: #fff; padding: 12px 26px; background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); }
.btn-ghost:hover { background: #fff; color: #090b10; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,255,255,0.2); }
.btn-primary { background: linear-gradient(135deg, var(--blue) 0%, #00d2ff 100%); color: #fff; padding: 16px 34px; box-shadow: 0 10px 30px rgba(21, 82, 240, 0.4); }
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 15px 40px rgba(0, 240, 255, 0.5); }
.btn-text { color: #fff; padding: 16px 20px; }
.btn-text:hover { color: var(--cyan); transform: translateX(4px); }
.link-arrow { display: inline-block; margin-top: 10px; color: var(--cyan); font-weight: 700; font-size: 14.5px; transition: transform .2s ease; }
.link-arrow:hover { color: #fff; transform: translateX(4px); }
.btn-whatsapp { background: var(--whatsapp); color: #032e12; font-weight: 800; padding: 16px 34px; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35); }
.btn-whatsapp:hover { color: #032e12; transform: translateY(-3px); box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5); }
.btn-outline { border: 1px solid rgba(255,255,255,.25); color: #fff; font-weight: 700; font-size: 17px; padding: 18px 36px; background: transparent; }
.btn-outline:hover { color: #fff; border-color: var(--cyan); background: rgba(0, 240, 255, 0.1); transform: translateY(-2px); }
.btn-block { display: flex; width: 100%; margin-top: 30px; padding: 16px; }
.dot-live { width: 8px; height: 8px; border-radius: 50%; background: var(--whatsapp); display: inline-block; box-shadow: 0 0 12px var(--whatsapp); animation: pulseGlow 1.5s infinite; }

.burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 34px; height: 34px; background: none; border: none; cursor: pointer; padding: 0; }
.burger span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }

/* ===== Hero ===== */
.hero { position: relative; z-index: 10; padding: clamp(40px,6vw,80px) clamp(24px,5vw,90px) 40px; text-align: center; width: 100%; }
.eyebrow { font-size: 13.5px; letter-spacing: .28em; color: var(--text-faint); font-weight: 700; margin-bottom: 24px; text-transform: uppercase; }
.eyebrow-accent { color: var(--cyan); letter-spacing: .24em; margin-bottom: 16px; font-weight: 800; }
.eyebrow-light { color: var(--blue-light); letter-spacing: .24em; margin-bottom: 16px; font-weight: 800; }
.hero-title { margin: 0 auto; max-width: 1200px; font-size: clamp(44px, 8.5vw, 120px); line-height: .98; letter-spacing: -.03em; }
.hero-sub { margin: 28px auto 0; max-width: 680px; color: var(--text-mid); font-size: clamp(17px,2.2vw,22px); line-height: 1.65; }
.hero-actions { display: flex; gap: 18px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }

/* Floating Glass Badges in Hero */
.hero-badges-wrapper {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-badge-glass {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  box-shadow: var(--glass-shadow);
  transition: all .35s ease;
}
.hero-badge-glass:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 240, 255, 0.25);
  border-color: var(--cyan);
}

/* Full Width Screen Hero Expand Parallax */
.hero-img-section {
  position: relative;
  z-index: 10;
  padding: 40px 0;
  display: flex;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.hero-img-expand {
  position: relative;
  width: 75%;
  aspect-ratio: 16/8;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
  border: 1px solid var(--grey-line);
}
.hero-img-inner { position: absolute; inset: 0; transform: scale(1.3); }
.hero-img-inner img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Marquee ===== */
.marquee { position: relative; z-index: 10; overflow: hidden; padding: 24px 0; border-top: 1px solid var(--grey-line); border-bottom: 1px solid var(--grey-line); margin-top: 30px; background: rgba(18,21,30,0.6); width: 100%; }
.marquee-track { display: flex; width: max-content; animation: marquee 32s linear infinite; font-size: 14px; color: var(--text-faint); font-weight: 700; letter-spacing: .24em; text-transform: uppercase; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== Stats ===== */
.stats { position: relative; z-index: 10; display: grid; grid-template-columns: repeat(4,1fr); padding: 60px clamp(24px,5vw,90px); width: 100%; }
.stat { text-align: center; border-right: 1px solid var(--grey-line); padding: 0 12px; }
.stat:last-child { border-right: none; }
.stat-num, .stat-num-static { font-size: clamp(36px,6.5vw,78px); line-height: 1; color: #fff; font-family: 'Syne', sans-serif; font-weight: 800; }
.stat-label { font-size: 12.5px; letter-spacing: .16em; color: var(--text-faint); margin-top: 10px; font-weight: 800; }

/* ===== Section heads ===== */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 52px; flex-wrap: wrap; gap: 24px; width: 100%; }
.section-head-center { text-align: center; margin-bottom: 56px; width: 100%; }
.section-title { font-size: clamp(40px, 6.5vw, 84px); line-height: .98; letter-spacing: -.03em; margin: 0; color: #fff; }
.section-title-light { font-size: clamp(40px, 6.5vw, 84px); line-height: 1; letter-spacing: -.03em; margin: 0; color: #fff; }
.section-desc { color: var(--text-mid); margin: 0 0 6px; max-width: 440px; font-size: 16.5px; line-height: 1.65; }
.section-sub { color: var(--text-mid); margin: 18px 0 0; font-size: 19px; }

/* ===== Services ===== */
.services { position: relative; z-index: 10; padding: 70px clamp(24px,5vw,90px) 50px; border-top: 1px solid var(--grey-line); width: 100%; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; border-top: 1px solid var(--grey-line); padding-top: 30px; width: 100%; }
.service {
  position: relative; padding: 36px 28px; border: 1px solid var(--grey-line); border-radius: 20px; transition: all .35s ease;
  background: var(--cream-2);
}
.service:hover {
  background: rgba(21, 82, 240, 0.08);
  border-color: var(--cyan);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 240, 255, 0.12);
}
.service-head { display: flex; align-items: baseline; gap: 14px; }
.service-n { font-size: 22px; color: var(--cyan); font-weight: 800; font-family: 'Syne', sans-serif; }
.service-title { font-size: 22px; font-weight: 700; color: #fff; }
.service-desc { color: var(--text-soft); font-size: 14.5px; line-height: 1.65; margin: 14px 0 12px; }
.service-stack { font-size: 11.5px; letter-spacing: .12em; color: var(--cyan); font-weight: 800; }

/* ===== Process ===== */
.process { position: relative; z-index: 10; padding: 80px clamp(24px,5vw,90px); background: var(--cream-2); border-top: 1px solid var(--grey-line); border-bottom: 1px solid var(--grey-line); width: 100%; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 36px; width: 100%; }
.step { border-top: 1px solid var(--grey-line-2); padding-top: 24px; transition: transform .3s ease; }
.step:hover { transform: translateY(-6px); }
.step-n { font-size: clamp(44px,5.5vw,70px); line-height: 1; color: var(--cyan); font-family: 'Syne', sans-serif; }
.step-title { font-size: 22px; font-weight: 700; margin-top: 16px; color: #fff; }
.step-desc { color: var(--text-mid); font-size: 14.5px; line-height: 1.65; margin: 12px 0 0; }

/* ===== CALCULATOR SECTION (Cotizador 3 Clics) ===== */
.calculator-section {
  position: relative;
  z-index: 10;
  padding: 70px clamp(24px, 5vw, 90px);
  width: 100%;
}
.calc-card {
  background: var(--cream-2);
  border: 1px solid var(--grey-line-2);
  border-radius: 32px;
  padding: clamp(32px, 4.5vw, 56px);
  box-shadow: var(--glass-shadow);
  width: 100%;
}
.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.calc-title {
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.05;
  margin-bottom: 14px;
}
.calc-step-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--cyan);
  text-transform: uppercase;
  margin: 24px 0 12px;
}
.calc-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.calc-chip {
  border: 1px solid var(--grey-line);
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
  border-radius: 16px;
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-soft);
  transition: all .25s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.calc-chip:hover {
  border-color: var(--cyan);
  color: #fff;
  background: rgba(0, 240, 255, 0.05);
}
.calc-chip.active {
  background: linear-gradient(135deg, var(--blue) 0%, #00d2ff 100%);
  color: #ffffff;
  border-color: var(--cyan);
  box-shadow: 0 10px 25px rgba(0, 240, 255, 0.3);
}
.calc-chip.active .calc-price-tag {
  color: #ffffff;
}
.calc-price-tag {
  font-size: 13.5px;
  color: var(--cyan);
  font-weight: 800;
}
.calc-summary-box {
  background: #07090e;
  border: 1px solid var(--grey-line-2);
  color: #fff;
  border-radius: 26px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.calc-discount-badge {
  background: rgba(37, 211, 102, 0.2);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.5);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.calc-total-amount {
  font-size: clamp(44px, 5.5vw, 68px);
  line-height: 1;
  color: #ffffff;
  margin: 12px 0;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
}
.calc-original-price {
  text-decoration: line-through;
  color: var(--text-faint);
  font-size: 22px;
  margin-left: 10px;
}

/* ===== Offer Section ===== */
.offer { position: relative; z-index: 10; padding: 70px clamp(24px,5vw,90px); width: 100%; }
.offer-card { border: 1px solid var(--grey-line-2); border-radius: 32px; padding: clamp(28px,4.5vw,56px); display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; background: var(--cream-2); box-shadow: var(--glass-shadow); width: 100%; }
.offer-title { font-size: clamp(34px,5vw,64px); line-height: .98; letter-spacing: -.03em; color: #fff; }
.offer-desc { color: var(--text-mid); margin: 20px 0 28px; font-size: 16.5px; line-height: 1.65; }
.countdown { display: flex; gap: 14px; flex-wrap: wrap; }
.cd-unit { text-align: center; min-width: 56px; background: rgba(255,255,255,0.04); border: 1px solid var(--grey-line); padding: 10px 14px; border-radius: 14px; }
.cd-num { font-size: clamp(30px,4vw,46px); line-height: 1; font-family: 'Syne', sans-serif; font-weight: 800; }
.cd-num-accent { color: var(--cyan); }
.cd-label { font-size: 10.5px; letter-spacing: .16em; color: var(--text-faint); margin-top: 6px; font-weight: 800; }
.cd-sep { font-size: clamp(30px,4vw,46px); color: var(--grey-line-2); display: flex; align-items: center; }
.offer-right { display: flex; flex-direction: column; gap: 18px; }
.offer-item { display: flex; align-items: center; gap: 16px; font-size: 15.5px; padding-bottom: 18px; border-bottom: 1px solid var(--grey-line); color: var(--text-soft); }
.offer-item-last { padding-bottom: 20px; }
.offer-item-n { color: var(--cyan); font-size: 20px; font-weight: 800; font-family: 'Syne', sans-serif; }

/* ===== Plans ===== */
.plans { position: relative; z-index: 10; padding: 50px clamp(24px,5vw,90px) 70px; width: 100%; }
.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; align-items: stretch; width: 100%; }
.plan { border: 1px solid var(--grey-line); border-radius: 28px; padding: 40px; background: var(--cream-2); display: flex; flex-direction: column; transition: all .35s ease; }
.plan:hover { transform: translateY(-8px); border-color: var(--cyan); box-shadow: 0 25px 50px rgba(0, 240, 255, 0.15); }
.plan-name { font-size: 13.5px; letter-spacing: .16em; color: var(--cyan); font-weight: 800; }
.plan-price { display: flex; align-items: baseline; gap: 8px; margin: 20px 0 8px; }
.plan-price .serif { font-size: 60px; line-height: 1; color: #fff; font-family: 'Syne', sans-serif; font-weight: 800; }
.plan-price-note { color: var(--text-faint); font-size: 14.5px; }
.plan-desc { color: var(--text-mid); font-size: 14.5px; line-height: 1.65; margin: 0 0 24px; }
.plan-features { display: flex; flex-direction: column; gap: 14px; font-size: 14.5px; color: var(--text-soft); margin-bottom: 28px; }
.plan-featured { position: relative; border-color: var(--cyan); background: #07090e; color: #fff; box-shadow: 0 30px 70px rgba(0, 240, 255, 0.25); }
.plan-badge { position: absolute; top: 24px; right: 24px; font-size: 11.5px; letter-spacing: .14em; color: #07090e; background: var(--cyan); padding: 6px 14px; border-radius: 100px; font-weight: 800; animation: pulseGlow 2s infinite; }
.plan-name-light { color: var(--cyan); }
.plan-price-light { color: #fff; }
.plan-price-note-light { color: var(--text-faint); font-size: 14.5px; }
.plan-desc-light { color: var(--text-mid); }
.plan-features-light { color: var(--text-soft); }
.plan .btn { margin-top: auto; }

/* ===== Portfolio & Parallax Smooth Scroll ===== */
.portfolio { position: relative; z-index: 10; padding: 90px clamp(24px,5vw,90px) 60px; width: 100%; }
.portfolio-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; width: 100%; }
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  aspect-ratio: 16/10;
  box-shadow: 0 20px 45px rgba(0,0,0,0.5);
  border: 1px solid var(--grey-line);
}
.portfolio-item-inner { position: absolute; inset: -15%; }
.portfolio-item-inner img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.portfolio-tag { position: absolute; left: 20px; bottom: 20px; background: rgba(9,11,16,0.88); color: #fff; font-size: 13.5px; font-weight: 700; padding: 9px 18px; border-radius: 100px; backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); }

/* ===== Testimonials ===== */
.testimonials { position: relative; z-index: 10; padding: 70px clamp(24px,5vw,90px); border-top: 1px solid var(--grey-line); width: 100%; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; width: 100%; }
.testimonial { padding: 36px; border: 1px solid var(--grey-line); border-radius: 28px; background: var(--cream-2); transition: all .35s ease; }
.testimonial:hover { transform: translateY(-6px); border-color: var(--cyan); box-shadow: 0 20px 40px rgba(0, 240, 255, 0.1); }
.quote-mark { font-size: 56px; line-height: .6; color: var(--cyan); font-family: 'Syne', sans-serif; }
.quote-text { font-size: 21px; line-height: 1.5; margin: 12px 0 24px; color: #fff; font-family: 'Syne', sans-serif; font-weight: 600; }
.testimonial-who { display: flex; align-items: center; gap: 14px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--cyan)); display: flex; align-items: center; justify-content: center; font-weight: 800; color: #07090e; font-size: 15px; flex-shrink: 0; }
.testimonial-name { font-weight: 700; font-size: 15px; color: #fff; }
.testimonial-role { color: var(--text-faint); font-size: 13.5px; }

/* ===== Final CTA ===== */
.final-cta { position: relative; z-index: 10; padding: 70px clamp(24px,5vw,90px) 100px; width: 100%; }
.final-cta-card { text-align: center; background: linear-gradient(135deg, #07090e 0%, #12151e 100%); border-radius: 36px; padding: clamp(56px,9vw,110px) 36px; box-shadow: 0 40px 90px rgba(0,0,0,0.7); border: 1px solid var(--grey-line-2); width: 100%; }
.final-cta-title { font-size: clamp(38px,6.5vw,92px); line-height: .98; letter-spacing: -.03em; color: #fff; margin: 0 auto; max-width: 900px; }
.final-cta-desc { color: var(--text-mid); font-size: clamp(17px,2.2vw,22px); margin: 24px auto 40px; max-width: 600px; line-height: 1.65; }
.final-cta-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ===== Footer ===== */
.footer { position: relative; z-index: 10; background: #05070a; color: #fff; padding: 70px clamp(24px,5vw,90px) 32px; border-top: 1px solid var(--grey-line); width: 100%; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--grey-line); width: 100%; }
.footer-logo { display: flex; align-items: center; }
.footer-brand p { color: var(--text-mid); font-size: 14.5px; line-height: 1.65; margin: 20px 0 0; max-width: 320px; }
.footer-social { display: flex; gap: 20px; margin-top: 24px; }
.footer-social a { color: var(--text-soft); font-size: 14.5px; font-weight: 700; }
.footer-social a:hover { color: var(--cyan); }
.footer-col h4 { font-size: 12.5px; letter-spacing: .16em; color: var(--cyan); text-transform: uppercase; margin: 0 0 20px; font-weight: 800; }
.footer-col a, .footer-col .footer-static { display: block; color: var(--text-mid); font-size: 14.5px; margin-bottom: 14px; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; flex-wrap: wrap; gap: 12px; font-size: 13.5px; color: var(--text-faint); width: 100%; }

/* ===== Floating WhatsApp with Pulse Ripple ===== */
.float-whatsapp {
  position: fixed; bottom: 28px; right: 28px; z-index: 90; display: flex; align-items: center; gap: 12px; background: var(--whatsapp); color: #032e12; font-weight: 800; padding: 15px 24px; border-radius: 100px; box-shadow: 0 12px 40px rgba(37,211,102,.5); transition: all .3s ease;
  animation: whatsappPulse 3s infinite;
}
.float-whatsapp:hover { color: #032e12; transform: translateY(-4px) scale(1.04); box-shadow: 0 18px 50px rgba(37,211,102,.7); }
.float-whatsapp.is-hidden { opacity: 0; visibility: hidden; transform: translateY(16px); pointer-events: none; }

@keyframes whatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== Social Proof Toast Notification ===== */
.social-toast {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 85;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: 14px 20px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--glass-shadow);
  transform: translateY(130%);
  opacity: 0;
  transition: transform .4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity .4s ease;
  max-width: 360px;
}
.social-toast.show {
  transform: translateY(0);
  opacity: 1;
}
.social-toast-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.15);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.social-toast-title {
  font-size: 13.5px;
  font-weight: 800;
  color: #fff;
}
.social-toast-sub {
  font-size: 11.5px;
  color: var(--text-mid);
}

/* ===== Inner Pages Components ===== */
.page-hero { position: relative; z-index: 10; padding: clamp(40px,7vw,80px) clamp(24px,5vw,90px) 40px; text-align: center; width: 100%; }
.page-hero-title { margin: 0 auto; max-width: 1000px; font-size: clamp(40px, 7.5vw, 100px); line-height: .98; letter-spacing: -.03em; color: #fff; }
.page-hero-sub { margin: 26px auto 0; max-width: 660px; color: var(--text-mid); font-size: clamp(17px,2.2vw,21px); line-height: 1.65; }

.service-icon-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; padding: 30px clamp(24px,5vw,90px) 70px; width: 100%; }
.service-icon-card { border: 1px solid var(--grey-line); border-radius: 28px; padding: 38px; background: var(--cream-2); display: flex; flex-direction: column; transition: all .35s ease; }
.service-icon-card:hover { transform: translateY(-6px); border-color: var(--cyan); box-shadow: 0 25px 50px rgba(0, 240, 255, 0.12); }
.service-icon-glyph { font-size: 36px; color: var(--cyan); width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--grey-line-2); border-radius: 18px; margin-bottom: 26px; background: rgba(255,255,255,0.03); }
.service-icon-card .service-title { font-size: 24px; font-weight: 800; margin-bottom: 12px; color: #fff; font-family: 'Syne', sans-serif; }
.service-icon-card .service-desc { color: var(--text-mid); font-size: 15px; line-height: 1.65; margin-bottom: 24px; padding-left: 0; }
.service-icon-features { display: flex; flex-direction: column; gap: 12px; font-size: 14.5px; color: var(--text-soft); margin-bottom: 28px; }
.service-icon-features div::before { content: '— '; color: var(--cyan); font-weight: 800; }
.service-icon-card .link-arrow { margin-top: auto; }

.filter-tags { display: flex; gap: 12px; flex-wrap: wrap; padding: 0 clamp(24px,5vw,90px) 44px; width: 100%; }
.filter-tag { border: 1px solid var(--grey-line-2); border-radius: 100px; padding: 10px 24px; font-size: 14.5px; font-weight: 700; color: var(--text-mid); background: transparent; cursor: pointer; font-family: inherit; transition: all .25s ease; }
.filter-tag:hover { border-color: var(--cyan); color: #fff; }
.filter-tag.active { background: var(--cyan); color: #07090e; border-color: var(--cyan); box-shadow: 0 0 20px rgba(0, 240, 255, 0.4); }

.portfolio-full-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; padding: 0 clamp(24px,5vw,90px) 80px; width: 100%; }
.portfolio-card { border: 1px solid var(--grey-line); border-radius: 24px; overflow: hidden; background: var(--cream-2); transition: all .35s ease; }
.portfolio-card:hover { transform: translateY(-6px); border-color: var(--cyan); }
.portfolio-card-visual { position: relative; aspect-ratio: 16/11; overflow: hidden; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #07090e, var(--blue-dark)); }
.portfolio-card-visual img { width: 100%; height: 100%; object-fit: cover; }
.portfolio-card-brand-overlay { position: absolute; bottom: 14px; right: 14px; background: rgba(8, 12, 20, 0.88); backdrop-filter: blur(12px); padding: 8px 14px; border-radius: 10px; border: 1px solid rgba(0, 229, 255, 0.25); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); display: flex; align-items: center; justify-content: center; max-width: 170px; max-height: 48px; z-index: 5; }
.portfolio-card-brand-overlay.light-badge { background: rgba(255, 255, 255, 0.95); border: 1px solid rgba(255, 255, 255, 0.8); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); }
.portfolio-card-brand-overlay img { max-height: 32px; width: auto; max-width: 140px; object-fit: contain; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3)); }
.portfolio-card-body { padding: 28px; }
.portfolio-card-cat { font-size: 12.5px; letter-spacing: .16em; color: var(--cyan); font-weight: 800; text-transform: uppercase; margin-bottom: 10px; }
.portfolio-card-title { font-size: 23px; font-weight: 800; margin-bottom: 10px; color: #fff; font-family: 'Syne', sans-serif; }
.portfolio-card-desc { color: var(--text-mid); font-size: 14.5px; line-height: 1.65; }

.timeline { padding: 10px clamp(24px,5vw,90px) 30px; width: 100%; max-width: 1000px; margin: 0 auto; }
.timeline-step { position: relative; display: grid; grid-template-columns: 100px 1fr; gap: 32px; padding: 44px 0; border-top: 1px solid var(--grey-line); }
.timeline-step:first-child { border-top: none; }
.timeline-n { font-size: 64px; line-height: 1; color: var(--cyan); font-family: 'Syne', sans-serif; font-weight: 800; }
.timeline-title { font-size: 28px; font-weight: 800; margin: 0 0 10px; color: #fff; font-family: 'Syne', sans-serif; }
.timeline-desc { color: var(--text-mid); font-size: 16.5px; line-height: 1.65; margin: 0 0 20px; }
.timeline-tasks { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.timeline-tasks span { border: 1px solid var(--grey-line-2); border-radius: 100px; padding: 8px 18px; font-size: 13px; color: var(--text-soft); background: rgba(255,255,255,0.03); }
.timeline-duration { font-size: 12.5px; letter-spacing: .12em; color: var(--text-faint); text-transform: uppercase; font-weight: 800; }

.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; width: 100%; }
.value-card { border: 1px solid var(--grey-line); border-radius: 24px; padding: 34px; background: var(--cream-2); }
.value-card .value-title { font-size: 20px; font-weight: 800; margin-bottom: 10px; color: #fff; font-family: 'Syne', sans-serif; }
.value-card .value-desc { color: var(--text-mid); font-size: 14.5px; line-height: 1.65; }
.value-card-dark { border-color: var(--grey-line-2); background: rgba(255,255,255,0.02); }

.plan-category { padding: 10px clamp(24px,5vw,90px) 10px; width: 100%; }
.plan-category-label { font-size: 13.5px; letter-spacing: .2em; color: var(--cyan); font-weight: 800; text-transform: uppercase; margin: 0 0 28px; padding-top: 44px; border-top: 1px solid var(--grey-line); }
.plan-category:first-of-type .plan-category-label { border-top: none; padding-top: 0; }
.plan-mini-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-bottom: 10px; width: 100%; }
.plan-mini { border: 1px solid var(--grey-line); border-radius: 24px; padding: 30px; background: var(--cream-2); display: flex; flex-direction: column; transition: all .3s ease; }
.plan-mini:hover { transform: translateY(-6px); border-color: var(--cyan); }
.plan-mini.plan-featured { border-color: var(--cyan); background: #07090e; }
.plan-mini-name { font-size: 13px; letter-spacing: .12em; color: var(--cyan); font-weight: 800; text-transform: uppercase; }
.plan-mini-price { font-size: 38px; margin: 12px 0 4px; color: #fff; font-family: 'Syne', sans-serif; font-weight: 800; }
.plan-mini-meta { font-size: 13px; color: var(--text-faint); margin-bottom: 14px; }
.plan-mini-tagline { font-size: 14.5px; color: var(--text-mid); margin: 0 0 18px; line-height: 1.55; }
.plan-mini-features { font-size: 13.5px; color: var(--text-soft); display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.plan-mini-features div::before { content: '— '; color: var(--cyan); font-weight: 800; }
.plan-mini .btn { margin-top: auto; }

.compare-wrap { overflow-x: auto; padding: 20px clamp(24px,5vw,90px) 10px; -webkit-overflow-scrolling: touch; width: 100%; }
.compare-scroll-hint {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--cyan);
  font-weight: 700;
  padding: 0 clamp(24px,5vw,90px) 6px;
}
@media (max-width: 768px) {
  .compare-scroll-hint { display: flex; }
}
.compare-table { width: 100%; min-width: 760px; border-collapse: collapse; font-size: 14.5px; }
.compare-table th, .compare-table td { padding: 16px 18px; text-align: center; border-bottom: 1px solid var(--grey-line); }
.compare-table th:first-child, .compare-table td:first-child { text-align: left; color: #fff; font-weight: 600; }
.compare-table thead th { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; color: #fff; padding-top: 20px; }
.compare-table thead th span { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; color: var(--cyan); font-weight: 800; margin-top: 6px; }
.compare-table td { color: var(--text-mid); }
.compare-note { padding: 20px clamp(24px,5vw,90px) 0; color: var(--text-mid); font-size: 15px; width: 100%; }

.faq-list { max-width: 840px; margin: 0 auto; padding: 0 clamp(24px,5vw,90px); width: 100%; }
.faq-item { border-bottom: 1px solid var(--grey-line); padding: 24px 0; }
.faq-item summary { cursor: pointer; font-weight: 700; font-size: 18px; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 20px; color: #fff; font-family: 'Syne', sans-serif; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 24px; color: var(--cyan); flex-shrink: 0; transition: transform .2s ease; font-weight: 800; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--text-mid); font-size: 15.5px; line-height: 1.65; margin: 16px 0 0; }

.breadcrumb { display: flex; gap: 10px; align-items: center; padding: 24px clamp(24px,5vw,90px) 0; font-size: 13.5px; color: var(--text-faint); width: 100%; }
.breadcrumb a { color: var(--text-faint); }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb span { color: var(--text-mid); }

/* ===== Media Queries ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); gap: 28px; }
  .plans-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; gap: 20px; }
  .offer-card { grid-template-columns: 1fr; }
  .hero-img-expand { width: 90%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .service-icon-grid { grid-template-columns: repeat(2,1fr); }
  .plan-mini-grid { grid-template-columns: repeat(2,1fr); }
  .value-grid { grid-template-columns: repeat(2,1fr); }
  .timeline-step { grid-template-columns: 70px 1fr; gap: 20px; }
  .timeline-n { font-size: 48px; }
  .portfolio-full-grid { grid-template-columns: repeat(2,1fr); }
  .calc-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .promo-bar { flex-direction: column; gap: 8px; padding: 10px 14px; text-align: center; }
  .promo-bar-text { font-size: 12px; flex-wrap: wrap; justify-content: center; line-height: 1.4; }
  .promo-btn { margin-left: 0; }
  .nav-links { position: fixed; top: 0; right: 0; height: 100vh; width: min(85vw, 340px); background: #07090e; flex-direction: column; justify-content: center; align-items: flex-start; gap: 28px; padding: 40px 32px; transform: translateX(100%); transition: transform .35s ease; box-shadow: -20px 0 60px rgba(0,0,0,0.8); z-index: 1000; border-left: 1px solid var(--grey-line); }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 22px; }
  .nav-links a.active::after { display: none; }
  .nav-links a.active { color: var(--cyan); padding-left: 12px; border-left: 3px solid var(--cyan); }
  .nav-cta { display: none; }
  .burger { display: flex; z-index: 1001; }
  .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .stats { grid-template-columns: repeat(2,1fr); gap: 32px 0; }
  .stat:nth-child(2) { border-right: none; }
  .stat { border-bottom: 1px solid var(--grey-line); padding-bottom: 28px; }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }
  .calc-options-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .hero-img-expand { width: 100%; border-radius: 16px; aspect-ratio: 16/10; }
  .float-whatsapp span { display: none; }
  .float-whatsapp { padding: 14px; bottom: 18px; right: 18px; min-width: 48px; min-height: 48px; justify-content: center; }
  .calc-card { padding: 24px 18px; border-radius: 22px; }
  .calc-summary-box { padding: 24px 18px; border-radius: 20px; }
  .calc-chip { padding: 14px 12px; font-size: 13.5px; }
  .calc-total-amount { font-size: 42px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .service-icon-grid { grid-template-columns: 1fr; }
  .plan-mini-grid { grid-template-columns: 1fr !important; }
  .value-grid { grid-template-columns: 1fr; }
  .timeline-step { grid-template-columns: 1fr; gap: 12px; }
  .portfolio-full-grid { grid-template-columns: 1fr; }
  .social-toast { display: none; }
}

@media (max-width: 480px) {
  .promo-bar { padding: 8px 10px; }
  .promo-timer { font-size: 12px; padding: 3px 8px; }
  .hero-badges-wrapper { gap: 10px; }
  .hero-badge-glass { padding: 8px 16px; font-size: 12.5px; }
}
