/* ===================================================
   ECOPHARMA — PREMIUM STYLESHEET
   Skill: high-end-visual-design + design-taste-frontend
   Archetype: Soft Structuralism × Asymmetric Editorial
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ── Variables ─────────────────────────────────── */
:root {
  --blue:         #0b66c3;
  --blue-light:   #73bce8;
  --blue-dark:    #084d96;
  --blue-xdark:   #062f5c;
  --blue-muted:   rgba(11,102,195,.08);
  --white:        #ffffff;
  --off-white:    #f8fafc;
  --surface:      #f1f5f9;
  --border:       rgba(15,23,42,.08);
  --border-hover: rgba(11,102,195,.25);
  --text-primary: #0f172a;
  --text-mid:     #334155;
  --text-muted:   #64748b;
  --text-faint:   #94a3b8;
  --charcoal:     #111827;
  --font:         'Poppins', sans-serif;
  --r-sm:         10px;
  --r-md:         16px;
  --r-lg:         24px;
  --r-xl:         32px;
  --r-2xl:        40px;
  /* Diffuse shadow tinted to blue */
  --shadow-sm:    0 2px 12px rgba(11,102,195,.06);
  --shadow-md:    0 8px 32px rgba(11,102,195,.10);
  --shadow-lg:    0 20px 60px rgba(11,102,195,.14);
  --shadow-xl:    0 32px 80px rgba(11,102,195,.18);
  --ease-spring:  cubic-bezier(0.32, 0.72, 0, 1);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
input, textarea, select { font-family: var(--font); }

/* ===================================================
   UTILITIES
   =================================================== */
.container { width: 92%; max-width: 1200px; margin: 0 auto; }

.section        { padding: 112px 0; }
.section--sm    { padding: 72px 0; }
.section--xs    { padding: 48px 0; }
.section--surface { background: var(--off-white); }
.section--dark    { background: var(--charcoal); color: var(--white); }
.section--blue    { background: var(--blue); color: var(--white); }

/* Eyebrow labels */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-muted);
  border: 1px solid rgba(11,102,195,.15);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.eyebrow--white { color: var(--white); background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2); }
.eyebrow__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue);
  animation: blink 2s ease infinite;
}
.eyebrow--white .eyebrow__dot { background: var(--white); }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

/* Section headers */
.section-header { margin-bottom: 64px; }
.section-header--center { text-align: center; }
.section-header--center .section-sub { margin: 0 auto; }

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.025em;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.section-title em { font-style: normal; color: var(--blue); }
.section-title--white { color: var(--white); }
.section-title--white em { color: var(--blue-light); }

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
}
.section-sub--white { color: rgba(255,255,255,.65); }

/* ===================================================
   BUTTONS (Button-in-Button architecture)
   =================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--r-md);
  font-family: var(--font);
  font-size: .9rem;
  font-weight: 600;
  border: 1.5px solid transparent;
  transition: all .4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn:active { transform: scale(.98); }

/* Icon wrapper nested in button */
.btn__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  transition: transform .4s var(--ease-spring);
  flex-shrink: 0;
}
.btn:hover .btn__icon { transform: translateX(3px) translateY(-1px) scale(1.08); }
.btn__icon svg { width: 14px; height: 14px; }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(11,102,195,.3);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(11,102,195,.4);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: rgba(11,102,195,.3);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  transform: translateY(-2px);
}
.btn-outline .btn__icon { background: var(--blue-muted); }
.btn-outline:hover .btn__icon { background: rgba(255,255,255,.15); }

