/* ============================================================
   MMsoluTI TECNOLOGIA — Premium Stylesheet v2
   Fonts: Barlow Condensed (headings) + DM Sans (body) — self-hosted
   Palette: #135138 (green) · #0B4369 (blue) · white
   ============================================================ */

/* ── Self-hosted Fonts ───────────────────────────────────── */
@font-face {
  font-family: 'Barlow Condensed';
  src: url('../fonts/barlow-condensed-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('../fonts/barlow-condensed-800.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-500.woff2') format('woff2');
  font-weight: 500 600;
  font-style: normal;
  font-display: swap;
}

/* ── Custom Properties ───────────────────────────────────── */
:root {
  /* Brand */
  --green: #135138;
  --green-mid: #1a6b49;
  --green-light: #e8f5ee;
  --green-glow: rgba(19,81,56,.3);
  --blue: #0B4369;
  --blue-mid: #0e5585;
  --blue-light: #e8f1f8;
  --blue-glow: rgba(11,67,105,.3);
  --gradient: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
  --gradient-r: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);

  /* WhatsApp */
  --wa: #25d366;
  --wa-dark: #1da851;

  /* Light surfaces */
  --white: #ffffff;
  --gray-50: #f7f9fb;
  --gray-100: #eef1f5;
  --gray-200: #dde3eb;
  --gray-400: #9aaab8;
  --gray-600: #556678;
  --gray-800: #1e2b38;
  --gray-900: #0f1923;

  /* Dark surfaces */
  --dark: #0a1520;
  --dark-2: #0f1d2b;
  --dark-3: #162436;
  --dark-border: rgba(255,255,255,.09);

  /* Typography */
  --font: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Barlow Condensed', system-ui, sans-serif;

  /* Spacing / radius */
  --radius: 10px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  /* Transitions */
  --t: 200ms cubic-bezier(.4,0,.2,1);
  --t-slow: 400ms cubic-bezier(.4,0,.2,1);

  /* Layout */
  --nav-h: 86px;
  --trust-h: 38px;
  --header-h: calc(var(--nav-h) + var(--trust-h));

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(0,0,0,.08);
  --shadow: 0 4px 16px rgba(0,0,0,.12);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.18);
  --shadow-dark: 0 8px 32px rgba(0,0,0,.45);
}

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

/* ── Layout ──────────────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }

/* ── Section Header ──────────────────────────────────────── */
.section-header { text-align: center; max-width: 780px; margin: 0 auto 64px; }
.eyebrow {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 8px 18px; border-radius: 100px; margin-bottom: 24px;
  background: rgba(37,211,102,.12); border: 1px solid rgba(37,211,102,.3);
  color: var(--green); font-size: .74rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.segments .eyebrow {
  color: #4ade80; border-color: rgba(74,222,128,.4); background: rgba(74,222,128,.1);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700; line-height: .98;
  letter-spacing: -.01em;
  color: var(--gray-900);
  margin-bottom: 18px;
}
.section-title--white { color: #fff; }
.section-sub {
  font-size: 1.1rem; color: var(--gray-600); line-height: 1.7; max-width: 620px; margin: 0 auto;
}
.section-sub--white { color: rgba(255,255,255,.75); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 8px;
  font-family: var(--font); font-size: 1rem; font-weight: 600; line-height: 1;
  transition: all var(--t); cursor: pointer; white-space: nowrap; min-height: 52px;
  border: 2px solid transparent;
}
.btn--wa {
  background: var(--wa); color: #fff; border-color: var(--wa);
}
.btn--wa:hover {
  background: var(--wa-dark); border-color: var(--wa-dark);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.35);
}
.btn--outline {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,.35);
}
.btn--outline:hover {
  background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7);
  transform: translateY(-2px);
}
.btn--brand {
  background: var(--gradient); color: #fff; border: none;
  box-shadow: 0 4px 16px var(--green-glow);
}
.btn--brand:hover {
  transform: translateY(-2px); filter: brightness(1.12);
  box-shadow: 0 8px 28px var(--green-glow);
}

/* ── Site Header ─────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all var(--t-slow);
}
.site-header.is-scrolled .nav {
  background: rgba(10, 18, 27, 0.92);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* ── Trust Bar ───────────────────────────────────────────── */
