/* Wifinter — Sarı & Siyah */
:root {
  color-scheme: dark;

  --accent: #f5c518;
  --accent-hover: #e3b505;
  --accent-2: #ffd84d;
  --accent-3: #c9a10f;
  --accent-glow: rgba(245, 197, 24, 0.22);
  --accent-light: rgba(245, 197, 24, 0.12);
  --on-accent: #0a0a0a;

  --bg-light: #141414;
  --bg-light-2: #0f0f0f;
  --bg-light-3: #1c1c1c;
  --text-light-1: #f5f5f5;
  --text-light-2: #b8b8b8;
  --text-light-3: #8a8a8a;
  --border-light: rgba(245, 197, 24, 0.14);

  --bg-dark: #050505;
  --bg-dark-2: #0a0a0a;
  --bg-dark-3: #111111;
  --text-dark-1: #f2f2f2;
  --text-dark-2: #b3b3b3;
  --text-dark-3: #7a7a7a;
  --border-dark: rgba(245, 197, 24, 0.18);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: all 0.38s cubic-bezier(0.23, 1, 0.32, 1);
  --shadow-sm: 0 2px 16px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.45);
  --shadow-accent: 0 8px 32px rgba(245, 197, 24, 0.18);

  --container: 1180px;
  --gutter: 20px;
  --font: "Outfit", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --zone-transition: background-color 0.45s ease, color 0.45s ease, border-color 0.45s ease;

  --bg: var(--bg-light);
  --bg2: var(--bg-light-2);
  --text: var(--text-light-1);
  --muted: var(--text-light-2);
  --muted2: var(--text-light-3);
  --stroke: var(--border-light);
  --panel: #141414;
  --panel2: #1a1a1a;
  --accent3: var(--text-light-1);
  --shadow: var(--shadow-md);
  --radius: var(--radius-md);
  --radius2: var(--radius-lg);
  --good: #34d399;
  --warn: #fbbf24;
}

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

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  transition: var(--zone-transition);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.dark-zone {
  --bg: var(--bg-dark);
  --bg2: var(--bg-dark-2);
  --text: var(--text-dark-1);
  --muted: var(--text-dark-2);
  --muted2: var(--text-dark-3);
  --stroke: var(--border-dark);
  --panel: rgba(20, 20, 20, 0.9);
  --panel2: rgba(26, 26, 26, 0.95);
  --accent3: var(--text-dark-1);
}

body.light-zone {
  --bg: var(--bg-light);
  --bg2: var(--bg-light-2);
  --text: var(--text-light-1);
  --muted: var(--text-light-2);
  --muted2: var(--text-light-3);
  --stroke: var(--border-light);
  --panel: #1a1a1a;
  --panel2: #222222;
  --accent3: var(--text-light-1);
}

body.dark-zone .zone-b,
body.light-zone .zone-b {
  background: var(--bg-light);
  color: var(--text-light-1);
}

body.dark-zone .zone-b .muted,
body.light-zone .zone-b .muted {
  color: var(--text-light-2);
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

.container {
  max-width: var(--container);
  padding: 0 var(--gutter);
  margin: 0 auto;
}

.muted {
  color: var(--muted);
}

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 1001;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: var(--panel2);
  border: 1px solid var(--stroke);
}

.skip:focus {
  left: 10px;
}

/* Hide legacy FX */
.ambientTech {
  display: none !important;
}

.fxCanvas {
  display: none;
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.fxCanvas--glow {
  mix-blend-mode: normal;
  opacity: 0.58;
}

.cursorGlow {
  position: fixed;
  top: 0;
  left: 0;
  width: 420px;
  height: 420px;
  margin: -210px 0 0 -210px;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.1) 0%, transparent 68%);
  transition: opacity 0.35s ease;
  will-change: transform;
}

.cursorGlow--on {
  opacity: 0.48;
}

body.cookie-visible {
  padding-bottom: 96px;
}

body.cookie-visible .footer__bottom {
  margin-bottom: 8px;
}

body.cookie-visible .whatsappFab {
  bottom: 108px;
}

