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

:root {
  --blue: #2563EB;
  --blue-dark: #1d4ed8;
  --blue-light: #3b82f6;
  --blue-glow: rgba(37,99,235,0.15);
  --dark: #0A0A0F;
  --dark-2: #111118;
  --dark-3: #1a1a24;
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.13);
  --white: #FFFFFF;
  --gray: #A1A1AA;
  --gray-dim: rgba(161,161,170,0.5);
  --surface: #F5F5F7;
  --font-sans: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.2s cubic-bezier(0.4,0,0.2,1);
  --nav-h: 68px;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-sans); letter-spacing: -0.03em; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); font-weight: 700; letter-spacing: -0.05em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p { color: var(--gray); line-height: 1.75; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-sans); border: none; outline: none; }

/* ── KEYBOARD FOCUS ── */
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: var(--radius-sm); }
.btn:focus-visible { outline: 2px solid var(--blue-light); outline-offset: 3px; box-shadow: 0 0 0 4px rgba(37,99,235,0.2); }
.nav-link:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }

/* ── PREFERS REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } html { scroll-behavior: auto; } }

/* ── LAYOUT ── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: var(--radius-sm);
  font-family: var(--font-sans); font-size: 14px; font-weight: 500;
  letter-spacing: -0.01em; white-space: nowrap; transition: all var(--transition);
  text-decoration: none; border: 1px solid transparent;
}
.btn-primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(37,99,235,0.3); }
.btn-secondary { background: transparent; color: var(--white); border-color: var(--border); }
.btn-secondary:hover { border-color: var(--border-hover); background: rgba(255,255,255,0.04); }
.btn-lg { padding: 13px 28px; font-size: 15px; }

/* ── TAG ── */
.tag {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 12px; border-radius: 100px;
  background: rgba(37,99,235,0.1); border: 1px solid rgba(37,99,235,0.22);
  font-family: var(--font-body); font-size: 11.5px; font-weight: 500;
  color: var(--blue-light); letter-spacing: 0.06em; text-transform: uppercase;
}
.tag::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }

/* ── CARD ── */
.card {
  background: var(--dark-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: border-color var(--transition), transform var(--transition);
}
.card:hover { border-color: var(--border-hover); }

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--border); }

/* ── SELECTION ── */
::selection { background: rgba(37,99,235,0.28); color: var(--white); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--dark-3); border-radius: 3px; }

/* ────────────────────────────────────────
   NAV
──────────────────────────────────────── */
.nav-wrapper {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,15,0.88);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center; height: var(--nav-h);
  gap: 0;
}
.nav-logo {
  display: flex; align-items: center; gap: 11px;
  text-decoration: none; flex-shrink: 0; margin-right: auto;
}
.nav-logo-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--dark); border: 1.5px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  position: relative; overflow: visible;
}
.nav-logo-icon svg { width: 22px; height: 22px; }
.nav-wordmark { font-family: var(--font-sans); font-size: 17px; font-weight: 600; letter-spacing: -0.04em; color: var(--white); }
.nav-wordmark .dot { color: var(--blue); }
.nav-wordmark .suffix { font-weight: 300; color: rgba(255,255,255,0.4); }

.nav-links { display: flex; align-items: center; gap: 2px; margin-right: 20px; }
.nav-link { font-family: var(--font-body); font-size: 14px; color: var(--gray); padding: 7px 13px; border-radius: var(--radius-sm); transition: all var(--transition); }
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.05); }

.nav-right { display: flex; align-items: center; gap: 12px; }
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  color: var(--gray); padding: 6px 11px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: transparent;
  transition: all var(--transition); letter-spacing: 0.05em; cursor: pointer;
  text-decoration: none;
}
.lang-btn:hover { color: var(--white); border-color: var(--border-hover); background: rgba(255,255,255,0.04); }
.lang-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }

/* Mobile nav */
.nav-mobile-btn {
  display: none; flex-direction: column; gap: 5px;
  background: transparent; padding: 8px; margin-left: 12px;
}
.nav-mobile-btn span { display: block; width: 20px; height: 1.5px; background: var(--white); border-radius: 2px; transition: all 0.2s; }
.nav-mobile-btn.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-mobile-btn.open span:nth-child(2) { opacity: 0; }
.nav-mobile-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.nav-mobile-menu {
  display: none; padding: 12px 20px 20px;
  border-top: 1px solid var(--border);
  background: var(--dark);
}
.nav-mobile-menu.open { display: block; }
.nav-mobile-links { display: flex; flex-direction: column; gap: 2px; margin-bottom: 14px; }
.nav-mobile-links a { display: block; padding: 11px 4px; font-size: 16px; color: var(--gray); border-bottom: 1px solid var(--border); }
.nav-mobile-links a:hover { color: var(--white); }
.nav-mobile-links .lang-mobile { color: var(--blue-light); }
.nav-mobile-cta { display: block; width: 100%; text-align: center; justify-content: center; margin-top: 4px; }

/* ────────────────────────────────────────
   HERO
──────────────────────────────────────── */
.hero {
  position: relative; padding: 160px 0 100px;
  overflow: hidden;
}
.hero-glow {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.1) 0%, transparent 70%);
  top: -100px; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.hero-lines { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-line { position: absolute; background: rgba(255,255,255,0.025); }
.hero-line.v1 { width: 1px; height: 100%; left: 22%; }
.hero-line.v2 { width: 1px; height: 100%; right: 22%; }
.hero-line.h1 { height: 1px; width: 100%; top: 65%; }

.hero-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.hero-tag { margin-bottom: 28px; }
.hero-title { color: var(--white); margin-bottom: 22px; }
.hero-title .accent { color: var(--blue-light); }
.hero-sub { max-width: 520px; font-size: 17px; margin-bottom: 40px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.hero-trust { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-dim); }
.hero-trust-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue); }

/* ────────────────────────────────────────
   SERVICES GRID
──────────────────────────────────────── */
.services-header { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; margin-bottom: 52px; }
.services-header h2 { color: var(--white); max-width: 520px; }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.service-item {
  padding: 32px 28px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--dark-2); transition: background var(--transition); position: relative;
}
.service-item:hover { background: var(--dark-3); }
.service-item:nth-child(3n) { border-right: none; }
.service-item:nth-child(4), .service-item:nth-child(5) { border-bottom: none; }
.service-item:nth-child(6) { border-bottom: none; border-right: none; }

