:root {
  --navy: #1a2035;
  --navy-light: #222d4a;
  --cyan: #00aaff;
  --cyan-light: #33bbff;
  --cyan-dark: #0077cc;
  --cyan-50: #e8f7ff;
  --cyan-100: rgba(0,170,255,0.08);
  --white: #ffffff;
  --gray-50: #fafbfc;
  --gray-100: #f5f7fa;
  --gray-200: #e8edf5;
  --gray-400: #8a96aa;
  --gray-600: #4a5568;
  --shadow-sm: 0 2px 12px rgba(0,170,255,0.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.13);
  --shadow-cyan: 0 8px 32px rgba(0,170,255,0.15);
  --radius: 16px;
  --radius-lg: 28px;
  --radius-sm: 10px;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--white);
  color: var(--navy);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 700;
}

p { line-height: 1.75; }

/* ── FOCUS ── */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ── ICONS ── */
.ic {
  width: 24px; height: 24px;
  stroke-width: 1.5; stroke: currentColor;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.ic-sm { width: 18px; height: 18px; stroke-width: 2; }
.ic-lg { width: 28px; height: 28px; }
.ic-hero { width: 24px; height: 24px; color: white; }
.ic-svc { width: 26px; height: 26px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%; height: 72px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow .3s var(--ease);
}
nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon { width: 36px; height: 36px; flex-shrink: 0; transition: transform .3s var(--ease); }
.nav-logo:hover .nav-logo-icon { transform: scale(1.08) rotate(-3deg); }
.nav-logo-text { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--navy); letter-spacing: -0.02em; }
.nav-logo-text span { color: var(--cyan); }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--gray-600); font-size: 0.92rem; font-weight: 500;
  transition: color .2s var(--ease);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--cyan); border-radius: 2px; transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--cyan); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--navy); color: var(--white);
  padding: 10px 24px; border-radius: 50px;
  text-decoration: none; font-size: 0.88rem; font-weight: 600;
  transition: background .2s var(--ease), transform .2s var(--ease), box-shadow .2s;
}
.nav-cta:hover { background: var(--cyan); transform: translateY(-1px); box-shadow: var(--shadow-sm); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; border-radius: 8px; transition: background .2s; }
.hamburger:hover { background: var(--gray-100); }
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 6% 80px;
  background: linear-gradient(150deg, #f0f6ff 0%, #ffffff 50%, #e8f5ff 100%);
  position: relative; overflow: hidden;
}

.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.25; pointer-events: none;
}
.hero-blob-1 {
  width: 500px; height: 500px;
  background: var(--cyan);
  top: -100px; right: -100px;
  animation: float 8s ease-in-out infinite;
}
.hero-blob-2 {
  width: 300px; height: 300px;
  background: #0044aa;
  bottom: 0; left: 5%;
  animation: float 11s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.04); }
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  max-width: 1200px; margin: 0 auto; width: 100%;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cyan-100); border: 1px solid rgba(0,170,255,0.3);
  color: var(--cyan-dark); padding: 6px 16px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600; margin-bottom: 24px;
  animation: fadeUp .6s ease both;
}
.hero-badge::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); animation: pulse-dot 2s ease infinite; }
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}

h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 800; line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.04em;
  animation: fadeUp .7s .1s ease both;
}
h1 span { color: var(--cyan); }

.hero-sub {
  margin-top: 20px; font-size: 1.15rem; color: var(--gray-600);
  max-width: 520px; line-height: 1.8;
  animation: fadeUp .7s .2s ease both;
}

.hero-actions {
  display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap;
  animation: fadeUp .7s .3s ease both;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cyan); color: var(--white);
  padding: 14px 32px; border-radius: 50px;
  text-decoration: none; font-weight: 600; font-size: 0.95rem;
  transition: all .2s var(--ease);
  box-shadow: 0 4px 20px rgba(0,170,255,0.35);
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--cyan-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,170,255,0.45); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--navy);
  padding: 14px 32px; border-radius: 50px;
  border: 2px solid var(--gray-200);
  text-decoration: none; font-weight: 600; font-size: 0.95rem;
  transition: all .2s var(--ease);
  cursor: pointer;
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-2px); }

.hero-visual {
  display: flex; align-items: center; justify-content: center;
  animation: fadeUp .7s .4s ease both;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 36px 32px;
  width: 100%; max-width: 400px;
  border: 1px solid var(--gray-200);
}

.hero-card-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
}
.hc-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan), #0055cc);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hc-title { font-family: var(--font-heading); font-weight: 700; font-size: 1rem; }
.hc-sub { font-size: 0.82rem; color: var(--gray-400); margin-top: 2px; }

.hc-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.hc-stat {
  background: var(--gray-100); border-radius: 12px; padding: 14px 16px;
}
.hc-stat-num { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; color: var(--cyan); }
.hc-stat-label { font-size: 0.78rem; color: var(--gray-400); margin-top: 2px; }

