/* ================================================
   24webs — css/style.css
   Design System — Logo Palette Edition
   ─────────────────────────────────────────────
   Colours extracted from 02_Logo cuadrat.png:
     Blue  #2557FF  (logo speed-stripe bars)
     Cyan  #00D4F0  (logo accent mark)
     Navy  #0D1626  (logo wordmark text)
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS VARIABLES ───────────────────────────────────────── */
:root {
  /* LOGO COLOURS — edit these to fine-tune exact hex */
  --blue:        #2557FF;   /* Primary brand blue  (logo stripes)   */
  --blue-hover:  #1845EE;   /* Blue on hover / active               */
  --blue-dark:   #1235CC;   /* Deeper blue for shadows              */
  --blue-light:  #EEF3FF;   /* Blue tint for section backgrounds    */
  --cyan:        #00D4F0;   /* Accent cyan         (logo mark)      */
  --cyan-light:  #E0F9FF;   /* Cyan tint                            */
  --navy:        #0D1626;   /* Dark navy text      (logo wordmark)  */
  --navy-mid:    #1A2A40;   /* Mid-navy for card backgrounds        */

  /* NEUTRALS */
  --white:       #FFFFFF;
  --gray-50:     #F8FAFC;
  --gray-100:    #F1F5F9;
  --gray-200:    #E2E8F0;
  --gray-300:    #CBD5E1;
  --gray-400:    #94A3B8;
  --gray-500:    #64748B;
  --gray-700:    #334155;

  /* WHATSAPP — do not change */
  --green:       #25D366;
  --green-d:     #128C4E;

  /* TYPOGRAPHY */
  --fd: 'Bebas Neue', Impact, Arial Narrow, sans-serif;
  --fb: 'Inter', system-ui, -apple-system, sans-serif;

  /* SHADOWS */
  --sh-sm: 0 1px 8px rgba(37,87,255,0.07);
  --sh-md: 0 4px 20px rgba(37,87,255,0.1);
  --sh-lg: 0 16px 48px rgba(37,87,255,0.15);

  /* RADII */
  --r:    10px;
  --r-lg: 18px;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--fb);
  background: var(--white);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a  { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--fb); }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 4px; }

/* ── NAVBAR ──────────────────────────────────────────────── */
#navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 1px 16px rgba(37,87,255,0.05);
}
.nav-wrap {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px; height: 66px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo img { height: 36px; width: auto; }
.nav-logo-fb { font-weight: 800; font-size: 1.25rem; color: var(--navy); letter-spacing: -0.02em; }
.nav-logo-fb em { color: var(--blue); font-style: normal; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-link { font-size: 0.86rem; font-weight: 500; color: var(--gray-500); transition: color .18s; }
.nav-link:hover, .nav-link.active { color: var(--blue); }

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

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: var(--white);
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.02em;
  padding: 10px 22px; border-radius: 6px; border: none;
  box-shadow: 0 4px 16px rgba(37,87,255,0.3);
  transition: all .18s; white-space: nowrap;
}
.nav-cta:hover { background: var(--blue-hover); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(37,87,255,0.4); }

.hamburger {
  display: none; width: 38px; height: 38px;
  background: transparent; border: 1px solid var(--gray-200);
  border-radius: 6px; color: var(--navy); font-size: 0.9rem;
  align-items: center; justify-content: center; transition: all .18s;
}
.hamburger:hover { border-color: var(--blue); color: var(--blue); }

.mobile-menu {
  max-height: 0; overflow: hidden; background: var(--white);
  border-bottom: 1px solid var(--gray-200); transition: max-height .36s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}
.mobile-menu.open { max-height: 500px; }
.mob-inner { padding: 16px 24px 24px; display: flex; flex-direction: column; }
.mob-link {
  font-size: 1.1rem; font-weight: 600; color: var(--gray-700);
  padding: 14px 0; border-bottom: 1px solid var(--gray-100); transition: color .18s;
}
.mob-link:hover { color: var(--blue); }
.mob-cta {
  margin-top: 18px; display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--green); color: white;
  font-size: 0.92rem; font-weight: 700; padding: 14px 20px; border-radius: 8px;
  box-shadow: 0 4px 14px rgba(37,211,102,0.3);
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-blue {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: white; font-size: 0.92rem; font-weight: 700;
  padding: 13px 30px; border-radius: 8px; border: none;
  box-shadow: 0 4px 16px rgba(37,87,255,0.3); transition: all .18s; white-space: nowrap;
}
.btn-blue:hover { background: var(--blue-hover); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37,87,255,0.4); }

