/* ============================================================
   GVITTA ASSISTÊNCIA EM SAÚDE — style.css
   Paleta: #660273 (roxo) | #2BD9C7 (teal) | #F2F2F2 (fundo)
   Fonte: Object Sans (Heavy, HeavySlanted, Regular, Slanted)
   ============================================================ */

/* ===== FONTS ===== */
@font-face {
  font-family: 'ObjectSans';
  src: url('./Fonts/ObjectSans-Heavy.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'ObjectSans';
  src: url('./Fonts/ObjectSans-HeavySlanted.woff2') format('woff2');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'ObjectSans';
  src: url('./Fonts/ObjectSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'ObjectSans';
  src: url('./Fonts/ObjectSans-Slanted.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ===== VARIABLES ===== */
:root {
  --purple:       #660273;
  --purple-dark:  #4A0155;
  --purple-light: #8C1A9E;
  --purple-rgb:   102, 2, 115;

  --teal:         #2BD9C7;
  --teal-dark:    #1DB8A8;
  --teal-light:   #5AE6D8;
  --teal-rgb:     43, 217, 199;

  --light-bg:     #F2F2F2;
  --white:        #FFFFFF;

  --dark:         #660273;
  --dark-2:       #4A0155;
  --dark-3:       #380040;

  --text-dark:    #1A1A2E;
  --text-body:    #374151;
  --text-muted:   #6B7280;

  --container:    1240px;
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    32px;
  --transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'ObjectSans', system-ui, sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ===== UTILITIES ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 100px 0; }
.section--dark  { background: var(--dark);     color: var(--white); }
.section--light { background: var(--light-bg); }
.section--white { background: var(--white); }

.label {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.label--purple { color: var(--purple); }
.label--white  { color: rgba(255,255,255,0.6); }

.section-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 18px;
}
.section-title em  { font-style: italic; color: var(--teal); }
.section-title--white { color: var(--white); }

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
}
.section-sub--white { color: rgba(255,255,255,0.65); }

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 100px;
  font-family: 'ObjectSans', sans-serif;
  font-weight: 900;
  font-size: 15px;
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Shimmer sweep on hover */
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -110%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255,255,255,0.22) 50%,
    transparent 80%
  );
  transform: skewX(-15deg);
  transition: left 0s;
  pointer-events: none;
}
.btn:hover::after {
  left: 150%;
  transition: left 0.55s ease;
}

/* Teal primary */
.btn--teal {
  background: var(--teal);
  color: var(--purple-dark);
}
.btn--teal:hover {
  background: var(--teal-light);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 32px rgba(var(--teal-rgb), 0.45);
}
.btn--teal:active {
  transform: translateY(-1px) scale(0.99);
}

/* Pulse glow animation for primary CTA */
@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(var(--teal-rgb), 0.45); }
  60%       { box-shadow: 0 0 0 12px rgba(var(--teal-rgb), 0); }
}
.btn--pulse {
  animation: btn-pulse 2.8s ease-in-out infinite;
}
.btn--pulse:hover {
  animation: none;
}

/* Purple */
.btn--purple {
  background: var(--purple);
  color: var(--white);
}
.btn--purple:hover {
  background: var(--purple-light);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 32px rgba(var(--purple-rgb), 0.45);
}
.btn--purple:active { transform: translateY(-1px) scale(0.99); }

/* Outline purple (on light bg) */
.btn--outline-purple {
  background: transparent;
  color: var(--purple);
  border-color: rgba(var(--purple-rgb), 0.4);
}
.btn--outline-purple:hover {
  background: rgba(var(--purple-rgb), 0.06);
  border-color: var(--purple);
  transform: translateY(-3px);
}

/* Outline white (hero secondary on dark bg) */
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-3px);
}

/* Outline hero — pill com borda teal, fill on hover */
.btn--outline-hero {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.25);
  position: relative;
  overflow: hidden;
}
.btn--outline-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.btn--outline-hero:hover::before { transform: scaleX(1); }
.btn--outline-hero:hover {
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-3px);
}
.btn--outline-hero svg {
  transition: transform 0.3s ease;
}
.btn--outline-hero:hover svg {
  transform: translateX(5px);
}

/* Outline teal */
.btn--outline-teal {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn--outline-teal:hover {
  background: var(--teal);
  color: var(--purple-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(var(--teal-rgb), 0.35);
}

.btn--lg { padding: 18px 40px; font-size: 17px; }

/* Hero eyebrow text */
.hero__eyebrow {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: var(--transition);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.nav__logo img { height: 60px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dark);
  position: relative;
  transition: color 0.2s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--teal);
  transition: width 0.3s ease;
}
.nav__links a:hover { color: var(--teal); }
.nav__links a:hover::after { width: 100%; }

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown > a { display: inline-flex; align-items: center; gap: 4px; }
.nav__dropdown-arrow { transition: transform 0.3s; }
.nav__dropdown:hover .nav__dropdown-arrow { transform: rotate(180deg); }
.nav__submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.03);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav__dropdown:hover .nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__submenu li { list-style: none; }
.nav__submenu li a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-body);
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
}
.nav__submenu li a::after { display: none; }
.nav__submenu li a:hover {
  background: rgba(var(--teal-rgb), 0.08);
  color: var(--purple);
}

/* Mobile sub */
.nav__mobile-sub {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  gap: 0;
}
.nav__mobile-sub a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  padding: 6px 0;
}
.nav__mobile-sub a:hover { color: var(--teal); }

.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: var(--white);
  padding: 32px 24px 48px;
  border-top: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  flex-direction: column;
  gap: 0;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 18px;
  font-weight: 900;
  color: var(--text-dark);
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: color 0.2s;
}
.nav__mobile a:hover { color: var(--purple); }
.nav__mobile .btn { margin-top: 24px; width: 100%; }

/* ===== HERO ===== */
.hero {
  background: var(--dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -300px; left: -300px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--teal-rgb), 0.15) 0%, transparent 65%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
  width: 100%;
}
.hero__content {
  position: relative;
  z-index: 1;
}
.hero__title {
  font-size: clamp(28px, 3.6vw, 54px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
}
.hero__title em { font-style: italic; color: var(--teal); }
.hero__subtitle {
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(255,255,255,0.68);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
/* ===== HERO DASHBOARD ===== */
.hero__dashboard {
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 14px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 540px;
  margin-left: auto;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.08);
  animation: dash-in 0.8s ease 0.3s both;
}
@keyframes dash-in {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Header */
.dash__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.dash__header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dash__live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.5);
  animation: live-pulse 1.8s ease-in-out infinite;
}
@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.dash__live-text {
  font-size: 12px;
  font-weight: 900;
  color: var(--purple);
  letter-spacing: 0.5px;
}
.dash__time {
  font-size: 12px;
  font-weight: 900;
  font-style: italic;
  color: var(--teal);
  letter-spacing: 1px;
}

