:root {
  --bg: #f5f8ff;
  --bg2: #eef3fc;
  --surface: #ffffff;
  --surface2: #f0f5ff;
  --blue: #007BFF;
  --blue-dark: #0056cc;
  --blue-light: rgba(0,123,255,0.10);
  --green: #28A745;
  --green-light: rgba(40,167,69,0.10);
  --text: #1a2233;
  --muted: #5a6a85;
  --border: rgba(0,80,200,0.10);
  --shadow: 0 4px 24px rgba(0,80,200,0.09);
  --heading: 'Montserrat', sans-serif;
  --body: 'Inter', sans-serif;
  --nav-bg: rgba(255,255,255,0.92);
  --hero-grad: linear-gradient(135deg, #f0f6ff 0%, #e8f5ee 100%);
  --values-strip-grad: linear-gradient(135deg, var(--blue), var(--blue-dark));
  --numbers-strip-grad: linear-gradient(135deg,#f0f6ff,#e8f5ee);
  --cta-banner-grad: linear-gradient(130deg, var(--blue) 0%, #005fd4 60%, #0049aa 100%);
  --footer-bg: #1a2233;
  --footer-text: rgba(255,255,255,0.85);
  --footer-muted: rgba(255,255,255,0.5);
  --footer-border: rgba(255,255,255,0.08);
}

html.dark {
  --bg: #0d1117;
  --bg2: #161b24;
  --surface: #1a2233;
  --surface2: #1e293b;
  --blue: #3b9eff;
  --blue-dark: #1a7de0;
  --blue-light: rgba(59,158,255,0.12);
  --green: #34c85a;
  --green-light: rgba(52,200,90,0.12);
  --text: #e2e8f4;
  --muted: #7a8ba8;
  --border: rgba(100,160,255,0.10);
  --shadow: 0 4px 24px rgba(0,0,0,0.35);
  --nav-bg: rgba(13,17,23,0.92);
  --hero-grad: linear-gradient(135deg, #0d1a2e 0%, #0d1f14 100%);
  --values-strip-grad: linear-gradient(135deg, #1a3a6e, #0f2550);
  --numbers-strip-grad: linear-gradient(135deg,#0d1a2e,#0d1f14);
  --cta-banner-grad: linear-gradient(130deg, #1a3a6e 0%, #0f2550 60%, #0a1d3d 100%);
  --footer-bg: #070b12;
  --footer-text: rgba(255,255,255,0.8);
  --footer-muted: rgba(255,255,255,0.4);
  --footer-border: rgba(255,255,255,0.06);
}

/* ── DARK MODE OVERRIDES ── */
html.dark nav {
  background: var(--nav-bg);
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

html.dark .hero { background: var(--hero-grad); }

html.dark .blob-1 { background: radial-gradient(circle, rgba(59,158,255,0.5), transparent); }
html.dark .blob-2 { background: radial-gradient(circle, rgba(52,200,90,0.4), transparent); }

html.dark .hero-badge {
  background: rgba(59,158,255,0.1);
  border-color: rgba(59,158,255,0.25);
  box-shadow: 0 2px 10px rgba(59,158,255,0.1);
}

html.dark .feature-card { background: var(--surface); }
html.dark .feature-card:hover { background: var(--surface2); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }

html.dark .values-strip { background: var(--values-strip-grad); }

html.dark .plan-card { background: var(--surface); }
html.dark .plan-card.featured { background: var(--surface2); }

html.dark .testimonial-card { background: var(--surface); }

html.dark .about-image-placeholder { background: linear-gradient(135deg, var(--surface2), var(--surface)); border-color: rgba(59,158,255,0.15); }
html.dark .about-float { background: var(--surface2); }

html.dark .number-card { background: var(--surface); }
html.dark .partner-item { background: var(--surface); }

html.dark section[style*="background:white"],
html.dark section[style*="background: white"] { background: var(--surface) !important; }
html.dark section[style*="background:linear-gradient(135deg,#f0f6ff"] { background: var(--numbers-strip-grad) !important; }

html.dark .cta-banner { background: var(--cta-banner-grad); }
html.dark .btn-cta-white { color: var(--blue-dark); }

html.dark .contact-form { background: var(--surface); }
html.dark .form-group input,
html.dark .form-group select,
html.dark .form-group textarea { background: var(--bg2); border-color: var(--border); color: var(--text); }
html.dark .form-group input::placeholder,
html.dark .form-group textarea::placeholder { color: var(--muted); }
html.dark .form-group select option { background: var(--surface); }

html.dark .faq-item { background: var(--surface); }
html.dark .faq-list { background: var(--border); border-color: var(--border); }

html.dark footer { background: var(--footer-bg); }
html.dark .footer-bottom { border-color: var(--footer-border); }
html.dark .footer-bottom p { color: var(--footer-muted); }
html.dark .footer-brand p { color: var(--footer-muted); }
html.dark .footer-col a { color: var(--footer-muted); }
html.dark .footer-col h4 { color: var(--footer-text); }

html.dark .mockup-shell { background: var(--surface2); box-shadow: 0 32px 64px rgba(0,0,0,0.5); }
html.dark .mockup-bar { background: var(--bg2); }
html.dark .mockup-url { background: var(--bg); border-color: var(--border); }
html.dark .mockup-card,
html.dark .mockup-mini { background: var(--bg2); border-color: var(--border); }
html.dark .mockup-line { background: var(--bg2); }

html.dark div[style*="background:white"],
html.dark div[style*="background: white"] { background: var(--surface) !important; }
html.dark div[style*="background:linear-gradient(135deg,var(--bg2)"] { background: linear-gradient(135deg,var(--surface2),var(--bg)) !important; }

/* ── THEME TOGGLE BUTTON ── */
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.25s;
  flex-shrink: 0;
  color: var(--text);
  box-shadow: var(--shadow);
}

.theme-toggle:hover {
  border-color: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,80,200,0.15);
}

html.dark .theme-toggle:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 70px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,80,200,0.06);
}

/* ── LOGO ── */
.logo {
  font-family: var(--heading);
  font-size: 1.45rem;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.logo-icon {
  width: 36px; height: 36px;
  position: relative;
  flex-shrink: 0;
}

.logo-icon svg { width: 36px; height: 36px; }

.logo-text { display: flex; align-items: baseline; gap: 0; line-height: 1; }
.logo-info { font-weight: 800; color: var(--blue); letter-spacing: -0.02em; }
.logo-ead  { font-weight: 300; color: var(--green); letter-spacing: 0.03em; }

/* ── NAV LINKS ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-cta {
  background: var(--blue) !important;
  color: #fff !important;
  padding: 0.5rem 1.3rem !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  font-size: 0.83rem !important;
  letter-spacing: 0.02em !important;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover { background: var(--blue-dark) !important; transform: translateY(-1px); }

/* ── PAGES ── */
.page { display: none; padding-top: 70px; min-height: 100vh; }
.page.active { display: block; animation: fadeUp 0.55s ease both; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 5rem 5% 4rem;
  background: linear-gradient(135deg, #f0f6ff 0%, #e8f5ee 100%);
}

.hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #007BFF, transparent);
  top: -100px; right: -80px;
}

.blob-2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, #28A745, transparent);
  bottom: -80px; left: 10%;
}

.hero-content {
  position: relative;
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid rgba(0,123,255,0.2);
  color: var(--blue);
  padding: 0.42rem 1rem;
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  box-shadow: 0 2px 10px rgba(0,123,255,0.1);
}

.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

h1 {
  font-family: var(--heading);
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.4rem;
  color: var(--text);
}

h1 em {
  font-style: normal;
  color: var(--blue);
}

h1 strong {
  color: var(--green);
  font-weight: 900;
}

.hero-slogan {
  display: inline-block;
  font-family: var(--heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue);
  border-left: 3px solid var(--green);
  padding-left: 0.8rem;
  margin-bottom: 1.4rem;
  letter-spacing: 0.01em;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 400;
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-family: var(--heading);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.01em;
}

.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,123,255,0.3); }

.btn-secondary {
  background: white;
  color: var(--blue);
  border: 2px solid var(--blue);
  padding: 0.88rem 2rem;
  border-radius: 8px;
  font-family: var(--heading);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover { background: var(--blue-light); }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,123,255,0.12);
}

.stat-num {
  font-family: var(--heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.03em;
}

.stat-label { font-size: 0.78rem; color: var(--muted); margin-top: 2px; font-weight: 500; }

/* Hero mockup — right side */
.hero-mockup-side {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 44%;
  max-width: 560px;
  padding: 2rem;
}

.mockup-shell {
  background: white;
  border-radius: 16px;
  box-shadow: 0 32px 64px rgba(0,80,200,0.15), 0 0 0 1px rgba(0,123,255,0.08);
  overflow: hidden;
}

.mockup-bar {
  background: #f0f5ff;
  padding: 0.7rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  border-bottom: 1px solid var(--border);
}

.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #ff5f57; }
.dot-y { background: #ffbd2e; }
.dot-g { background: #28c840; }

.mockup-url {
  margin-left: 0.8rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.28rem 0.75rem;
  font-size: 0.68rem;
  color: var(--muted);
  flex: 1;
  font-family: var(--body);
}

.mockup-body { padding: 1.4rem; display: flex; flex-direction: column; gap: 0.9rem; }

.mockup-topbar {
  height: 38px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  border-radius: 8px;
  opacity: 0.7;
}

.mockup-cards { display: flex; gap: 0.8rem; }

.mockup-card {
  flex: 1;
  height: 75px;
  background: var(--bg2);
  border-radius: 8px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.mockup-card::before {
  content: '';
  position: absolute;
  left: 0.8rem; top: 0.8rem;
  width: 50%; height: 7px;
  border-radius: 3px;
  background: rgba(0,123,255,0.15);
}

.mockup-card::after {
  content: '';
  position: absolute;
  left: 0.8rem; top: 1.7rem;
  width: 70%; height: 6px;
  border-radius: 3px;
  background: rgba(0,80,200,0.07);
}

.mockup-lines { display: flex; flex-direction: column; gap: 0.5rem; }

.mockup-line {
  height: 9px;
  border-radius: 4px;
  background: var(--bg2);
}

.mockup-footer-row { display: flex; gap: 0.8rem; }

.mockup-mini {
  flex: 1;
  height: 52px;
  background: var(--bg2);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.mockup-mini.accent { border-color: rgba(0,123,255,0.3); }

/* ── SECTIONS ── */
section { padding: 5.5rem 5%; }

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.7rem;
}

h2 {
  font-family: var(--heading);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 0.9rem;
  color: var(--text);
}

h2 em { font-style: normal; color: var(--blue); }
h2 strong { color: var(--green); }

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 500px;
  font-weight: 400;
  line-height: 1.72;
  margin-bottom: 3.2rem;
}

/* ── FEATURES GRID ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,80,200,0.13);
  border-color: rgba(0,123,255,0.25);
}

.feature-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.3rem;
  background: var(--blue-light);
}

.feature-card h3 {
  font-family: var(--heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.feature-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* ── VALORES ── */
.values-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 18px;
  overflow: hidden;
  margin: 0 5% 5rem;
}

.value-tile {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.12);
  color: white;
  position: relative;
  overflow: hidden;
}

.value-tile:last-child { border-right: none; }

.value-tile::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.values-strip .value-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.values-strip .value-title {
  font-family: var(--heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #fff;
}
.values-strip .value-text {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
}

/* ── PLANS ── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.plan-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.25s;
}

.plan-card:hover { transform: translateY(-4px); }

.plan-card.featured {
  border-color: var(--blue);
  box-shadow: 0 12px 40px rgba(0,123,255,0.18);
}

.plan-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: white;
  font-family: var(--heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-name {
  font-family: var(--heading);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.plan-desc { font-size: 0.83rem; color: var(--muted); margin-bottom: 1.6rem; }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 0.2rem;
}

.price-currency { font-size: 1rem; color: var(--muted); font-weight: 500; }
.price-amount {
  font-family: var(--heading);
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--blue);
}

.price-period { font-size: 0.82rem; color: var(--muted); }
.price-note { font-size: 0.76rem; color: var(--muted); margin-bottom: 1.8rem; }

.plan-divider { height: 1px; background: var(--border); margin: 1.3rem 0; }

.plan-features { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.8rem; }

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.plan-features li::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 0.82rem; flex-shrink: 0; margin-top: 1px; }
.plan-features li.disabled { opacity: 0.38; }
.plan-features li.disabled::before { content: '–'; color: var(--muted); }

.btn-plan {
  width: 100%;
  padding: 0.82rem;
  border-radius: 8px;
  font-family: var(--heading);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid var(--border);
  background: white;
  color: var(--blue);
}

.btn-plan:hover { border-color: var(--blue); background: var(--blue-light); }

.btn-plan.primary {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

.btn-plan.primary:hover { background: var(--blue-dark); box-shadow: 0 8px 22px rgba(0,123,255,0.3); transform: translateY(-1px); }

/* ── ABOUT ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bg2), white);
  border: 2px dashed rgba(0,123,255,0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.8rem;
  color: var(--muted);
  font-size: 0.83rem;
  position: relative;
}

.about-float {
  position: absolute;
  bottom: -1.2rem; right: -1.2rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.4rem;
  box-shadow: 0 16px 36px rgba(0,80,200,0.12);
}

.float-label { font-size: 0.7rem; color: var(--muted); margin-bottom: 0.2rem; font-weight: 500; }
.float-val { font-family: var(--heading); font-size: 1.5rem; font-weight: 800; color: var(--blue); }

.value-list { display: flex; flex-direction: column; gap: 1.4rem; margin-top: 2rem; }

.value-item { display: flex; gap: 1rem; align-items: flex-start; }

.value-num {
  font-family: var(--heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--blue);
  opacity: 0.2;
  line-height: 1;
  min-width: 2.2rem;
}

.value-list .value-title { font-family: var(--heading); font-size: 0.98rem; font-weight: 700; margin-bottom: 0.25rem; color: var(--text); }
.value-list .value-text { font-size: 0.86rem; color: var(--muted); line-height: 1.65; }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.8rem;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-family: var(--heading);
  font-size: 4rem;
  color: var(--blue);
  opacity: 0.1;
  line-height: 1;
}

.testimonial-text {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.4rem;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }

.author-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading);
  font-weight: 800;
  font-size: 0.82rem;
  color: white;
}

.author-name { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.author-role { font-size: 0.73rem; color: var(--muted); }

/* ── CONTACT ── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.c-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-items { display: flex; flex-direction: column; gap: 1.4rem; margin-top: 2.2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.c-label { font-size: 0.72rem; color: var(--muted); margin-bottom: 0.1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.c-val { font-size: 0.9rem; font-weight: 500; color: var(--text); }

.contact-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-family: var(--heading);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.form-sub { font-size: 0.83rem; color: var(--muted); margin-bottom: 1.8rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.1rem; }

.form-group label {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--body);
  font-size: 0.9rem;
  padding: 0.72rem 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,123,255,0.1); }

.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: white; }

.field-error {
  display: none;
  font-size: 0.78rem;
  font-weight: 500;
  color: #c62828;
  line-height: 1.35;
  margin-top: 0.15rem;
}

.form-group.has-error .field-error { display: block; }

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: rgba(198, 40, 40, 0.55);
}

html.dark .field-error { color: #f87171; }

html.dark .form-group.has-error input,
html.dark .form-group.has-error select,
html.dark .form-group.has-error textarea {
  border-color: rgba(248, 113, 113, 0.45);
}

/* Honeypot anti-spam (oculto) */
.contact-form .honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.btn-submit {
  width: 100%;
  background: var(--blue);
  color: white;
  border: none;
  padding: 0.9rem;
  border-radius: 8px;
  font-family: var(--heading);
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 0.3rem;
  letter-spacing: 0.01em;
}

.btn-submit:hover { background: var(--blue-dark); box-shadow: 0 8px 22px rgba(0,123,255,0.3); transform: translateY(-2px); }

/* ── CTA BANNER ── */
.cta-banner {
  margin: 0 5% 5rem;
  background: linear-gradient(130deg, var(--blue) 0%, #005fd4 60%, #0049aa 100%);
  border-radius: 18px;
  padding: 3.5rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  overflow: hidden;
  position: relative;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60%; right: -5%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.cta-banner h2 { color: white; margin-bottom: 0.4rem; }
.cta-banner p { color: rgba(255,255,255,0.75); font-size: 0.95rem; max-width: 400px; }

.btn-cta-white {
  background: white;
  color: var(--blue);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-family: var(--heading);
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.15); }

/* ── NUMBERS STRIP ── */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.number-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.number-val { font-family: var(--heading); font-size: 2.8rem; font-weight: 900; color: var(--blue); letter-spacing: -0.03em; }
.number-label { font-size: 0.83rem; color: var(--muted); margin-top: 0.3rem; font-weight: 500; }

/* ── PARTNERS ── */
.partners-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.partner-item {
  height: 44px;
  min-width: 140px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  padding: 0 1.2rem;
  box-shadow: var(--shadow);
}

/* ── FOOTER ── */
footer {
  background: var(--text);
  padding: 4rem 5% 2rem;
  color: rgba(255,255,255,0.85);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo .logo-info { color: white; }
.footer-logo .logo-ead  { color: var(--green); }
.footer-logo .logo-icon svg path { stroke: white; }

.footer-brand p { font-size: 0.83rem; color: rgba(255,255,255,0.5); line-height: 1.72; max-width: 270px; margin-top: 1rem; }

.footer-col h4 {
  font-family: var(--heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  color: rgba(255,255,255,0.9);
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.84rem;
  margin-bottom: 0.65rem;
  transition: color 0.2s;
  cursor: pointer;
}

.footer-col a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

.social-links { display: flex; gap: 0.7rem; }
.social-link {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s;
  cursor: pointer;
}

.social-link:hover { border-color: var(--green); color: var(--green); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; margin-top: 2rem; }
.faq-item { background: white; padding: 1.4rem 1.7rem; }
.faq-q { font-weight: 600; font-size: 0.92rem; margin-bottom: 0.45rem; color: var(--text); }
.faq-a { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-mockup-side { display: none; }
  .hero-content { max-width: 100%; }
  .about-split, .contact-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-strip { grid-template-columns: 1fr 1fr; }
  .value-tile { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .values-strip { grid-template-columns: 1fr; }
}

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: white;
  border: 1.5px solid var(--green);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  font-size: 0.88rem;
  color: var(--text);
  z-index: 9999;
  box-shadow: 0 12px 32px rgba(0,80,200,0.12);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease;
}

.toast.show { transform: translateY(0); opacity: 1; }

.toast.toast--error {
  border-color: #c62828;
  box-shadow: 0 12px 32px rgba(198, 40, 40, 0.12);
}

html.dark .toast.toast--error {
  border-color: #f87171;
}

.logo-inline { cursor: pointer; display: flex; align-items: center; gap: 10px; text-decoration: none; }