.topbar,
main,
.footer,
.toast,
.modal {
  position: relative;
  z-index: 2;
}

/* ─── Reveal (only after JS; no-js = visible) ─── */
html.js .reveal:not(.visible):not(.is-in),
html.js [data-reveal]:not(.visible):not(.is-in) {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.reveal.visible,
.reveal.is-in,
[data-reveal].visible,
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Navbar ─── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--zone-transition), backdrop-filter 0.35s ease, box-shadow 0.35s ease;
  border-bottom: 1px solid transparent;
}

body.dark-zone .topbar {
  background: transparent;
  border-bottom-color: transparent;
}

body.dark-zone .topbar[data-elevated="true"],
body.light-zone .topbar[data-elevated="true"] {
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border-dark);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

body.light-zone .topbar {
  background: transparent;
  border-bottom-color: transparent;
}

.progress {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  overflow: hidden;
}

.progress::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: calc(var(--scroll, 0) * 100%);
  background: var(--accent);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: auto;
  max-width: min(200px, 42vw);
}

.brand__logo {
  height: 36px;
  width: auto;
  filter: none !important;
}

.nav__toggleLines {
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
  display: block;
}

.nav__toggleLines::before,
.nav__toggleLines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.nav__toggleLines::before {
  top: -6px;
}

.nav__toggleLines::after {
  top: 6px;
}

.nav__toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke);
  background: var(--panel);
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}

.nav__panel {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.nav__link {
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 550;
  color: var(--muted);
  transition: var(--transition);
}

.nav__link:hover {
  color: var(--text);
  background: color-mix(in oklab, var(--accent) 12%, transparent);
}

.nav__actions {
  margin-left: 8px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  font-weight: 650;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  will-change: transform;
}

.btn--primary {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
  font-weight: 800;
}

.btn--primary:hover {
  background: var(--accent-hover);
  color: var(--on-accent);
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent);
}

.btn--ghost,
.btn--outline {
  background: transparent;
  border-color: color-mix(in oklab, var(--stroke) 80%, transparent);
  color: inherit;
}

body.dark-zone .btn--ghost,
body.dark-zone .btn--outline {
  border-color: rgba(245, 197, 24, 0.45);
  color: var(--text-dark-1);
}

body.dark-zone .btn--ghost:hover,
body.dark-zone .btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(245, 197, 24, 0.08);
}

.btn--ghost:hover,
.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--soft {
  background: var(--accent-light);
  color: var(--accent);
  border-color: transparent;
}

body.dark-zone .btn--soft {
  background: rgba(245, 197, 24, 0.1);
  color: var(--accent);
  border: 1px solid rgba(245, 197, 24, 0.35);
}

.btn--sm {
  padding: 8px 14px;
  font-size: 13px;
}

.btn.is-loading {
  pointer-events: none;
  opacity: 0.85;
}

.btn__spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.linkBtn,
.serviceCard__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 650;
  font-size: 14px;
  color: var(--accent-2);
  margin-top: 12px;
  transition: var(--transition);
}

.linkBtn:hover,
.serviceCard__link:hover {
  gap: 8px;
}

/* ─── Hero (Zone A) ─── */
.zone-a {
  background: var(--bg-dark);
  color: var(--text-dark-1);
  position: relative;
}

.zone-a::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.5;
  pointer-events: none;
}

.hero {
  position: relative;
  padding: 56px 0 40px;
  overflow: hidden;
  background: transparent;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero::before,
.hero::after {
  display: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  min-height: 480px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgba(245, 197, 24, 0.35);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-2);
  margin-bottom: 20px;
}

.hero__badgeDot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(245, 197, 24, 0.5);
  animation: pulseDot 2s ease infinite;
}

@keyframes pulseDot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(245, 197, 24, 0.45);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(245, 197, 24, 0);
  }
}