/* Metrics */
.dash__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.dash__metric {
  background: var(--light-bg);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-sm);
  padding: 9px 8px;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: background 0.3s;
}
.dash__metric:hover { background: rgba(255,255,255,0.09); }
.dash__metric-icon { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; }
.dash__metric-icon svg { width: 16px; height: 16px; }
.dash__metric-val {
  font-size: 17px;
  font-weight: 900;
  font-style: italic;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 2px;
}
.dash__metric-label {
  font-size: 9px;
  font-weight: 700;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

/* Map */
.dash__map {
  background: var(--purple);
  border: 1px solid rgba(102,2,115,0.3);
  border-radius: var(--radius-sm);
  padding: 10px;
}
.dash__map-label {
  font-size: 9px;
  font-weight: 900;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.dash__map-area {
  position: relative;
  width: 100%;
  aspect-ratio: 290 / 145;
  background: transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

/* SVG Mapa Nordeste */
.dash__map-svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ne-state {
  fill: rgba(255,255,255,0.06);
  stroke: rgba(255,255,255,0.3);
  stroke-width: 1;
  transition: fill 0.3s;
}
.ne-state:hover {
  fill: rgba(255,255,255,0.14);
}
.ne-state--rn {
  fill: rgba(var(--teal-rgb), 0.18);
  stroke: var(--teal);
  stroke-width: 1.5;
}

.ne-label {
  font-size: 7px;
  font-family: 'ObjectSans', sans-serif;
  font-weight: 900;
  fill: rgba(255,255,255,0.45);
  text-anchor: middle;
  pointer-events: none;
  letter-spacing: 0.5px;
}
.ne-label--rn {
  fill: var(--teal);
  font-size: 7.5px;
}

/* Marcador Mossoró */
.ne-marker {
  fill: var(--teal);
  filter: drop-shadow(0 0 4px rgba(var(--teal-rgb), 0.8));
}
.ne-marker-ring {
  fill: none;
  stroke: var(--teal);
  stroke-width: 1;
  opacity: 0.5;
  animation: marker-pulse 2s ease-in-out infinite;
}
@keyframes marker-pulse {
  0%, 100% { r: 7; opacity: 0.5; }
  50%       { r: 12; opacity: 0; }
}
.ne-marker-label {
  font-size: 6px;
  font-family: 'ObjectSans', sans-serif;
  font-weight: 900;
  fill: var(--teal);
  text-anchor: middle;
  letter-spacing: 0.3px;
}

/* SVG blips (inside SVG map) */
.svg-blip {
  fill: var(--teal);
  filter: drop-shadow(0 0 3px rgba(var(--teal-rgb), 0.9));
  animation: svg-blip-pulse 2s ease-in-out infinite;
}
.svg-blip--call {
  fill: #f59e0b;
  filter: drop-shadow(0 0 3px rgba(245,158,11,0.9));
  animation: svg-blip-pulse-amber 2s ease-in-out infinite;
}
.svg-blip-ring {
  fill: none;
  stroke: var(--teal);
  stroke-width: 0.8;
  animation: svg-ring-expand 2.5s ease-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
.svg-blip-ring--call {
  stroke: #f59e0b;
}
.svg-blip-label {
  font-size: 6px;
  font-family: 'ObjectSans', sans-serif;
  font-weight: 900;
  fill: rgba(255,255,255,0.7);
  text-anchor: middle;
  pointer-events: none;
}
@keyframes svg-blip-pulse {
  0%, 100% { opacity: 1;   r: 4; }
  50%       { opacity: 0.6; r: 5; }
}
@keyframes svg-blip-pulse-amber {
  0%, 100% { opacity: 1;   r: 4; }
  50%       { opacity: 0.6; r: 5.5; }
}
@keyframes svg-ring-expand {
  0%   { r: 5;  opacity: 0.7; }
  100% { r: 18; opacity: 0; }
}

/* Feed */
.dash__feed { display: flex; flex-direction: column; gap: 8px; }
.dash__feed-title {
  font-size: 10px;
  font-weight: 900;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.dash__feed-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dash__feed-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 700;
  color: var(--purple);
  padding: 6px 8px;
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  border-left: 2px solid rgba(0,0,0,0.1);
  animation: feed-slide 0.4s ease both;
}
.dash__feed-item--green { border-left-color: #22c55e; color: var(--purple); }
.dash__feed-item--teal  { border-left-color: var(--teal); color: var(--purple); }
.dash__feed-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.dash__feed-item--green .dash__feed-dot { background: #22c55e; }
.dash__feed-item--teal  .dash__feed-dot { background: var(--teal); }
@keyframes feed-slide {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Fleet bar */
.dash__fleet { display: flex; flex-direction: column; gap: 6px; }
.dash__fleet-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dash__fleet-label {
  font-size: 10px;
  font-weight: 900;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.dash__fleet-pct {
  font-size: 12px;
  font-weight: 900;
  font-style: italic;
  color: var(--teal);
}
.dash__fleet-bar {
  width: 100%;
  height: 6px;
  background: rgba(0,0,0,0.08);
  border-radius: 100px;
  overflow: hidden;
}
.dash__fleet-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal-dark), var(--teal-light));
  border-radius: 100px;
  transition: width 1.5s ease;
  position: relative;
  overflow: hidden;
}
.dash__fleet-fill::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: bar-shine 2.5s ease-in-out infinite;
}
@keyframes bar-shine {
  0%   { left: -100%; }
  100% { left: 200%; }
}

/* ===== CLIENTS ===== */
.clients {
  padding: 80px 0 72px;
  background: var(--light-bg);
  overflow: hidden;
}
.clients__header {
  text-align: center;
  margin-bottom: 56px;
}
.clients__header .section-sub {
  margin: 0 auto;
}

/* Marquee wrapper */
.clients__marquee-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Fade gradients nas bordas */
.clients__fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}
.clients__fade--left {
  left: 0;
  background: linear-gradient(to right, var(--light-bg) 0%, transparent 100%);
}
.clients__fade--right {
  right: 0;
  background: linear-gradient(to left, var(--light-bg) 0%, transparent 100%);
}

/* Track animado */
.clients__track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
.clients__track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Cards de logo */
.clients__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-md);
  padding: 22px 32px;
  min-width: 160px;
  transition: var(--transition);
  cursor: default;
  flex-shrink: 0;
}
.clients__item:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 28px rgba(var(--teal-rgb), 0.12);
  transform: translateY(-4px);
}
.clients__item img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.5);
  transition: var(--transition);
}
.clients__item:hover img {
  filter: grayscale(0) opacity(1);
}
.clients__item span {
  font-size: 11px;
  font-weight: 900;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
  white-space: nowrap;
}
.clients__item:hover span {
  color: var(--purple);
}