.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green); color: white; font-size: 0.92rem; font-weight: 700;
  padding: 13px 30px; border-radius: 8px; border: none;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3); transition: all .18s; white-space: nowrap;
}
.btn-wa:hover { background: var(--green-d); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37,211,102,0.4); }
.btn-wa i { font-size: 1.1rem; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gray-500); font-size: 0.88rem; font-weight: 500;
  padding: 13px 24px; border: 1.5px solid var(--gray-200);
  border-radius: 8px; background: transparent; transition: all .18s; white-space: nowrap;
}
.btn-ghost:hover { color: var(--blue); border-color: var(--blue); background: var(--blue-light); }

.btn-lg { padding: 16px 40px; font-size: 0.98rem; border-radius: 10px; }

/* ── LAYOUT & TYPOGRAPHY ─────────────────────────────────── */
.wrap    { max-width: 1200px; margin: 0 auto; }
.wrap-sm { max-width: 860px;  margin: 0 auto; }
.wrap-xs { max-width: 620px;  margin: 0 auto; }
.section    { padding: 96px 24px; }
.section-sm { padding: 64px 24px; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px;
}
.section-label::before {
  content: ''; width: 18px; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan)); border-radius: 1px;
}

.t-display {
  font-family: var(--fd);
  font-size: clamp(4rem, 12vw, 12rem);
  line-height: 0.88; text-transform: uppercase; letter-spacing: 0.01em; color: var(--navy);
}
.t-section {
  font-family: var(--fd);
  font-size: clamp(2.5rem, 7vw, 7rem);
  line-height: 0.92; text-transform: uppercase; letter-spacing: 0.01em; color: var(--navy);
}
.t-section .blue  { color: var(--blue); }
.t-section .cyan  { color: var(--cyan); }
.t-section .white { color: white; }
.t-display .blue  { color: var(--blue); }
.t-display .cyan  { color: var(--cyan); }

.t-sub {
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.76; color: var(--gray-500); max-width: 500px;
}
.t-sub strong { color: var(--navy); font-weight: 600; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100svh; padding: 110px 24px 84px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden; background: var(--white);
}
/* Radial blue glow top-right */
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 55% 55% at 88% 40%, rgba(37,87,255,0.07) 0%, transparent 65%);
}
/* Speed-line accent from logo motif */
.hero-stripes {
  position: absolute; top: 0; right: 0; bottom: 0; width: 44%; pointer-events: none; overflow: hidden;
}
.hero-stripes::before { /* long bar */
  content: ''; position: absolute;
  width: 72%; height: 3px; right: -10%; top: 42%;
  background: linear-gradient(90deg, transparent, var(--blue) 80%);
  transform: skewY(-10deg); border-radius: 2px; opacity: 0.18;
}
.hero-stripes::after { /* short cyan bar */
  content: ''; position: absolute;
  width: 32%; height: 3px; right: -10%; top: calc(42% + 22px);
  background: linear-gradient(90deg, transparent, var(--cyan));
  transform: skewY(-10deg); border-radius: 2px; opacity: 0.6;
}

.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-light); color: var(--blue); border: 1px solid rgba(37,87,255,0.2);
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 999px; margin-bottom: 24px;
}
.hero-badge i { font-size: 0.65rem; }

.hero-title {
  font-family: var(--fd);
  font-size: clamp(4.5rem, 14vw, 14rem);
  line-height: 0.88; text-transform: uppercase; letter-spacing: 0.01em;
  color: var(--navy); margin-bottom: 28px;
}
.hero-title .gradient {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub { margin-bottom: 40px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 52px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 0.79rem; font-weight: 500; color: var(--gray-400); }
.trust-item i { color: var(--blue); font-size: 0.65rem; }

/* ── MARQUEE ─────────────────────────────────────────────── */
.marquee-section { background: var(--blue); padding: 13px 0; overflow: hidden; }
.marquee-track   { display: inline-flex; white-space: nowrap; animation: mq 24s linear infinite; }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.m-item { font-family: var(--fd); font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.75); padding: 0 20px; }
.m-sep  { color: var(--cyan); padding: 0 4px; }

/* ── PROBLEM SECTION ─────────────────────────────────────── */
.problem-section { background: var(--gray-50); }
.problem-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--gray-200);
  border: 1px solid var(--gray-200); border-radius: var(--r-lg); overflow: hidden;
}
.problem-item { background: var(--white); padding: 40px 32px; }
.problem-item p { font-size: 0.94rem; line-height: 1.72; color: var(--gray-500); }
.problem-item p strong { color: var(--navy); }
.prob-num {
  font-family: var(--fd); font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1; color: var(--blue); margin-bottom: 14px;
}
.prob-num.accent { color: var(--cyan); }
.prob-num.dark   { color: var(--navy); }