.hc-bar-label { font-size: 0.82rem; color: var(--gray-600); margin-bottom: 6px; display: flex; justify-content: space-between; }
.hc-bar { height: 8px; background: var(--gray-200); border-radius: 50px; overflow: hidden; margin-bottom: 12px; }
.hc-bar-fill { height: 100%; border-radius: 50px; background: linear-gradient(90deg, var(--cyan), var(--cyan-dark)); transition: width 1.2s var(--ease); }

.hc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.hc-tag {
  font-size: 0.78rem; padding: 5px 14px; border-radius: 50px;
  background: var(--cyan-100); color: var(--cyan-dark); font-weight: 500;
  letter-spacing: 0.01em;
}

/* ── SECTION SHARED ── */
section { padding: 100px 6%; }
.section-label {
  font-size: 0.82rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading); font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800; color: var(--navy); line-height: 1.15;
  letter-spacing: -0.04em;
}
.section-desc {
  font-size: 1.05rem; color: var(--gray-600); max-width: 560px;
  margin-top: 12px; line-height: 1.8;
}
.section-head { margin-bottom: 56px; }
.max-w { max-width: 1200px; margin: 0 auto; }

/* ── LOGOS ── */
.logos-strip {
  background: var(--gray-50);
  padding: 32px 6%;
  overflow: hidden;
}
.logos-inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.logo-pill {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 0.9rem; color: var(--gray-400);
  letter-spacing: .06em; opacity: 0.7;
}

/* ── SERVICES ── */
#servicios { background: var(--white); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: var(--gray-50); border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid transparent;
  transition: all .3s var(--ease);
  cursor: default;
}
.service-card:hover {
  background: var(--white);
  border-color: var(--cyan);
  box-shadow: var(--shadow-cyan);
  transform: translateY(-6px);
}
.svc-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: transform .3s var(--ease);
}
.service-card:hover .svc-icon { transform: scale(1.1); }
.svc-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; letter-spacing: -0.01em; }
.svc-desc { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; }

/* ── PROCESS ── */
#proceso { background: var(--navy); color: var(--white); }
#proceso .section-title { color: var(--white); }
#proceso .section-desc { color: rgba(255,255,255,0.6); }

.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--cyan), rgba(0,170,255,0.2));
}

.step {
  text-align: center; position: relative; z-index: 1; padding-top: 8px;
}
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--cyan); color: var(--white);
  font-family: var(--font-heading); font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; box-shadow: 0 0 0 8px rgba(0,170,255,0.15);
  transition: transform .3s var(--ease);
}
.step:hover .step-num { transform: scale(1.1); }
.step-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.step-desc { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ── WHY US ── */
#por-que { background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.why-visual {
  background: linear-gradient(135deg, var(--navy) 0%, #0d1a3a 100%);
  border-radius: var(--radius-lg); padding: 40px; color: white;
  box-shadow: var(--shadow-lg);
}
.why-metric { margin-bottom: 32px; }
.why-metric:last-child { margin-bottom: 0; }
.wm-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.wm-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.4; }
.wm-val { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800; color: var(--cyan); flex-shrink: 0; margin-left: 16px; }
.wm-bar { height: 6px; background: rgba(255,255,255,0.1); border-radius: 50px; overflow: hidden; }
.wm-fill { height: 100%; border-radius: 50px; background: linear-gradient(90deg, var(--cyan), #0044cc); }

.why-list { list-style: none; }
.why-list li {
  display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px;
}
.why-list li:last-child { margin-bottom: 0; }
.wl-check {
  width: 32px; height: 32px; flex-shrink: 0; border-radius: 8px;
  background: var(--cyan-100); color: var(--cyan);
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.wl-title { font-family: var(--font-heading); font-weight: 700; margin-bottom: 4px; letter-spacing: -0.01em; }
.wl-desc { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; }

/* ── TESTIMONIALS ── */
#testimonios { background: var(--gray-50); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--white); border-radius: var(--radius); padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all .3s var(--ease);
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--cyan); }
.testi-stars { display: flex; gap: 2px; margin-bottom: 14px; }
.testi-stars svg { width: 18px; height: 18px; fill: #f7c948; }
.testi-text { font-size: 0.92rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--navy));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 800; color: white; font-size: 0.85rem;
  flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 0.88rem; color: var(--navy); }
.testi-role { font-size: 0.78rem; color: var(--gray-400); }

/* ── CONTACT / CTA ── */
#contacto {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2050 100%);
  text-align: center; padding: 100px 6%;
}
#contacto .section-title { color: var(--white); }
#contacto .section-desc { color: rgba(255,255,255,0.6); margin: 0 auto; max-width: 500px; }
.cta-actions { display: flex; justify-content: center; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
.btn-white {
  background: var(--white); color: var(--navy);
  padding: 15px 36px; border-radius: 50px;
  text-decoration: none; font-weight: 700; font-size: 0.95rem;
  transition: all .2s var(--ease);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,255,255,0.2); }

.contact-chips { display: flex; justify-content: center; gap: 24px; margin-top: 40px; flex-wrap: wrap; }
.contact-chip {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.65); font-size: 0.88rem;
}
.contact-chip .ic { color: var(--cyan); }

