/* ============ TOKENS (light, Apple-esque) ============ */
:root{
  --bg: #fbfbfd;
  --bg-alt: #f4f4f8;
  --bg-dark: #14141a;
  --card: #ffffff;
  --border: rgba(20,20,26,0.08);
  --border-strong: rgba(20,20,26,0.14);
  --text: #14141a;
  --text-dim: #58585f;
  --text-faint: #8a8a92;

  --i1: #6366f1;   /* indigo */
  --i2: #4f46e5;
  --c1: #22d3ee;   /* cyan */
  --c2: #06b6d4;

  --grad: linear-gradient(120deg, var(--i2) 0%, #6d5ff0 45%, var(--c1) 100%);
  --grad-soft: linear-gradient(120deg, rgba(99,102,241,.14) 0%, rgba(34,211,238,.14) 100%);

  --radius: 22px;
  --ease: cubic-bezier(.16,1,.3,1);
  --container: 1240px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:'Inter', system-ui, sans-serif;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{ font-family:'Space Grotesk','Inter',sans-serif; margin:0; letter-spacing:-0.02em; }
p{ margin:0; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
img{ max-width:100%; display:block; }
svg{ display:block; }

.container{ max-width:var(--container); margin:0 auto; padding:0 28px; }
::selection{ background:var(--i1); color:#fff; }
::-webkit-scrollbar{ width:10px; }
::-webkit-scrollbar-track{ background:var(--bg-alt); }
::-webkit-scrollbar-thumb{ background:linear-gradient(var(--i1),var(--c1)); border-radius:10px; }

.grain{
  position:fixed; inset:0; z-index:1; pointer-events:none; opacity:.02;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.progress-bar{
  position:fixed; top:0; left:0; height:3px; width:0%;
  background:var(--grad); z-index:1000; box-shadow:0 0 10px rgba(99,102,241,.5);
}

/* ============ UTIL ============ */
.grad-text{
  background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent;
  background-size:200% 200%; animation:gradShift 6s ease infinite;
}
@keyframes gradShift{ 0%,100%{background-position:0% 50%;} 50%{background-position:100% 50%;} }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:13px; font-weight:600; letter-spacing:.14em; text-transform:uppercase;
  color:var(--i2); margin-bottom:18px;
}
.eyebrow__dot{
  width:7px; height:7px; border-radius:50%; background:var(--grad);
  box-shadow:0 0 10px rgba(34,211,238,.6); animation:pulse 2s ease infinite;
}
@keyframes pulse{ 0%,100%{transform:scale(1);opacity:1;} 50%{transform:scale(1.4);opacity:.6;} }

.btn{
  position:relative; display:inline-flex; align-items:center; gap:10px;
  padding:15px 26px; border-radius:100px;
  font-family:'Space Grotesk',sans-serif; font-weight:600; font-size:15px;
  cursor:pointer; border:none;
  transition:transform .4s var(--ease), box-shadow .4s var(--ease), background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
  white-space:nowrap;
}
.btn--primary{ background:var(--grad); background-size:200% 200%; color:#fff; box-shadow:0 10px 30px -8px rgba(79,70,229,.45); }
.btn--primary:hover{ transform:translateY(-3px); box-shadow:0 16px 40px -8px rgba(34,211,238,.45); background-position:100% 50%; }
.btn--outline{ background:transparent; color:var(--text); border:1.5px solid var(--border-strong); }
.btn--outline:hover{ border-color:var(--i1); color:var(--i2); transform:translateY(-3px); }
.btn--dark{ background:var(--bg-dark); color:#fff; padding:11px 22px; font-size:14px; }
.btn--dark:hover{ transform:translateY(-2px); box-shadow:0 10px 26px -8px rgba(20,20,26,.4); }

.reveal{ opacity:0; transform:translateY(36px); transition:opacity .9s var(--ease), transform .9s var(--ease); transition-delay:calc(var(--i,0) * 90ms); }
.reveal.is-visible{ opacity:1; transform:translateY(0); }
.magnetic{ will-change:transform; }

/* ============ HEADER ============ */
.header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  padding:18px 0; transition:padding .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  border-bottom:1px solid transparent;
}
.header.scrolled{
  padding:12px 0; background:rgba(251,251,253,.75);
  backdrop-filter:blur(16px) saturate(180%);
  border-bottom:1px solid var(--border);
  box-shadow:0 6px 24px -12px rgba(20,20,26,.08);
}
.header__inner{ display:flex; align-items:center; justify-content:space-between; gap:24px; }
.brand{ display:flex; align-items:center; gap:10px; }
.brand__mark{ height:38px; width:auto; }
.brand__word{ height:20px; width:auto; }
.footer__brand .brand__mark{ height:34px; }
.footer__brand .brand__word{ height:18px; }

.nav{ display:flex; gap:34px; align-items:center; }
.nav__link{ position:relative; font-size:14.5px; font-weight:500; color:var(--text-dim); transition:color .3s ease; }
.nav__link::after{ content:''; position:absolute; left:0; bottom:-6px; width:0; height:1.5px; background:var(--grad); transition:width .35s var(--ease); }
.nav__link:hover{ color:var(--text); }
.nav__link:hover::after{ width:100%; }
.nav__cta{ display:inline-flex; }

.menu-toggle{ display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px; }
.menu-toggle span{ width:22px; height:2px; background:var(--text); border-radius:2px; }

/* ============ HERO PIN (Apple-style scroll zoom) ============ */
.hero-pin{ position:relative; height:340vh; }
.hero-pin__sticky{
  position:sticky; top:0; height:100vh; overflow:hidden;
  display:flex; align-items:center; justify-content:center;
  perspective:1400px;
}
.hero-pin__bg{ position:absolute; inset:0; z-index:0; }
.orb{ position:absolute; border-radius:50%; filter:blur(90px); opacity:.55; }
.orb--1{ width:520px; height:520px; background:radial-gradient(circle, rgba(99,102,241,.5), transparent 70%); top:-140px; left:-120px; }
.orb--2{ width:460px; height:460px; background:radial-gradient(circle, rgba(34,211,238,.45), transparent 70%); top:100px; right:-160px; }

.hero-pin__stage{
  position:relative; z-index:2; max-width:820px; text-align:center; padding:0 28px;
  transform-style:preserve-3d;
  will-change:transform;
}
.hero-pin__title{
  font-size:clamp(38px,7vw,80px); line-height:1.04; font-weight:700; margin:20px 0 26px;
  will-change:transform, opacity;
}
.hero-pin__sub{
  font-size:clamp(16px,2vw,19px); color:var(--text-dim); max-width:600px; margin:0 auto 36px; line-height:1.6;
  will-change:transform, opacity;
}
.hero-pin__actions{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; will-change:transform, opacity; }

.hero-pin__stats{
  display:flex; gap:56px; justify-content:center;
  margin-top:44px; padding-top:28px; border-top:1px solid var(--border);
  will-change:transform, opacity;
}
.stat{ display:flex; flex-direction:column; gap:4px; align-items:center; }
.stat__num{ font-family:'Space Grotesk',sans-serif; font-size:34px; font-weight:700; background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent; }
.stat__label{ font-size:13px; color:var(--text-faint); }

.hero-pin__cue{
  position:absolute; bottom:20px; left:50%; transform:translateX(-50%);
  display:inline-flex; align-items:center; justify-content:center;
  width:38px; height:38px; border-radius:50%;
  background:var(--card); border:1px solid var(--border-strong);
  box-shadow:0 10px 26px -12px rgba(20,20,26,.18);
  color:var(--i2);
  z-index:2; cursor:pointer;
  animation:cueBounce 2.2s ease infinite;
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.hero-pin__cue svg{ color:var(--i2); }
.hero-pin__cue:hover{ transform:translateX(-50%) translateY(-3px); border-color:var(--i1); box-shadow:0 16px 34px -12px rgba(79,70,229,.3); }
@keyframes cueBounce{ 0%,100%{ transform:translateX(-50%) translateY(0); } 50%{ transform:translateX(-50%) translateY(-6px); } }

/* ============ SECTION NAV (botones fijos de transición) ============ */
.section-nav{
  position:fixed; right:26px; top:50%; transform:translateY(-50%);
  z-index:90; display:flex; flex-direction:column; align-items:center; gap:14px;
  opacity:0; pointer-events:none; transition:opacity .4s ease;
}
.section-nav.is-visible{ opacity:1; pointer-events:auto; }
.section-nav__arrow{
  width:38px; height:38px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:var(--card); border:1px solid var(--border-strong);
  color:var(--text); cursor:pointer;
  box-shadow:0 10px 24px -12px rgba(20,20,26,.2);
  transition:transform .25s ease, border-color .25s ease, color .25s ease, box-shadow .25s ease;
}
.section-nav__arrow:hover{ transform:translateY(-2px); border-color:var(--i1); color:var(--i2); box-shadow:0 14px 30px -12px rgba(79,70,229,.35); }
.section-nav__arrow:disabled{ opacity:.3; pointer-events:none; }
.section-nav__dots{ display:flex; flex-direction:column; gap:10px; padding:6px 0; }
.section-nav__dot{
  width:9px; height:9px; border-radius:50%; background:var(--border-strong);
  border:none; cursor:pointer; padding:0; position:relative;
  transition:background .3s ease, transform .3s ease;
}
.section-nav__dot::after{
  content:attr(data-title);
  position:absolute; right:22px; top:50%; transform:translateY(-50%);
  background:var(--bg-dark); color:#fff; font-size:12px; font-weight:500;
  padding:6px 12px; border-radius:8px; white-space:nowrap;
  opacity:0; pointer-events:none; transition:opacity .25s ease;
}
.section-nav__dot:hover::after{ opacity:1; }
.section-nav__dot:hover{ transform:scale(1.3); }
.section-nav__dot.is-active{ background:var(--grad); transform:scale(1.3); }

/* ============ SECTION HEAD ============ */
.section-head{ max-width:640px; margin:0 auto 80px; text-align:left; }
.section-title{ font-size:clamp(30px,4.2vw,50px); font-weight:700; line-height:1.08; margin-bottom:16px; }
.section-sub{ font-size:17px; color:var(--text-dim); line-height:1.6; }

/* ============ SERVICES — big vertical modules, brand "curtain" reveal ============ */
.services{ position:relative; padding-top:120px; padding-bottom:60px; background:var(--bg); }

.services__list{ display:flex; flex-direction:column; gap:110px; }

/* Desktop: image on the left, details on the right. Mobile stacks image-then-text (see media query). */
.service-block{
  max-width:1140px; margin:0 auto;
  display:grid; grid-template-columns:1.05fr 0.95fr; gap:60px; align-items:center;
}

/* --- Media: large, asymmetric corners --- */
.service-block__media{
  position:relative; overflow:hidden; isolation:isolate;
  aspect-ratio:4/3; margin-bottom:0;
  border-radius:56px 56px 56px 12px;
  box-shadow:0 40px 90px -35px rgba(20,20,26,.32), 0 0 0 1px var(--border);
}
.service-block:nth-child(even) .service-block__media{ border-radius:56px 12px 56px 56px; }

.service-block__media img{
  width:100%; height:100%; object-fit:cover; display:block;
  transform:scale(1.14); filter:saturate(.94);
  transition:transform 1.3s var(--ease), filter 1.3s var(--ease);
}

/* signature entrance: brand-gradient curtain wipes off the image as it settles into focus */
.service-block__media::after{
  content:''; position:absolute; inset:0; z-index:2;
  background:var(--grad); transform-origin:right center; transform:scaleX(1);
  transition:transform 1s var(--ease);
}
.service-block:nth-child(even) .service-block__media::after{ transform-origin:left center; }
.service-block.is-in .service-block__media::after{ transform:scaleX(0); }
.service-block.is-in .service-block__media img{ transform:scale(1); filter:saturate(1); }

/* --- Copy: staggered fade-up, consistent with the rest of the site --- */
.service-block__body{ max-width:520px; }
.service-block__num{
  display:inline-block; font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:15px;
  color:var(--i2); background:var(--grad-soft); padding:6px 14px; border-radius:100px; margin-bottom:20px;
  opacity:0; transform:translateY(18px); transition:opacity .6s var(--ease), transform .6s var(--ease);
}
.service-block__title{
  font-size:clamp(26px,3.2vw,38px); font-weight:700; line-height:1.14; margin-bottom:14px;
  opacity:0; transform:translateY(18px); transition:opacity .6s var(--ease) .06s, transform .6s var(--ease) .06s;
}
.service-block__lead{
  font-size:17px; color:var(--text-dim); margin-bottom:26px; line-height:1.55;
  opacity:0; transform:translateY(18px); transition:opacity .6s var(--ease) .12s, transform .6s var(--ease) .12s;
}
.service-block__list{
  display:flex; flex-direction:column; gap:12px;
}
.service-block__list li{
  position:relative; font-size:14.5px; color:var(--text-dim); padding-left:22px; line-height:1.5;
  opacity:0; transform:translateY(14px); transition:opacity .5s var(--ease), transform .5s var(--ease);
}
.service-block__list li::before{
  content:''; position:absolute; left:0; top:6px; width:8px; height:8px; border-radius:2px;
  background:var(--grad); transform:rotate(45deg);
}
.service-block.is-in .service-block__num,
.service-block.is-in .service-block__title,
.service-block.is-in .service-block__lead{ opacity:1; transform:translateY(0); }
.service-block.is-in .service-block__list li{ opacity:1; transform:translateY(0); }
.service-block.is-in .service-block__list li:nth-child(1){ transition-delay:.18s; }
.service-block.is-in .service-block__list li:nth-child(2){ transition-delay:.23s; }
.service-block.is-in .service-block__list li:nth-child(3){ transition-delay:.28s; }
.service-block.is-in .service-block__list li:nth-child(4){ transition-delay:.33s; }
.service-block.is-in .service-block__list li:nth-child(5){ transition-delay:.38s; }
.service-block.is-in .service-block__list li:nth-child(6){ transition-delay:.43s; }
.service-block.is-in .service-block__list li:nth-child(7){ transition-delay:.48s; }
.service-block.is-in .service-block__list li:nth-child(8){ transition-delay:.53s; }

/* ============ PROCESS ============ */
.process{ padding:80px 0 140px; background:var(--bg-alt); }
.process__line{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; position:relative; padding-top:30px; }
.process__line::before{
  content:''; position:absolute; top:56px; left:0; right:0; height:1px;
  background:linear-gradient(90deg, transparent, var(--border-strong) 10%, var(--border-strong) 90%, transparent);
}
.process__step{ position:relative; z-index:1; }
.process__index{
  display:inline-flex; align-items:center; justify-content:center; width:52px; height:52px; border-radius:50%;
  background:var(--card); border:1px solid var(--border-strong);
  font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:16px; color:var(--i2); margin-bottom:22px;
  box-shadow:0 8px 20px -10px rgba(20,20,26,.15);
}
.process__step h3{ font-size:19px; margin-bottom:10px; }
.process__step p{ font-size:14.5px; color:var(--text-dim); line-height:1.55; }

/* ============ TEAM ============ */
.team{ padding:120px 0; background:var(--bg); }
.team__grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:26px; }
.team-card{
  position:relative; padding:38px; border-radius:var(--radius);
  background:var(--card); border:1px solid var(--border);
  box-shadow:0 14px 40px -20px rgba(20,20,26,.14);
  transition:transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.team-card:hover{ transform:translateY(-8px); box-shadow:0 24px 50px -20px rgba(79,70,229,.22); border-color:rgba(99,102,241,.3); }
.team-card__top{ display:flex; align-items:center; gap:18px; margin-bottom:26px; }
.team-card__avatar{
  width:64px; height:64px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background:var(--grad); font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:19px; color:#fff; flex-shrink:0;
}
.team-card__name{ font-size:21px; margin-bottom:4px; }
.team-card__role{ font-size:14px; color:var(--i2); font-weight:500; }
.team-card__hint{ font-size:13px; color:var(--text-faint); margin-bottom:14px; }
.team-card__tags{ display:flex; flex-direction:column; gap:8px; margin-bottom:24px; }
.team-card__tags li{ list-style:none; }
.team-card__tags a{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  font-size:14px; color:var(--text-dim); padding:12px 16px;
  border-radius:12px; border:1px solid var(--border);
  background:var(--bg-alt);
  transition:border-color .3s ease, color .3s ease, background .3s ease, transform .3s ease;
}
.team-card__tags a::after{
  content:'';
  width:16px; height:16px; flex-shrink:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6' stroke='%234f46e5' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size:contain; background-repeat:no-repeat;
  opacity:0; transform:translateX(-4px);
  transition:opacity .25s ease, transform .25s ease;
}
.team-card__tags a:hover{ border-color:var(--i1); color:var(--text); background:#fff; transform:translateX(2px); }
.team-card__tags a:hover::after{ opacity:1; transform:translateX(0); }
.team-card__cta{
  display:inline-flex; align-items:center; gap:10px; padding:13px 22px; border-radius:100px;
  border:1.5px solid var(--border-strong); font-size:14px; font-weight:600; color:var(--text);
  transition:border-color .3s ease, color .3s ease, transform .3s ease;
}
.team-card__cta svg{ color:var(--i2); flex-shrink:0; }
.team-card__cta:hover{ border-color:var(--i1); color:var(--i2); transform:translateY(-2px); }

/* ============ CONTACT FORM ============ */
.contact{ padding:120px 0; background:var(--bg-alt); }
.contact-form{
  max-width:760px; margin:0 auto; padding:44px; border-radius:var(--radius);
  background:var(--card); border:1px solid var(--border);
  box-shadow:0 24px 60px -30px rgba(20,20,26,.2);
}
.contact-form__hp{ position:absolute; width:1px; height:1px; opacity:0; pointer-events:none; }
.contact-form__row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.contact-form__field{ display:flex; flex-direction:column; gap:8px; margin-bottom:20px; }
.contact-form__field label{ font-size:13px; font-weight:600; color:var(--text-dim); }
.contact-form__field input,
.contact-form__field textarea{
  font-family:'Inter',sans-serif; font-size:15px; color:var(--text);
  background:var(--bg-alt); border:1.5px solid var(--border); border-radius:14px;
  padding:14px 16px; resize:vertical;
  transition:border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus{
  outline:none; border-color:var(--i1); background:#fff;
  box-shadow:0 0 0 4px rgba(99,102,241,.12);
}
.contact-form__footer{ display:flex; align-items:center; gap:20px; flex-wrap:wrap; margin-top:6px; }
.contact-form__msg{ font-size:14px; color:var(--text-dim); }
.contact-form__msg.is-ok{ color:#0f9d58; font-weight:600; }
.contact-form__msg.is-error{ color:#e5484d; font-weight:600; }

/* ============ CONTACT SUCCESS — animated "approved" confirmation ============ */
.contact-success{
  max-width:760px; margin:0 auto; padding:56px 44px;
  border-radius:var(--radius); background:var(--card); border:1px solid var(--border);
  box-shadow:0 24px 60px -30px rgba(20,20,26,.2);
  display:flex; flex-direction:column; align-items:center; text-align:center; gap:6px;
}
.contact-success__badge{ margin-bottom:14px; }
.contact-success__ring{
  stroke-dasharray:327; stroke-dashoffset:327;
  transition:stroke-dashoffset .9s var(--ease);
}
.contact-success__check{
  stroke-dasharray:78; stroke-dashoffset:78;
  transition:stroke-dashoffset .5s var(--ease) .75s;
}
.contact-success__title{
  font-size:24px; font-weight:700; margin-bottom:4px;
  opacity:0; transform:translateY(14px);
  transition:opacity .5s var(--ease) 1.05s, transform .5s var(--ease) 1.05s;
}
.contact-success__text{
  font-size:15px; color:var(--text-dim); max-width:420px; line-height:1.55; margin-bottom:20px;
  opacity:0; transform:translateY(14px);
  transition:opacity .5s var(--ease) 1.15s, transform .5s var(--ease) 1.15s;
}
.contact-success__reset{
  opacity:0; transform:translateY(14px);
  transition:opacity .5s var(--ease) 1.25s, transform .5s var(--ease) 1.25s, border-color .3s ease, color .3s ease;
}
.contact-success.is-in .contact-success__ring{ stroke-dashoffset:0; }
.contact-success.is-in .contact-success__check{ stroke-dashoffset:0; }
.contact-success.is-in .contact-success__title,
.contact-success.is-in .contact-success__text,
.contact-success.is-in .contact-success__reset{ opacity:1; transform:translateY(0); }

/* ============ FOOTER ============ */
.footer{ border-top:1px solid var(--border); padding:70px 0 0; background:var(--bg-alt); }
.footer__inner{ display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:48px; padding-bottom:50px; }
.footer__brand{ display:flex; flex-direction:column; gap:16px; max-width:300px; }
.footer__brand p{ font-size:14px; color:var(--text-faint); line-height:1.6; }
.footer__col{ display:flex; flex-direction:column; gap:14px; }
.footer__col h4{ font-size:14px; color:var(--text); margin-bottom:6px; }
.footer__col a{ font-size:14px; color:var(--text-faint); transition:color .3s ease; width:fit-content; }
.footer__col a:hover{ color:var(--i2); }
.footer__bottom{ border-top:1px solid var(--border); padding:22px 28px; font-size:13px; color:var(--text-faint); text-align:center; }

/* ============ RESPONSIVE ============ */
@media (max-width:980px){
  .services__list{ gap:70px; }
  .service-block{ grid-template-columns:1fr; gap:0; }
  .service-block__media,
  .service-block:nth-child(even) .service-block__media{ border-radius:28px; aspect-ratio:4/3; margin-bottom:26px; }
  .service-block__body{ max-width:none; }
  .process__line{ grid-template-columns:repeat(2,1fr); row-gap:40px; }
  .process__line::before{ display:none; }
  .team__grid{ grid-template-columns:1fr; }
  .footer__inner{ grid-template-columns:1fr 1fr; }
  .footer__brand{ grid-column:1 / -1; max-width:none; }
  .hero-pin{ height:auto; min-height:100vh; }
  .hero-pin__sticky{ position:relative; height:auto; min-height:100vh; padding:140px 0 100px; }
  .hero-pin__stats{ position:relative; bottom:0; margin-top:50px; }
  .contact-form{ padding:32px 24px; }
}

@media (max-width:760px){
  .nav, .nav__cta{ display:none; }
  .menu-toggle{ display:flex; }
  .header.nav-open .nav{
    display:flex; position:fixed; top:68px; left:0; right:0; flex-direction:column; gap:0;
    background:rgba(251,251,253,.98); backdrop-filter:blur(20px); padding:10px 28px 26px; border-bottom:1px solid var(--border);
  }
  .header.nav-open .nav__link{ padding:14px 0; border-bottom:1px solid var(--border); width:100%; }
  .header.nav-open .nav__cta{ display:inline-flex; margin-top:16px; }
  .process__line{ grid-template-columns:1fr; }
  .hero-pin__stats{ gap:32px; }
  .section-nav{
    flex-direction:row; align-items:center; gap:8px;
    left:50%; right:auto; top:auto; bottom:18px; transform:translateX(-50%);
    background:rgba(251,251,253,.88); backdrop-filter:blur(14px) saturate(160%);
    padding:8px 10px; border-radius:100px; border:1px solid var(--border-strong);
    box-shadow:0 16px 36px -16px rgba(20,20,26,.3);
    max-width:calc(100vw - 28px);
  }
  .section-nav__arrow{ flex:0 0 auto; width:34px; height:34px; }
  .section-nav__dots{ flex-direction:row; gap:7px; padding:0 2px; max-width:140px; overflow-x:auto; scrollbar-width:none; }
  .section-nav__dots::-webkit-scrollbar{ display:none; }
  .section-nav__dot{ flex:0 0 auto; }
  .section-nav__dot::after{ display:none; }
  .contact-form__row{ grid-template-columns:1fr; }
  .contact-form__footer{ flex-direction:column; align-items:flex-start; }
}