/* ── PROCESS SECTION ─────────────────────────────────────── */
.process-section { background: var(--navy); }
.process-hd { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 56px; }
.process-note { font-size: 0.95rem; color: rgba(255,255,255,0.45); line-height: 1.72; max-width: 340px; }

.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,0.06); }
.step {
  background: var(--navy); padding: 40px 32px;
  position: relative; overflow: hidden; transition: background .18s;
}
.step:hover { background: var(--navy-mid); }
.step-ghost {
  position: absolute; top: 4px; right: 12px; user-select: none; pointer-events: none;
  font-family: var(--fd); font-size: 6rem; color: rgba(255,255,255,0.04); line-height: 1;
}
.step-badge {
  display: inline-block; background: var(--blue); color: white;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 4px; margin-bottom: 18px;
}
.step h3 { font-family: var(--fd); font-size: 2.1rem; color: white; letter-spacing: 0.02em; margin-bottom: 12px; }
.step p  { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.72; }

/* ── DELIVERABLES ────────────────────────────────────────── */
.deliver-section { background: var(--white); }
.deliver-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 1px; background: var(--gray-200);
  border: 1px solid var(--gray-200); border-radius: var(--r-lg); overflow: hidden;
}
.deliver-item { background: var(--white); padding: 30px; transition: background .18s; }
.deliver-item:hover { background: var(--blue-light); }
.d-icon {
  width: 44px; height: 44px; background: var(--blue-light);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; color: var(--blue); margin-bottom: 14px; transition: all .18s;
}
.deliver-item:hover .d-icon { background: var(--blue); color: white; }
.deliver-item h3 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.deliver-item p  { font-size: 0.83rem; line-height: 1.68; color: var(--gray-500); }

/* ── STATS BAR ───────────────────────────────────────────── */
.stats-bar { background: var(--blue-light); border-top: 1px solid rgba(37,87,255,0.14); border-bottom: 1px solid rgba(37,87,255,0.14); }
.stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: rgba(37,87,255,0.12);
}
.stat-box { background: var(--blue-light); padding: 36px 24px; text-align: center; }
.stat-num {
  font-family: var(--fd); font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--blue); line-height: 1; margin-bottom: 6px;
}
.stat-lbl { font-size: 0.78rem; color: var(--gray-500); font-weight: 500; }

/* ── URGENCY SECTION ─────────────────────────────────────── */
.urgency-section { background: var(--navy); text-align: center; }
.urgency-title {
  font-family: var(--fd);
  font-size: clamp(3rem, 9vw, 9rem); line-height: 0.9;
  text-transform: uppercase; letter-spacing: 0.01em;
  color: white; margin-bottom: 20px;
}
.urgency-title .cyan { color: var(--cyan); }
.urgency-sub { font-size: 1.05rem; color: rgba(255,255,255,0.5); line-height: 1.75; max-width: 520px; margin: 0 auto 36px; }

/* ── SECTORS ─────────────────────────────────────────────── */
.sectors-section { background: var(--gray-50); }
.sectors-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.sector-tag {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px; border: 1.5px solid var(--gray-200);
  border-radius: 6px; font-size: 0.84rem; font-weight: 500;
  color: var(--gray-700); background: var(--white); transition: all .18s;
}
.sector-tag i { font-size: 0.77rem; color: var(--blue); }
.sector-tag:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }

/* ── FINAL CTA ───────────────────────────────────────────── */
.final-cta {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  padding: 96px 24px; text-align: center;
}
.final-cta-title {
  font-family: var(--fd);
  font-size: clamp(3rem, 9vw, 9.5rem); line-height: 0.9;
  text-transform: uppercase; letter-spacing: 0.01em;
  color: white; margin-bottom: 20px;
}
.final-cta-title span { color: var(--cyan); }
.final-cta-sub { font-size: 1.05rem; color: rgba(255,255,255,0.6); line-height: 1.75; max-width: 520px; margin: 0 auto 36px; }
.wa-label {
  margin-top: 20px; font-size: 0.84rem;
  color: rgba(255,255,255,0.4); font-weight: 500;
}
.wa-label i { color: var(--green); margin-right: 6px; }

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  padding: 80px 24px 64px;
  background: linear-gradient(180deg, var(--blue-light) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--gray-200);
}
.page-hero-title { font-family: var(--fd); font-size: clamp(2.5rem, 8vw, 7rem); line-height: 0.9; text-transform: uppercase; letter-spacing: 0.01em; color: var(--navy); margin-bottom: 16px; }
.page-hero-title .blue { color: var(--blue); }