/* ===== SERVICES ===== */
.services { background: var(--dark); }
.services__header { text-align: center; margin-bottom: 64px; }
.services__header .section-label { color: rgba(var(--teal-rgb), 0.9); }
.services__header .section-title { color: #fff; }
.services__header .section-desc,
.services__header .section-sub {
  color: rgba(255,255,255,0.6);
  margin: 0 auto;
  text-align: center;
}

/* 6-column grid: normal cards span 2 cols, wide cards span 3 cols */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.svc-card {
  grid-column: span 2;
  background: #fff;
  border-radius: 20px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), box-shadow 0.4s ease;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(0,0,0,0.30);
}
/* Wide card: 3 columns, horizontal layout */
.svc-card--wide {
  grid-column: span 3;
  flex-direction: row;
}
.svc-card--wide .svc-card__visual {
  width: 45%;
  flex-shrink: 0;
  height: auto;
  border-radius: 20px 0 0 20px;
}
.svc-card--wide .svc-card__body {
  flex: 1;
  padding-top: 36px;
}

/* Visual block (image + overlay + badges) */
.svc-card__visual {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.svc-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
  display: block;
}
.svc-card:hover .svc-card__visual img { transform: scale(1.07); }

/* Dark-to-transparent gradient overlay */
.svc-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.05) 0%,
    rgba(var(--purple-rgb), 0.45) 100%
  );
  transition: opacity 0.4s;
}
.svc-card:hover .svc-card__overlay { opacity: 0.7; }

/* Numbered badge top-left */
.svc-card__num {
  position: absolute;
  top: 14px;
  left: 16px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.28);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
}

/* Icon badge - hangs at bottom edge of visual */
.svc-card__icon-wrap {
  position: absolute;
  bottom: -20px;
  right: 22px;
  width: 48px;
  height: 48px;
  background: var(--teal);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(var(--teal-rgb), 0.45);
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1), box-shadow 0.35s;
  z-index: 2;
}
.svc-card:hover .svc-card__icon-wrap {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 14px 28px rgba(var(--teal-rgb), 0.55);
}
.svc-icon {
  width: 28px;
  height: 28px;
  color: var(--purple-dark);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* SVG draw-on animation */
.svc-icon__draw {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 0.7s cubic-bezier(0.23,1,0.32,1) 0.1s;
}
.svc-card:hover .svc-icon__draw { stroke-dashoffset: 0; }

/* Wide card icon: left side, vertically centred */
.svc-card--wide .svc-card__icon-wrap {
  bottom: auto;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
}
.svc-card--wide:hover .svc-card__icon-wrap {
  transform: translateY(-50%) scale(1.08);
}

/* Body */
.svc-card__body {
  padding: 36px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-card__title {
  font-size: 18px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.2;
}
.svc-card__desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}
.svc-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}
.svc-card__tag {
  font-size: 11px;
  font-weight: 900;
  padding: 4px 11px;
  border-radius: 100px;
  background: rgba(var(--purple-rgb), 0.06);
  color: var(--purple);
  border: 1px solid rgba(var(--purple-rgb), 0.15);
  letter-spacing: 0.04em;
}
/* CTA link */
.svc-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 900;
  color: var(--purple);
  letter-spacing: 0.04em;
  transition: gap 0.3s cubic-bezier(0.23,1,0.32,1), color 0.25s;
}
.svc-card__cta:hover { gap: 16px; color: var(--purple-dark); }
/* Arrow SVG wrapped in an inline-block container via ::before trick —
   since the SVG is the direct child, style it directly */
.svc-card__arrow {
  width: 30px;
  height: 30px;
  padding: 7px;
  background: rgba(var(--purple-rgb), 0.08);
  border-radius: 50%;
  flex-shrink: 0;
  stroke: var(--purple);
  transition: background 0.25s, transform 0.25s, stroke 0.25s;
  box-sizing: border-box;
}
.svc-card__cta:hover .svc-card__arrow {
  background: var(--purple);
  stroke: #fff;
  transform: translateX(2px);
}

/* ===== ABOUT ===== */
.about {
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* Decorative blobs */
.about__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.about__blob--1 {
  width: 500px; height: 500px;
  top: -120px; left: -160px;
  background: radial-gradient(circle, rgba(var(--purple-rgb), 0.07) 0%, transparent 70%);
}
.about__blob--2 {
  width: 400px; height: 400px;
  bottom: -100px; right: -100px;
  background: radial-gradient(circle, rgba(var(--teal-rgb), 0.1) 0%, transparent 70%);
}

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

/* Content side */
.about__label { color: var(--purple); }
.about__title { color: var(--text-dark); }
.about__title em { color: var(--purple); }
.about__text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}
.about__text em {
  font-style: italic;
  color: var(--purple);
  font-weight: 700;
}
.about__highlight {
  color: var(--teal-dark);
  font-weight: 900;
}

/* Feature list */
.about__features {
  list-style: none;
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  background: var(--light-bg);
  border: 1px solid rgba(var(--purple-rgb), 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}
.about__feature:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(var(--purple-rgb), 0.08);
  border-color: rgba(var(--purple-rgb), 0.18);
}
.about__feature-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--purple);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__feature-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--teal);
}
.about__feature div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.about__feature strong {
  font-size: 14px;
  font-weight: 900;
  color: var(--text-dark);
}
.about__feature span {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

.about__cta { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }

/* Visual side */
.about__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Decorative ring behind image */
.about__ring {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1.5px dashed rgba(var(--purple-rgb), 0.15);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: about-ring-spin 40s linear infinite;
  pointer-events: none;
}
@keyframes about-ring-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Image frame — clipped shape */
.about__img-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  border-radius: 28px 28px 80px 28px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(var(--purple-rgb), 0.18),
    0 8px 24px rgba(0,0,0,0.08);
  z-index: 2;
}
.about__img-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.23,1,0.32,1);
}
.about__visual:hover .about__img-frame img { transform: scale(1.04); }
.about__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    transparent 40%,
    rgba(var(--purple-rgb), 0.35) 100%
  );
}

/* Floating badges */
.about__badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  animation: about-float 4s ease-in-out infinite;
}
.about__badge--collab {
  background: var(--purple);
  bottom: 36px;
  left: -24px;
  animation-delay: 0s;
}
.about__badge--region {
  background: #fff;
  border: 1px solid rgba(var(--purple-rgb), 0.12);
  top: 36px;
  right: -20px;
  animation-delay: 2s;
}
@keyframes about-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.about__badge-num {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  font-style: italic;
}
.about__badge-num em {
  font-size: 18px;
  color: var(--teal);
}
.about__badge-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  max-width: 90px;
  line-height: 1.4;
}
.about__badge--region svg {
  width: 20px; height: 20px;
  stroke: var(--purple);
  flex-shrink: 0;
}
.about__badge--region span {
  font-size: 12px;
  font-weight: 900;
  color: var(--purple);
  white-space: nowrap;
}

/* ===== GALLERY ===== */
.gallery { background: var(--white); overflow: hidden; }
.gallery__header { text-align: center; margin-bottom: 48px; display: flex; flex-direction: column; align-items: center; }
.gallery__sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
  margin: 16px auto 0;
}
.gallery__scroll {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: gallery-scroll 30s linear infinite;
}
.gallery__scroll:hover { animation-play-state: paused; }
.gallery__item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  width: 320px;
  height: 220px;
  flex-shrink: 0;
}
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(var(--purple-rgb), 0.2));
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.gallery__item:hover::after { opacity: 1; }
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
}
.gallery__item:hover img {
  transform: scale(1.08);
}
@keyframes gallery-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  .gallery__item { width: 260px; height: 180px; }
}