.hero__title {
  margin: 0 0 16px;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero__titleLine {
  display: block;
}

.hero__titleLine--light {
  font-weight: 300;
  color: var(--text-dark-1);
}

.hero__titleLine--bold {
  font-weight: 800;
  color: var(--accent-2);
}

.hero__lead {
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-dark-2);
  max-width: 52ch;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.heroStat {
  padding: 18px 16px;
  border-radius: var(--radius-lg);
  background: rgba(10, 16, 32, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  transition: var(--transition);
}

.heroStat:hover {
  border-color: rgba(245, 197, 24, 0.4);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.heroStat__num {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-2);
  line-height: 1.1;
}

.heroStat__lbl {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--text-dark-2);
  line-height: 1.35;
}

.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
}

.hero__topology {
  width: min(100%, 420px);
  height: auto;
  opacity: 0.14;
  color: var(--accent);
  animation: topologyFloat 8s ease-in-out infinite;
  will-change: transform;
}

@keyframes topologyFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* ─── Brands band ─── */
.brands {
  padding: 28px 0 36px;
  background: var(--bg-dark-2);
}

.brands__label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dark-3);
  margin-bottom: 20px;
}

.brands__rail {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.brands__track {
  display: flex;
  gap: 28px;
  padding: 8px 0;
  width: max-content;
  animation: marquee 35s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.brandTile {
  flex-shrink: 0;
  width: 140px;
  display: grid;
  place-items: center;
  padding: 12px;
}

.brandTile__img {
  width: 120px;
  height: 44px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.65;
  transition: var(--transition);
}

.brandTile:hover .brandTile__img {
  filter: grayscale(0);
  opacity: 1;
}

.brandTile__txt {
  display: none;
}

.brands__rail:hover .brands__track {
  animation-play-state: paused;
}

/* ─── Stats strip (transition) ─── */
.statsStrip {
  padding: 48px 0;
  background: var(--bg-dark-2);
  border-top: 1px solid var(--border-dark);
}

.statsStrip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.statsStrip__item {
  padding: 16px 20px;
  position: relative;
}

.statsStrip__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border-light);
}

.statsStrip__num {
  display: block;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
}

.statsStrip__lbl {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--text-light-2);
}

/* ─── Zone B sections ─── */
.zone-b {
  background: var(--bg-light-2);
  color: var(--text-light-1);
}

.zone-b .section {
  padding: 72px 0;
}

.zone-b .section--alt {
  background: var(--bg-light-2);
}

.zone-b .section--cta {
  background: var(--bg-light-2);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section__head {
  max-width: 640px;
  margin-bottom: 40px;
}

.section__head h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 2.5vw, 34px);
  letter-spacing: -0.02em;
  font-weight: 750;
  color: var(--text-light-1);
  position: relative;
  display: inline-block;
}

.zone-b .section__head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 48px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
}

.section__head p {
  margin: 0;
  color: var(--text-light-2);
  font-size: 16px;
}

/* ─── Service cards ─── */
.grid--services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.serviceCard {
  background: var(--bg-light-3);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  will-change: transform;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.serviceCard:hover {
  border-color: rgba(245, 197, 24, 0.35);
  box-shadow: var(--shadow-md);
}

.serviceCard__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 26px;
  margin-bottom: 18px;
  transition: var(--transition);
  border: 1px solid rgba(245, 197, 24, 0.2);
}

.serviceCard:hover .serviceCard__icon {
  background: var(--accent);
  color: var(--on-accent);
  border-color: transparent;
}

.serviceCard h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
}

.serviceCard h3 a:hover {
  color: var(--accent);
}

.serviceCard > p {
  margin: 0;
  font-size: 14px;
  color: var(--text-light-2);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.serviceCard__ticks {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  flex: 1;
}

.serviceCard__ticks li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: var(--text-light-2);
  margin-bottom: 6px;
}

.serviceCard__ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.serviceExtra {
  margin-top: 14px;
  font-size: 13px;
}

.serviceExtra summary {
  cursor: pointer;
  color: var(--text-light-3);
  font-weight: 600;
}

.serviceVisual {
  display: none !important;
}

.card--service .card__icon {
  display: none;
}