.btn-white {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-white .btn__icon { background: var(--blue-muted); }

.btn-wa {
  background: #1fba57;
  color: var(--white);
  border-color: #1fba57;
  box-shadow: 0 4px 20px rgba(31,186,87,.3);
}
.btn-wa:hover {
  background: #18a04b;
  border-color: #18a04b;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(31,186,87,.45);
}
.btn-wa .btn__icon { background: rgba(255,255,255,.2); }

.btn-ghost {
  background: transparent;
  color: var(--text-mid);
  border-color: transparent;
}
.btn-ghost:hover { background: var(--surface); color: var(--blue); }

.btn--lg { padding: 17px 32px; font-size: .97rem; }
.btn--sm { padding: 9px 18px; font-size: .82rem; }
.btn--pill { border-radius: 100px; }

/* ===================================================
   TOPBAR
   =================================================== */
.topbar {
  background: var(--blue, #0b5fd4);
  padding: 7px 0;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: rgba(255,255,255,.75);
}
.topbar__contacts {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.topbar__contacts a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: color .2s;
}
.topbar__contacts a:hover { color: #fff; }
@media (max-width: 768px) { .topbar { display: none; } }

/* ===================================================
   NAVBAR (Floating island style)
   =================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  padding: 0;
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  box-shadow: 0 1px 0 rgba(0,0,0,.06), 0 4px 24px rgba(0,0,0,.06);
}
.navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--blue) 25%, #00c896 75%, transparent 100%);
  opacity: .6;
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar__logo img { height: 34px; width: auto; }
.navbar__logo-fallback {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--blue);
}
.navbar__logo-fallback span { color: var(--blue-light); }

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.navbar__nav a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 7px 14px;
  border-radius: var(--r-sm);
  transition: all .25s var(--ease-in-out);
}
.navbar__nav a:hover,
.navbar__nav a.active {
  color: var(--blue);
  background: var(--blue-muted);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Hamburger morphs to X */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border);
  background: var(--white);
  position: relative;
}
.hamburger span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--text-primary);
  border-radius: 4px;
  transition: all .35s var(--ease-spring);
  position: absolute;
}
.hamburger span:nth-child(1) { transform: translateY(-5px); }
.hamburger span:nth-child(3) { transform: translateY(5px); }
.hamburger.open span:nth-child(1) { transform: translateY(0) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(0) rotate(-45deg); }

/* Mobile overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 68px 0 0 0;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 199;
  padding: 40px 24px 32px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
  padding: 14px 18px;
  border-radius: var(--r-md);
  border-bottom: 1px solid var(--surface);
  transition: all .2s var(--ease-out);
  opacity: 0;
  transform: translateY(12px);
}
.mobile-nav.open a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav.open a:nth-child(1) { transition-delay: .05s; }
.mobile-nav.open a:nth-child(2) { transition-delay: .10s; }
.mobile-nav.open a:nth-child(3) { transition-delay: .15s; }
.mobile-nav.open a:nth-child(4) { transition-delay: .20s; }
.mobile-nav.open a:nth-child(5) { transition-delay: .25s; }
.mobile-nav.open a:nth-child(6) { transition-delay: .30s; }
.mobile-nav a:hover { color: var(--blue); background: var(--blue-muted); }
.mobile-nav__cta { margin-top: 20px; }

/* ===================================================
   SCROLL REVEAL ANIMATIONS
   =================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: .10s; }
.reveal--delay-2 { transition-delay: .20s; }
.reveal--delay-3 { transition-delay: .30s; }
.reveal--delay-4 { transition-delay: .40s; }
.reveal--delay-5 { transition-delay: .50s; }

/* ===================================================
   HERO (Asymmetric — left content, right bento)
   =================================================== */
.hero {
  background: linear-gradient(160deg, var(--charcoal) 0%, var(--blue-xdark) 55%, #0a3d7a 100%);
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
/* Noise overlay — fixed, GPU-safe */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
/* Radial orb */
.hero::after {
  content: '';
  position: absolute;
  right: 5%; top: 50%; transform: translateY(-50%);
  width: 55vw; height: 55vw;
  background: radial-gradient(circle at center, rgba(115,188,232,.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}

/* Left col */
.hero__content {}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(115,188,232,.12);
  border: 1px solid rgba(115,188,232,.25);
  color: var(--blue-light);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero__badge-pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-light);
  animation: blink 2.2s ease infinite;
}

.hero__title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.04em;
  color: var(--white);
  margin-bottom: 24px;
}
.hero__title em {
  font-style: normal;
  color: var(--blue-light);
  position: relative;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.62);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 44px;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 60px;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero__proof-stat {}
.hero__proof-num {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--white);
  line-height: 1;
}
.hero__proof-num sup { font-size: .65em; color: var(--blue-light); }
.hero__proof-label {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  margin-top: 3px;
  font-weight: 500;
  line-height: 1.3;
}
.hero__proof-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.12);
}