/* ── INCLUDE GRID (servicios) ────────────────────────────── */
.include-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.include-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 22px; background: var(--white);
  border: 1.5px solid var(--gray-200); border-radius: var(--r); transition: all .18s;
}
.include-item:hover { border-color: var(--blue); box-shadow: var(--sh-sm); }
.inc-icon {
  width: 38px; height: 38px; background: var(--blue-light); border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 0.88rem; color: var(--blue);
}
.include-item h3 { font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.include-item p  { font-size: 0.82rem; color: var(--gray-500); line-height: 1.65; }

/* ── DIFF TABLE (servicios) ──────────────────────────────── */
.diff-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: var(--r-lg); }
.diff-table th { padding: 14px 20px; text-align: center; font-size: 0.82rem; font-weight: 700; }
.diff-table th:first-child { text-align: left; }
.diff-table td { padding: 14px 20px; font-size: 0.88rem; border-top: 1px solid var(--gray-100); }
.diff-table td:first-child { font-weight: 500; color: var(--navy); }
.diff-table td:not(:first-child) { text-align: center; }
.diff-table .th-us { background: var(--blue); color: white; }
.diff-table .th-other { background: var(--gray-50); color: var(--gray-400); }
.diff-table .th-label { background: var(--gray-50); color: var(--gray-500); }
.diff-table .td-us { background: rgba(37,87,255,0.04); }
.diff-check { color: var(--blue); font-size: 0.85rem; }
.diff-cross  { color: var(--gray-300); font-size: 0.85rem; }
.diff-best { font-weight: 700; color: var(--blue); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item:first-child { border-top: 1px solid var(--gray-200); }
.faq-q {
  width: 100%; background: transparent; border: none;
  padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  text-align: left; font-size: 0.95rem; font-weight: 600; color: var(--navy);
  cursor: pointer; transition: color .18s;
}
.faq-q:hover, .faq-q.open { color: var(--blue); }
.faq-icon {
  width: 24px; height: 24px; border: 1.5px solid var(--gray-300); border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: var(--gray-400); transition: all .3s;
}
.faq-q.open .faq-icon { background: var(--blue); border-color: var(--blue); color: white; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a.open { max-height: 300px; }
.faq-a-inner { padding-bottom: 20px; font-size: 0.92rem; line-height: 1.76; color: var(--gray-500); }

/* ── CONTACT CARDS (contacto) ────────────────────────────── */
.contact-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.contact-card {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg); padding: 36px 28px; box-shadow: var(--sh-sm); transition: all .18s;
}
.contact-card:hover { border-color: var(--blue); box-shadow: var(--sh-md); }
.contact-card.primary { border-color: var(--green); background: rgba(37,211,102,0.04); }
.contact-card.primary:hover { border-color: var(--green-d); box-shadow: 0 8px 24px rgba(37,211,102,0.15); }
.cc-icon {
  width: 52px; height: 52px; border-radius: 12px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.cc-icon.blue  { background: var(--blue-light); color: var(--blue); }
.cc-icon.green { background: rgba(37,211,102,0.12); color: var(--green-d); }
.cc-icon.cyan  { background: var(--cyan-light); color: #0099BB; }
.contact-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.contact-card p  { font-size: 0.88rem; color: var(--gray-500); line-height: 1.7; }

/* ── CONTACT FORM ────────────────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-label   { font-size: 0.8rem; font-weight: 600; color: var(--gray-700); display: block; margin-bottom: 6px; }
.form-input {
  width: 100%; padding: 12px 16px;
  background: var(--gray-50); border: 1.5px solid var(--gray-200);
  border-radius: 8px; color: var(--navy); font-family: var(--fb);
  font-size: 0.94rem; outline: none; transition: all .18s; appearance: none;
}
.form-input:focus { border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 3px rgba(37,87,255,0.1); }
.form-input::placeholder { color: var(--gray-400); }
textarea.form-input { resize: vertical; min-height: 120px; }

/* ── REVEAL ANIMATION ────────────────────────────────────── */
.rv { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.rv.in { opacity: 1; transform: none; }
.rv1 { transition-delay: .08s; }
.rv2 { transition-delay: .16s; }
.rv3 { transition-delay: .24s; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer { background: var(--navy); padding: 56px 24px 32px; }
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; margin-bottom: 40px;
}
.footer-logo-row { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.footer-logo-row img { height: 30px; filter: brightness(0) invert(1); }
.footer-logo-text { font-weight: 800; font-size: 1.15rem; color: white; letter-spacing: -0.02em; }
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.38); line-height: 1.72; max-width: 240px; }
.footer-head { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); margin-bottom: 14px; }
.footer-lnk { display: block; font-size: 0.86rem; color: rgba(255,255,255,0.5); padding: 5px 0; transition: color .18s; }
.footer-lnk:hover { color: var(--cyan); }
.footer-divider { max-width: 1200px; margin: 0 auto 24px; border: none; height: 1px; background: rgba(255,255,255,0.06); }
.footer-bottom { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.22); }

/* ── WA FAB ──────────────────────────────────────────────── */
#wa-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 990;
  width: 56px; height: 56px; background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: white;
  box-shadow: 0 6px 28px rgba(37,211,102,0.5); transition: all .2s;
}
#wa-fab:hover { transform: scale(1.1); box-shadow: 0 10px 36px rgba(37,211,102,0.6); }