.svc-icon {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  background: rgba(37,99,235,0.1); border: 1px solid rgba(37,99,235,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-light); margin-bottom: 18px;
}
.svc-icon svg { width: 18px; height: 18px; }
.service-item h3 { color: var(--white); font-size: 16px; margin-bottom: 8px; }
.service-item p { font-size: 13.5px; line-height: 1.65; }
.svc-num { position: absolute; bottom: 16px; right: 20px; font-family: var(--font-sans); font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.06); letter-spacing: 0.1em; }

/* ────────────────────────────────────────
   WHY SECTION
──────────────────────────────────────── */
.why-section { background: var(--dark-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-left { display: flex; flex-direction: column; gap: 16px; }
.why-left h2 { color: var(--white); }
.why-left p { font-size: 15px; }
.why-points { display: flex; flex-direction: column; }
.why-point { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.why-point:last-child { border-bottom: none; }
.why-point-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); margin-top: 5px; flex-shrink: 0; }
.why-point h4 { color: var(--white); font-size: 14px; margin-bottom: 3px; }
.why-point p { font-size: 13.5px; }

/* ────────────────────────────────────────
   TESTIMONIALS
──────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.testi-card { display: flex; flex-direction: column; gap: 18px; }
.testi-quote { font-family: var(--font-sans); font-size: 44px; font-weight: 700; color: var(--blue); line-height: 0.8; }
.testi-text { font-size: 14.5px; color: rgba(255,255,255,0.72); line-height: 1.65; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 11px; padding-top: 14px; border-top: 1px solid var(--border); }
.testi-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--dark-3); border: 1px solid var(--border); flex-shrink: 0; }
.testi-name { font-family: var(--font-sans); font-size: 13px; font-weight: 600; color: var(--white); }
.testi-role { font-size: 12px; color: var(--gray); }

/* ────────────────────────────────────────
   CTA BAND
──────────────────────────────────────── */
.cta-section { padding-bottom: 120px; }
.cta-box {
  position: relative; display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 14px;
  padding: 72px 40px; border: 1px solid var(--border);
  border-radius: var(--radius-xl); background: var(--dark-2); overflow: hidden;
}
.cta-box-glow {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.13) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none;
}
.cta-box h2 { color: var(--white); position: relative; z-index: 1; }
.cta-box p { max-width: 380px; position: relative; z-index: 1; }
.cta-btns { display: flex; gap: 12px; margin-top: 8px; position: relative; z-index: 1; }

/* ────────────────────────────────────────
   PAGE HERO (inner pages)
──────────────────────────────────────── */
.page-hero {
  position: relative; padding: 150px 0 72px; overflow: hidden;
}
.page-hero-glow {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.09) 0%, transparent 70%);
  top: -60px; left: 50%; transform: translateX(-50%); pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; }
.page-hero h1 { color: var(--white); }
.page-hero .accent { color: var(--blue-light); }
.page-hero-sub { max-width: 460px; font-size: 16px; }

/* ────────────────────────────────────────
   SERVICES PAGE
──────────────────────────────────────── */
.svc-intro { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; margin-bottom: 56px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.svc-intro h2 { color: var(--white); flex-shrink: 0; }
.svc-intro p { max-width: 380px; font-size: 15px; }

.svc-detail-list { display: flex; flex-direction: column; }
.svc-detail-item { padding: 48px 0; border-bottom: 1px solid var(--border); }
.svc-detail-item:last-child { border-bottom: none; }
.svc-detail-header { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 28px; }
.svc-detail-num { font-family: var(--font-sans); font-size: 11px; font-weight: 700; color: var(--blue); letter-spacing: 0.1em; margin-top: 3px; flex-shrink: 0; width: 22px; }
.svc-detail-icon { width: 42px; height: 42px; border-radius: var(--radius-sm); background: rgba(37,99,235,0.1); border: 1px solid rgba(37,99,235,0.18); display: flex; align-items: center; justify-content: center; color: var(--blue-light); flex-shrink: 0; }
.svc-detail-icon svg { width: 20px; height: 20px; }
.svc-detail-title h3 { color: var(--white); font-size: 20px; margin-bottom: 3px; }
.svc-detail-title span { font-size: 13px; color: var(--blue-light); font-family: var(--font-body); }

.svc-detail-body { padding-left: 82px; display: grid; grid-template-columns: 1fr 1fr; gap: 28px 48px; }
.svc-detail-desc { font-size: 14.5px; color: rgba(255,255,255,0.62); line-height: 1.75; }
.svc-includes { grid-column: 2; grid-row: 1 / 3; }
.svc-includes-label { font-family: var(--font-sans); font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); display: block; margin-bottom: 12px; }
.svc-includes ul { display: flex; flex-direction: column; gap: 9px; }
.svc-includes li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.svc-bullet { width: 5px; height: 5px; border-radius: 50%; background: var(--blue); margin-top: 5px; flex-shrink: 0; }
.svc-detail-cta { margin-top: 8px; align-self: start; }

/* ────────────────────────────────────────
   PRICING
──────────────────────────────────────── */
.plans-section-label { display: flex; align-items: center; gap: 8px; font-family: var(--font-sans); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-bottom: 28px; }
.plans-label-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }

.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 72px; }
.plan-card { display: flex; flex-direction: column; padding: 28px; background: var(--dark-2); border: 1px solid var(--border); border-radius: var(--radius-lg); position: relative; }
.plan-card.featured { border-color: rgba(37,99,235,0.38); background: var(--dark-3); box-shadow: 0 0 0 1px rgba(37,99,235,0.18), 0 0 40px rgba(37,99,235,0.1); }
.plan-badge { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--blue); color: var(--white); font-family: var(--font-sans); font-size: 10px; font-weight: 700; letter-spacing: 0.08em; padding: 4px 13px; border-radius: 0 0 7px 7px; text-transform: uppercase; white-space: nowrap; }
.plan-name { font-family: var(--font-sans); font-size: 19px; font-weight: 600; color: var(--white); margin-bottom: 5px; }
.plan-desc { font-size: 13px; margin-bottom: 22px; }
.plan-price { display: flex; align-items: baseline; gap: 2px; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.price-sym { font-family: var(--font-sans); font-size: 18px; font-weight: 600; color: var(--gray); }
.price-amt { font-family: var(--font-sans); font-size: 46px; font-weight: 700; letter-spacing: -0.05em; color: var(--white); line-height: 1; }
.price-per { font-size: 13px; color: var(--gray); margin-left: 3px; }
.plan-features { display: flex; flex-direction: column; gap: 10px; flex: 1; margin-bottom: 24px; }
.plan-features li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: rgba(255,255,255,0.68); line-height: 1.5; }
.plan-check { color: var(--blue-light); flex-shrink: 0; margin-top: 1px; }
.plan-btn { width: 100%; justify-content: center; opacity: 0.55; cursor: not-allowed; }
.plan-btn.featured-btn { background: var(--blue); color: var(--white); border-color: var(--blue); }
.coming-tag { font-size: 10px; background: rgba(255,255,255,0.1); border-radius: 4px; padding: 2px 6px; }

