/* tokens inline — evita problemas con @import en file:// */
:root {
  --bg-dark:          #09090B;
  --bg-light:         #FAFAF8;
  --surface-dark:     #131316;
  --surface-light:    #F0F0ED;
  --border-dark:      rgba(255, 255, 255, 0.07);
  --border-light:     rgba(0, 0, 0, 0.07);
  --accent:           #F5A623;
  --accent-hover:     #E09410;
  --accent-soft:      rgba(245, 166, 35, 0.12);
  --accent-glow:      rgba(245, 166, 35, 0.20);
  --text-1:           #F0F2F5;
  --text-2:           rgba(240, 242, 245, 0.50);
  --ink-1:            #0A0A0A;
  --ink-2:            #6B7280;
  --green:            #22C55E;
  --font-head:        'Plus Jakarta Sans', sans-serif;
  --font-body:        'Inter', sans-serif;
  --section-y:        128px;
  --container:        1180px;
  --gap:              24px;
  --r-sm:             8px;
  --r-md:             14px;
  --r-lg:             20px;
  --r-xl:             28px;
  --r-full:           999px;
  --ease:             cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:           160ms;
  --t-mid:            300ms;
  --t-slow:           560ms;
  --shadow-sm:        0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
  --shadow-md:        0 4px 24px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
  --shadow-lg:        0 20px 60px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.10);
  --shadow-amber:     0 0 40px rgba(245, 166, 35, 0.25);
}

/* ══════════════════════════════════════════
   RESET
══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--bg-light);
  color: var(--ink-1);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; outline: none; border: none; background: none; }
textarea { resize: none; }

/* ══════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-y) 0;
  position: relative;
}

.section--dark  { background: var(--bg-dark); color: var(--text-1); }
.section--light { background: var(--bg-light); color: var(--ink-1); }

/* ══════════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 800;
}

h1 { font-size: clamp(42px, 6vw, 80px); }
h2 { font-size: clamp(34px, 4.5vw, 58px); }
h3 { font-size: clamp(18px, 2vw, 22px); font-weight: 700; }

p { line-height: 1.65; color: inherit; }

em { font-style: normal; }

/* ══════════════════════════════════════════
   COMPONENTS — BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--r-full);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  transition: transform var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn--amber {
  background: #fff;
  color: #000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.15);
}
.btn--amber:hover {
  background: #f0f0f0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.20);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--text-1);
  border: 1px solid var(--border-dark);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
}

.btn--dark {
  background: var(--ink-1);
  color: #fff;
}
.btn--dark:hover {
  background: #222;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--sm  { padding: 10px 20px; font-size: 14px; }
.btn--lg  { padding: 18px 36px; font-size: 17px; }
.btn--full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════
   COMPONENTS — EYEBROW / LABELS
══════════════════════════════════════════ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 20px;
}

.eyebrow--amber { color: var(--accent); }

.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ══════════════════════════════════════════
   COMPONENTS — SECTION HEADER
══════════════════════════════════════════ */
.section__head {
  margin-bottom: 72px;
}

.section__head h2 {
  max-width: 600px;
}

/* WhatsApp button variant */
.btn--wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 2px 16px rgba(37,211,102,0.30);
}
.btn--wa:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.40);
}

/* Floating WhatsApp button */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 80;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform var(--t-mid) var(--ease),
              box-shadow var(--t-mid) var(--ease);
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}
.wa-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.40);
  animation: waPulse 2.5s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0; transform: scale(1.4); }
}

/* ══════════════════════════════════════════
   PRIVACY PAGE
══════════════════════════════════════════ */
.privacy-page {
  padding: 140px 0 96px;
}

.privacy__header {
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-light);
}

.privacy__header h1 {
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: 12px;
}

.privacy__date {
  font-size: 14px;
  color: var(--ink-2);
}

.privacy__body {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.privacy__block h2 {
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 16px;
  color: var(--ink-1);
}

.privacy__block p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 12px;
}

.privacy__block p:last-child { margin-bottom: 0; }

.privacy__block ul {
  list-style: disc;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 12px 0;
}