/* ─── Trust band, grids, cards ─── */
.trustBand {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  background: var(--bg-light);
}

.trustBand__segments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.trustBand__seg {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
}

.trustBand__list {
  margin: 0;
  padding-left: 20px;
  color: var(--text-light-2);
}

.grid--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--bg-light-3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
  overflow: hidden;
}

.card:hover {
  border-color: rgba(245, 197, 24, 0.25);
  box-shadow: var(--shadow-md);
}

.card:hover {
  border-color: color-mix(in oklab, var(--accent) 40%, var(--border-light));
  box-shadow: var(--shadow-md);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 650;
}

.cardMedia {
  position: relative;
  height: 168px;
  border-radius: var(--radius-md);
  margin: -8px -8px 16px;
  overflow: hidden;
  background: var(--accent-light);
}

.cardMedia::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(17, 24, 32, 0.5) 100%);
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.card:hover .cardMedia::after {
  opacity: 0.75;
}

.cardMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1);
}

.card:hover .cardMedia img {
  transform: scale(1.06);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.badge {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 650;
  background: var(--accent-light);
  color: var(--accent);
}

.badge--soft {
  display: inline-block;
  margin-bottom: 8px;
}

/* Proof grid */
.proofGrid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.proofGrid__cell {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--bg-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
}

.proofGrid__cell:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-accent);
}

.proofGrid__cell:nth-child(1) {
  grid-column: span 7;
}

.proofGrid__cell:nth-child(2) {
  grid-column: span 5;
}

.proofGrid__cell:nth-child(3) {
  grid-column: span 5;
}

.proofGrid__cell:nth-child(4) {
  grid-column: span 7;
}

.proofGrid__cell img {
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.proofGrid__cell figcaption {
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light-2);
}

/* ─── Timeline ─── */
.timeline {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  position: relative;
  padding-top: 8px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--accent) 0, var(--accent) 8px, transparent 8px, transparent 16px);
  opacity: 0.45;
}

.timeline__step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 8px;
}

.timeline__dot {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 800;
  font-size: 15px;
  transition: var(--transition);
  will-change: transform;
}

.timeline__step:hover .timeline__dot,
.timeline__step.is-active .timeline__dot {
  transform: scale(1.15);
  box-shadow: var(--shadow-accent);
}

.timeline__step h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
}

.timeline__step p {
  margin: 0;
  font-size: 13px;
  color: var(--text-light-2);
  line-height: 1.45;
}

.steps {
  display: none;
}

/* ─── Testimonials ─── */
.testimonials {
  background: var(--bg-light);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonialCard {
  background: var(--bg-light-3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  will-change: transform;
  position: relative;
  overflow: hidden;
}

.testimonialCard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
}

.testimonialCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(245, 197, 24, 0.22);
}

.testimonialCard__stars {
  color: var(--warn);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonialCard__quote {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-light-2);
}

.testimonialCard__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.testimonialCard__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 800;
  font-size: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.testimonialCard__name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-light-1);
}

.testimonialCard__role {
  font-size: 12px;
  color: var(--text-light-3);
}

/* ─── FAQ Accordion ─── */
.faq.accordion .faq__item {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: var(--transition);
}

.faq.accordion .faq__item.is-open {
  border-left: 3px solid var(--accent);
}

.faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-light-1);
}

.faq__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: grid;
  place-items: center;
  font-size: 18px;
  line-height: 1;
  color: var(--accent);
  flex-shrink: 0;
  transition: var(--transition);
}

.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
  background: var(--accent-light);
}

.faq__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq__panel[hidden] {
  display: block;
}

.faq__panel p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--text-light-2);
  font-size: 14px;
  line-height: 1.6;
}

details.faq__item {
  display: none;
}

/* ─── Contact ─── */
.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
}

.contact__card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.contact__card h3 {
  margin: 0 0 20px;
  font-size: 20px;
}

.contactInfo__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
}

.contactInfo__row i {
  color: var(--accent);
  font-size: 20px;
  margin-top: 2px;
}

.contactInfo__row a:hover {
  color: var(--accent);
}