.ot-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.ot-card { background: var(--dark-2); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.ot-card:hover { border-color: var(--border-hover); }
.ot-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.ot-top h4 { color: var(--white); font-size: 14px; line-height: 1.3; }
.ot-price { display: flex; align-items: baseline; gap: 1px; flex-shrink: 0; }
.ot-sym { font-family: var(--font-sans); font-size: 12px; color: var(--gray); }
.ot-amt { font-family: var(--font-sans); font-size: 22px; font-weight: 700; color: var(--white); letter-spacing: -0.04em; }
.ot-desc { font-size: 12.5px; line-height: 1.5; flex: 1; }
.ot-btn { font-size: 12px; padding: 7px 14px; opacity: 0.5; cursor: not-allowed; }

/* ── FAQ ── */
.faq-wrap { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 0; background: transparent; color: var(--white);
  font-family: var(--font-sans); font-size: 15px; font-weight: 500;
  cursor: pointer; text-align: left; transition: color var(--transition);
}
.faq-q:hover { color: var(--blue-light); }
.faq-arrow { flex-shrink: 0; transition: transform 0.2s; color: var(--gray); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { padding-bottom: 20px; font-size: 14.5px; line-height: 1.75; }
.faq-item.open .faq-a { max-height: 200px; }

/* ────────────────────────────────────────
   CONTACT
──────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 340px; gap: 72px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-family: var(--font-sans); font-size: 12.5px; font-weight: 500; color: var(--gray); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 11px 14px;
  background: var(--dark-3); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--white);
  font-family: var(--font-body); font-size: 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; -webkit-appearance: none; appearance: none; /* focus handled via :focus-visible */
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(161,161,170,0.4); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.12); }
.form-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23A1A1AA' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.form-select option { background: var(--dark-2); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-submit { align-self: flex-start; padding: 12px 26px; font-size: 15px; }
.form-success { display: none; align-items: center; gap: 9px; padding: 13px 16px; background: rgba(37,99,235,0.09); border: 1px solid rgba(37,99,235,0.22); border-radius: var(--radius-sm); font-size: 13.5px; color: var(--blue-light); }
.form-error { display: none; padding: 13px 16px; background: rgba(239,68,68,0.07); border: 1px solid rgba(239,68,68,0.18); border-radius: var(--radius-sm); font-size: 13.5px; color: #f87171; }

.contact-info { display: flex; flex-direction: column; }
.info-block { padding: 20px 0; border-bottom: 1px solid var(--border); }
.info-block:last-child { border-bottom: none; }
.info-block h4 { font-family: var(--font-sans); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 14px; }
.info-list { display: flex; flex-direction: column; gap: 14px; }
.info-row { display: flex; gap: 11px; align-items: flex-start; }
.info-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue); margin-top: 5px; flex-shrink: 0; }
.info-label { font-size: 11.5px; color: var(--gray); margin-bottom: 2px; }
.info-email { font-size: 13.5px; color: var(--white); transition: color var(--transition); }
.info-email:hover { color: var(--blue-light); }
.info-text { font-size: 13.5px; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ────────────────────────────────────────
   LEGAL
──────────────────────────────────────── */
.legal-grid { display: grid; grid-template-columns: 190px 1fr; gap: 56px; align-items: start; }
.legal-nav { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 3px; }
.legal-nav-link { font-size: 13.5px; color: var(--gray); padding: 8px 11px; border-radius: var(--radius-sm); border-left: 2px solid transparent; transition: all var(--transition); }
.legal-nav-link:hover { color: var(--white); background: rgba(255,255,255,0.04); }
.legal-nav-link.active { color: var(--white); border-left-color: var(--blue); background: rgba(37,99,235,0.07); }
.legal-content { display: flex; flex-direction: column; gap: 36px; }
.legal-block h2 { font-size: 17px; font-weight: 600; color: var(--white); margin-bottom: 12px; letter-spacing: -0.02em; }
.legal-block h3 { font-size: 14px; color: rgba(255,255,255,0.75); margin: 14px 0 8px; font-weight: 600; }
.legal-block p { font-size: 14.5px; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 10px; }
.legal-block ul { display: flex; flex-direction: column; gap: 7px; margin-bottom: 10px; }
.legal-block li { display: flex; gap: 9px; font-size: 14.5px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.legal-block li::before { content: '•'; color: var(--blue); flex-shrink: 0; }
.legal-block a { color: var(--blue-light); text-decoration: underline; text-underline-offset: 3px; }

/* ────────────────────────────────────────
   FOOTER
──────────────────────────────────────── */
.footer { background: var(--dark-2); border-top: 1px solid var(--border); padding: 72px 0 0; }
.footer-top { display: grid; grid-template-columns: 240px 1fr; gap: 72px; padding-bottom: 56px; }
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-tagline { font-family: var(--font-sans); font-size: 12px; font-weight: 500; color: var(--gray); letter-spacing: 0.06em; }
.footer-entity { font-size: 11.5px; color: var(--gray-dim); }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.footer-col h5 { font-family: var(--font-sans); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 13.5px; color: var(--gray); transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; border-top: 1px solid var(--border); }
.footer-bottom p { font-size: 12.5px; color: var(--gray-dim); }
.footer-dots { display: flex; gap: 6px; align-items: center; }
.footer-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--border); }
.footer-dot:first-child { background: var(--blue); }

/* ────────────────────────────────────────
   COOKIE BANNER
──────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%) translateY(120px);
  z-index: 200; background: var(--dark-3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 14px 18px; max-width: 460px;
  width: calc(100vw - 32px); box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s;
  opacity: 0;
}
.cookie-banner.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.cookie-inner { display: flex; align-items: center; gap: 11px; }
.cookie-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }
.cookie-inner p { flex: 1; font-size: 13px; color: var(--gray); line-height: 1.5; }
.cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn { padding: 7px 14px; font-size: 12.5px; }

/* ── ACTIVE NAV ── */
.nav-link-active {
  color: var(--white) !important;
  background: rgba(255,255,255,0.05) !important;
}