.privacy__block li {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.65;
}

.privacy__block a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy__back {
  margin-top: 64px;
}

/* ══════════════════════════════════════════
   NOISE TEXTURE
══════════════════════════════════════════ */
.noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--t-mid) var(--ease),
              border-color var(--t-mid) var(--ease),
              box-shadow var(--t-mid) var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(9, 9, 11, 0.80);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom-color: var(--border-dark);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav__logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: #F0F2F5;
  letter-spacing: -0.02em;
  text-transform: none;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
  flex-shrink: 0;
}

.nav__logo span {
  color: #F5A623;
  font-weight: 900;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--t-fast);
}

.nav__links a:hover { color: var(--text-1); }

.nav__inner .btn { margin-left: auto; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: transform var(--t-mid) var(--ease), opacity var(--t-fast);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  background: rgba(9,9,11,0.95);
  backdrop-filter: blur(16px);
}
.nav__mobile a {
  padding: 12px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-1);
  border-bottom: 1px solid var(--border-dark);
}
.nav__mobile .btn { margin-top: 16px; }
.nav__mobile.open { display: flex; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 68px;
}

/* Full-bleed photo */
.hero__bg {
  position: absolute;
  inset: 0;
  background: url('hero.png') center center / cover no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.hero.loaded .hero__bg {
  transform: scale(1);
}

/* Multi-layer overlay: keeps sky visible, darkens bottom for text */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0.10) 0%,
      rgba(0,0,0,0.20) 40%,
      rgba(0,0,0,0.72) 75%,
      rgba(0,0,0,0.88) 100%
    );
}

/* Content */
.hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 900px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
}

.hero__title {
  color: #fff;
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

.hero__sub {
  font-size: clamp(17px, 1.6vw, 21px);
  color: rgba(255,255,255,0.70);
  margin-bottom: 44px;
  max-width: 520px;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Glass ghost button for hero */
.btn--glass {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.20);
  color: #fff;
  padding: 14px 26px;
  border-radius: var(--r-full);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.btn--glass:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-1px);
}

/* Stats bar — pinned at bottom of hero */
.hero__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero__stats-inner {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 24px 24px;
}

.hstat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 32px;
}

.hstat:first-child { padding-left: 0; }

.hstat__n {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(22px, 2.5vw, 30px);
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hstat__l {
  font-size: 12px;
  color: rgba(255,255,255,0.50);
  font-weight: 500;
}

.hstat__sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 100px;
  right: 40px;
  z-index: 3;
}

.hero__scroll span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(245,166,35,0.8));
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ══════════════════════════════════════════
   PROBLEM
══════════════════════════════════════════ */
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.problem__left h2 {
  line-height: 1.15;
}

.problem__left h2 em {
  color: var(--ink-2);
}

.problem__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}

.problem__statement {
  font-family: var(--font-head);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  color: var(--ink-1);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.problem__right p {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.7;
}

.problem__right .problem__statement { color: var(--ink-1); }

.problem__callout {
  background: var(--surface-light);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--accent);
  border-radius: var(--r-md);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.problem__callout-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.problem__callout p {
  font-size: 15px !important;
  color: var(--ink-1) !important;
  line-height: 1.6;
}

.problem__right .btn { align-self: flex-start; margin-top: 8px; }

/* ══════════════════════════════════════════
   SERVICES — accordion list
══════════════════════════════════════════ */
.services__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-light);
}

.services__header h2 { margin-bottom: 0; }

.services__desc {
  max-width: 380px;
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.65;
}

.srow {
  border-bottom: 1px solid var(--border-light);
}

.srow__head {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 28px 0;
  text-align: left;
  transition: opacity var(--t-fast);
}

.srow__head:hover { opacity: 0.65; }

.srow__num {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-2);
  letter-spacing: 0.06em;
  width: 28px;
  flex-shrink: 0;
}

.srow__name {
  font-family: var(--font-head);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: var(--ink-1);
  letter-spacing: -0.02em;
  flex: 1;
}

.srow__tag {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--r-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.srow__tag:empty { display: none; }

.srow__arrow {
  font-size: 20px;
  color: var(--ink-2);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--t-mid) var(--ease);
  display: inline-block;
}

