/* ==========================================================================
   ENAXEL — SHARED STYLESHEET
   Design language: light corporate (per Poster 1: "Brands We've Worked With")
   with restrained playful accents from Poster 2.
   ========================================================================== */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  /* Core brand */
  --navy: #0B1533;              /* headline text, footer bg, stat band */
  --navy-soft: #16224A;
  --blue-primary: #2563EB;
  --blue-light: #3B82F6;
  --blue-pale: #EAF1FF;

  /* Surfaces */
  --bg-page: #F5F8FC;
  --bg-page-alt: #EFF4FB;
  --card-white: #FFFFFF;

  /* Text */
  --text-body: #4B5875;
  --text-muted: #8792A8;
  --chrome-silver: #64748B;

  /* Accents (used sparingly — icon badges only) */
  --gold-accent: #F5B400;
  --accent-orange: #F97316;
  --accent-purple: #7C4DFF;
  --accent-pink: #EC4899;
  --accent-teal: #0D9488;
  --whatsapp-green: #25D366;

  /* Elevation */
  --shadow-card: 0 10px 30px rgba(15, 35, 90, 0.08);
  --shadow-card-hover: 0 20px 45px rgba(15, 35, 90, 0.14);
  --shadow-pill: 0 8px 24px rgba(37, 99, 235, 0.25);

  /* Radii */
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;

  /* Type */
  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-script: 'Caveat', cursive;

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- 2. RESET ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-page);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--navy); line-height: 1.15; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 2px solid var(--blue-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; padding: 96px 0; }
@media (max-width: 768px) { section { padding: 64px 0; } }

/* ---------- 3. BACKDROP: soft mesh + grain ---------- */
.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}
.bg-mesh span {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  animation: drift 22s ease-in-out infinite alternate;
}
.bg-mesh span:nth-child(1) {
  width: 520px; height: 520px;
  background: var(--blue-light);
  top: -160px; left: -120px;
}
.bg-mesh span:nth-child(2) {
  width: 460px; height: 460px;
  background: var(--gold-accent);
  opacity: 0.12;
  bottom: -140px; right: -100px;
  animation-delay: -8s;
}
.bg-mesh span:nth-child(3) {
  width: 380px; height: 380px;
  background: var(--accent-purple);
  opacity: 0.10;
  top: 40%; right: 10%;
  animation-delay: -14s;
}
@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, 40px) scale(1.12); }
}

.bg-grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- 4. CURSOR ---------- */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--blue-primary);
  transition: opacity 0.15s var(--ease);
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid var(--blue-primary);
  transition: width 0.2s var(--ease), height 0.2s var(--ease),
              background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.cursor-ring.active {
  width: 60px; height: 60px;
  background: rgba(37, 99, 235, 0.12);
}
.cursor-dot.hidden { opacity: 0; }
@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ---------- 5. NAVBAR ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: padding 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(15, 35, 90, 0.06);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.navbar.scrolled .navbar-inner {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo img { height: 40px; width: auto; }
.logo-fallback {
  height: 40px; width: 40px;
  border-radius: 50%;
  background: var(--blue-primary);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.nav-links a:hover { background: var(--blue-pale); }
.nav-links a.active {
  background: var(--blue-primary);
  color: #fff;
  box-shadow: var(--shadow-pill);
}

.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-socials { display: flex; align-items: center; gap: 10px; }
.nav-socials a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-primary);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}
.nav-socials a:hover { background: var(--blue-primary); color: #fff; transform: translateY(-2px); }
.nav-socials svg { width: 15px; height: 15px; }

.btn-talk {
  background: var(--blue-primary);
  background-image: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-pill);
  white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn-talk:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(37,99,235,.35); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  padding: 6px;
}
.hamburger span {
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: min(320px, 82vw);
  background: #fff;
  z-index: 1100;
  box-shadow: -10px 0 40px rgba(15,35,90,.15);
  padding: 90px 30px 40px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  padding: 14px 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  border-bottom: 1px solid var(--bg-page-alt);
}
.mobile-menu a.active { color: var(--blue-primary); }
.mobile-menu .nav-socials { margin-top: 24px; }
.menu-overlay {
  position: fixed; inset: 0;
  background: rgba(11,21,51,.4);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.menu-overlay.open { opacity: 1; pointer-events: auto; }

@media (max-width: 980px) {
  .nav-links, .nav-right .nav-socials { display: none; }
  .hamburger { display: flex; }
  .nav-right { gap: 10px; }
}

/* ---------- 6. EYEBROW / BADGE ---------- */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  background: var(--blue-pale);
  color: var(--blue-primary);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.badge-pill::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-primary);
}