.trust-bar {
  background: linear-gradient(90deg, #071520 0%, #0d273a 50%, #071520 100%);
  padding: 8px 0;
  height: var(--trust-h);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.trust-bar__inner {
  display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
}
.trust-bar__item {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font); font-size: .72rem; font-weight: 600;
  color: rgba(255,255,255,.65); letter-spacing: .08em; text-transform: uppercase;
}
.trust-bar__item svg { width: 12px; height: 12px; flex-shrink: 0; color: #4ade80; }
.trust-bar__sep { color: rgba(255,255,255,.15); font-size: .8rem; }

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  height: var(--nav-h);
  background: rgba(10, 18, 27, 0.75);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: all var(--t-slow);
}
.nav .container { height: 100%; }
.nav__inner {
  height: 100%; display: flex; align-items: center; justify-content: space-between; position: relative;
}
.nav__logo { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav__logo img { height: 74px; width: auto; max-width: 280px; object-fit: contain; display: block; filter: brightness(0) invert(1); margin: 8px 0; }

/* Desktop menu right aligned */
.nav__menu { 
  display: flex; align-items: center; gap: 32px; 
  margin-left: auto; margin-right: 36px;
}
.nav__link {
  position: relative;
  font-size: .98rem; font-weight: 500; color: rgba(255,255,255,.75);
  letter-spacing: .01em; padding: 6px 0; transition: color var(--t); white-space: nowrap;
}
.nav__link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: #4ade80; transform: scaleX(0); transform-origin: right;
  transition: transform var(--t); border-radius: 2px;
}
.nav__link:hover, .nav__link.is-active { color: #fff; }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); transform-origin: left; }

.nav__cta {
  flex-shrink: 0;
  padding: 10px 24px; border-radius: 100px;
  background: var(--wa); color: #fff;
  border: 1px solid var(--wa);
  font-size: .95rem; font-weight: 600; letter-spacing: .02em;
  display: flex; align-items: center; gap: 8px;
  transition: all var(--t); white-space: nowrap;
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.nav__cta:hover { 
  background: var(--wa); color: #fff; border-color: var(--wa);
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.35); 
}
.nav__cta svg { width: 16px; height: 16px; }

.nav__hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; padding: 10px; cursor: pointer; border-radius: 6px;
  transition: background var(--t); min-width: 44px; min-height: 44px;
}
.nav__hamburger:hover { background: rgba(255,255,255,.09); }
.nav__hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all var(--t);
}
.nav__hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.nav__mobile {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(8,14,21,.98); backdrop-filter: blur(24px);
  z-index: 99; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  opacity: 0; pointer-events: none; transition: opacity var(--t);
}
.nav__mobile.is-open { display: flex; opacity: 1; pointer-events: all; }
.nav__mobile .nav__link {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 700;
  padding: 8px 40px; width: 100%; text-align: center;
  color: rgba(255,255,255,.6);
}
.nav__mobile .nav__link:hover, .nav__mobile .nav__link.is-active { color: #fff; }
.nav__mobile .nav__link::after { display: none; }
.nav__mobile .nav__cta { margin: 32px 0 0; font-size: 1.1rem; padding: 18px 48px; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 80px;
}
.hero__video-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero__video-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    120deg,
    rgba(7,14,22,.94) 0%,
    rgba(10,21,32,.88) 35%,
    rgba(11,67,105,.78) 65%,
    rgba(19,81,56,.72) 100%
  );
}
.hero__video {
  width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0;
}
.hero__noise {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}
.hero__grid-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero__content { position: relative; z-index: 2; max-width: 800px; padding-top: 50px; }

/* Badge / Label */
.hero__badge,
.hero__label {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 18px; border-radius: 100px; margin-bottom: 28px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.9);
}
.hero__badge::before,
.hero__label::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--wa); box-shadow: 0 0 10px var(--wa);
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(.8); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700; line-height: .98;
  letter-spacing: -.01em;
  color: #fff; margin-bottom: 24px;
}
.hero__title em { font-style: normal; color: #4ade80; }
.hero__title strong { font-weight: 700; color: #fff; }

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem); line-height: 1.72;
  color: rgba(255,255,255,.78); margin-bottom: 40px; max-width: 600px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

/* Hero Buttons */
.btn--primary {
  background: var(--wa); color: #052410; border-color: var(--wa);
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
}
.btn--primary:hover {
  background: var(--wa-dark); border-color: var(--wa-dark);
  transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,.45);
}
.btn--secondary {
  background: rgba(255,255,255,.08); color: #fff;
  border-color: rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
}
.btn--secondary:hover {
  background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.55);
  transform: translateY(-2px);
}