/* ── CONTACT FORM ── */
.contact-form-wrapper {
  max-width: 560px; margin: 40px auto 0;
}
.contact-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  backdrop-filter: blur(10px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.7);
  margin-bottom: 6px; letter-spacing: 0.01em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--white);
  transition: border-color .2s var(--ease), box-shadow .2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,170,255,0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='rgba(255,255,255,0.4)' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' stroke-width='2' stroke='currentColor' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-group select option { background: var(--navy); color: var(--white); }

.form-submit {
  width: 100%; margin-top: 8px;
  background: var(--cyan); color: var(--white);
  padding: 14px 32px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  border: none; cursor: pointer;
  transition: all .2s var(--ease);
  font-family: var(--font-body);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover { background: var(--cyan-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,170,255,0.35); }

/* ── FOOTER ── */
footer {
  background: var(--white); 
  padding: 0;
}
.footer-cta {
  background: linear-gradient(135deg, var(--cyan-dark) 0%, var(--cyan) 50%, var(--cyan-light) 100%);
  padding: 48px 6%;
  text-align: center;
}
.footer-cta-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.footer-cta h3 {
  font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800;
  color: var(--white); letter-spacing: -0.02em;
}
.footer-cta p { color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.footer-cta-btn {
  background: var(--white); color: var(--navy);
  padding: 14px 32px; border-radius: 50px;
  text-decoration: none; font-weight: 700; font-size: 0.95rem;
  transition: all .2s var(--ease);
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.footer-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }

.footer-main {
  padding: 56px 6% 0;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 40px; padding-bottom: 40px; }
.footer-brand { max-width: 280px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; text-decoration: none; transition: transform .3s var(--ease); }
.footer-logo:hover { transform: translateX(4px); }
.footer-logo-icon { width: 32px; height: 32px; }
.footer-logo-name { font-family: var(--font-heading); font-weight: 700; color: white; font-size: 1.15rem; letter-spacing: -0.02em; }
.footer-logo-name span { color: var(--cyan); }
.footer-tagline { font-size: 0.88rem; line-height: 1.7; color: rgb(14, 53, 105); }

.footer-cols { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col { min-width: 160px; }
.footer-col h4 {
  font-family: var(--font-heading); color: var(--cyan); font-size: 0.8rem;
  font-weight: 700; margin-bottom: 18px; letter-spacing: .1em; text-transform: uppercase;
}
.footer-col a {
  display: block; color: rgb(42, 40, 136); text-decoration: none;
  font-size: 0.88rem; margin-bottom: 12px; transition: all .2s var(--ease);
  padding: 2px 0;
}
.footer-col a:hover { color: var(--navy); transform: translateX(4px); }

.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--gray-600);
  display: flex; align-items: center; justify-content: center;
  color: rgba(12, 12, 12, 0.856); text-decoration: none;
  transition: all .2s var(--ease);
}
.footer-social a:hover {
  background: var(--blue); border-color: var(--cyan);
  color: var(--cyan); transform: translateY(-2px);
}
.footer-social a .ic { width: 18px; height: 18px; stroke-width: 2; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: 0.82rem;
  color: var(--navy);
}
.footer-bottom a { color: var(--navy); text-decoration: none; transition: color .2s; }
.footer-bottom a:hover { color: var(--gray-400); }
.footer-heart { display: inline-flex; align-items: center; }
.footer-heart .ic { width: 16px; height: 16px; color: #ff4d6a; fill: #ff4d6a; stroke: none; }

/* ── LEGAL PAGES ── */
.legal-page { padding: 120px 6% 80px; min-height: 100vh; }
.legal-inner { max-width: 720px; margin: 0 auto; }
.legal-back {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--cyan); text-decoration: none; font-size: 0.9rem; font-weight: 500;
  margin-bottom: 40px; transition: gap .2s var(--ease);
}
.legal-back:hover { gap: 12px; }
.legal-page h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 12px; }
.legal-page .legal-date { color: var(--gray-400); font-size: 0.9rem; margin-bottom: 48px; }
.legal-page h2 { font-size: 1.3rem; margin-top: 48px; margin-bottom: 16px; color: var(--navy); }
.legal-page p { color: var(--gray-600); margin-bottom: 16px; font-size: 0.95rem; }
.legal-page ul { margin: 12px 0 16px 20px; color: var(--gray-600); }
.legal-page ul li { margin-bottom: 8px; font-size: 0.95rem; }
.legal-page a { color: var(--cyan); text-decoration: none; }
.legal-page a:hover { text-decoration: underline; }

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

.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-sub { margin: 16px auto 0; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 24px; }
}

@media (max-width: 640px) {
  nav { padding: 0 5%; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  section { padding: 64px 5%; }
  .logos-inner { gap: 28px; }
  .footer-top { flex-direction: column; }
  .footer-cols { gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-chips { flex-direction: column; align-items: center; gap: 16px; }
  .legal-page { padding: 100px 5% 60px; }
}