.script-tag {
  display: block;
  font-family: var(--font-script);
  font-size: 30px;
  color: var(--blue-primary);
  transform: rotate(-3deg);
  margin-bottom: -6px;
}

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; }
.section-head p { margin-top: 14px; font-size: 16.5px; color: var(--text-muted); }
.text-gradient {
  background: linear-gradient(120deg, var(--blue-primary), var(--blue-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- 7. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  color: #fff;
  box-shadow: var(--shadow-pill);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(37,99,235,.32); }
.btn-outline {
  background: #fff;
  color: var(--navy);
  border: 1.5px solid rgba(15,35,90,.15);
}
.btn-outline:hover { border-color: var(--blue-primary); color: var(--blue-primary); transform: translateY(-3px); }

/* ---------- 8. HERO ---------- */
.hero { padding-top: 70px; padding-bottom: 60px; overflow: visible; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}
.hero h1 { font-size: clamp(34px, 5vw, 58px); font-weight: 800; letter-spacing: -0.01em; }
.hero p.lead { margin: 22px 0 32px; font-size: 17.5px; color: var(--text-body); max-width: 520px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.crystal {
  width: 240px; height: 240px;
  position: relative;
  transform-style: preserve-3d;
  animation: bob 5s ease-in-out infinite, spin 16s linear infinite;
}
.crystal .facet {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  opacity: 0.9;
  box-shadow: 0 30px 60px rgba(37,99,235,.35);
}
.crystal .facet.f2 { transform: rotateY(60deg) translateZ(20px); opacity: 0.6; }
.crystal .facet.f3 { transform: rotateY(-60deg) translateZ(20px); opacity: 0.6; }
.hero-glow {
  position: absolute;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(37,99,235,.22), transparent 70%);
  border-radius: 50%;
  filter: blur(10px);
}
.orbit-chip {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow-card);
  animation: floaty 6s ease-in-out infinite;
}
.orbit-chip.c1 { top: 6%; left: 0%; animation-delay: 0s; }
.orbit-chip.c2 { bottom: 12%; left: -4%; animation-delay: -2s; }
.orbit-chip.c3 { top: 46%; right: -6%; animation-delay: -4s; }

@keyframes bob { 0%,100% { transform: translateY(0) rotateY(0deg); } 50% { transform: translateY(-18px) rotateY(10deg); } }
@keyframes spin { 0% { transform: rotateY(0deg); } 100% { transform: rotateY(360deg); } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 300px; order: -1; }
  .crystal { width: 180px; height: 180px; }
}

/* ---------- 9. LOGO STRIP (teaser) ---------- */
.logo-strip { padding: 40px 0; }
.logo-strip .label {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 26px;
}
.logo-strip-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  filter: grayscale(1);
  opacity: 0.55;
}
.logo-strip-row .mark { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--navy); }