/* ── COOKIE BANNER ───────────────────────────────────────── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 8000;
  background: rgba(13,22,38,0.97); backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.06); padding: 16px 24px;
  transform: translateY(100%); transition: transform .4s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.4);
}
#cookie-banner.visible { transform: translateY(0); }
.ck-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px; justify-content: space-between;
}
.ck-text { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.65; flex: 1 1 320px; }
.ck-text strong { color: white; font-weight: 600; }
.ck-text a { color: var(--cyan); text-decoration: underline; text-underline-offset: 2px; }
.ck-actions { display: flex; gap: 8px; flex-shrink: 0; }
.ck-btn { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; padding: 9px 20px; border-radius: 6px; border: none; cursor: pointer; transition: all .18s; }
#ck-decline { background: transparent; color: rgba(255,255,255,0.4); border: 1px solid rgba(255,255,255,0.15); }
#ck-decline:hover { color: white; border-color: rgba(255,255,255,0.4); }
#ck-accept  { background: var(--blue); color: white; box-shadow: 0 2px 8px rgba(37,87,255,0.4); }
#ck-accept:hover  { background: var(--blue-hover); }

/* ── EXIT-INTENT POPUP ───────────────────────────────────── */
#exit-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(13,22,38,0.88); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 20px;
}
#exit-overlay.show { display: flex; animation: ovFade .3s ease; }
@keyframes ovFade { from { opacity: 0; } to { opacity: 1; } }
.exit-modal {
  background: var(--white); border-radius: 16px; padding: 48px 40px 40px;
  max-width: 480px; width: 100%; position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
  animation: modUp .35s cubic-bezier(.22,1,.36,1);
}
@keyframes modUp { from { transform: translateY(22px); opacity: 0; } to { transform: none; opacity: 1; } }
.exit-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--gray-100); border: none; width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; color: var(--gray-500); cursor: pointer; transition: all .18s;
}
.exit-close:hover { background: var(--gray-200); color: var(--navy); }
.exit-icon {
  width: 54px; height: 54px; background: var(--blue-light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--blue); margin-bottom: 20px;
}
.exit-title {
  font-family: var(--fd); font-size: 2.8rem; line-height: 0.92;
  text-transform: uppercase; color: var(--navy); margin-bottom: 14px; letter-spacing: 0.01em;
}
.exit-title span { color: var(--blue); }
.exit-sub { font-size: 0.94rem; color: var(--gray-500); line-height: 1.72; margin-bottom: 26px; }
.exit-note { text-align: center; font-size: 0.74rem; color: var(--gray-400); margin-top: 12px; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta.hide-mob { display: none; }
  .hamburger { display: flex; }
  .problem-grid, .steps-grid, .contact-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .deliver-grid { grid-template-columns: repeat(3,1fr); }
  .include-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 768px) {
  .deliver-grid { grid-template-columns: 1fr; }
  .include-grid { grid-template-columns: 1fr; }
  .stats-inner  { grid-template-columns: repeat(2,1fr); }
  .footer-grid  { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 640px) {
  .section    { padding: 64px 16px; }
  .section-sm { padding: 48px 16px; }
  .hero       { padding: 100px 16px 64px; }
  .page-hero  { padding: 64px 16px 48px; }
  .exit-modal { padding: 36px 22px 32px; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
}