/* ── SAFARI iOS backdrop-filter fix ── */
@supports not (backdrop-filter: blur(20px)) {
  .nav-wrapper { background: rgba(10,10,15,0.97); }
}

/* ────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────── */
@media (max-width: 1024px) {
  .ot-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  /* Services grid 2 cols — fix borders for 5 items */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-item:nth-child(3n) { border-right: 1px solid var(--border); }
  .service-item:nth-child(2n) { border-right: none; }
  .service-item:nth-child(1),
  .service-item:nth-child(2),
  .service-item:nth-child(3),
  .service-item:nth-child(4) { border-bottom: 1px solid var(--border); }
  .service-item:nth-child(5) { border-bottom: none; border-right: none; }
  /* 5th item spans full width so it's balanced */
  .service-item:nth-child(5) { grid-column: 1 / -1; border-right: none; }

  .why-grid { grid-template-columns: 1fr; gap: 44px; }
  .testi-grid { grid-template-columns: 1fr; max-width: 100%; margin: 0; }
  .plans-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto 72px; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .contact-info { order: -1; }
  .legal-grid { grid-template-columns: 1fr; }
  .legal-nav { position: static; flex-direction: row; flex-wrap: wrap; gap: 4px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .svc-intro { flex-direction: column; gap: 16px; }
  .svc-detail-body { padding-left: 0; grid-template-columns: 1fr; }
  .svc-includes { grid-column: 1; grid-row: auto; }
}

@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .nav-mobile-btn { display: flex; }
  .section { padding: 64px 0; }
  .hero { padding: 120px 0 72px; }
  /* Hero title safe size for all phones */
  h1 { font-size: clamp(2rem, 8vw, 3rem); letter-spacing: -0.04em; }
  .hero-ctas { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-ctas .btn { justify-content: center; width: 100%; }
  .hero-sub { font-size: 15px; }
  .cta-btns { flex-direction: column; width: 100%; }
  .cta-btns .btn { justify-content: center; width: 100%; }
  .cta-box { padding: 44px 20px; }
  .ot-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  /* Testimonials full width on mobile */
  .testi-grid { gap: 12px; }
  .testi-card { padding: 22px; }
  /* Plans full width */
  .plans-grid { max-width: 100%; }
  /* Fix btn-secondary border on iOS Safari */
  .btn-secondary { border: 1px solid rgba(255,255,255,0.12); -webkit-appearance: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  /* Nav logo — prevent overflow on small screens */
  .nav-wordmark { font-size: 15px; }
  .nav-logo-icon { width: 30px; height: 30px; }
  .nav-logo { gap: 8px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-item { border-right: none !important; grid-column: auto !important; }
  .service-item:not(:last-child) { border-bottom: 1px solid var(--border) !important; }
  .service-item:last-child { border-bottom: none !important; }

  .form-row { grid-template-columns: 1fr; }
  .form-submit { width: 100%; justify-content: center; }

  .ot-grid { grid-template-columns: 1fr; }
  .ot-card { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 8px; }
  .ot-top { width: 100%; }
  .ot-desc { width: 100%; }
  .ot-btn { width: 100%; justify-content: center; }

  .footer-cols { grid-template-columns: 1fr; }
  .page-hero { padding: 110px 0 48px; }
  .page-hero h1 { font-size: clamp(1.8rem, 7vw, 2.5rem); }

  /* Legal nav horizontal scroll on small */
  .legal-nav { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .legal-nav-link { white-space: nowrap; }

  /* Cookie banner full width */
  .cookie-banner { width: calc(100vw - 24px); bottom: 12px; }
  .cookie-inner { flex-wrap: wrap; }
  .cookie-btns { width: 100%; justify-content: flex-end; margin-top: 4px; }

  /* CTA box */
  .cta-box { padding: 40px 16px; border-radius: var(--radius-lg); }
}

@media (max-width: 360px) {
  .nav-wordmark .suffix { display: none; }
  h1 { font-size: 1.9rem; }
}

/* ── SKIP TO CONTENT ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  background: var(--blue);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 16px;
}

/* ── PRINT STYLES ── */
@media print {
  .nav-wrapper, .cookie-banner, .nav-mobile-btn,
  .hero-glow, .hero-lines, .cta-box-glow { display: none !important; }
  body { background: white; color: black; }
  a { color: #2563EB; }
  .hero { padding-top: 20px; }
}

/* ── iOS TOUCH OPTIMIZATIONS ── */
* { -webkit-tap-highlight-color: transparent; }

.btn, button, a, select, input, textarea {
  touch-action: manipulation;
}

/* Prevent text size adjustment on orientation change iOS */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

/* ────────────────────────────────────────
   MEJORA 3: HERO STATS
──────────────────────────────────────── */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 40px;
  padding: 20px 28px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 28px;
}

.stat-num {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-label {
  font-size: 11.5px;
  color: var(--gray);
  font-family: var(--font-body);
  white-space: nowrap;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* ────────────────────────────────────────
   MEJORA 6: TRUST BAR
──────────────────────────────────────── */
.trust-bar {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 20px;
  font-size: 12.5px;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--gray);
  white-space: nowrap;
}

.trust-item svg { color: var(--blue-light); flex-shrink: 0; }

.trust-dot-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}

/* ────────────────────────────────────────
   MEJORA 2: HOW IT WORKS
──────────────────────────────────────── */
.how-section { background: var(--dark-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.how-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
  margin-top: 8px;
}

.how-step {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: border-color var(--transition);
}

.how-step:hover { border-color: var(--border-hover); }

.how-num {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.1em;
}

.how-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
}

.how-step h3 {
  font-size: 17px;
  color: var(--white);
  letter-spacing: -0.02em;
}

.how-step p { font-size: 14px; line-height: 1.65; }

.how-arrow {
  font-size: 20px;
  color: var(--blue);
  padding: 0 20px;
  font-weight: 300;
  flex-shrink: 0;
}

/* ────────────────────────────────────────
   MEJORA 9: PROFILES / WHO WE HELP
──────────────────────────────────────── */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.profile-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.profile-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
}

.profile-card h3 { color: var(--white); font-size: 17px; }
.profile-card p { font-size: 14px; line-height: 1.65; flex: 1; }

.profile-tag {
  font-size: 11.5px;
  color: var(--blue-light);
  font-family: var(--font-body);
  padding: 6px 10px;
  background: rgba(37,99,235,0.08);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(37,99,235,0.15);
  line-height: 1.5;
}

/* ────────────────────────────────────────
   MEJORA 10: GUARANTEE BOX
──────────────────────────────────────── */
.guarantee-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  background: rgba(37,99,235,0.07);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: var(--radius-md);
  margin-top: 20px;
}

.guarantee-box svg { color: var(--blue-light); flex-shrink: 0; margin-top: 2px; }
.guarantee-box strong { font-family: var(--font-sans); font-size: 14px; color: var(--white); display: block; margin-bottom: 4px; }
.guarantee-box p { font-size: 13px; line-height: 1.55; margin: 0; }

/* ────────────────────────────────────────
   MEJORA 3: RATING AGGREGATE
──────────────────────────────────────── */
.rating-aggregate {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.stars {
  color: #FBBF24;
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1;
}

.rating-aggregate span {
  font-size: 13px;
  color: var(--gray);
  font-family: var(--font-body);
}

/* ────────────────────────────────────────
   MEJORA 5: HOME FAQ
──────────────────────────────────────── */
.faq-home-section { padding-bottom: 0; }

.faq-home-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 72px;
  align-items: start;
}

.faq-home-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 96px;
}

.faq-home-left h2 { color: var(--white); }
.faq-home-left p { font-size: 15px; }

/* ────────────────────────────────────────
   MEJORA 8: WHATSAPP
──────────────────────────────────────── */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
  z-index: 1;
}