/* ===== STATS ===== */
.stats {
  padding: 96px 0;
  background: var(--purple-dark);
  position: relative;
  overflow: hidden;
}

/* Ambient glows */
.stats__bg-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  width: 500px; height: 500px;
  top: -160px; left: -100px;
  background: radial-gradient(circle, rgba(var(--teal-rgb), 0.18) 0%, transparent 70%);
}
.stats__bg-glow--2 {
  top: auto; left: auto;
  bottom: -160px; right: -80px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
}

/* Grid */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 2px;
}
.stats__item {
  text-align: center;
  padding: 48px 28px 40px;
  position: relative;
  transition: background 0.35s;
  border-radius: 20px;
}
.stats__item:hover {
  background: rgba(255,255,255,0.04);
}

/* Animated underline */
.stats__line {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: width 0.35s cubic-bezier(0.23,1,0.32,1);
}
.stats__item:hover .stats__line { width: 56px; }

/* Icon */
.stats__icon {
  width: 44px; height: 44px;
  background: rgba(var(--teal-rgb), 0.1);
  border: 1px solid rgba(var(--teal-rgb), 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.stats__icon svg {
  width: 20px; height: 20px;
  stroke: var(--teal);
}

/* Continuous icon animations — each card gets a different motion */
.stats__item:nth-child(1) .stats__icon svg { animation: icon-pulse  2.4s ease-in-out infinite; }
.stats__item:nth-child(2) .stats__icon svg { animation: icon-wave   1.8s ease-in-out infinite; }
.stats__item:nth-child(3) .stats__icon svg { animation: icon-spin   6s linear infinite; }
.stats__item:nth-child(4) .stats__icon svg { animation: icon-bounce 2s cubic-bezier(0.36,0.07,0.19,0.97) infinite; }

@keyframes icon-pulse {
  0%, 100% { transform: scale(1);    opacity: 1; }
  50%       { transform: scale(1.22); opacity: 0.8; }
}
@keyframes icon-wave {
  0%, 100% { transform: translateY(0);    }
  25%       { transform: translateY(-4px); }
  75%       { transform: translateY(3px);  }
}
@keyframes icon-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes icon-bounce {
  0%, 100% { transform: translateY(0) scaleY(1);      }
  40%       { transform: translateY(-6px) scaleY(1.05); }
  60%       { transform: translateY(-3px) scaleY(0.98); }
}

/* Number */
.stats__num {
  display: block;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 900;
  font-style: italic;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #fff 30%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Label */
.stats__label {
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 1.5;
}

/* ===== WHY GVITTA ===== */
.why { background: var(--white); }
.why__header {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Label pill */
.why__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(var(--purple-rgb), 0.06);
  border: 1px solid rgba(var(--purple-rgb), 0.18);
  border-radius: 100px;
  padding: 7px 18px;
  margin-bottom: 20px;
}
.why__label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  display: inline-block;
  animation: icon-pulse 2s ease-in-out infinite;
}

/* Title */
.why__title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.12;
  margin-bottom: 20px;
  max-width: 600px;
}
.why__title em {
  font-style: italic;
  color: var(--purple);
}

/* Subtitle */
.why__sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  padding-top: 20px;
  text-align: center;
}
.why__sub::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--teal));
  border-radius: 2px;
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.why-card {
  padding: 32px 22px;
  border-radius: var(--radius-md);
  background: var(--light-bg);
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}
.why-card:hover {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 12px 40px rgba(var(--teal-rgb), 0.12);
  transform: translateY(-4px);
}
.why-card__icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(var(--purple-rgb), 0.08), rgba(var(--teal-rgb), 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.why-card__icon svg {
  width: 26px; height: 26px;
  stroke: var(--purple);
  transition: stroke 0.3s;
}
.why-card:hover .why-card__icon svg { stroke: var(--teal-dark); }

/* Continuous icon animations — each card different motion */
.why-card:nth-child(1) .why-card__icon svg { animation: icon-zap    1.6s ease-in-out infinite; }
.why-card:nth-child(2) .why-card__icon svg { animation: icon-spin   8s linear infinite; }
.why-card:nth-child(3) .why-card__icon svg { animation: icon-wave   2.2s ease-in-out infinite; }
.why-card:nth-child(4) .why-card__icon svg { animation: icon-pulse  2.8s ease-in-out infinite; }
.why-card:nth-child(5) .why-card__icon svg { animation: icon-bounce 2.4s cubic-bezier(0.36,0.07,0.19,0.97) infinite; }

@keyframes icon-zap {
  0%, 100% { transform: scale(1) rotate(0deg);   opacity: 1; }
  30%       { transform: scale(1.2) rotate(-8deg); opacity: 0.85; }
  60%       { transform: scale(0.9) rotate(6deg);  opacity: 1; }
}

.why-card__title {
  font-size: 15px;
  font-weight: 900;
  color: var(--teal-dark);
  margin-bottom: 10px;
  line-height: 1.25;
}
.why-card__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== INFRASTRUCTURE ===== */
.infra {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

/* Ambient glows */
.infra__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
}
.infra__glow--1 {
  width: 600px; height: 600px;
  top: -200px; left: -200px;
  background: radial-gradient(circle, rgba(var(--teal-rgb), 0.12) 0%, transparent 70%);
  animation: infra-drift 12s ease-in-out infinite alternate;
}
.infra__glow--2 {
  width: 500px; height: 500px;
  bottom: -150px; right: -150px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  animation: infra-drift 16s ease-in-out infinite alternate-reverse;
}
@keyframes infra-drift {
  from { transform: translate(0, 0); }
  to   { transform: translate(40px, 30px); }
}

/* Header */
.infra__header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.infra__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(var(--teal-rgb), 0.08);
  border: 1px solid rgba(var(--teal-rgb), 0.25);
  border-radius: 100px;
  padding: 7px 18px;
  margin-bottom: 20px;
}
.infra__label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  display: inline-block;
  animation: icon-pulse 2s ease-in-out infinite;
}
.infra__title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 20px;
  max-width: 600px;
}
.infra__title em {
  font-style: italic;
  color: var(--teal);
}
.infra__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  line-height: 1.75;
  position: relative;
  padding-top: 20px;
}
.infra__sub::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--teal));
  border-radius: 2px;
}

/* Photo grid — CSS Grid areas */
.infra__gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  grid-template-rows: 260px 200px;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.infra__photo {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
}
.infra__photo--a { grid-column: 1; grid-row: 1 / 3; }
.infra__photo--b { grid-column: 2; grid-row: 1; }
.infra__photo--c { grid-column: 2 / 4; grid-row: 2; }

.infra__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.23,1,0.32,1);
}
.infra__photo:hover img { transform: scale(1.06); }

/* Gradient overlay */
.infra__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(var(--purple-rgb), 0.75) 100%
  );
  transition: opacity 0.4s;
}
.infra__photo:hover .infra__photo-overlay { opacity: 0.85; }