/* Right col — bento cards */
.hero__bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
/* Double-bezel card */
.hero-card {
  border-radius: var(--r-xl);
  padding: 2px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  transition: all .5s var(--ease-spring);
}
.hero-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(115,188,232,.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.12);
}
.hero-card__inner {
  background: rgba(255,255,255,.04);
  border-radius: calc(var(--r-xl) - 2px);
  padding: 24px 22px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  height: 100%;
}
.hero-card--wide { grid-column: 1 / -1; }
.hero-card__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.hero-card__icon svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 1.8; }
.hero-card__title { font-size: .9rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.hero-card__text { font-size: .78rem; color: rgba(255,255,255,.5); line-height: 1.6; }

/* Wide card layout */
.hero-card--wide .hero-card__inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-card--wide .hero-card__icon { margin-bottom: 0; flex-shrink: 0; }

/* ===================================================
   PAIN STRIP
   =================================================== */
.pain-strip {
  background: var(--blue);
  padding: 0;
  overflow: hidden;
}
.pain-strip__inner {
  display: flex;
  align-items: stretch;
}
.pain-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 22px 28px;
  flex: 1;
  border-right: 1px solid rgba(255,255,255,.12);
  transition: background .2s;
}
.pain-item:last-child { border-right: none; }
.pain-item:hover { background: rgba(255,255,255,.06); }
.pain-item__icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pain-item__icon svg { width: 14px; height: 14px; stroke: white; fill: none; stroke-width: 2; }
.pain-item__text {
  font-size: .82rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
}

/* ===================================================
   SERVICES — Asymmetric bento (not 3-column)
   =================================================== */
.services-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
/* Double-bezel service card */
.svc-card {
  border-radius: var(--r-2xl);
  padding: 2px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all .5s var(--ease-spring);
}
.svc-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.svc-card__inner {
  background: var(--white);
  border-radius: calc(var(--r-2xl) - 2px);
  padding: 36px 32px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
  height: 100%;
}
.svc-card--featured {
  background: linear-gradient(135deg, var(--blue-xdark), var(--blue));
  border-color: transparent;
}
.svc-card--featured .svc-card__inner {
  background: transparent;
  box-shadow: none;
}
.svc-card--tall { grid-row: span 2; }

.svc-card__icon {
  width: 50px; height: 50px;
  border-radius: var(--r-md);
  background: var(--blue-muted);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: background .3s var(--ease-out);
}
.svc-card__icon svg { width: 24px; height: 24px; stroke: var(--blue); fill: none; stroke-width: 1.6; }
.svc-card:hover .svc-card__icon { background: var(--blue); }
.svc-card:hover .svc-card__icon svg { stroke: white; }
.svc-card--featured .svc-card__icon { background: rgba(255,255,255,.15); }
.svc-card--featured .svc-card__icon svg { stroke: white; }
.svc-card--featured:hover .svc-card__icon { background: rgba(255,255,255,.25); }

.svc-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.svc-card--featured .svc-card__title { color: var(--white); }

.svc-card__text {
  font-size: .87rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.svc-card--featured .svc-card__text { color: rgba(255,255,255,.65); }

.svc-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.svc-tag {
  font-size: .72rem;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-muted);
  border: 1px solid rgba(11,102,195,.12);
  padding: 4px 10px;
  border-radius: 100px;
}
.svc-card--featured .svc-tag { color: rgba(255,255,255,.85); background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.15); }

/* ===================================================
   STATS BAR
   =================================================== */
.stats-bar { background: var(--charcoal); padding: 72px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-block {
  text-align: center;
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,.07);
  position: relative;
}
.stat-block:last-child { border-right: none; }
.stat-block__num {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -.05em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-block__num sup { color: var(--blue-light); font-size: .6em; font-weight: 700; }
.stat-block__label {
  font-size: .78rem;
  font-weight: 500;
  color: rgba(255,255,255,.4);
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ===================================================
   DIFFERENTIATORS — Split asymmetric
   =================================================== */
.diff-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: start;
}
.diff-list { display: flex; flex-direction: column; gap: 14px; }
/* Double-bezel diff item */
.diff-item {
  border-radius: var(--r-lg);
  padding: 1.5px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all .4s var(--ease-spring);
  cursor: default;
}
.diff-item:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}
.diff-item__inner {
  background: var(--white);
  border-radius: calc(var(--r-lg) - 1.5px);
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}
.diff-item__num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blue-muted);
  border: 1px solid rgba(11,102,195,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem;
  font-weight: 800;
  color: var(--blue);
  flex-shrink: 0;
  transition: all .3s var(--ease-out);
}
.diff-item:hover .diff-item__num { background: var(--blue); color: white; border-color: var(--blue); }
.diff-item__title { font-size: .95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 5px; letter-spacing: -.01em; }
.diff-item__text { font-size: .84rem; color: var(--text-muted); line-height: 1.65; }