.hero__seals { display: flex; gap: 28px; flex-wrap: wrap; }
.hero__seal {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; color: rgba(255,255,255,.6); font-weight: 500;
}
.hero__seal svg { color: #4ade80; flex-shrink: 0; width: 14px; height: 14px; }

.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.35); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  animation: bounce-y 2.4s ease-in-out infinite;
}
@keyframes bounce-y {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Pain Section — dark editorial ───────────────────────── */
.pain {
  background: #07111d;
  position: relative; overflow: hidden;
  padding: 96px 0;
}

/* Radial glow accents */
.pain__glow {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.pain__glow--blue {
  top: -180px; left: -180px; width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(11,67,105,.45) 0%, transparent 68%);
}
.pain__glow--green {
  bottom: -160px; right: -160px; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(19,81,56,.3) 0%, transparent 68%);
}

.pain__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center; position: relative; z-index: 1;
}

/* Tag */
.pain__tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; border-radius: 100px; margin-bottom: 28px;
  background: rgba(74,222,128,.08); border: 1px solid rgba(74,222,128,.2);
  backdrop-filter: blur(8px);
  color: #4ade80; font-size: .74rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
}
.pain__tag svg { color: #4ade80; }

/* Title */
.pain__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700; line-height: .98; letter-spacing: -.01em;
  color: #fff; margin-bottom: 36px;
}
.pain__title-accent {
  display: block; margin-top: 6px;
  color: #4ade80;
}

/* Audit list */
.pain__audit { display: flex; flex-direction: column; gap: 0; margin-bottom: 32px; }
.pain__audit-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background var(--t);
}
.pain__audit-item:first-child { border-top: 1px solid rgba(255,255,255,.07); }
.pain__audit-dot {
  flex-shrink: 0; margin-top: 5px;
  width: 8px; height: 8px; border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 8px rgba(239,68,68,.7);
  animation: dot-pulse 2.4s ease-in-out infinite;
}
.pain__audit-item:nth-child(2) .pain__audit-dot { animation-delay: .4s; }
.pain__audit-item:nth-child(3) .pain__audit-dot { animation-delay: .8s; }
.pain__audit-item:nth-child(4) .pain__audit-dot { animation-delay: 1.2s; }
@keyframes dot-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(239,68,68,.7); }
  50% { opacity: .5; box-shadow: 0 0 4px rgba(239,68,68,.3); }
}
.pain__audit-item strong {
  display: block; font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: 3px;
}
.pain__audit-item p { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.5; margin: 0; }

/* Promise strip */
.pain__promise {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px 22px; border-radius: var(--radius);
  background: rgba(19,81,56,.12);
  border: 1px solid rgba(74,222,128,.2);
  border-left: 3px solid #4ade80;
}
.pain__promise-icon {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 8px;
  background: rgba(74,222,128,.15); border: 1px solid rgba(74,222,128,.25);
  display: flex; align-items: center; justify-content: center;
  color: #4ade80; margin-top: 1px;
}
.pain__promise p { font-size: .92rem; color: rgba(255,255,255,.75); line-height: 1.68; margin: 0; }
.pain__promise strong { color: #4ade80; font-weight: 700; }

/* Right image frame */
.pain__right { position: relative; }
.pain__img-frame {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.06);
}
.pain__img-frame img { width: 100%; height: 480px; object-fit: cover; display: block; }
.pain__img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,67,105,.5) 0%,
    rgba(7,17,29,.2) 50%,
    rgba(19,81,56,.35) 100%
  );
}