.srow__head[aria-expanded="true"] .srow__arrow {
  transform: rotate(180deg);
}

.srow__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--t-slow) var(--ease);
}

.srow__body.open {
  max-height: 400px;
}

.srow__body p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.75;
  padding: 0 0 32px 52px;
  max-width: 680px;
}

/* ══════════════════════════════════════════
   PROCESS — two-column sticky
══════════════════════════════════════════ */
.process__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}

.process__left {
  position: sticky;
  top: 100px;
}

.process__left h2 {
  color: var(--text-1);
  margin-bottom: 20px;
}

.process__left > p {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
}

.process__right {
  display: flex;
  flex-direction: column;
}

.pstep {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-dark);
  align-items: start;
}

.pstep:first-child { padding-top: 0; }
.pstep:last-child  { border-bottom: none; padding-bottom: 0; }

.pstep__num {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.06em;
  padding-top: 4px;
}

.pstep__content h3 {
  font-size: 20px;
  color: var(--text-1);
  margin-bottom: 10px;
}

.pstep__content p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   NUMBERS — dark editorial
══════════════════════════════════════════ */
.nums__statement {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  color: var(--text-1);
  line-height: 1.4;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 96px;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.nums__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}

.num {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 48px;
  border-left: 1px solid var(--border-dark);
}

.num:first-child {
  border-left: none;
  padding-left: 0;
}

.num__val {
  font-family: var(--font-head);
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--text-1);
  line-height: 1;
}

.num p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
  max-width: 200px;
}

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testimonials__header {
  margin-bottom: 56px;
}

.testimonials__header h2 {
  margin-top: 0;
}

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

.tcard {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow var(--t-mid) var(--ease),
              transform var(--t-mid) var(--ease);
}

.tcard:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.tcard__quote {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 56px;
  line-height: 0.8;
  color: var(--accent);
  font-weight: 400;
  user-select: none;
}

.tcard__text {
  font-size: 16px;
  color: var(--ink-1);
  line-height: 1.72;
  flex: 1;
}

.tcard__divider {
  height: 1px;
  background: var(--border-light);
}

.tcard__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tcard__name {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-1);
}

.tcard__role {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.4;
}

/* Stagger testimonials */
.testimonials__grid .reveal:nth-child(2) { transition-delay:  80ms; }
.testimonials__grid .reveal:nth-child(3) { transition-delay: 160ms; }

/* ══════════════════════════════════════════
   CTA — horizontal split
══════════════════════════════════════════ */
.cta-section { overflow: hidden; }

.cta__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}

.cta__text .eyebrow { margin-bottom: 16px; }

.cta__text h2 {
  margin-bottom: 16px;
}

.cta__text > p {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.65;
}

.cta__action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex-shrink: 0;
}

.cta__note {
  font-size: 13px;
  color: var(--ink-2);
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact__left h2 { margin-bottom: 20px; }

.contact__left > p {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-2);
}

.contact__item svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

.contact__item a {
  color: var(--ink-2);
  transition: color var(--t-fast);
}
.contact__item a:hover { color: var(--ink-1); }

/* Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--surface-light);
  padding: 40px;
  border-radius: var(--r-xl);
  border: 1px solid var(--border-light);
}

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

.form__field {
  position: relative;
}

.form__field input,
.form__field textarea,
.form__field select {
  width: 100%;
  padding: 22px 16px 8px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  font-size: 15px;
  color: var(--ink-1);
  transition: border-color var(--t-fast);
}

.form__field select {
  appearance: none;
  cursor: pointer;
}

.form__field input:focus,
.form__field textarea:focus,
.form__field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form__field label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--ink-2);
  pointer-events: none;
  transition: all var(--t-fast) var(--ease);
}

.form__field textarea ~ label { top: 20px; transform: none; }

.form__field input:focus ~ label,
.form__field input:not(:placeholder-shown) ~ label,
.form__field textarea:focus ~ label,
.form__field textarea:not(:placeholder-shown) ~ label,
.form__field select:focus ~ label,
.form__field select:valid ~ label {
  top: 8px;
  transform: none;
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.form__note {
  font-size: 13px;
  color: var(--ink-2);
  text-align: center;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--bg-dark);
  padding: 72px 0 40px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border-dark);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}

.footer__brand .nav__logo { display: inline-block; margin-bottom: 16px; }

.footer__brand p {
  font-size: 14px;
  color: var(--text-2);
  max-width: 260px;
  line-height: 1.6;
}

.footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer__col ul { display: flex; flex-direction: column; gap: 12px; }

.footer__col a {
  font-size: 14px;
  color: var(--text-2);
  transition: color var(--t-fast);
}

.footer__col a:hover { color: var(--text-1); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border-dark);
  gap: 24px;
  flex-wrap: wrap;
}

.footer__bottom p,
.footer__bottom a {
  font-size: 13px;
  color: var(--text-2);
}

.footer__bottom div { display: flex; gap: 24px; }
.footer__bottom a:hover { color: var(--text-1); }

/* ══════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--t-slow) var(--ease),
              transform var(--t-slow) var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.services__list .reveal:nth-child(2) { transition-delay:  60ms; }
.services__list .reveal:nth-child(3) { transition-delay: 120ms; }
.services__list .reveal:nth-child(4) { transition-delay: 180ms; }
.services__list .reveal:nth-child(5) { transition-delay: 240ms; }

.process__right .reveal:nth-child(2) { transition-delay:  80ms; }
.process__right .reveal:nth-child(3) { transition-delay: 160ms; }
.process__right .reveal:nth-child(4) { transition-delay: 240ms; }

.nums__grid .reveal:nth-child(2) { transition-delay:  80ms; }
.nums__grid .reveal:nth-child(3) { transition-delay: 160ms; }
.nums__grid .reveal:nth-child(4) { transition-delay: 240ms; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .problem__grid { gap: 48px; }
  .services__header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .process__container { grid-template-columns: 1fr; gap: 56px; }
  .process__left { position: static; }
  .nums__grid { grid-template-columns: repeat(2, 1fr); }
  .num { padding: 0 32px 48px; }
  .num:first-child { padding-left: 0; }
  .num:nth-child(n+3) { padding-top: 48px; border-top: 1px solid var(--border-dark); }
  .num:nth-child(3) { border-left: none; padding-left: 0; }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .cta__row { flex-direction: column; align-items: flex-start; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-y: 80px; }

  .nav__links, .nav__inner .btn { display: none; }
  .nav__burger { display: flex; }

  .hero {
    justify-content: flex-start;
  }
  .hero__inner {
    padding-top: 40px;
    padding-bottom: 48px;
    max-width: 100%;
    flex: 1;
  }
  .hero__stats {
    position: static;
    width: 100%;
    flex-shrink: 0;
  }
  .hero__stats-inner { flex-wrap: wrap; gap: 0; }
  .hstat { min-width: 50%; padding: 16px; }
  .hstat:first-child { padding-left: 16px; }
  .hstat__sep { display: none; }

  .problem__grid { grid-template-columns: 1fr; gap: 36px; }

  .hero__scroll { display: none; }

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

  .srow__name { font-size: 17px; }
  .srow__body p { padding-left: 0; }

  .process__container { grid-template-columns: 1fr; gap: 40px; }
  .process__left { position: static; }

  .nums__statement { margin-bottom: 56px; }
  .nums__grid { grid-template-columns: 1fr 1fr; }
  .num { padding: 0 20px 40px; }
  .num:first-child { padding-left: 0; }
  .num:nth-child(3) { border-left: none; padding-left: 0; padding-top: 40px; }
  .num:nth-child(4) { padding-top: 40px; }

  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .contact__form { padding: 28px 20px; }
  .form__row { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .nums__grid { grid-template-columns: 1fr; }
  .num { padding: 0 0 36px; border-left: none !important; }
  .num:nth-child(n+2) { padding-top: 36px; border-top: 1px solid var(--border-dark); }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { text-align: center; justify-content: center; }
}