/* Visual panel */
.diff-visual {
  position: sticky;
  top: 100px;
}
.diff-panel {
  border-radius: var(--r-2xl);
  padding: 2px;
  background: linear-gradient(135deg, var(--blue-xdark), var(--blue-dark));
  border: 1px solid rgba(255,255,255,.06);
}
.diff-panel__inner {
  background: linear-gradient(160deg, rgba(255,255,255,.06) 0%, transparent 100%);
  border-radius: calc(var(--r-2xl) - 2px);
  padding: 44px 40px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
}
.diff-panel__title { font-size: 1.4rem; font-weight: 800; color: var(--white); letter-spacing: -.03em; margin-bottom: 6px; }
.diff-panel__sub { font-size: .85rem; color: rgba(255,255,255,.5); margin-bottom: 32px; }
.diff-panel__lines { display: flex; flex-direction: column; gap: 12px; }
.diff-panel__line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  padding: 12px 16px;
  background: rgba(255,255,255,.06);
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,.08);
  transition: all .3s;
}
.diff-panel__line:hover { background: rgba(255,255,255,.1); color: white; }
.diff-panel__check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.diff-panel__check svg { width: 10px; height: 10px; stroke: white; fill: none; stroke-width: 3; }

/* ===================================================
   COMPLIANCE BADGES
   =================================================== */
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.comp-badge {
  border-radius: var(--r-xl);
  padding: 1.5px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all .4s var(--ease-spring);
}
.comp-badge:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.comp-badge__inner {
  background: var(--white);
  border-radius: calc(var(--r-xl) - 1.5px);
  padding: 28px 20px;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}
.comp-badge__icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--blue-muted);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.comp-badge__icon svg { width: 22px; height: 22px; stroke: var(--blue); fill: none; stroke-width: 1.6; }
.comp-badge__name { font-size: .88rem; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.comp-badge__desc { font-size: .74rem; color: var(--text-faint); line-height: 1.4; }

/* ===================================================
   CTA SECTION
   =================================================== */
.cta-section {
  background: linear-gradient(160deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 112px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  top: -300px; right: -200px;
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.03);
  bottom: -200px; left: -150px;
  pointer-events: none;
}
.cta-section__inner { position: relative; z-index: 1; }
.cta-section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-section__sub {
  font-size: 1rem;
  color: rgba(255,255,255,.68);
  max-width: 480px;
  margin: 0 auto 44px;
  line-height: 1.75;
}
.cta-section__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ===================================================
   PAGE HERO (inner pages)
   =================================================== */
.page-hero {
  background: linear-gradient(150deg, var(--charcoal) 0%, var(--blue-xdark) 100%);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -80px; top: 50%; transform: translateY(-50%);
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(115,188,232,.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.page-hero__crumbs a { color: var(--blue-light); transition: color .2s; }
.page-hero__crumbs a:hover { color: white; }
.page-hero__crumbs-sep { font-size: .65rem; opacity: .5; }
.page-hero__title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero__sub { font-size: 1rem; color: rgba(255,255,255,.58); max-width: 520px; line-height: 1.75; }

/* ===================================================
   ABOUT PAGE ELEMENTS
   =================================================== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-intro__visual {
  border-radius: var(--r-2xl);
  padding: 2px;
  background: linear-gradient(135deg, var(--blue-xdark), var(--blue));
  border: 1px solid rgba(255,255,255,.06);
}
.about-intro__visual-inner {
  border-radius: calc(var(--r-2xl) - 2px);
  padding: 48px 40px;
  background: rgba(255,255,255,.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.about-intro__visual-title { font-size: 1.3rem; font-weight: 800; color: white; margin-bottom: 4px; }
.about-intro__visual-sub { font-size: .85rem; color: rgba(255,255,255,.5); margin-bottom: 28px; }
.about-highlights { display: flex; flex-direction: column; gap: 10px; }
.about-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md);
  font-size: .87rem;
  color: rgba(255,255,255,.75);
  transition: background .2s;
}
.about-highlight:hover { background: rgba(255,255,255,.12); color: white; }
.about-highlight svg { width: 16px; height: 16px; stroke: var(--blue-light); fill: none; stroke-width: 2; flex-shrink: 0; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card {
  border-radius: var(--r-xl);
  padding: 1.5px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all .4s var(--ease-spring);
}
.value-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.value-card__inner {
  background: var(--white);
  border-radius: calc(var(--r-xl) - 1.5px);
  padding: 36px 28px;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}
.value-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: var(--blue-muted);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  transition: background .3s;
}
.value-card__icon svg { width: 26px; height: 26px; stroke: var(--blue); fill: none; stroke-width: 1.6; }
.value-card:hover .value-card__icon { background: var(--blue); }
.value-card:hover .value-card__icon svg { stroke: white; }
.value-card__title { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.value-card__text { font-size: .84rem; color: var(--text-muted); line-height: 1.7; }

/* Timeline */
.timeline { position: relative; padding-left: 52px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 19px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), transparent);
}
.timeline-item { position: relative; padding-bottom: 44px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -52px;
  top: 2px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem;
  font-weight: 800;
  color: white;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--blue);
}
.timeline-item h3 { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.timeline-item p { font-size: .86rem; color: var(--text-muted); line-height: 1.7; }

/* ===================================================
   SERVICES PAGE
   =================================================== */
.svc-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.svc-block:last-child { border-bottom: none; }
.svc-block--flip .svc-block__visual { order: -1; }
.svc-block__eyebrow { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; display: block; }
.svc-block__title { font-size: 1.75rem; font-weight: 800; letter-spacing: -.03em; color: var(--text-primary); margin-bottom: 16px; line-height: 1.25; }
.svc-block__text { font-size: .92rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 28px; }
.svc-block__points { display: flex; flex-direction: column; gap: 10px; }
.svc-block__point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .87rem;
  color: var(--text-mid);
}
.svc-block__point svg { width: 16px; height: 16px; stroke: var(--blue); fill: none; stroke-width: 2.5; flex-shrink: 0; margin-top: 1px; }