/* Floating stat card */
.pain__stat {
  position: absolute; bottom: 28px; left: 28px; z-index: 2;
  padding: 18px 22px; border-radius: var(--radius);
  background: rgba(7,17,29,.85);
  backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
}
.pain__stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 700; line-height: 1; color: #fff;
}
.pain__stat-num span { font-size: 1.8rem; color: #4ade80; }
.pain__stat-label { font-size: .78rem; color: rgba(255,255,255,.55); margin-top: 4px; max-width: 130px; line-height: 1.4; }

/* Corner accent line */
.pain__img-corner {
  position: absolute; top: 20px; right: 20px; z-index: 2;
  width: 48px; height: 48px;
  border-top: 2px solid rgba(74,222,128,.5);
  border-right: 2px solid rgba(74,222,128,.5);
  border-radius: 0 var(--radius) 0 0;
}

/* ── Services — light bg ─────────────────────────────────── */
.services { background: var(--gray-50); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all var(--t-slow);
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  border-color: var(--green);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(19,81,56,.12), 0 0 0 1px var(--green);
}
.service-card__img { position: relative; height: 210px; overflow: hidden; }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.service-card:hover .service-card__img img { transform: scale(1.06); }
.service-card__img::after { display: none; }
.service-card__num {
  position: absolute; top: 14px; left: 14px; z-index: 1;
  width: 34px; height: 34px; border-radius: 8px;
  background: #0a1d2b; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: .82rem; font-weight: 700; color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}
.service-card__body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; }
.service-card__cat {
  font-size: .95rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--green-mid); margin-bottom: 8px;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700; color: var(--gray-900);
  margin-bottom: 12px; line-height: 1.25;
}
.service-card__desc { font-size: .95rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 14px; flex: 1; }
.service-card__list { margin-bottom: 18px; }
.service-card__list li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .84rem; color: var(--gray-600); margin-bottom: 6px; line-height: 1.4;
}
.service-card__list li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--green); flex-shrink: 0; margin-top: 7px;
}
.service-card__cta {
  margin-top: auto; display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 20px; border-radius: 8px; font-size: 1rem; font-weight: 600;
  background: var(--wa); color: #fff;
  border: 1px solid var(--wa-dark);
  transition: all var(--t); min-height: 52px; cursor: pointer;
}
.service-card__cta:hover { background: var(--wa-dark); border-color: var(--wa-dark); box-shadow: 0 6px 20px rgba(37,211,102,.35); transform: translateY(-2px); }
.service-card__cta svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Segments — Dark Tech bg ───────────────────────────── */
.segments { 
  background: #0a1d2b; position: relative; overflow: hidden; 
}
.segments::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 56px 56px;
}
.segments::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 50% -20%, rgba(37,211,102,.12) 0%, transparent 60%);
}
.segments .section-header { position: relative; z-index: 1; }
.segments__grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 28px;
  position: relative; z-index: 1;
}
.segment-card {
  width: calc((100% - 56px) / 3);
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.01) 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg); padding: 36px 32px;
  transition: all var(--t-slow);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 8px 32px rgba(0,0,0,.2);
}
.segment-card:hover {
  background: linear-gradient(135deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.02) 100%);
  border-color: rgba(74,222,128,.35);
  transform: translateY(-8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 12px 40px rgba(0,0,0,.4), 0 0 24px rgba(74,222,128,.1);
}
.segment-card__icon {
  width: 68px; height: 68px; border-radius: 16px; margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(74,222,128,.1); border: 1px solid rgba(74,222,128,.25);
  color: #4ade80; box-shadow: 0 0 20px rgba(74,222,128,.1);
  transition: transform var(--t-slow);
}
.segment-card:hover .segment-card__icon {
  transform: scale(1.1) rotate(5deg); background: rgba(74,222,128,.18);
}
.segment-card__icon svg { 
  width: 44px; height: 44px; 
  transition: all var(--t-slow); 
  filter: drop-shadow(0 0 8px rgba(74,222,128,.4));
}
.segment-card:hover .segment-card__icon svg {
  transform: scale(1.05); filter: drop-shadow(0 0 12px rgba(74,222,128,.6));
}
.segment-card__title {
  font-family: var(--font); 
  font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 12px;
  letter-spacing: -.01em; line-height: 1.35;
}
.segment-card__desc { font-size: .92rem; color: rgba(255,255,255,.65); line-height: 1.6; margin: 0; }