/* Photo meta */
.infra__photo-meta {
  position: absolute;
  bottom: 18px; left: 18px; right: 18px;
  transform: translateY(6px);
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), opacity 0.4s;
  opacity: 0.9;
}
.infra__photo:hover .infra__photo-meta {
  transform: translateY(0);
  opacity: 1;
}
.infra__photo-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(var(--teal-rgb), 0.35);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 6px;
}
.infra__photo-caption {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
  margin: 0;
}

/* Fleet cards */
.infra__fleet {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}
.infra__fleet-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 28px 22px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: background 0.35s, border-color 0.35s, transform 0.35s;
  position: relative;
  overflow: hidden;
}
.infra__fleet-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--teal-rgb), 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}
.infra__fleet-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(var(--teal-rgb), 0.3);
  transform: translateY(-5px);
}
.infra__fleet-card:hover::before { opacity: 1; }

/* Vehicle icon */
.infra__fleet-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  background: rgba(var(--teal-rgb), 0.1);
  border: 1px solid rgba(var(--teal-rgb), 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
}
.infra__fleet-card:hover .infra__fleet-icon {
  background: rgba(var(--teal-rgb), 0.2);
  transform: scale(1.08);
}
.infra__fleet-icon svg {
  width: 28px; height: 28px;
  stroke: var(--teal);
  animation: icon-wave 3s ease-in-out infinite;
}
.infra__fleet-card:nth-child(2) .infra__fleet-icon svg { animation-delay: 0.5s; }
.infra__fleet-card:nth-child(3) .infra__fleet-icon svg { animation-delay: 1s; }
.infra__fleet-card:nth-child(4) .infra__fleet-icon svg { animation-delay: 1.5s; }

/* Fleet body */
.infra__fleet-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}
.infra__fleet-num {
  font-size: 36px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  background: linear-gradient(135deg, #fff 20%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.infra__fleet-name {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

/* Animated fill bar */
.infra__fleet-bar {
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 8px;
}
.infra__fleet-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--teal-dark), var(--teal));
  border-radius: 3px;
  transition: width 1.4s cubic-bezier(0.23,1,0.32,1);
}
.infra__fleet-card.visible .infra__fleet-fill,
.infra__fleet-card.fade-up.visible .infra__fleet-fill {
  width: var(--fill);
}

/* Tech strip */
.infra__tech {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 20px 32px;
  position: relative;
  z-index: 1;
}
.infra__tech-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
  flex: 1;
  min-width: 180px;
  justify-content: center;
}
.infra__tech-item svg {
  width: 18px; height: 18px;
  stroke: var(--teal);
  flex-shrink: 0;
  animation: icon-pulse 2.5s ease-in-out infinite;
}
.infra__tech-item:nth-child(3) svg { animation-delay: 0.6s; }
.infra__tech-item:nth-child(5) svg { animation-delay: 1.2s; }
.infra__tech-item:nth-child(7) svg { animation-delay: 1.8s; }
.infra__tech-item span {
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
}
.infra__tech-sep {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ===== LICENSES ===== */
.licenses {
  background: var(--dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Glows */
.licenses__bg-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(110px);
}
.licenses__bg-glow--1 {
  width: 500px; height: 500px;
  top: -150px; right: -100px;
  background: radial-gradient(circle, rgba(var(--teal-rgb), 0.1) 0%, transparent 70%);
  animation: infra-drift 14s ease-in-out infinite alternate;
}
.licenses__bg-glow--2 {
  width: 400px; height: 400px;
  bottom: -120px; left: -80px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  animation: infra-drift 18s ease-in-out infinite alternate-reverse;
}

/* Header */
.licenses__header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.licenses__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(var(--teal-rgb), 0.08);
  border: 1px solid rgba(var(--teal-rgb), 0.25);
  border-radius: 100px;
  padding: 7px 18px;
  margin-bottom: 20px;
}
.licenses__label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  display: inline-block;
  animation: icon-pulse 2s ease-in-out infinite;
}
.licenses__title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 18px;
  max-width: 560px;
}
.licenses__title em { font-style: italic; color: var(--teal); }
.licenses__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  max-width: 500px;
  line-height: 1.7;
}

/* Grid */
.licenses__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

/* Card */
.licenses__card {
  position: relative;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(var(--purple-rgb), 0.08);
  padding: 40px 28px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1),
              box-shadow 0.4s,
              border-color 0.4s;
  cursor: default;
}
.licenses__card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--teal-rgb), 0.3);
  box-shadow: 0 24px 60px rgba(var(--purple-rgb), 0.14);
}

/* Logo image */
.licenses__card img {
  height: 64px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: none;
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
  margin-bottom: 24px;
  display: block;
}
.licenses__card:hover img { transform: scale(1.06); }

/* Card body */
.licenses__card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.licenses__card-name {
  font-size: 15px;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: 0.06em;
}
.licenses__card-desc {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Animated bottom line */
.licenses__card-line {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--purple), var(--teal));
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(0.23,1,0.32,1);
}
.licenses__card:hover .licenses__card-line { width: 60%; }

/* Trust strip */
.licenses__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
  padding: 20px 32px;
  background: rgba(var(--teal-rgb), 0.06);
  border: 1px solid rgba(var(--teal-rgb), 0.15);
  border-radius: 16px;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.licenses__trust-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: rgba(var(--teal-rgb), 0.12);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: icon-bounce 2.5s cubic-bezier(0.36,0.07,0.19,0.97) infinite;
}
.licenses__trust-icon svg {
  width: 16px; height: 16px;
  stroke: var(--teal);
}
.licenses__trust p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin: 0;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -300px; left: -300px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--teal-rgb), 0.06) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -300px; right: -300px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--purple-rgb), 0.05) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}
.cta-banner__title {
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 20px;
}
.cta-banner__title em { font-style: italic; color: var(--teal); }
.cta-banner__text {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Animated CTA buttons */
.btn--cta-animated {
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1),
              box-shadow 0.35s, background 0.35s;
}
.btn--cta-animated::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
}
.btn--cta-animated:hover { transform: translateY(-3px) scale(1.02); }
.btn--cta-animated:hover::after { transform: translateX(100%); }
.btn--cta-animated:active { transform: translateY(-1px) scale(0.99); }

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: linear-gradient(155deg, var(--dark-3) 0%, var(--dark) 50%, var(--purple-dark) 100%);
  position: relative;
  overflow: hidden;
}
.testi__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
}
.testi__glow--1 {
  width: 600px; height: 600px;
  top: -200px; left: -150px;
  background: radial-gradient(circle, rgba(var(--purple-rgb), 0.2) 0%, transparent 70%);
  animation: infra-drift 14s ease-in-out infinite alternate;
}
.testi__glow--2 {
  width: 500px; height: 500px;
  bottom: -150px; right: -100px;
  background: radial-gradient(circle, rgba(var(--teal-rgb), 0.1) 0%, transparent 70%);
  animation: infra-drift 18s ease-in-out infinite alternate-reverse;
}