.svc-block__visual {
  border-radius: var(--r-2xl);
  padding: 2px;
  background: linear-gradient(135deg, var(--blue-xdark), var(--blue));
  border: 1px solid rgba(255,255,255,.06);
  min-height: 340px;
}
.svc-block__visual-inner {
  background: rgba(255,255,255,.05);
  border-radius: calc(var(--r-2xl) - 2px);
  padding: 44px 36px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.svc-block__visual-title { font-size: 1.15rem; font-weight: 800; color: white; margin-bottom: 4px; }
.svc-block__visual-sub { font-size: .82rem; color: rgba(255,255,255,.5); margin-bottom: 10px; }
.svc-visual-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md);
  font-size: .85rem;
  color: rgba(255,255,255,.75);
}
.svc-visual-item svg { width: 18px; height: 18px; stroke: var(--blue-light); fill: none; stroke-width: 1.8; flex-shrink: 0; }

/* ===================================================
   CATALOG PAGE
   =================================================== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cat-card {
  border-radius: var(--r-xl);
  padding: 2px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all .5s var(--ease-spring);
}
.cat-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-xl); transform: translateY(-5px); }
.cat-card__header {
  padding: 28px 26px 22px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex;
  align-items: center;
  gap: 14px;
}
.cat-card__header-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cat-card__header-icon svg { width: 22px; height: 22px; stroke: white; fill: none; stroke-width: 1.8; }
.cat-card__header-title { font-size: 1rem; font-weight: 700; color: white; }
.cat-card__header-sub { font-size: .76rem; color: rgba(255,255,255,.72); margin-top: 2px; }
.cat-card__body { padding: 22px 26px 28px; }
.cat-card__list { display: flex; flex-direction: column; gap: 0; margin-bottom: 22px; }
.cat-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--surface);
  font-size: .85rem;
  color: var(--text-mid);
}
.cat-card__list li:last-child { border-bottom: none; }
.cat-card__list li svg { width: 14px; height: 14px; stroke: var(--blue); fill: none; stroke-width: 2.5; flex-shrink: 0; }

/* ===================================================
   BLOG PAGE
   =================================================== */
.blog-layout { display: grid; grid-template-columns: 1fr 340px; gap: 52px; align-items: start; }
.blog-posts { display: flex; flex-direction: column; gap: 24px; }
.post-card {
  border-radius: var(--r-xl);
  padding: 1.5px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all .45s var(--ease-spring);
  display: grid;
  grid-template-columns: 220px 1fr;
}
.post-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.post-card__thumb {
  background: linear-gradient(135deg, var(--blue-xdark), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}
.post-card__thumb svg { width: 48px; height: 48px; stroke: rgba(255,255,255,.3); fill: none; stroke-width: 1; }
.post-card__body { padding: 28px 32px; }
.post-card__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.post-tag {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue);
  background: var(--blue-muted);
  padding: 3px 10px;
  border-radius: 100px;
}
.post-date { font-size: .78rem; color: var(--text-faint); }
.post-card__title { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; line-height: 1.4; letter-spacing: -.02em; }
.post-card__excerpt { font-size: .86rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; }
.post-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--blue);
  transition: gap .3s var(--ease-spring);
}
.post-card__link:hover { gap: 10px; }
.post-card__link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; }

.sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 90px; }
.sidebar-widget {
  border-radius: var(--r-xl);
  padding: 1.5px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.sidebar-widget__inner {
  background: var(--white);
  border-radius: calc(var(--r-xl) - 1.5px);
  padding: 26px 24px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}
.sidebar-widget__title {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--surface);
}
.sidebar-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.sidebar-tag {
  font-size: .77rem;
  font-weight: 500;
  color: var(--text-mid);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 100px;
  transition: all .2s;
  cursor: pointer;
}
.sidebar-tag:hover { background: var(--blue); color: white; border-color: var(--blue); }
.sidebar-recents { display: flex; flex-direction: column; gap: 12px; }
.sidebar-recent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--surface);
  font-size: .83rem;
}
.sidebar-recent:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-recent__num { font-size: .75rem; font-weight: 800; color: var(--blue); min-width: 20px; margin-top: 1px; }
.sidebar-recent__title { color: var(--text-mid); font-weight: 500; line-height: 1.5; }
.sidebar-recent__title:hover { color: var(--blue); }

/* ===================================================
   CONTACT PAGE
   =================================================== */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 0; }
.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.contact-info-item:first-child { padding-top: 0; }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item__icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--blue-muted);
  border: 1px solid rgba(11,102,195,.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-item__icon svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 1.8; }
.contact-info-item__label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 4px; }
.contact-info-item__value { font-size: .95rem; font-weight: 600; color: var(--text-primary); margin-bottom: 2px; }
.contact-info-item__sub { font-size: .82rem; color: var(--text-muted); }