/* ── Clients — white bg ──────────────────────────────────── */
.clients { background: var(--white); padding: 80px 0; overflow: hidden; }
.clients__header { text-align: center; margin-bottom: 56px; }
.clients__header p {
  font-family: var(--font-display); font-size: clamp(2.2rem, 4.5vw, 3.2rem); font-weight: 700; 
  letter-spacing: -.02em; color: var(--gray-900);
}
.clients__track-wrap {
  overflow: hidden; position: relative; display: flex;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  container-type: inline-size;
}
.clients__track {
  display: flex; flex-shrink: 0;
  animation: marquee 46s linear infinite;
}
.clients__track-wrap:hover .clients__track { animation-play-state: paused; }
.clients__logo {
  flex-shrink: 0; width: 25cqw; height: 180px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 16px; margin: 0;
  transition: transform var(--t-slow); cursor: pointer;
}
.clients__logo:hover { transform: scale(1.1); }
.clients__logo img { width: 100%; height: 100%; object-fit: contain; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Process — white bg ──────────────────────────────────── */
.process { background: var(--white); }
.process__steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.process__steps::before {
  content: ''; position: absolute;
  top: 34px; left: calc(12.5% + 16px); right: calc(12.5% + 16px); height: 2px;
  background: var(--gradient);
}
.process__step { text-align: center; padding: 0 20px; position: relative; }
.process__num {
  width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 24px;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: #fff;
  position: relative; z-index: 1;
  box-shadow: 0 0 0 8px var(--white), 0 0 0 10px rgba(19,81,56,.15);
}
.process__title {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700; color: var(--gray-900); margin-bottom: 10px;
}
.process__desc { font-size: .875rem; color: var(--gray-600); line-height: 1.68; }

/* ── Why / Differentials — light bg ─────────────────────── */
.why { background: var(--gray-50); }
.why__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px; }
.why-card {
  width: calc((100% - 56px) / 3);
  background: var(--white);
  border: 1px solid rgba(0,0,0,.04);
  border-radius: 24px; padding: 40px 36px;
  box-shadow: 0 16px 40px -12px rgba(0,0,0,.04);
  transition: all var(--t-slow);
  position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(135deg, rgba(74,222,128,.04) 0%, transparent 60%);
  opacity: 0; transition: opacity var(--t-slow);
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -12px rgba(0,0,0,.08); border-color: rgba(74,222,128,.3); }
.why-card:hover::before { opacity: 1; }
.why-card__icon {
  width: 64px; height: 64px; border-radius: 16px; margin-bottom: 26px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); background: rgba(37,211,102,.12);
  border: 1px solid rgba(37,211,102,.25);
  box-shadow: 0 4px 20px rgba(37,211,102,.1);
  transition: transform var(--t-slow);
}
.why-card:hover .why-card__icon { transform: scale(1.1) rotate(5deg); background: rgba(37,211,102,.2); }
.why-card__icon svg { width: 30px; height: 30px; }
.why-card__title {
  font-family: var(--font);
  font-size: 1.25rem; font-weight: 700; color: var(--gray-900); margin-bottom: 14px;
  line-height: 1.35; letter-spacing: -0.01em;
}
.why-card__desc { font-size: .95rem; color: var(--gray-600); line-height: 1.65; }

/* ── CTA Banner — parallax ───────────────────────────────── */
.cta-banner { 
  position: relative; overflow: hidden; padding: 120px 0; 
  display: flex; align-items: center; justify-content: center;
}
.cta-banner__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-attachment: fixed;
  z-index: 0;
}
.cta-banner__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,29,43,0.92) 0%, rgba(19,81,56,0.85) 100%);
  z-index: 1;
}
.cta-banner__inner { 
  position: relative; z-index: 2; text-align: center; max-width: 800px; margin: 0 auto; 
}
.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700; color: #fff; margin-bottom: 24px;
  line-height: .98; letter-spacing: -.02em;
  text-shadow: 0 12px 32px rgba(0,0,0,.6);
}
.cta-banner__sub {
  font-size: 1.2rem; color: rgba(255,255,255,.9); margin-bottom: 48px;
  max-width: 640px; margin-left: auto; margin-right: auto; line-height: 1.7;
}
.btn--cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  background: var(--wa); color: #fff;
  padding: 18px 44px; border-radius: 50px;
  font-family: var(--font); font-size: 1.15rem; font-weight: 700;
  box-shadow: 0 8px 32px rgba(37,211,102,.4);
  border: 2px solid transparent;
  transition: all var(--t); cursor: pointer;
}
.btn--cta:hover {
  transform: translateY(-4px); box-shadow: 0 16px 48px rgba(37,211,102,.5);
  background: var(--wa-dark); border-color: var(--wa-dark);
}