/* Header */
.testimonials__header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
.testi__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(var(--teal-rgb), 0.08);
  border: 1px solid rgba(var(--teal-rgb), 0.25);
  border-radius: 100px;
  padding: 7px 18px;
  margin-bottom: 20px;
}
.testi__eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  display: inline-block;
  animation: icon-pulse 2s ease-in-out infinite;
}
.testi__title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 16px;
}
.testi__title em { font-style: italic; color: var(--teal); }
.testi__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Grid */
.testimonials__carousel {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 0 -16px;
  padding: 16px;
}
.testimonials__track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
}
.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.testimonials__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.testimonials__dot.active {
  background: var(--purple);
  transform: scale(1.3);
}

/* Card */
.testi-card {
  background: linear-gradient(165deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.9) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 20px;
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  min-width: calc(33.333% - 14px);
  max-width: calc(33.333% - 14px);
  flex-shrink: 0;
  transition: transform 0.5s cubic-bezier(0.23,1,0.32,1),
              box-shadow 0.5s cubic-bezier(0.23,1,0.32,1),
              border-color 0.4s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.03);
}
.testi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--teal));
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.23,1,0.32,1);
}
.testi-card::after {
  content: '';
  position: absolute;
  top: -50%; right: -50%;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--purple-rgb), 0.06) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity 0.5s;
  opacity: 0;
}
.testi-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 64px rgba(var(--purple-rgb), 0.1),
              0 16px 32px rgba(0,0,0,0.06),
              0 0 0 1px rgba(var(--purple-rgb), 0.08);
  border-color: rgba(var(--purple-rgb), 0.15);
}
.testi-card:hover::before { opacity: 1; }
.testi-card:hover::after { opacity: 1; }

/* Quote mark */
.testi-card__quote {
  width: 36px; height: 28px;
  color: var(--purple);
  opacity: 0.2;
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: opacity 0.4s, transform 0.4s;
}
.testi-card:hover .testi-card__quote {
  opacity: 0.45;
  transform: scale(1.1);
}
.testi-card__quote svg { width: 36px; height: 28px; }

/* Stars */
.testi-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 20px;
  color: #FBBF24;
  filter: drop-shadow(0 1px 2px rgba(251,191,36,0.3));
}

/* Text */
.testi-card__text {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 28px;
  flex: 1;
  letter-spacing: -0.01em;
  font-style: italic;
}

/* Author */
.testi-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(var(--purple-rgb), 0.08);
  position: relative;
}
.testi-card__avatar {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--teal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(var(--purple-rgb), 0.25);
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), box-shadow 0.4s;
}
.testi-card:hover .testi-card__avatar {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(var(--purple-rgb), 0.35);
}
.testi-card__name {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}
.testi-card__company {
  font-size: 11.5px;
  color: var(--purple);
  font-weight: 600;
  margin-top: 3px;
  opacity: 0.7;
}

/* ===== FAQ ===== */
.faq {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.faq__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(130px);
}
.faq__glow--1 {
  width: 600px; height: 600px;
  top: -200px; right: -150px;
  background: radial-gradient(circle, rgba(var(--teal-rgb), 0.06) 0%, transparent 70%);
  animation: infra-drift 18s ease-in-out infinite alternate;
}
.faq__glow--2 {
  width: 400px; height: 400px;
  bottom: -120px; left: -80px;
  background: radial-gradient(circle, rgba(var(--purple-rgb), 0.05) 0%, transparent 70%);
  animation: infra-drift 22s ease-in-out infinite alternate-reverse;
}

/* Layout */
.faq__inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 72px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Header */
.faq__header { margin-bottom: 44px; }
.faq__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(var(--teal-rgb), 0.08);
  border: 1px solid rgba(var(--teal-rgb), 0.25);
  border-radius: 100px;
  padding: 7px 18px;
  margin-bottom: 20px;
}
.faq__eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  display: inline-block;
  animation: icon-pulse 2s ease-in-out infinite;
}
.faq__title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.12;
  margin-bottom: 16px;
}
.faq__title em { font-style: italic; color: var(--teal); }
.faq__subtitle {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* List */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Item */
.faq__item {
  background: var(--light-bg);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: background 0.35s cubic-bezier(0.23,1,0.32,1),
              border-color 0.35s,
              box-shadow 0.4s;
}
.faq__item.open {
  background: var(--white);
  border-color: rgba(var(--teal-rgb), 0.35);
  box-shadow: 0 8px 40px rgba(var(--teal-rgb), 0.08), 0 2px 12px rgba(0,0,0,0.04);
}
.faq__item:not(.open):hover {
  background: rgba(var(--teal-rgb), 0.03);
  border-color: rgba(var(--teal-rgb), 0.18);
}

/* Question button */
.faq__question {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 28px;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  user-select: none;
}
.faq__num {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: rgba(var(--teal-rgb), 0.38);
  flex-shrink: 0;
  width: 22px;
  transition: color 0.3s;
  font-variant-numeric: tabular-nums;
}
.faq__item.open .faq__num { color: var(--teal); }
.faq__q-text {
  flex: 1;
  font-weight: 900;
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.45;
  transition: color 0.3s;
}
.faq__item.open .faq__q-text { color: var(--text-dark); }
.faq__chevron {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(var(--purple-rgb), 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.35s, border-color 0.35s,
              transform 0.45s cubic-bezier(0.23,1,0.32,1);
}
.faq__chevron svg {
  width: 14px; height: 14px;
  stroke: var(--text-muted);
  transition: stroke 0.3s;
  display: block;
}
.faq__item.open .faq__chevron {
  background: var(--teal);
  border-color: var(--teal);
  transform: rotate(180deg);
}
.faq__item.open .faq__chevron svg { stroke: var(--dark); }

/* Answer */
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.23,1,0.32,1), padding 0.35s;
  padding: 0 28px 0 68px;
}
.faq__answer.open { max-height: 300px; padding: 0 28px 28px 68px; }
.faq__answer p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.85;
}