.contact-wa {
  border-radius: var(--r-xl);
  padding: 2px;
  background: linear-gradient(135deg, #0d7a37, #1fba57);
  border: 1px solid rgba(255,255,255,.1);
  margin-top: 28px;
}
.contact-wa__inner {
  background: rgba(255,255,255,.05);
  border-radius: calc(var(--r-xl) - 2px);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}
.contact-wa__icon { font-size: 2rem; flex-shrink: 0; }
.contact-wa__title { font-size: .95rem; font-weight: 700; color: white; }
.contact-wa__sub { font-size: .8rem; color: rgba(255,255,255,.65); }

/* Form (Double-bezel) */
.form-panel {
  border-radius: var(--r-2xl);
  padding: 2px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.form-panel__inner {
  background: var(--white);
  border-radius: calc(var(--r-2xl) - 2px);
  padding: 44px 40px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}
.form-panel__title { font-size: 1.25rem; font-weight: 800; letter-spacing: -.03em; color: var(--text-primary); margin-bottom: 6px; }
.form-panel__sub { font-size: .85rem; color: var(--text-muted); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-label { font-size: .8rem; font-weight: 600; color: var(--text-mid); }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--font);
  font-size: .9rem;
  color: var(--text-primary);
  background: var(--off-white);
  transition: all .3s var(--ease-out);
  outline: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(11,102,195,.1);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; margin-top: 6px; }

/* ===================================================
   FOOTER
   =================================================== */
.footer { background: var(--charcoal); padding: 80px 0 36px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer__logo img { height: 30px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer__logo-text {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -.04em;
  color: white;
  margin-bottom: 14px;
}
.footer__logo-text span { color: var(--blue-light); }
.footer__brand-desc { font-size: .84rem; color: rgba(255,255,255,.4); line-height: 1.75; margin-bottom: 22px; }
.footer__socials { display: flex; gap: 8px; }
.footer__social {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s;
}
.footer__social:hover { background: var(--blue); border-color: var(--blue); }
.footer__social svg { width: 15px; height: 15px; stroke: rgba(255,255,255,.6); fill: none; stroke-width: 1.8; }
.footer__social:hover svg { stroke: white; }
.footer__col-title {
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.5);
  margin-bottom: 18px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: .85rem; color: rgba(255,255,255,.45); transition: color .2s; }
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer__bottom-links { display: flex; gap: 20px; }
.footer__bottom-links a { font-size: .78rem; color: rgba(255,255,255,.3); transition: color .2s; }
.footer__bottom-links a:hover { color: white; }

/* ===================================================
   FLOATING WHATSAPP
   =================================================== */
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #1fba57;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(31,186,87,.45);
  z-index: 300;
  transition: all .4s var(--ease-spring);
  animation: fabFloat 4s ease-in-out infinite;
}
.wa-fab:hover { transform: scale(1.12); box-shadow: 0 14px 40px rgba(31,186,87,.6); animation: none; }
.wa-fab svg { width: 30px; height: 30px; fill: white; }
@keyframes fabFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__bento { display: none; }
  .diff-grid { grid-template-columns: 1fr; gap: 40px; }
  .diff-visual { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .compliance-grid { grid-template-columns: repeat(3, 1fr); }
  .about-intro { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}

@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .services-bento { grid-template-columns: 1fr; }
  .svc-card--tall { grid-row: span 1; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .svc-block { grid-template-columns: 1fr; gap: 40px; }
  .svc-block--flip .svc-block__visual { order: 0; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .navbar__nav, .navbar__actions { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: 100dvh; padding: 64px 0; }
  .hero__proof { gap: 20px; flex-wrap: wrap; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; width: 100%; }
  .pain-strip__inner { display: grid; grid-template-columns: 1fr 1fr; }
  .pain-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .pain-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.1); }
  .post-card { grid-template-columns: 1fr; }
  .post-card__thumb { min-height: 110px; }
  .values-grid { grid-template-columns: 1fr; }
  .compliance-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
  .cat-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero { padding: 56px 0; }
  .pain-strip__inner { grid-template-columns: 1fr; }
  .pain-item { border-right: none; }
  .pain-item:nth-child(odd) { border-right: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .compliance-grid { grid-template-columns: 1fr 1fr; }
  .form-panel__inner { padding: 32px 24px; }
  .cta-section__actions { flex-direction: column; align-items: center; }
  .cta-section__actions .btn { justify-content: center; width: 100%; max-width: 300px; }
}

/* ===================================================
   MAYOREO SECTION
   =================================================== */
.mayoreo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.mayoreo-card {
  border-radius: var(--r-xl);
  padding: 2px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all .45s var(--ease-spring);
}
.mayoreo-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md), 0 0 0 3px rgba(11,102,195,.07);
  transform: translateY(-4px);
}
.mayoreo-card__inner {
  background: var(--white);
  border-radius: calc(var(--r-xl) - 2px);
  padding: 28px 24px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
  height: 100%;
}
.mayoreo-card__step {
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue-muted);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 14px;
  color: rgba(11,102,195,.15);
}
.mayoreo-card__title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.35;
}
.mayoreo-card__text {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.mayoreo-cta {
  border-radius: var(--r-xl);
  padding: 2px;
  background: linear-gradient(135deg, var(--blue) 0%, #1a7fd4 100%);
  box-shadow: var(--shadow-md);
}
.mayoreo-cta__inner {
  background: white;
  border-radius: calc(var(--r-xl) - 2px);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}

@media (max-width: 1024px) {
  .mayoreo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .mayoreo-grid { grid-template-columns: 1fr; }
  .mayoreo-cta__inner { flex-direction: column; align-items: flex-start; }
}

/* ===================================================
   CUADRO BÁSICO — Interactive Catalog Table
   =================================================== */
.cb-controls {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.cb-search {
  flex: 1;
  min-width: 280px;
  padding: 12px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  font-size: .9rem;
  font-family: var(--font);
  color: var(--text-primary);
  background: white;
  outline: none;
  transition: border-color .2s;
}
.cb-search:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(11,102,195,.08); }
.cb-search::placeholder { color: var(--text-muted); }
.cb-count {
  font-size: .82rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
  padding: 12px 0;
}
.cb-table-wrap {
  border-radius: var(--r-xl);
  padding: 2px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.cb-table-inner {
  overflow-x: auto;
  border-radius: calc(var(--r-xl) - 2px);
}
.cb-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .85rem;
}
.cb-table thead th {
  background: var(--charcoal);
  color: white;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 14px 18px;
  text-align: left;
  position: sticky;
  top: 0;
  z-index: 10;
  white-space: nowrap;
}
.cb-table thead th:first-child { border-radius: calc(var(--r-xl) - 2px) 0 0 0; }
.cb-table thead th:last-child { border-radius: 0 calc(var(--r-xl) - 2px) 0 0; }
.cb-table tbody tr {
  border-bottom: 1px solid var(--surface);
  transition: background .15s;
}
.cb-table tbody tr:hover { background: rgba(11,102,195,.04); }
.cb-table tbody tr:last-child { border-bottom: none; }
.cb-table td {
  padding: 12px 18px;
  vertical-align: top;
  color: var(--text-primary);
  line-height: 1.5;
}
.cb-table td:first-child { color: var(--blue); font-weight: 700; font-family: monospace; white-space: nowrap; }
.cb-table td.cb-clave-larga { color: var(--text-muted); font-size: .78rem; font-family: monospace; white-space: nowrap; }
.cb-table td.cb-desc { max-width: 480px; }
.cb-table td.cb-pres { color: var(--text-muted); font-size: .82rem; max-width: 220px; }
.cb-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 4px;
  gap: 16px;
  flex-wrap: wrap;
}
.cb-pagination__info {
  font-size: .82rem;
  color: var(--text-muted);
}
.cb-pagination__btns {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
.cb-page-btn {
  padding: 7px 14px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: white;
  color: var(--text-primary);
  font-size: .82rem;
  font-family: var(--font);
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}
.cb-page-btn:hover { border-color: var(--blue); color: var(--blue); background: rgba(11,102,195,.04); }
.cb-page-btn.active { background: var(--blue); color: white; border-color: var(--blue); }
.cb-page-btn:disabled { opacity: .4; cursor: not-allowed; }
.cb-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  font-size: .9rem;
}
.cb-loading {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
  font-size: .9rem;
}
.cb-highlight { background: rgba(11,102,195,.12); border-radius: 2px; font-weight: 600; }

@media (max-width: 768px) {
  .cb-controls { flex-direction: column; align-items: stretch; }
  .cb-table td:nth-child(2) { display: none; }
  .cb-table th:nth-child(2) { display: none; }
}

/* ===================================================
   CUSTOM CURSOR
   =================================================== */
* { cursor: none !important; }

.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width .15s, height .15s, opacity .2s;
  will-change: transform;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 32px; height: 32px;
  border: 1.5px solid rgba(11,102,195,.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width .35s cubic-bezier(.16,1,.3,1),
              height .35s cubic-bezier(.16,1,.3,1),
              border-color .25s,
              opacity .2s;
  will-change: transform;
}

/* States */
body.cursor-hover .cursor-dot {
  width: 8px; height: 8px;
  background: var(--blue);
}
body.cursor-hover .cursor-ring {
  width: 48px; height: 48px;
  border-color: rgba(11,102,195,.25);
}
body.cursor-press .cursor-dot {
  width: 5px; height: 5px;
}
body.cursor-press .cursor-ring {
  width: 22px; height: 22px;
  border-color: rgba(11,102,195,.7);
}
/* On video / dark sections: white ring */
.cursor-ring.cursor-ring--dark {
  border-color: rgba(255,255,255,.4);
}

/* Hide on touch devices */
@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
  * { cursor: auto !important; }
}