.whatsapp-btn svg { color: #25D366; }
.whatsapp-btn:hover { color: rgba(255,255,255,0.8); }

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 150;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

/* Move cookie banner left to avoid overlap with WhatsApp */
.cookie-banner { right: 88px; left: auto; transform: translateY(120px); }
.cookie-banner.show { transform: translateY(0); }

/* ────────────────────────────────────────
   RESPONSIVE — NEW SECTIONS
──────────────────────────────────────── */
@media (max-width: 900px) {
  .how-grid { grid-template-columns: 1fr; gap: 16px; }
  .how-arrow { display: none; }
  .profiles-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .faq-home-inner { grid-template-columns: 1fr; gap: 36px; }
  .faq-home-left { position: static; }
}

@media (max-width: 768px) {
  .hero-stats { gap: 0; padding: 16px 12px; }
  .hero-stat { padding: 8px 14px; }
  .stat-num { font-size: 18px; }
  .hero-stat-divider { height: 28px; }
  .trust-bar-inner { gap: 0; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding: 0 4px; }
  .trust-dot-sep { display: none; }
  .trust-item { padding: 6px 14px; font-size: 12px; }
  .whatsapp-float { bottom: 16px; right: 16px; width: 48px; height: 48px; }
  .cookie-banner { right: auto; left: 50%; transform: translateX(-50%) translateY(120px); }
  .cookie-banner.show { transform: translateX(-50%) translateY(0); }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 0; }
  .hero-stat-divider { width: 40px; height: 1px; }
  .hero-stat { padding: 10px 0; }
  .profiles-grid { max-width: 100%; }
}