/* RIGHT — sticky CTA panel */
.faq__right { position: sticky; top: 100px; }
.faq__cta-panel {
  background: var(--purple);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.faq__cta-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  animation: icon-bounce 3s ease-in-out infinite;
}
.faq__cta-icon svg { width: 22px; height: 22px; stroke: var(--white); }
.faq__cta-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}
.faq__cta-text {
  font-size: 13.5px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 24px;
}
.faq__cta-panel .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
  margin-bottom: 10px;
}
.faq__cta-link {
  width: 100%;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  padding: 8px 0;
  display: block;
  transition: color 0.3s;
}
.faq__cta-link:hover { color: var(--purple); }
.faq__cta-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 20px 0;
}
.faq__cta-stats { display: flex; gap: 8px; width: 100%; }
.faq__cta-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
}
.faq__cta-stat-num {
  font-size: 19px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.faq__cta-stat-label {
  font-size: 9.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}

/* ===== CONTACT ===== */
.contact {
  background: linear-gradient(145deg, var(--dark-2) 0%, var(--dark) 60%, var(--dark-3) 100%);
  position: relative;
  overflow: hidden;
}
.contact__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
}
.contact__glow--1 {
  width: 600px; height: 600px;
  top: -200px; left: -150px;
  background: radial-gradient(circle, rgba(var(--purple-rgb), 0.15) 0%, transparent 70%);
  animation: infra-drift 16s ease-in-out infinite alternate;
}
.contact__glow--2 {
  width: 500px; height: 500px;
  bottom: -150px; right: -100px;
  background: radial-gradient(circle, rgba(var(--teal-rgb), 0.08) 0%, transparent 70%);
  animation: infra-drift 20s ease-in-out infinite alternate-reverse;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* LEFT — eyebrow / title / text */
.contact__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(var(--teal-rgb), 0.08);
  border: 1px solid rgba(var(--teal-rgb), 0.25);
  border-radius: 100px;
  padding: 7px 18px;
  margin-bottom: 20px;
}
.contact__eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  display: inline-block;
  animation: icon-pulse 2s ease-in-out infinite;
}
.contact__title {
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 16px;
}
.contact__title em { font-style: italic; color: var(--teal); }
.contact__text {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-bottom: 36px;
}

/* Contact cards */
.contact__cards { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 2; }
.contact__card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  cursor: default;
  position: relative;
  z-index: 2;
  transition: background 0.32s cubic-bezier(0.23,1,0.32,1),
              border-color 0.32s,
              transform 0.35s cubic-bezier(0.23,1,0.32,1),
              box-shadow 0.35s cubic-bezier(0.23,1,0.32,1);
}
.contact__card:hover {
  background: rgba(var(--teal-rgb), 0.07);
  border-color: rgba(var(--teal-rgb), 0.3);
  transform: translateX(6px);
  box-shadow: 0 4px 24px rgba(var(--teal-rgb), 0.15);
}
.contact__card--static { cursor: default; }
.contact__card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(var(--teal-rgb), 0.1);
  border: 1px solid rgba(var(--teal-rgb), 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}
.contact__card-icon svg {
  width: 18px; height: 18px;
  stroke: var(--teal);
  fill: none;
  display: block;
}
.contact__card-icon--fill svg { fill: var(--teal); stroke: none; }
.contact__card:not(.contact__card--static):hover .contact__card-icon {
  background: rgba(var(--teal-rgb), 0.2);
}
.contact__card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.contact__card-label {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
}
.contact__card-val {
  font-size: 13.5px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.contact__card--static .contact__card-val { white-space: normal; }
.contact__card-arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.contact__card-arrow svg {
  width: 12px; height: 12px;
  stroke: rgba(255,255,255,0.35);
  display: block;
}
.contact__card:not(.contact__card--static):hover .contact__card-arrow {
  background: var(--teal);
  border-color: var(--teal);
  transform: translateX(3px);
}
.contact__card:not(.contact__card--static):hover .contact__card-arrow svg { stroke: var(--dark); }

/* Form — dashboard card */
.contact__form {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-xl);
  padding: 0 0 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(var(--teal-rgb), 0.06),
              0 24px 80px rgba(0,0,0,0.18);
}

/* Dashboard top bar */
.form__dash-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--light-bg);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  margin-bottom: 24px;
}
.form__dash-dots { display: flex; gap: 6px; }
.form__dash-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}
.form__dash-dot--red    { background: #FF5F57; }
.form__dash-dot--yellow { background: #FFBD2E; }
.form__dash-dot--green  { background: #28C840; }
.form__dash-label {
  flex: 1;
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.04em;
}
.form__dash-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
}
.form__dash-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  animation: icon-pulse 1.5s ease-in-out infinite;
}

/* Form content padding */
.form__header {
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  padding: 0 28px;
}
.contact__form::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--teal-rgb), 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.contact__form::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--purple-rgb), 0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* .form__header padding is set in the Dashboard section above */
.form__title {
  font-size: 22px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.form__sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.form__deco {
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), rgba(var(--teal-rgb), 0));
  border-radius: 2px;
  animation: form-deco-grow 1s cubic-bezier(0.23,1,0.32,1) 0.6s both;
}
@keyframes form-deco-grow {
  from { width: 0; opacity: 0; }
  to { width: 48px; opacity: 1; }
}

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 28px; }
.form__group {
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s cubic-bezier(0.23,1,0.32,1),
              transform 0.5s cubic-bezier(0.23,1,0.32,1);
}
/* Direct form__group inside form (not inside form__row) gets horizontal padding */
form > .form__group { padding: 0 28px; }
.contact__form.visible .form__group { opacity: 1; transform: none; }
/* Stagger each group */
.contact__form.visible .form__row .form__group:nth-child(1) { transition-delay: 0.12s; }
.contact__form.visible .form__row .form__group:nth-child(2) { transition-delay: 0.22s; }
.contact__form.visible form > .form__group:nth-child(2) { transition-delay: 0.30s; }
.contact__form.visible form > .form__group:nth-child(3) { transition-delay: 0.38s; }
.contact__form.visible form > .form__group:nth-child(4) { transition-delay: 0.46s; }
.contact__form.visible .form__submit-wrap { transition-delay: 0.54s; }

.form__label {
  display: block;
  font-size: 10.5px;
  font-weight: 900;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

/* Field wrap */
.form__field-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
/* Animated left accent on focus */
.form__field-wrap::before {
  content: '';
  position: absolute;
  left: 0; top: 5px; bottom: 5px;
  width: 2px;
  background: var(--teal);
  border-radius: 2px;
  transform: scaleY(0);
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1);
  z-index: 2;
}
.form__field-wrap:focus-within::before { transform: scaleY(1); }
.form__field-icon {
  position: absolute;
  left: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}
.form__field-icon svg {
  width: 15px; height: 15px;
  stroke: var(--text-muted);
  transition: stroke 0.3s;
  display: block;
}
.form__field-wrap:focus-within .form__field-icon svg { stroke: var(--teal); }
.form__select-arrow {
  position: absolute;
  right: 14px;
  pointer-events: none;
  display: flex;
  align-items: center;
}
.form__select-arrow svg {
  width: 13px; height: 13px;
  stroke: var(--text-muted);
  display: block;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 11px 14px 11px 38px;
  border: 1.5px solid rgba(0,0,0,0.1);
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  font-family: 'ObjectSans', sans-serif;
  font-size: 13px;
  color: var(--text-dark);
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  outline: none;
  appearance: none;
}
.form__input::placeholder,
.form__textarea::placeholder { color: var(--text-muted); }
.form__select { cursor: pointer; padding-right: 40px; color: var(--text-dark); }
.form__select option { background: #fff; color: var(--text-dark); }
.form__select:invalid,
.form__select option[value=""] { color: var(--text-muted); }
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(var(--teal-rgb), 0.12);
}
.form__textarea {
  resize: vertical;
  min-height: 90px;
  padding: 11px 14px;
  align-self: flex-start;
}

/* Submit button */
.form__submit-wrap {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s cubic-bezier(0.23,1,0.32,1),
              transform 0.5s cubic-bezier(0.23,1,0.32,1);
  padding: 0 28px;
}
.contact__form.visible .form__submit-wrap { opacity: 1; transform: none; }