.field--float {
  position: relative;
  margin-bottom: 20px;
}

.field--float input,
.field--float select,
.field--float textarea {
  width: 100%;
  padding: 16px 14px 8px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--bg-light-3);
  color: var(--text-light-1);
  background: var(--bg-light);
  transition: var(--transition);
}

.field--float textarea {
  min-height: 120px;
  resize: vertical;
}

.field--float > span {
  position: absolute;
  left: 14px;
  top: 14px;
  font-size: 14px;
  color: var(--text-light-3);
  pointer-events: none;
  transition: var(--transition);
}

.field--float input:focus,
.field--float select:focus,
.field--float textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.field--float input:focus + span,
.field--float input:not(:placeholder-shown) + span,
.field--float textarea:focus + span,
.field--float textarea:not(:placeholder-shown) + span {
  top: 6px;
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
}

.field--float select:focus + span,
.field--float select:valid + span {
  top: 6px;
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
}

.form__actions .btn--primary {
  width: 100%;
}

/* Legacy form compat */
.form .field:not(.field--float) span {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
}

.form .field:not(.field--float) input,
.form .field:not(.field--float) select,
.form .field:not(.field--float) textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--bg-light-3);
  color: var(--text-light-1);
}

.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field--full {
  grid-column: 1 / -1;
}

/* ─── Footer ─── */
.footer {
  background: var(--bg-dark);
  color: var(--text-dark-1);
  padding: 56px 0 0;
  border-top: 1px solid var(--border-dark);
}

.footer .muted {
  color: var(--text-dark-2);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 28px;
  padding-bottom: 40px;
}

.footer__cols {
  display: contents;
}


.footerCol h4 {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark-1);
}

.footerCol a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-dark-2);
  transition: var(--transition);
}

.footerCol a:hover {
  color: var(--accent-2);
}

.socialLinks {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.socialLinks--contact {
  margin-top: 18px;
}

.socialLink {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--on-accent);
  background: var(--accent);
  border: 1px solid rgba(245, 197, 24, 0.35);
  font-size: 20px;
  transition: var(--transition);
}

.socialLink:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.socialLink[data-social-pending] {
  cursor: pointer;
}

.footer__bottom {
  border-top: 1px solid var(--border-dark);
  padding: 20px 0 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--text-dark-2);
}

/* ─── WhatsApp FAB ─── */
.whatsappFab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 10040;
  display: inline-flex;
  align-items: center;
  gap: 0;
  height: 56px;
  min-width: 56px;
  padding: 0 16px;
  border-radius: 28px;
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  overflow: hidden;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease, box-shadow 0.35s ease;
  animation: waPulse 2s ease infinite;
  will-change: width, box-shadow;
}

.whatsappFab:hover {
  width: 160px;
  padding: 0 18px 0 14px;
  gap: 10px;
}

.whatsappFab__label {
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  font-weight: 700;
  font-size: 14px;
  overflow: hidden;
  transition: max-width 0.35s ease, opacity 0.25s ease;
}

.whatsappFab:hover .whatsappFab__label {
  max-width: 120px;
  opacity: 1;
}

.whatsappFab i {
  font-size: 24px;
  flex-shrink: 0;
}

@keyframes waPulse {
  0%,
  100% {
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 8px 36px rgba(37, 211, 102, 0.65), 0 0 0 12px rgba(37, 211, 102, 0);
  }
}

.whatsappChat {
  display: none !important;
}

/* SLA, SEO, CTA, modal, cookie */
.tableWrap {
  overflow-x: auto;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  background: var(--bg-light);
}

.slaTable {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.slaTable th,
.slaTable td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.slaTable th {
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 700;
}

.seoPanel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  background: var(--bg-light);
}

.seoTags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.seoTags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 36px;
  border-radius: var(--radius-xl);
  background: var(--bg-light);
  border: 1px solid var(--border-light);
}

.modal {
  border: none;
  border-radius: var(--radius-lg);
  padding: 0;
  max-width: 560px;
  width: calc(100% - 32px);
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}