/* ---------- 10. ICON CARDS ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}
.icon-card {
  background: var(--card-white);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-card);
  transition: transform 0.15s var(--ease), box-shadow 0.3s var(--ease), border-color .3s;
  border: 1px solid transparent;
  will-change: transform;
}
.icon-card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(37,99,235,.18);
}
.icon-badge {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: #fff;
}
.icon-badge svg { width: 26px; height: 26px; }
.icon-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.icon-card p { font-size: 14.5px; color: var(--text-muted); }
.icon-card .learn { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-weight: 700; font-size: 14px; color: var(--blue-primary); }

.bg-blue { background: linear-gradient(135deg, var(--blue-primary), var(--blue-light)); }
.bg-orange { background: linear-gradient(135deg, var(--accent-orange), #FBBF24); }
.bg-purple { background: linear-gradient(135deg, var(--accent-purple), #A78BFA); }
.bg-pink { background: linear-gradient(135deg, var(--accent-pink), #F472B6); }
.bg-teal { background: linear-gradient(135deg, var(--accent-teal), #2DD4BF); }
.bg-navy { background: linear-gradient(135deg, var(--navy), var(--navy-soft)); }
.bg-gold { background: linear-gradient(135deg, var(--gold-accent), #FCD34D); }

/* ---------- 11. STATS BAND ---------- */
.stats-band {
  background: linear-gradient(120deg, var(--navy), var(--navy-soft));
  border-radius: var(--radius-lg);
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: 0 20px 50px rgba(11,21,51,.25);
}
.stat-item {
  padding: 34px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-item:last-child { border-right: none; }
.stat-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  color: var(--gold-accent);
}
.stat-icon svg { width: 22px; height: 22px; }
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: 30px; color: #fff; }
.stat-label { font-size: 12.5px; color: rgba(255,255,255,.65); margin-top: 4px; font-weight: 600; letter-spacing: .03em; }
@media (max-width: 768px) {
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,.08); }
}

/* ---------- 12. WORK / PORTFOLIO CARDS ---------- */
.work-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.work-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card-white);
  box-shadow: var(--shadow-card);
  transition: box-shadow .3s var(--ease);
}
.work-card:hover { box-shadow: var(--shadow-card-hover); }
.work-thumb {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.work-thumb .ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 15px; color: #fff;
  transition: transform 0.5s var(--ease);
}
.work-card:hover .work-thumb .ph { transform: scale(1.08); }
.work-body { padding: 22px 24px; }
.work-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--blue-primary);
  background: var(--blue-pale);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.work-body h3 { font-size: 17px; }

/* ---------- 13. TESTIMONIALS ---------- */
.testi-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--card-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.testi-quote { font-size: 40px; font-family: var(--font-display); color: var(--blue-pale); line-height: 0; position: absolute; top: 26px; right: 28px; }
.testi-card p.quote-text { font-size: 15px; color: var(--text-body); margin-bottom: 20px; }
.testi-who { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-family: var(--font-display); font-size: 14px;
}
.testi-who .name { font-weight: 700; font-size: 14px; color: var(--navy); }
.testi-who .role { font-size: 12.5px; color: var(--text-muted); }
@media (max-width: 900px) { .testi-track { grid-template-columns: 1fr; } }

/* ---------- 14. BIG WORDMARK BANNER ---------- */
.wordmark-banner { text-align: center; padding: 60px 0; }
.wordmark-banner .line {
  display: flex; align-items: center; justify-content: center; gap: 24px;
}
.wordmark-banner .rule { flex: 1; max-width: 220px; height: 2px; background: linear-gradient(90deg, transparent, var(--blue-primary), transparent); }
.wordmark-banner h2 {
  font-size: clamp(48px, 10vw, 120px);
  font-weight: 800;
  background: linear-gradient(135deg, var(--navy), var(--blue-primary));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -0.02em;
}
.wordmark-banner .sub { margin-top: 6px; letter-spacing: .3em; font-size: 13px; font-weight: 700; color: var(--text-muted); }