.form__submit {
  width: 100%;
  padding: 15px;
  font-size: 15px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(90deg, var(--teal-dark) 0%, var(--teal) 45%, #5ae6d8 70%, var(--teal) 85%, var(--teal-dark) 100%);
  background-size: 250% auto;
  background-position: left center;
  color: var(--dark-3);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-position 0.6s cubic-bezier(0.23,1,0.32,1),
              box-shadow 0.35s,
              transform 0.3s;
  position: relative;
  overflow: hidden;
}
.form__submit:hover {
  background-position: right center;
  box-shadow: 0 8px 32px rgba(var(--teal-rgb), 0.45),
              0 2px 8px rgba(0,0,0,0.25);
  transform: translateY(-2px);
}
.form__submit:active { transform: translateY(0); }
.form__submit svg { transition: transform 0.35s cubic-bezier(0.23,1,0.32,1); flex-shrink: 0; stroke: var(--dark-3); }
.form__submit:hover svg { transform: translateX(5px) rotate(-8deg); }

/* ===== FOOTER ===== */
.footer {
  background: var(--white);
  padding: 0 0 32px;
  color: var(--text-muted);
  border-top: 1px solid rgba(0,0,0,0.06);
  position: relative;
}

/* Accent bar */
.footer__accent {
  height: 4px;
  background: linear-gradient(90deg, var(--purple) 0%, var(--teal) 50%, var(--purple-light) 100%);
  background-size: 200% auto;
  animation: footer-bar-move 6s linear infinite;
}
@keyframes footer-bar-move {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.footer__top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 52px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  margin-bottom: 0;
}
.footer__brand-logo { height: 68px; width: auto; margin-bottom: 6px; filter: none; display: block; margin-left: auto; margin-right: auto; }
.footer__grupo {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  text-transform: uppercase;
  text-align: center;
}
.footer__grupo-highlight {
  color: #7c3aed;
  font-weight: 800;
}
.footer__brand p {
  font-size: 14px;
  line-height: 1.75;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-muted);
  text-align: center;
}
.footer__social { display: flex; gap: 10px; margin-top: 24px; justify-content: center; }
.footer__social a {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: var(--light-bg);
  border: 1px solid rgba(0,0,0,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: background 0.3s, border-color 0.3s, color 0.3s,
              transform 0.3s cubic-bezier(0.23,1,0.32,1);
}
.footer__social a:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--white);
  transform: translateY(-3px);
}
.footer__col h4 {
  font-size: 11px;
  font-weight: 900;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer__col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 20px; height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.23,1,0.32,1);
}
.footer__col:hover h4::after { width: 36px; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li { position: relative; overflow: hidden; }
.footer__col ul li a, .footer__col ul li span {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.3s, transform 0.3s cubic-bezier(0.23,1,0.32,1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer__col ul li a::before {
  content: '';
  width: 0; height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.23,1,0.32,1);
  flex-shrink: 0;
}
.footer__col ul li a:hover { color: var(--purple); transform: translateX(4px); }
.footer__col ul li a:hover::before { width: 10px; }

/* CTA strip */
.footer__contact-btn {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
/* Bottom */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.footer__bottom a {
  color: var(--purple);
  font-weight: 700;
  transition: color 0.2s;
}
.footer__bottom a:hover { color: var(--teal); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 900;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), box-shadow 0.4s;
  animation: wpp-bounce 3s ease-in-out infinite, wpp-ring 3s ease-in-out infinite;
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: wpp-pulse 2s ease-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.15) rotate(-8deg);
  box-shadow: 0 8px 36px rgba(37, 211, 102, 0.6);
  animation: none;
}
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }
@keyframes wpp-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes wpp-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes wpp-ring {
  0%, 70%, 100% { box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5); }
  85% { box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5), 0 0 0 8px rgba(37, 211, 102, 0.15); }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .why__grid { grid-template-columns: repeat(3, 1fr); }
  .infra__fleet { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .nav__links, .nav__actions { display: none; }
  .nav__hamburger { display: flex; }
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__badge--collab { left: 0; bottom: 20px; }
  .about__badge--region { right: 0; top: 20px; }
  .about__ring { width: 300px; height: 300px; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .contact__card-val { white-space: normal; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__contact-btn { width: 100%; justify-content: center; }
  .testi-card { min-width: calc(100% - 14px); max-width: calc(100% - 14px); }
  .faq__inner { grid-template-columns: 1fr; gap: 48px; }
  .faq__right { position: static; }
  /* Services: 2-column at tablet */
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card { grid-column: span 1; }
  .svc-card--wide { grid-column: span 2; flex-direction: row; }
  .svc-card--wide .svc-card__visual { width: 42%; }
  .svc-card--wide .svc-card__icon-wrap { bottom: auto; top: 50%; right: -20px; transform: translateY(-50%); }
  .svc-card--wide:hover .svc-card__icon-wrap { transform: translateY(-50%) scale(1.08); }
}

@media (max-width: 768px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; padding-top: 100px; }
  .hero__dashboard { order: -1; }
  .dash__metrics { grid-template-columns: repeat(3, 1fr); }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card, .svc-card--wide { grid-column: span 1; flex-direction: column; }
  .svc-card--wide .svc-card__visual { width: 100%; height: 220px; }
  .svc-card--wide .svc-card__icon-wrap { bottom: -20px; top: auto; right: 22px; transform: none; }
  .svc-card--wide:hover .svc-card__icon-wrap { transform: translateY(-4px) scale(1.08); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .stats__item { padding: 36px 20px 32px; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .infra__gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .infra__photo--a { grid-column: 1 / 3; grid-row: 1; height: 300px; }
  .infra__photo--b { grid-column: 1; grid-row: 2; height: 220px; }
  .infra__photo--c { grid-column: 2; grid-row: 2; height: 220px; }
  .infra__fleet { grid-template-columns: repeat(2, 1fr); }
  .infra__tech { gap: 8px; padding: 16px; }
  .infra__tech-sep { display: none; }
  .infra__tech-item { min-width: 140px; padding: 8px 12px; }
  .form__row { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1 1 100%; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
  .cta-banner__actions .btn { width: 100%; max-width: 360px; }
}

@media (max-width: 480px) {
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .infra__fleet { grid-template-columns: 1fr 1fr; }
  .licenses__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .licenses__trust { padding: 16px 20px; }
  .faq__answer { padding: 0 20px; }
  .faq__answer.open { padding: 0 20px 22px; }
  .faq__question { padding: 20px 20px; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .clients__fade { width: 60px; }
  .clients__item { min-width: 130px; padding: 18px 22px; }
  .contact__form { padding: 0 0 24px; }
  .form__row { grid-template-columns: 1fr; padding: 0 16px; }
  form > .form__group { padding: 0 16px; }
  .form__header { padding: 0 16px; }
  .form__submit-wrap { padding: 0 16px; }
  .whatsapp-float { bottom: 20px; right: 20px; }
}