/* ===================================================
   VIDEO SHOWCASE SECTION — editorial / centered
   =================================================== */
.vid-section {
  padding: 96px 0;
  background: var(--charcoal);
  overflow: hidden;
}
.vid-section__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}
.vid-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 18px;
}
.vid-section__eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-light);
  animation: pulse 2s ease-in-out infinite;
}
.vid-section__title {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 800;
  color: white;
  line-height: 1.12;
  letter-spacing: -.04em;
  margin: 0;
}
.vid-section__title em {
  font-style: normal;
  color: var(--blue-light);
}
.vid-section__header-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: flex-end;
}
.vid-section__text {
  font-size: .92rem;
  color: rgba(255,255,255,.6);
  line-height: 1.8;
  margin: 0;
}
/* outlined white btn variant */
.btn-outline-white {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.3);
  color: white;
  align-self: flex-start;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.55);
}
/* Video card — the hero of this section */
.vid-section__card {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08),
    0 32px 80px rgba(0,0,0,.55),
    0 0 120px rgba(11,102,195,.18);
  margin-bottom: 40px;
  background: #000;
  /* 16:9 ratio for the video */
  aspect-ratio: 16 / 7;
}
.vid-section__card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vid-section__card-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .01em;
}
.vid-section__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
/* Feature row below video */
.vid-section__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.07);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.vid-section__feat {
  background: rgba(255,255,255,.04);
  padding: 28px 28px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: background .2s;
}
.vid-section__feat:hover { background: rgba(255,255,255,.08); }
.vid-section__feat-icon {
  width: 36px; height: 36px;
  border-radius: var(--r-md);
  background: rgba(11,102,195,.2);
  border: 1px solid rgba(11,102,195,.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.vid-section__feat-icon svg {
  width: 16px; height: 16px;
  stroke: var(--blue-light);
  stroke-width: 2;
  fill: none;
}
.vid-section__feat-text {
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  padding-top: 6px;
}

@media (max-width: 960px) {
  .vid-section__header { grid-template-columns: 1fr; gap: 24px; }
  .vid-section__features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .vid-section { padding: 72px 0; }
  .vid-section__features { grid-template-columns: 1fr; }
  .vid-section__card { aspect-ratio: 16 / 9; }
}