/* ════════════════════════════════════════
   LIGHT MODE — system preference
   Only on mobile (prefers-color-scheme)
   Preserves dark brand on desktop
════════════════════════════════════════ */
@media (prefers-color-scheme: light) {
  :root {
    --dark: #F8F8FA;
    --dark-2: #FFFFFF;
    --dark-3: #F0F0F4;
    --border: rgba(0,0,0,0.08);
    --border-hover: rgba(0,0,0,0.14);
    --white: #0A0A0F;
    --gray: #52525B;
    --gray-dim: rgba(82,82,91,0.6);
  }

  body { background: #F8F8FA; color: #0A0A0F; }
  body::before { opacity: 0.15; }

  /* Nav */
  .nav-wrapper {
    background: rgba(248,248,250,0.92);
    border-bottom-color: rgba(0,0,0,0.07);
  }
  .nav-mobile-menu { background: #F8F8FA; }
  .nav-mobile-btn span { background: #0A0A0F; }
  .nav-wordmark { color: #0A0A0F; }
  .nav-wordmark .suffix { color: rgba(10,10,15,0.4); }
  .nav-logo-icon {
    background: #0A0A0F;
    border-color: rgba(0,0,0,0.1);
  }

  /* Hero */
  .hero-glow {
    background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
  }
  .hero-line { background: rgba(0,0,0,0.04); }
  .hero-title { color: #0A0A0F; }
  .hero-sub { color: #52525B; }
  .hero-stats {
    background: #FFFFFF;
    border-color: rgba(0,0,0,0.08);
  }
  .stat-num { color: #0A0A0F; }
  .stat-label { color: #71717A; }
  .hero-stat-divider { background: rgba(0,0,0,0.08); }

  /* Trust bar */
  .trust-bar {
    background: #FFFFFF;
    border-color: rgba(0,0,0,0.07);
  }
  .trust-item { color: #52525B; }
  .trust-dot-sep { background: rgba(0,0,0,0.1); }

  /* Cards */
  .card {
    background: #FFFFFF;
    border-color: rgba(0,0,0,0.08);
  }
  .card:hover { border-color: rgba(0,0,0,0.14); }

  /* Services grid */
  .service-item {
    background: #FFFFFF;
    border-color: rgba(0,0,0,0.08);
  }
  .service-item:hover { background: #F8F8FA; }
  .service-item h3 { color: #0A0A0F; }

  /* How section */
  .how-section {
    background: #FFFFFF;
    border-color: rgba(0,0,0,0.07);
  }
  .how-step {
    background: #F8F8FA;
    border-color: rgba(0,0,0,0.08);
  }
  .how-step h3 { color: #0A0A0F; }

  /* Why section */
  .why-section {
    background: #FFFFFF;
    border-color: rgba(0,0,0,0.07);
  }
  .why-left h2 { color: #0A0A0F; }
  .why-point { border-bottom-color: rgba(0,0,0,0.07); }
  .why-point h4 { color: #0A0A0F; }

  /* Profiles */
  .profile-card { background: #FFFFFF; }
  .profile-card h3 { color: #0A0A0F; }

  /* Testimonials */
  .testi-card { background: #FFFFFF; }
  .testi-text { color: rgba(10,10,15,0.75); }
  .testi-name { color: #0A0A0F; }
  .testi-avatar { background: #F0F0F4; border-color: rgba(0,0,0,0.08); }
  .testi-author { border-top-color: rgba(0,0,0,0.07); }

  /* CTA box */
  .cta-box {
    background: #FFFFFF;
    border-color: rgba(0,0,0,0.08);
  }
  .cta-box h2 { color: #0A0A0F; }
  .cta-box-glow {
    background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 70%);
  }

  /* FAQ */
  .faq-q { color: #0A0A0F; }
  .faq-item { border-bottom-color: rgba(0,0,0,0.07); }
  .faq-wrap { border-top-color: rgba(0,0,0,0.07); }
  .faq-home-left h2 { color: #0A0A0F; }

  /* Forms */
  .form-input, .form-select, .form-textarea {
    background: #F8F8FA;
    border-color: rgba(0,0,0,0.1);
    color: #0A0A0F;
  }
  .form-input::placeholder, .form-textarea::placeholder {
    color: rgba(82,82,91,0.5);
  }
  .form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2352525B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); }
  .form-select option { background: #FFFFFF; color: #0A0A0F; }

  /* Contact info */
  .info-block { border-bottom-color: rgba(0,0,0,0.07); }
  .info-block h4 { color: #0A0A0F; }
  .info-email { color: #0A0A0F; }
  .info-text { color: rgba(10,10,15,0.55); }

  /* Footer */
  .footer { background: #FFFFFF; border-top-color: rgba(0,0,0,0.07); }
  .footer-bottom { border-top-color: rgba(0,0,0,0.07); }
  .footer-col h5 { color: #0A0A0F; }
  .footer-col a { color: #52525B; }
  .footer-col a:hover { color: #0A0A0F; }
  .footer-tagline { color: #52525B; }
  .footer-entity { color: rgba(82,82,91,0.5); }
  .footer-dot { background: rgba(0,0,0,0.1); }
  .footer-dot:first-child { background: var(--blue); }
  .footer-bottom p { color: rgba(82,82,91,0.5); }

  /* Legal */
  .legal-nav-link { color: #52525B; }
  .legal-nav-link:hover { background: rgba(0,0,0,0.04); color: #0A0A0F; }
  .legal-nav-link.active { color: #0A0A0F; background: rgba(37,99,235,0.07); }
  .legal-block h2 { color: #0A0A0F; }
  .legal-block h3 { color: rgba(10,10,15,0.75); }
  .legal-block p, .legal-block li { color: rgba(10,10,15,0.6); }

  /* Cookie banner */
  .cookie-banner { background: #FFFFFF; border-color: rgba(0,0,0,0.1); }

  /* Page hero */
  .page-hero-glow {
    background: radial-gradient(circle, rgba(37,99,235,0.07) 0%, transparent 70%);
  }

  /* Guarantee box */
  .guarantee-box {
    background: rgba(37,99,235,0.05);
    border-color: rgba(37,99,235,0.15);
  }
  .guarantee-box strong { color: #0A0A0F; }

  /* Plans */
  .plan-card { background: #FFFFFF; border-color: rgba(0,0,0,0.08); }
  .plan-card.featured {
    background: #F8F8FA;
    border-color: rgba(37,99,235,0.3);
  }
  .plan-name { color: #0A0A0F; }
  .price-amt { color: #0A0A0F; }
  .plan-price { border-bottom-color: rgba(0,0,0,0.07); }
  .plan-features li { color: rgba(10,10,15,0.7); }
  .ot-card { background: #FFFFFF; border-color: rgba(0,0,0,0.08); }
  .ot-top h4 { color: #0A0A0F; }
  .ot-amt { color: #0A0A0F; }

  /* Svc detail */
  .svc-intro { border-bottom-color: rgba(0,0,0,0.07); }
  .svc-detail-item { border-bottom-color: rgba(0,0,0,0.07); }
  .svc-detail-title h3 { color: #0A0A0F; }
  .svc-detail-desc { color: rgba(10,10,15,0.62); }
  .svc-includes li { color: rgba(10,10,15,0.6); }
  .svc-includes-label { color: #52525B; }

  /* Scrollbar */
  ::-webkit-scrollbar-track { background: #F8F8FA; }
  ::-webkit-scrollbar-thumb { background: #E4E4E7; }

  /* Profile tag */
  .profile-tag {
    background: rgba(37,99,235,0.06);
    border-color: rgba(37,99,235,0.12);
  }

  /* Rating */
  .rating-aggregate span { color: #52525B; }

  /* How arrow */
  .how-arrow { color: var(--blue); }

  /* Nav links */
  .nav-link { color: #52525B; }
  .nav-link:hover { color: #0A0A0F; background: rgba(0,0,0,0.04); }
  .lang-btn { color: #52525B; border-color: rgba(0,0,0,0.1); }
  .lang-btn:hover { color: #0A0A0F; background: rgba(0,0,0,0.04); }
  .nav-mobile-links a { color: #52525B; border-bottom-color: rgba(0,0,0,0.07); }
  .nav-mobile-links a:hover { color: #0A0A0F; }

  /* Section headers */
  .services-header h2 { color: #0A0A0F; }
  h1, h2, h3, h4 { color: #0A0A0F; }
  p { color: #52525B; }

  /* Comparison table */
  .compare-table th { color: #0A0A0F; }
  .compare-row { border-bottom-color: rgba(0,0,0,0.07); }
  .compare-feature { color: #0A0A0F; }
  .compare-no { color: #9CA3AF; }

  /* Announcement bar */
  .announce-bar {
    background: #0A0A0F;
    color: #FFFFFF;
  }

  /* Skip link */
  .skip-link { background: var(--blue); color: #FFFFFF; }
}

/* ════════════════════════════════════════
   IMPROVEMENT 11: ANNOUNCEMENT BAR
════════════════════════════════════════ */
.announce-bar {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: 9px 20px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  position: relative;
  z-index: 101;
}
.announce-bar a {
  color: rgba(255,255,255,0.85);
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: 8px;
}
.announce-bar a:hover { color: #fff; }
.announce-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 0 4px;
}
.announce-close:hover { color: #fff; }

/* ════════════════════════════════════════
   IMPROVEMENT 12: STICKY MOBILE CTA
════════════════════════════════════════ */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  gap: 10px;
  align-items: center;
}

@media (max-width: 768px) {
  .mobile-sticky-cta { display: flex; }
  /* Push cookie banner above sticky CTA */
  .cookie-banner { bottom: 80px !important; }
  /* Push WhatsApp float above */
  .whatsapp-float { bottom: 80px; }
}

.mobile-sticky-cta .btn { flex: 1; justify-content: center; font-size: 14px; padding: 11px 16px; }
.mobile-sticky-whatsapp {
  width: 44px; height: 44px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; text-decoration: none;
  transition: transform var(--transition);
}
.mobile-sticky-whatsapp:hover { transform: scale(1.05); }

/* ════════════════════════════════════════
   IMPROVEMENT 13: TESTIMONIAL AVATARS
════════════════════════════════════════ */
.testi-avatar-initial {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-sans); font-size: 14px; font-weight: 700;
  color: var(--white); flex-shrink: 0;
}
.avatar-blue { background: var(--blue); }
.avatar-teal { background: #0D9488; }
.avatar-purple { background: #7C3AED; }

/* ════════════════════════════════════════
   IMPROVEMENT 14: COMPARISON TABLE
════════════════════════════════════════ */
.compare-section { background: var(--dark-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

.compare-table thead tr {
  border-bottom: 1px solid var(--border);
}

.compare-table th {
  padding: 14px 20px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  text-align: left;
}

.compare-table th:first-child { width: 40%; }
.compare-table th.th-highlight { color: var(--blue-light); }

.compare-row {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.compare-row:last-child { border-bottom: none; }
.compare-row:hover { background: rgba(255,255,255,0.02); }

.compare-row td {
  padding: 14px 20px;
  font-size: 14px;
  vertical-align: middle;
}

.compare-feature {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}

.compare-yes {
  color: var(--blue-light);
  font-size: 18px;
  font-weight: 700;
}
.compare-no {
  color: rgba(161,161,170,0.4);
  font-size: 18px;
}
.compare-partial {
  font-size: 12px;
  color: var(--gray);
  font-style: italic;
}

/* ════════════════════════════════════════
   IMPROVEMENT 15: FORM STEP INDICATOR
════════════════════════════════════════ */
.form-steps {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.form-step-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gray);
  font-family: var(--font-body);
}
.form-step-item.active { color: var(--blue-light); }
.form-step-item.done { color: var(--gray); }
.form-step-num {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--dark-3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; font-family: var(--font-sans);
  flex-shrink: 0;
}
.form-step-item.active .form-step-num {
  background: var(--blue); border-color: var(--blue); color: white;
}
.form-step-item.done .form-step-num {
  background: rgba(37,99,235,0.15); border-color: rgba(37,99,235,0.3); color: var(--blue-light);
}
.form-step-divider {
  height: 1px; width: 20px; background: var(--border); flex-shrink: 0;
}

/* ════════════════════════════════════════
   IMPROVEMENT 17: LLC BADGE
════════════════════════════════════════ */
.llc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.2);
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--blue-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.llc-badge svg { flex-shrink: 0; }

/* ════════════════════════════════════════
   IMPROVEMENT 18: RESPONSE PROMISE
════════════════════════════════════════ */
.response-promise {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(37,99,235,0.06);
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: var(--radius-sm);
  margin-top: 12px;
  font-size: 13px;
  color: var(--gray);
  font-family: var(--font-body);
}
.response-promise svg { color: var(--blue-light); flex-shrink: 0; }
.response-promise strong { color: var(--white); font-family: var(--font-sans); }

/* ════════════════════════════════════════
   IMPROVEMENT 19: CLIENT COUNTER
════════════════════════════════════════ */
.counter-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 56px;
}
.counter-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  background: var(--dark-2);
}
.counter-item:last-child { border-right: none; }
.counter-num {
  font-family: var(--font-sans);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.counter-num .counter-plus { color: var(--blue); }
.counter-label {
  font-size: 12px;
  color: var(--gray);
  font-family: var(--font-body);
  line-height: 1.4;
}

/* ════════════════════════════════════════
   IMPROVEMENT 3: EXIT INTENT POPUP
════════════════════════════════════════ */
.exit-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,0.7);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.exit-overlay.show { opacity: 1; pointer-events: all; }

.exit-modal {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  max-width: 440px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform 0.3s;
}
.exit-overlay.show .exit-modal { transform: translateY(0); }

.exit-close {
  position: absolute; top: 16px; right: 16px;
  background: transparent; border: none;
  color: var(--gray); font-size: 20px; cursor: pointer;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.exit-close:hover { background: rgba(255,255,255,0.08); color: var(--white); }

.exit-tag { margin-bottom: 16px; }
.exit-modal h3 { color: var(--white); font-size: 22px; margin-bottom: 10px; letter-spacing: -0.03em; }
.exit-modal p { font-size: 14px; margin-bottom: 20px; line-height: 1.65; }

.exit-form { display: flex; flex-direction: column; gap: 10px; }
.exit-form input, .exit-form textarea {
  width: 100%; padding: 11px 14px;
  background: var(--dark-3); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--white);
  font-family: var(--font-body); font-size: 14px; outline: none;
  transition: border-color var(--transition);
}
.exit-form input::placeholder, .exit-form textarea::placeholder { color: rgba(161,161,170,0.4); }
.exit-form input:focus, .exit-form textarea:focus { border-color: var(--blue); }
.exit-form textarea { resize: none; height: 80px; }
.exit-form .btn { justify-content: center; }
.exit-dismiss {
  text-align: center; font-size: 12px; color: var(--gray);
  cursor: pointer; margin-top: 4px;
  background: none; border: none; width: 100%;
  transition: color var(--transition); font-family: var(--font-body);
}
.exit-dismiss:hover { color: var(--white); }

/* ════════════════════════════════════════
   IMPROVEMENT 5: LIVE RESPONSE INDICATOR
════════════════════════════════════════ */
.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--gray);
  font-family: var(--font-body);
  margin-top: 10px;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22C55E; flex-shrink: 0;
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 4px rgba(34,197,94,0); }
}

/* ════════════════════════════════════════
   IMPROVEMENT 21: ANALYTICS (no CSS needed)
   IMPROVEMENT 23: THANK YOU PAGE
════════════════════════════════════════ */
.thankyou-section {
  min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px 80px;
}
.thankyou-inner { max-width: 480px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.thankyou-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(37,99,235,0.1); border: 1px solid rgba(37,99,235,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-light);
}
.thankyou-inner h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); color: var(--white); }
.thankyou-links { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }

/* ════════════════════════════════════════
   BLOG SECTION
════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.blog-card {
  display: flex; flex-direction: column;
  background: var(--dark-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
  text-decoration: none;
}
.blog-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.blog-card-img {
  height: 140px;
  background: linear-gradient(135deg, var(--dark-3) 0%, rgba(37,99,235,0.12) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-light); font-size: 32px;
  border-bottom: 1px solid var(--border);
}
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.blog-tag-sm {
  font-size: 10.5px; font-weight: 600; color: var(--blue-light);
  text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-body);
}
.blog-card-body h3 { font-size: 15px; color: var(--white); line-height: 1.4; letter-spacing: -0.02em; }
.blog-card-body p { font-size: 13px; line-height: 1.6; flex: 1; }
.blog-read { font-size: 12.5px; color: var(--blue-light); font-family: var(--font-body); font-weight: 500; margin-top: 4px; }

/* RESPONSIVE new sections */
@media (max-width: 768px) {
  .counter-strip { grid-template-columns: repeat(2, 1fr); }
  .counter-item:nth-child(2) { border-right: none; }
  .counter-item:nth-child(3) { border-top: 1px solid var(--border); }
  .counter-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .blog-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

@media (max-width: 480px) {
  .compare-table th, .compare-row td { padding: 10px 12px; font-size: 13px; }
  .exit-modal { padding: 28px 20px; }
}

/* Price from in hero */
.price-from {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--gray);
  margin-bottom: 20px;
}
.price-from strong {
  font-family: var(--font-sans);
  color: var(--white);
  font-size: 15px;
}

@media (prefers-color-scheme: light) {
  .price-from strong { color: #0A0A0F; }
  .how-step:hover { background: #FFFFFF; border-color: rgba(0,0,0,0.12); }
  .plan-card { background: #FFFFFF; }
  .counter-item { background: #FFFFFF; }
  .counter-num { color: #0A0A0F; }
  .blog-card { background: #FFFFFF; border-color: rgba(0,0,0,0.08); }
  .blog-card-body h3 { color: #0A0A0F; }
  .blog-card-img { background: linear-gradient(135deg, #F0F0F4 0%, rgba(37,99,235,0.08) 100%); }
  .exit-modal { background: #FFFFFF; border-color: rgba(0,0,0,0.1); }
  .exit-modal h3 { color: #0A0A0F; }
  .exit-form input, .exit-form textarea { background: #F8F8FA; border-color: rgba(0,0,0,0.1); color: #0A0A0F; }
  .response-promise { background: rgba(37,99,235,0.05); border-color: rgba(37,99,235,0.12); }
  .response-promise strong { color: #0A0A0F; }
  .compare-table th { color: #0A0A0F; background: transparent; }
  .compare-row:hover { background: rgba(0,0,0,0.02); }
  .compare-feature { color: #0A0A0F; }
  .compare-partial { color: #52525B; }
  .counter-strip { border-color: rgba(0,0,0,0.08); }
  .counter-item { border-right-color: rgba(0,0,0,0.08); }
}

/* ═══════════════════════════════════════════════
   ANIMACIONES — vida y física (respeta reduced-motion global)
═══════════════════════════════════════════════ */
h1, h2, h3 { text-wrap: balance; }

/* Entrada escalonada del hero */
@keyframes nlw-rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.hero-inner > * { animation: nlw-rise .6s cubic-bezier(.22,1,.36,1) backwards; }
.hero-inner > *:nth-child(1){animation-delay:.05s} .hero-inner > *:nth-child(2){animation-delay:.13s}
.hero-inner > *:nth-child(3){animation-delay:.21s} .hero-inner > *:nth-child(4){animation-delay:.29s}
.hero-inner > *:nth-child(5){animation-delay:.37s} .hero-inner > *:nth-child(6){animation-delay:.45s}
.hero-inner > *:nth-child(7){animation-delay:.53s}

/* Orbes del hero flotando + glow respirando */
@keyframes nlw-drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(34px,-26px) scale(1.06); } }
@keyframes nlw-drift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-40px,22px) scale(.95); } }
@keyframes nlw-drift3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(22px,30px) scale(1.08); } }
.hero-orb.orb-1 { animation: nlw-drift1 19s ease-in-out infinite; }
.hero-orb.orb-2 { animation: nlw-drift2 23s ease-in-out infinite; }
.hero-orb.orb-3 { animation: nlw-drift3 27s ease-in-out infinite; }
@keyframes nlw-breathe { 0%,100% { opacity: .8; } 50% { opacity: 1; } }
.hero-glow { animation: nlw-breathe 9s ease-in-out infinite; }

/* Halo sutil en el logo */
@keyframes nlw-halo { 0%,100% { box-shadow: 0 0 0 0 rgba(37,99,235,.30); } 55% { box-shadow: 0 0 0 10px rgba(37,99,235,0); } }
.nav-logo-icon { animation: nlw-halo 3.8s ease-in-out 1.5s infinite; }

/* Tarjetas: elevación con muelle */
.card, .blog-card, .plan-card, .ot-card, .service-card, .step {
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), border-color var(--transition), box-shadow .3s ease;
}
@media (hover: hover) {
  .card:hover, .blog-card:hover, .plan-card:hover, .ot-card:hover, .service-card:hover, .step:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: 0 14px 40px rgba(0,0,0,.35), 0 4px 14px rgba(37,99,235,.12);
  }
}

/* Botones: pulsación + brillo que barre el primario */
.btn:active { transform: scale(.97); }
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: ""; position: absolute; top: 0; left: -70%; width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-18deg); transition: left .55s ease; pointer-events: none;
}
@media (hover: hover) { .btn-primary:hover::after { left: 130%; } }

/* Scroll-reveal (lo activa main.js; sin JS todo queda visible) */
.js-reveal { opacity: 0; transform: translateY(16px);
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
  transition-delay: var(--rd, 0s); }
.js-reveal.revealed { opacity: 1; transform: none; }

/* ═══ TANDA D — Web ═══ */
/* 17 · Sugerencia de idioma */
.lang-suggest{position:fixed;left:50%;bottom:24px;transform:translateX(-50%) translateY(140%);z-index:120;
  display:flex;align-items:center;gap:14px;max-width:calc(100% - 32px);
  background:var(--surface,#fff);border:1px solid var(--border,rgba(0,0,0,.1));border-radius:14px;
  padding:12px 16px;box-shadow:0 12px 40px rgba(0,0,0,.16);opacity:0;transition:transform .45s cubic-bezier(.22,1,.36,1),opacity .45s;}
.lang-suggest.show{transform:translateX(-50%) translateY(0);opacity:1;}
.lang-suggest p{margin:0;font-size:14px;color:var(--text,#1a1a1a);}
.lang-suggest a{background:var(--blue);color:#fff;text-decoration:none;padding:8px 16px;border-radius:10px;font-size:13px;font-weight:700;white-space:nowrap;}
.lang-suggest button{background:none;border:none;color:var(--text-muted,#888);font-size:20px;line-height:1;cursor:pointer;padding:0 2px;}

@media (prefers-reduced-motion: reduce){ .lang-suggest,.contact-fab-btn,.contact-fab-menu,.contact-fab-item{transition:none;} }
@media print{ .contact-fab,.lang-suggest{display:none;} }