/* ---------- 15. FINAL CTA ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--blue-primary), var(--blue-light));
  border-radius: var(--radius-lg);
  padding: 64px 40px;
  text-align: center;
  color: #fff;
  box-shadow: 0 30px 60px rgba(37,99,235,.28);
}
.cta-band h2 { color: #fff; font-size: clamp(26px, 4vw, 38px); }
.cta-band p { color: rgba(255,255,255,.85); margin: 14px 0 30px; }
.cta-band .btn-outline { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.4); }
.cta-band .btn-outline:hover { background: #fff; color: var(--blue-primary); }
.cta-band .btn-primary { background: #fff; color: var(--blue-primary); box-shadow: 0 10px 26px rgba(0,0,0,.15); }
.cta-band .btn-primary:hover { background: var(--navy); color: #fff; }
.cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- 16. LOGO GRID (Brand Trusted page) ---------- */
.logo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.logo-card {
  background: var(--card-white);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.logo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.logo-mark {
  width: 64px; height: 64px;
  border-radius: 16px;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 22px; color: #fff;
}
.logo-card .biz-name { font-family: var(--font-display); font-weight: 700; font-size: 15.5px; color: var(--navy); }
.logo-card .biz-cat { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
@media (max-width: 860px) { .logo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .logo-grid { grid-template-columns: 1fr; } }

/* ---------- 17. SERVICES PAGE (pillars, process) ---------- */
.pillar { margin-bottom: 70px; }
.pillar-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 30px; flex-wrap: wrap; }
.pillar-head .num { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--blue-primary); }
.pillar-head h2 { font-size: clamp(22px, 3vw, 30px); }
.pillar-head p { color: var(--text-muted); font-size: 14.5px; flex-basis: 100%; }
.service-card ul.bullets { margin-top: 12px; }
.service-card ul.bullets li { font-size: 13.5px; color: var(--text-muted); padding-left: 18px; position: relative; margin-bottom: 6px; }
.service-card ul.bullets li::before { content: '✓'; position: absolute; left: 0; color: var(--blue-primary); font-weight: 700; }

.process-track { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; position: relative; margin-top: 50px; }
.process-line {
  position: absolute; top: 24px; left: 8%; right: 8%; height: 3px;
  background: var(--blue-pale); z-index: 0; border-radius: 2px; overflow: hidden;
}
.process-line-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--blue-primary), var(--blue-light)); transition: width 1.2s var(--ease); }
.process-step { text-align: center; position: relative; z-index: 1; }
.process-dot {
  width: 48px; height: 48px; border-radius: 50%;
  background: #fff; border: 3px solid var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-family: var(--font-display); font-weight: 800; color: var(--blue-primary);
  transition: border-color .4s var(--ease), background .4s var(--ease), color .4s var(--ease);
}
.process-step.in-view .process-dot { border-color: var(--blue-primary); background: var(--blue-primary); color: #fff; }
.process-step h4 { font-size: 14.5px; margin-bottom: 4px; }
.process-step p { font-size: 12.5px; color: var(--text-muted); }
@media (max-width: 820px) {
  .process-track { grid-template-columns: 1fr; gap: 30px; text-align: left; }
  .process-line { display: none; }
  .process-step { display: flex; align-items: center; gap: 16px; text-align: left; }
  .process-dot { margin: 0; flex-shrink: 0; }
}

/* ---------- 18. ABOUT PAGE ---------- */
.mission-block { text-align: center; max-width: 760px; margin: 0 auto; }
.mission-block .script-tag { font-size: 36px; }
.mission-block h2 { font-size: clamp(30px, 5vw, 48px); margin-bottom: 18px; }
.mission-block p { color: var(--text-muted); font-size: 16.5px; }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .values-grid { grid-template-columns: 1fr; } }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; }
.team-card { text-align: center; }
.team-avatar {
  width: 96px; height: 96px; border-radius: 50%;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 26px;
  box-shadow: var(--shadow-card);
}
.team-card .t-name { font-weight: 700; color: var(--navy); font-size: 15px; }
.team-card .t-role { font-size: 12.5px; color: var(--text-muted); }