/* ── Contact — light bg ───────────────────────────────────── */
/* ── Contact ─────────────────────────────────────────────── */
.contact {
  background: var(--gray-50);
  position: relative; overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(19,81,56,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19,81,56,.04) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
.contact::after {
  content: '';
  position: absolute; top: -220px; right: -180px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(19,81,56,.07) 0%, transparent 68%);
  pointer-events: none;
}
.contact__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
  position: relative; z-index: 1;
}

/* Form card */
.contact__form-wrap {
  background: linear-gradient(155deg, #1c7550 0%, #135138 45%, #0d3c2a 100%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px; padding: 48px;
  box-shadow: 0 32px 64px -16px rgba(19,81,56,.45), inset 0 0 0 1px rgba(255,255,255,.05);
  position: relative; overflow: hidden;
}
.contact__form-wrap::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,.09) 0%, transparent 60%);
  pointer-events: none;
}
.contact__form-wrap::after {
  content: '';
  position: absolute; bottom: -60px; left: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(11,67,105,.4) 0%, transparent 65%);
  pointer-events: none;
}
.form__title {
  font-family: var(--font-display); position: relative; z-index: 1;
  font-size: 1.9rem; font-weight: 700; color: #fff;
  margin-bottom: 8px; line-height: 1.15;
}
.form__sub {
  color: rgba(255,255,255,.62); font-size: .9rem;
  margin-bottom: 30px; line-height: 1.65;
  position: relative; z-index: 1;
}
.form__group { margin-bottom: 18px; position: relative; z-index: 1; }
.form__label {
  display: block; font-size: .75rem; font-weight: 700;
  color: rgba(255,255,255,.65); margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: .06em;
}
.form__input, .form__textarea {
  width: 100%; padding: 13px 16px; border-radius: 12px;
  background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.16);
  color: #fff; font-family: var(--font); font-size: .975rem; line-height: 1.5;
  transition: all var(--t); outline: none;
}
.form__input:focus, .form__textarea:focus {
  background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.55);
  box-shadow: 0 0 0 3px rgba(255,255,255,.1);
}
.form__input::placeholder, .form__textarea::placeholder { color: rgba(255,255,255,.32); }
.form__textarea { resize: vertical; min-height: 120px; }
.form__captcha-wrap {
  display: flex; flex-direction: row; align-items: center; gap: 12px;
  padding: 10px 14px; border-radius: 12px;
  background: rgba(0,0,0,.18); border: 1.5px solid rgba(255,255,255,.14);
}
.form__captcha-challenge {
  display: flex; align-items: center; gap: 7px; flex: 1; min-width: 0;
  font-size: .82rem; font-weight: 700;
  color: rgba(255,255,255,.9); text-transform: uppercase; letter-spacing: .04em;
  white-space: nowrap;
}
.form__captcha-challenge svg { opacity: .8; flex-shrink: 0; color: rgba(255,255,255,.9); }
.form__captcha-input {
  flex-shrink: 0; width: 64px;
  padding: 9px 8px; border-radius: 10px;
  background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.25);
  color: #fff; font-family: var(--font); font-weight: 800; font-size: 1.15rem;
  text-align: center; letter-spacing: .05em; outline: none;
  transition: all var(--t);
}
.form__captcha-input::placeholder { color: rgba(255,255,255,.35); font-weight: 400; }
.form__captcha-input:focus {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.6);
  box-shadow: 0 0 0 3px rgba(255,255,255,.1);
}
.form__btn {
  width: 100%; padding: 15px 20px; border-radius: 14px; margin-top: 6px;
  background: linear-gradient(135deg, #25d366 0%, #18a850 100%);
  color: #fff; font-family: var(--font);
  font-size: 1.05rem; font-weight: 700; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all var(--t); min-height: 52px;
  position: relative; z-index: 1;
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
  letter-spacing: .015em;
}
.form__btn:hover {
  background: linear-gradient(135deg, #2de574 0%, #1dbf5c 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,.45);
}
.form__btn::after { content: '→'; font-size: 1em; line-height: 1; transition: transform var(--t); display: inline-block; }
.form__btn:hover::after { transform: translateX(3px); }
.form__btn:disabled::after { content: ''; }
.form__btn:disabled { opacity: .7; cursor: not-allowed; transform: none; }

/* Info side */
.contact__info { padding-top: 6px; }
.contact__info-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 700; color: var(--gray-900); margin-bottom: 10px; line-height: 1.05;
}
.contact__info-sub { color: var(--gray-600); margin-bottom: 32px; line-height: 1.65; font-size: 1rem; }
.contact__items { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.contact__item {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 22px; border-radius: 18px;
  background: var(--white); border: 1.5px solid rgba(0,0,0,.05);
  box-shadow: 0 2px 12px -4px rgba(0,0,0,.08);
  transition: all 200ms ease;
}
.contact__item:hover {
  border-color: rgba(19,81,56,.18);
  box-shadow: 0 8px 24px -6px rgba(19,81,56,.14);
  transform: translateX(5px);
}
.contact__item-icon {
  width: 44px; height: 44px; border-radius: 13px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  color: #fff;
  box-shadow: 0 4px 10px rgba(19,81,56,.25);
}
.contact__item-icon svg { width: 20px; height: 20px; }
.contact__item-label {
  font-size: .7rem; font-weight: 700; color: var(--gray-400);
  margin-bottom: 3px; text-transform: uppercase; letter-spacing: .1em;
}
.contact__item-value { font-size: 1rem; color: var(--gray-900); font-weight: 700; }
.contact__item-value--highlight { color: var(--green); font-size: 1.2rem; font-weight: 800; display: block; margin-top: 1px; }
.contact__item-value a { color: inherit; text-decoration: none; transition: color var(--t); }
.contact__item-value a:hover { color: var(--green); }
.contact__hours {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 22px; border-radius: 18px;
  background: linear-gradient(135deg, rgba(19,81,56,.06) 0%, rgba(11,67,105,.04) 100%);
  border: 1.5px solid rgba(19,81,56,.13);
}
.contact__hours-icon {
  width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0;
  background: rgba(19,81,56,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
}
.contact__hours-icon svg { width: 17px; height: 17px; }
.contact__hours-body p { color: var(--gray-700); font-size: .92rem; line-height: 1.6; margin: 0; }
.contact__hours-body strong { color: var(--gray-900); font-size: .95rem; display: block; margin-bottom: 2px; }
.contact__hours-body small { font-size: .8rem; opacity: .6; display: block; margin-top: 3px; }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: #0a0f1a; position: relative; overflow: hidden;
  padding: 0 0 32px;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(19,81,56,.12) 0%, transparent 70%);
  pointer-events: none;
}
.footer__accent {
  height: 4px;
  background: linear-gradient(90deg, var(--green), #4ade80, var(--green));
}
.footer__cta-strip {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  padding: 40px 48px; margin: 48px 0;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px;
  position: relative;
}
.footer__cta-strip::before {
  content: ''; position: absolute; inset: -1px; border-radius: 20px; padding: 1px;
  background: linear-gradient(135deg, rgba(74,222,128,.3), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.footer__cta-title {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  color: #fff; margin-bottom: 6px; line-height: 1.2;
}
.footer__cta-sub { font-size: .95rem; color: rgba(255,255,255,.5); }
.footer__cta-btn {
  display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0;
  padding: 14px 32px; border-radius: 50px;
  background: #4ade80; color: #052410;
  font-size: .95rem; font-weight: 700; font-family: var(--font);
  box-shadow: 0 8px 32px rgba(74,222,128,.3);
  transition: all var(--t);
}
.footer__cta-btn:hover {
  background: #22c55e; transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(74,222,128,.4);
}
.footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px; margin-bottom: 56px;
}
.footer__brand { position: relative; z-index: 1; }
.footer__brand img {
  height: 69px; width: auto; max-width: 250px; object-fit: contain;
  margin-bottom: 20px; filter: brightness(0) invert(1);
}
.footer__tagline {
  font-size: .92rem; color: rgba(255,255,255,.45); line-height: 1.7;
  margin-bottom: 24px; max-width: 300px;
}
.footer__badges { display: flex; flex-direction: column; gap: 10px; }
.footer__badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.55);
  padding: 6px 14px; border-radius: 50px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06);
  width: fit-content;
}
.footer__badge svg { color: #4ade80; flex-shrink: 0; }
.footer__col-title {
  font-size: 1rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #4ade80; margin-bottom: 24px; font-family: var(--font-display);
}
.footer__links { display: flex; flex-direction: column; gap: 14px; }
.footer__links a {
  font-size: .92rem; color: rgba(255,255,255,.5); transition: all var(--t);
  display: inline-flex; align-items: center; gap: 6px;
}
.footer__links a:hover { color: #fff; transform: translateX(4px); }
.footer__contact-list { display: flex; flex-direction: column; gap: 18px; }
.footer__contact-item {
  display: flex; align-items: center; gap: 14px;
  font-size: .92rem; color: rgba(255,255,255,.5); line-height: 1.4;
}
.footer__contact-item svg { width: 18px; height: 18px; color: #4ade80; flex-shrink: 0; }
.footer__contact-item a { color: rgba(255,255,255,.5); transition: color var(--t); text-decoration: none; }
.footer__contact-item a:hover { color: #4ade80; }
.footer__contact-item--phone a { color: #4ade80; font-size: 1.15rem; font-weight: 700; }
.footer__contact-item--phone a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06); padding-top: 28px;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.footer__copy {
  font-size: .82rem; color: rgba(255,255,255,.35); line-height: 1.6;
  display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap;
  justify-content: center;
}
.footer__fox-link { display: inline-flex; align-items: center; transition: opacity var(--t); }
.footer__fox-link:hover { opacity: .7; }
.footer__fox-link img { height: 20px; width: auto; object-fit: contain; }

/* ── WhatsApp Float ──────────────────────────────────────── */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; }
.wa-float__btn {
  width: 60px; height: 60px; border-radius: 50%; background: var(--wa);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: all var(--t); cursor: pointer; position: relative;
}
.wa-float__btn:hover { background: var(--wa-dark); transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.6); }
.wa-float__btn svg { width: 30px; height: 30px; color: #fff; }
.wa-float__ring {
  position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,.4);
  animation: wa-ring 2.5s ease-out infinite;
}
.wa-float__tooltip {
  position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%);
  background: var(--dark-2); border: 1px solid var(--dark-border);
  border-radius: 8px; padding: 8px 14px;
  font-size: .82rem; font-weight: 600; color: #fff; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity var(--t);
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
}
.wa-float:hover .wa-float__tooltip { opacity: 1; }
@keyframes wa-ring {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.65); opacity: 0; }
}