.modal__frame {
  padding: 0;
}

.modal__head,
.modal__foot {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-light);
}

.modal__foot {
  border-bottom: none;
  border-top: 1px solid var(--border-light);
  display: flex;
  gap: 10px;
}

.modal__body {
  padding: 20px 24px;
}

.cookieBar {
  position: fixed;
  left: max(16px, env(safe-area-inset-left));
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 10050;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  background: rgba(10, 10, 10, 0.96);
  border: 1px solid rgba(245, 197, 24, 0.35);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
  color: var(--text-dark-1);
  max-width: 920px;
  margin: 0 auto;
}

.cookieBar.is-open {
  display: flex !important;
}

.cookieBar[hidden]:not(.is-open) {
  display: none !important;
}

.cookieBar__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-dark-2);
}

.cookieBar__text a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookieBar .btn--primary {
  flex-shrink: 0;
  cursor: pointer;
  pointer-events: auto;
}

.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1002;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  background: var(--accent);
  color: var(--on-accent);
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow-accent);
}

.iconBtn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--bg-light);
  cursor: pointer;
  font-size: 22px;
}

.checkRow {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--text-light-2);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chipOpt {
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  cursor: pointer;
  font-size: 13px;
}

/* Nav mobile */
@media (max-width: 960px) {
  .nav__toggle {
    display: inline-flex;
  }

  .nav__panel {
    position: fixed;
    top: 68px;
    right: 16px;
    left: 16px;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: var(--radius-lg);
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
  }

  body.dark-zone .nav__panel {
    background: var(--bg-dark-2);
    border-color: var(--border-dark);
  }

  .nav__panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__visual {
    min-height: 240px;
    order: -1;
  }

  .grid--services,
  .grid--3,
  .testimonials__grid,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .footer__cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .statsStrip__grid {
    grid-template-columns: 1fr;
  }

  .statsStrip__item:not(:last-child)::after {
    display: none;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .timeline {
    flex-direction: column;
    gap: 24px;
    padding-left: 32px;
  }

  .timeline::before {
    top: 0;
    bottom: 0;
    left: 23px;
    right: auto;
    width: 2px;
    height: auto;
    background: repeating-linear-gradient(180deg, var(--accent) 0, var(--accent) 8px, transparent 8px, transparent 16px);
  }

  .timeline__step {
    text-align: left;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: start;
  }

  .timeline__dot {
    margin: 0;
  }

  .proofGrid {
    grid-template-columns: 1fr 1fr;
  }

  .proofGrid__cell:nth-child(n) {
    grid-column: span 1;
  }

  .proofGrid__cell img {
    max-height: 180px;
    aspect-ratio: 16 / 10;
  }

  .seoPanel {
    grid-template-columns: 1fr;
  }

  .form__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero__stats {
    grid-template-columns: 1fr;
  }

  .proofGrid {
    grid-template-columns: 1fr;
  }

  .proofGrid__cell:nth-child(n) {
    grid-column: span 1;
  }

  body.cookie-visible {
    padding-bottom: 120px;
  }

  .cookieBar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cookieBar .btn--primary {
    width: 100%;
  }

  .whatsappFab:hover {
    width: 56px;
    padding: 0 16px;
  }

  .whatsappFab__label {
    display: none;
  }
}

/* Subpages */
.subpage {
  margin: 0;
  font-family: var(--font);
  background: var(--bg-light);
  color: var(--text-light-1);
  line-height: 1.6;
}

.subpage__bar {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
}

.subpage__barInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
}

.subpage__back {
  font-weight: 750;
  color: var(--accent);
}

.subpage__article {
  max-width: 720px;
  margin: 0 auto;
  padding: 36px var(--gutter) 72px;
}

.legalArticle h1 {
  margin: 0 0 12px;
  font-size: clamp(26px, 4vw, 34px);
}

.legalArticle h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.2rem;
}

.legalArticle p {
  margin: 0 0 12px;
  color: var(--text-light-2);
}

.legalArticle a {
  color: var(--accent);
  font-weight: 650;
}