/* ---------- 19. CONTACT PAGE ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.form-card, .info-card {
  background: var(--card-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
}
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--bg-page-alt);
  background: var(--bg-page);
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--navy);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue-primary);
  background: #fff;
  outline: none;
}
.field textarea { resize: vertical; min-height: 110px; }

.btn-submit {
  width: 100%;
  padding: 16px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  box-shadow: var(--shadow-pill);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: transform .25s var(--ease);
}
.btn-submit:hover { transform: translateY(-2px); }
.btn-submit .spinner {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,.4); border-top-color: #fff;
  animation: spin-load .7s linear infinite;
  display: none;
}
.btn-submit.loading .spinner { display: inline-block; }
.btn-submit.loading .btn-text { opacity: .7; }
@keyframes spin-load { to { transform: rotate(360deg); } }
.form-success {
  display: none;
  background: #EAFBF1;
  color: #0D9488;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
  align-items: center; gap: 8px;
}
.form-success.show { display: flex; }

.info-row { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.info-icon {
  width: 46px; height: 46px; border-radius: 14px; flex-shrink: 0;
  background: var(--blue-pale); color: var(--blue-primary);
  display: flex; align-items: center; justify-content: center;
}
.info-icon svg { width: 20px; height: 20px; }
.info-row .label-sm { font-size: 12px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.info-row .value { font-weight: 700; color: var(--navy); font-size: 15px; }
.contact-cta-row { display: flex; gap: 12px; margin-top: 26px; }
.contact-cta-row .btn { flex: 1; justify-content: center; padding: 14px 18px; font-size: 13.5px; }
.btn-whatsapp { background: var(--whatsapp-green); color: #fff; box-shadow: 0 10px 26px rgba(37,211,102,.3); }
.btn-whatsapp:hover { transform: translateY(-3px); }

.map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--card-white);
}
.map-card iframe { width: 100%; height: 340px; border: 0; display: block; }
.map-fallback {
  height: 300px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--blue-pale), #fff);
}

.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--card-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  font-family: var(--font-display); font-weight: 700; font-size: 15.5px; color: var(--navy);
  text-align: left;
}
.faq-q .plus { transition: transform .3s var(--ease); color: var(--blue-primary); font-size: 20px; flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding: 0 24px 20px; font-size: 14.5px; color: var(--text-muted); }

/* ---------- 20. FOOTER ---------- */
footer {
  background: linear-gradient(180deg, var(--navy), var(--navy-soft));
  color: rgba(255,255,255,.75);
  padding: 70px 0 0;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1.1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo img { height: 36px; }
.footer-col h4 { color: #fff; font-size: 14.5px; margin-bottom: 20px; letter-spacing: .03em; }
.footer-col ul li { margin-bottom: 12px; font-size: 14px; }
.footer-col ul li a:hover { color: #fff; }
.footer-tagline { font-family: var(--font-script); font-size: 22px; color: var(--blue-light); margin-top: 16px; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.footer-socials a:hover { background: var(--blue-primary); transform: translateY(-2px); }
.footer-socials svg { width: 15px; height: 15px; }
.footer-contact li { display: flex; align-items: center; gap: 10px; }
.footer-bottom { text-align: center; padding: 22px 0; font-size: 13px; color: rgba(255,255,255,.5); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- 21. FLOATING ACTION BUTTONS ---------- */
.fab-stack {
  position: fixed;
  bottom: 26px; right: 26px;
  display: flex; flex-direction: column; gap: 14px;
  z-index: 900;
}
.fab {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  position: relative;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  transition: transform .25s var(--ease);
}
.fab:hover { transform: scale(1.1); }
.fab svg { width: 24px; height: 24px; }
.fab-call { background: var(--blue-primary); }
.fab-wa { background: var(--whatsapp-green); }
.fab::before {
  content: '';
  position: absolute; inset: 0; border-radius: 50%;
  animation: pulse-ring 2.2s ease-out infinite;
  z-index: -1;
}
.fab-call::before { background: var(--blue-primary); }
.fab-wa::before { background: var(--whatsapp-green); }
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: .55; }
  100% { transform: scale(1.9); opacity: 0; }
}
.fab-tip {
  position: absolute;
  right: 68px; top: 50%; transform: translateY(-50%) translateX(6px);
  background: var(--navy); color: #fff;
  padding: 7px 14px; border-radius: 8px;
  font-size: 12.5px; font-weight: 600; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.fab:hover .fab-tip { opacity: 1; transform: translateY(-50%) translateX(0); }
@media (pointer: coarse) { .fab-tip { display: none; } }

/* ---------- 22. SCROLL REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(28px) scale(0.98); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0) scale(1); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }
.reveal-delay-5 { transition-delay: .4s; }

/* ---------- 23. PAGE HERO (inner pages) ---------- */
.page-hero { padding: 70px 0 40px; text-align: center; }
.page-hero h1 { font-size: clamp(32px, 5vw, 50px); }
.page-hero p { max-width: 560px; margin: 18px auto 0; color: var(--text-muted); font-size: 16px; }