/* ── Scroll Animations ───────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal-left { opacity: 0; transform: translateX(-28px); transition: opacity .65s ease, transform .65s ease; }
.reveal-right { opacity: 0; transform: translateX(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible, .reveal-left.is-visible, .reveal-right.is-visible { opacity: 1; transform: none; }

.stagger > *:nth-child(1) { transition-delay: 0ms; }
.stagger > *:nth-child(2) { transition-delay: 70ms; }
.stagger > *:nth-child(3) { transition-delay: 140ms; }
.stagger > *:nth-child(4) { transition-delay: 210ms; }
.stagger > *:nth-child(5) { transition-delay: 280ms; }
.stagger > *:nth-child(6) { transition-delay: 350ms; }

/* ── Reduced Motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .segments__grid, .why__grid { justify-content: center; }
  .segment-card, .why-card { width: calc(50% - 14px); }
}

@media (max-width: 900px) {
  .pain__grid { grid-template-columns: 1fr; gap: 40px; }
  .pain__right { display: none; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process__steps::before { display: none; }
}

@media (max-width: 768px) {
  :root { --nav-h: 66px; --trust-h: 36px; }
  .nav { height: auto; min-height: var(--nav-h); }
  .nav__inner { height: auto; padding: 0; }
  .footer__cta-strip { flex-direction: column; text-align: center; padding: 28px 24px; gap: 20px; }
  .footer__cta-btn { width: 100%; justify-content: center; }
  .footer__grid { grid-template-columns: 1fr; }
  .section-header { margin-bottom: 40px; }
  .nav__menu, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .services__grid { grid-template-columns: 1fr; }
  .segment-card, .why-card { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__content { padding-top: 0; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .trust-bar__sep { display: none; }
  .trust-bar__item { font-size: .72rem; }
  .trust-bar__item:last-child { display: none; }
  .clients__logo { width: 50cqw; }
  .hero__badge, .hero__label { font-size: .65rem; padding: 5px 12px; gap: 7px; letter-spacing: .06em; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .process__steps { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 28px 22px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .wa-float { bottom: 20px; right: 20px; }
  .wa-float__btn { width: 52px; height: 52px; }
}