/* ===== RESET ===== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:"Segoe UI",sans-serif;
}

:root{
  --blue:#0a3cff;
  --blue2:#0829ac;
  --blueCard:#1f6bff;
  --titleBlue:#1a49ff;
  --pad:clamp(18px, 4vw, 90px);
  --max:1200px;
  --ease-premium:cubic-bezier(.22, 1, .36, 1);
  --ease-soft:cubic-bezier(.16, 1, .3, 1);
  --duration-fast:.22s;
  --duration-base:.34s;
  --duration-slow:.58s;
  --shadow-soft:0 14px 36px rgba(10,28,82,.12);
  --shadow-hover:0 20px 48px rgba(10,28,82,.16);
  --ring-soft:0 0 0 4px rgba(10,60,255,.10);
  --surface-glow:linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,0));
}

html{
  scroll-behavior:smooth;
}

/* ===== FONDO GENERAL ===== */
body{
  background:#eef1f6;
  color:#000;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
}

.home-page{
  scroll-snap-type:y proximity;
  scroll-padding-top:96px;
}

.narrative-page{
  scroll-snap-type:y proximity;
  scroll-padding-top:32px;
}

.home-page .nav{
  background:rgba(10,60,255,.92);
  backdrop-filter:blur(14px);
  box-shadow:0 10px 34px rgba(8,25,95,.16);
}

.home-page [data-scroll-section]{
  position:relative;
  scroll-snap-align:start;
  scroll-snap-stop:always;
  transition:opacity .9s cubic-bezier(.22, 1, .36, 1), transform .9s cubic-bezier(.22, 1, .36, 1);
}

.narrative-page [data-scroll-section]{
  position:relative;
  scroll-snap-align:start;
  scroll-snap-stop:always;
  transition:opacity .9s cubic-bezier(.22, 1, .36, 1), transform .9s cubic-bezier(.22, 1, .36, 1);
}

.home-page [data-scroll-section]::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(180deg, rgba(255,255,255,.34), rgba(255,255,255,0) 24%, rgba(7,42,146,.04) 100%);
  opacity:0;
  transition:opacity .9s cubic-bezier(.22, 1, .36, 1);
}

.narrative-page [data-scroll-section]::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(180deg, rgba(255,255,255,.34), rgba(255,255,255,0) 24%, rgba(7,42,146,.04) 100%);
  opacity:0;
  transition:opacity .9s cubic-bezier(.22, 1, .36, 1);
}

.home-page [data-scroll-section]:not(.is-visible){
  opacity:.7;
  transform:translateY(30px);
}

.narrative-page [data-scroll-section]:not(.is-visible){
  opacity:.84;
  transform:translateY(22px);
}

.home-page [data-scroll-section].is-visible{
  opacity:1;
  transform:translateY(0);
}

.narrative-page [data-scroll-section].is-visible{
  opacity:1;
  transform:translateY(0);
}

.home-page [data-scroll-section].is-visible::before{
  opacity:1;
}

.narrative-page [data-scroll-section].is-visible::before{
  opacity:1;
}

/* ===== NAV ===== */
.nav{
  width:100%;
  min-height:84px;
  padding:10px var(--pad);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;

  background:var(--blue);
  border-bottom:1px solid rgba(255,255,255,.18);
  transition:
    background-color var(--duration-base) var(--ease-premium),
    box-shadow var(--duration-base) var(--ease-premium),
    backdrop-filter var(--duration-base) var(--ease-premium),
    border-color var(--duration-base) var(--ease-premium),
    transform var(--duration-base) var(--ease-premium);
}

.nav.is-scrolled{
  background:rgba(10,60,255,.9);
  box-shadow:0 18px 42px rgba(8,25,95,.18);
  border-bottom-color:rgba(255,255,255,.22);
}

.logo{
  display:flex;
  align-items:center;
  flex:0 0 auto;
}

.logo img{
  width:90px;
  height:auto;
  display:block;
  transition:transform var(--duration-base) var(--ease-soft), filter var(--duration-base) var(--ease-soft), opacity var(--duration-base) var(--ease-soft);
}

.logo-link,
.logo-trigger{
  display:inline-flex;
  align-items:center;
}

.logo-trigger{
  border:none;
  background:transparent;
  padding:0;
  cursor:pointer;
  border-radius:22px;
  transition:transform var(--duration-base) var(--ease-soft), opacity var(--duration-base) var(--ease-soft);
}

.logo-trigger:hover{
  transform:translateY(-1px);
}

.logo-trigger:hover img{
  transform:scale(1.02);
}

.logo-trigger:focus-visible{
  outline:none;
  box-shadow:0 0 0 4px rgba(255,255,255,.18);
}

.nav-center{
  flex:1;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
}

.nav-toggle{
  display:none;
  width:52px;
  height:52px;
  border:none;
  border-radius:18px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.22);
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  transition:transform var(--duration-base) var(--ease-soft), background-color var(--duration-base) var(--ease-soft), border-color var(--duration-base) var(--ease-soft), box-shadow var(--duration-base) var(--ease-soft);
}

.nav-toggle:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.18);
  border-color:rgba(255,255,255,.32);
  box-shadow:0 14px 28px rgba(4,17,60,.18);
}

.nav-toggle span{
  display:block;
  width:20px;
  height:2px;
  border-radius:999px;
  background:#fff;
  transition:transform .25s ease, opacity .25s ease;
}

.nav.is-open .nav-toggle span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

.nav.is-open .nav-toggle span:nth-child(2){
  opacity:0;
}

.nav.is-open .nav-toggle span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

.nav-links{
  list-style:none;
  display:flex;
  gap:14px;
  align-items:center;
}

.nav-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:10px 18px;
  border-radius:999px;
  text-decoration:none;
  font-size:14px;
  font-weight:700;

  color:#fff;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.22);
  box-shadow:0 1px 0 rgba(255,255,255,.05) inset;
  transition:
    transform var(--duration-base) var(--ease-soft),
    background-color var(--duration-base) var(--ease-soft),
    border-color var(--duration-base) var(--ease-soft),
    box-shadow var(--duration-base) var(--ease-soft),
    color var(--duration-base) var(--ease-soft),
    opacity var(--duration-base) var(--ease-soft);
}

.nav-pill:hover{
  background:rgba(255,255,255,.25);
  border-color:rgba(255,255,255,.34);
  box-shadow:0 12px 26px rgba(8,24,78,.18);
  transform:translateY(-1px);
}

.nav-pill:focus-visible{
  outline:none;
  box-shadow:0 0 0 4px rgba(255,255,255,.14), 0 12px 26px rgba(8,24,78,.18);
}

.nav-cta{
  background:#fff;
  color:var(--blue);
  border:1px solid rgba(255,255,255,.55);
  box-shadow:0 14px 34px rgba(5,20,67,.14);
}

.nav-cta:hover{
  background:#fff;
  box-shadow:0 18px 38px rgba(5,20,67,.18);
}

/* ===== HERO ===== */
.hero{
  width:100%;
  padding:80px var(--pad);
  display:grid;
  grid-template-columns:1.1fr 1fr;
  align-items:center;
  gap:60px;
}

.home-page .hero{
  min-height:calc(100svh - 92px);
  padding-top:clamp(40px, 8vh, 88px);
  padding-bottom:clamp(42px, 8vh, 92px);
  background:
    radial-gradient(circle at 18% 18%, rgba(10,60,255,.08), transparent 24%),
    radial-gradient(circle at 82% 22%, rgba(10,60,255,.06), transparent 20%),
    linear-gradient(180deg, #f8faff 0%, #f1f5fb 100%);
}

.hero-text{
  max-width:560px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.hero-text h1{
  font-size:clamp(42px, 4.6vw, 74px);
  line-height:1.03;
  font-weight:900;
  letter-spacing:-.08em;
  margin-bottom:22px;
  color:#13254b;
  max-width:10ch;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:42px;
  padding:0 18px;
  margin-bottom:24px;
  border-radius:999px;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(10,60,255,.08);
  box-shadow:0 14px 30px rgba(10,28,82,.08);
  color:#20345d;
  font-size:14px;
  font-weight:700;
}

.hero-subtitle{
  max-width:17ch;
  margin-bottom:30px;
  color:#42557d;
  font-size:clamp(22px, 1.9vw, 30px);
  line-height:1.5;
}

.hero-actions{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

.btn-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:fit-content;
  background:var(--blue);
  color:#fff;
  text-decoration:none;
  border:none;
  padding:14px 28px;
  border-radius:999px;
  cursor:pointer;
  font-weight:800;
  box-shadow:0 10px 25px rgba(10,60,255,.25);
  transition:
    transform var(--duration-base) var(--ease-soft),
    box-shadow var(--duration-base) var(--ease-soft),
    filter var(--duration-base) var(--ease-soft),
    background-color var(--duration-base) var(--ease-soft),
    opacity var(--duration-base) var(--ease-soft);
}

.btn-secondary:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 40px rgba(10,60,255,.24);
  filter:brightness(1.04);
}

.btn-secondary:focus-visible{
  outline:none;
  box-shadow:0 18px 40px rgba(10,60,255,.24), var(--ring-soft);
}

.about-left .btn-secondary{
  min-height:60px;
  padding:0 34px;
  font-size:1.08rem;
}

.btn-secondary--hero{
  min-height:58px;
  padding:0 30px;
  background:linear-gradient(135deg, #1956ff 0%, #0a3cff 100%);
  box-shadow:0 20px 44px rgba(10,60,255,.26);
  font-size:17px;
}

.btn-secondary--hero:hover{
  transform:translateY(-2px);
  box-shadow:0 26px 52px rgba(10,60,255,.30);
}

.btn-secondary--ghost{
  min-height:58px;
  padding:0 28px;
  background:rgba(255,255,255,.74);
  color:var(--blue);
  border:1.5px solid rgba(10,60,255,.38);
  box-shadow:0 12px 30px rgba(10,28,82,.08);
}

.btn-secondary--ghost:hover{
  transform:translateY(-2px);
  background:#fff;
  color:#0830d1;
  box-shadow:0 18px 38px rgba(10,28,82,.10);
  filter:none;
}

.btn-secondary--ghost:focus-visible{
  box-shadow:0 18px 38px rgba(10,28,82,.10), var(--ring-soft);
}

.hero-img{
  position:relative;
  min-height:520px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px 0 10px;
  overflow:visible;
  box-shadow:none;
  transition:transform var(--duration-slow) var(--ease-premium), box-shadow var(--duration-slow) var(--ease-premium), filter var(--duration-slow) var(--ease-premium);
}

.hero-img img{
  width:100%;
  max-width:820px;
  height:auto;
  display:block;
  position:relative;
  z-index:2;
  filter:drop-shadow(0 34px 48px rgba(11, 25, 67, .16));
  transition:transform .9s var(--ease-premium), filter .9s var(--ease-premium), opacity var(--duration-slow) var(--ease-premium);
}

.hero-img:hover{
  transform:translateY(-4px);
}

.hero-img:hover img{
  transform:scale(1.018);
  filter:drop-shadow(0 38px 54px rgba(11, 25, 67, .20));
}

/* ===== HERO COLLAB ===== */
.hero.hero-collab{
  width:100%;
  min-height:80vh;
  background:#f3f4f8;
  display:flex;
  align-items:center;
  overflow:hidden;
  position:relative;
  padding:40px 0 70px;
}

.hero.hero-collab::before,
.hero.hero-collab::after{
  content:"";
  position:absolute;
  border-radius:50%;
  pointer-events:none;
  z-index:0;
}

.hero.hero-collab::before{
  width:700px;
  height:700px;
  left:-280px;
  top:-180px;
  background:radial-gradient(circle, rgba(255,255,255,.9) 0%, rgba(255,255,255,0) 70%);
}

.hero.hero-collab::after{
  width:650px;
  height:650px;
  right:-220px;
  top:40px;
  background:radial-gradient(circle, rgba(255,255,255,.65) 0%, rgba(255,255,255,0) 70%);
}

.hero-collab-container{
  width:100%;
  max-width:1380px;
  margin:0 auto;
  padding:0 70px;
  display:grid;
  grid-template-columns:1.02fr 1fr;
  align-items:center;
  gap:30px;
  position:relative;
  z-index:2;
}

.hero-collab-left{
  max-width:620px;
  animation:fadeUpHero .9s ease;
}

.hero.hero-collab .hero-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 22px;
  border-radius:999px;
  background:rgba(255,255,255,.75);
  color:#14213d;
  font-size:1.05rem;
  font-weight:500;
  box-shadow:0 8px 26px rgba(0,0,0,.05);
  margin-bottom:28px;
  backdrop-filter:blur(8px);
}

.hero-collab-left h1{
  font-size:clamp(2.35rem, 4vw, 4.05rem);
  line-height:1.08;
  font-weight:800;
  color:#081c3a;
  margin:0 0 26px 0;
  letter-spacing:-2px;
  max-width:12ch;
}

.hero-collab-left h1 span{
  display:block;
}

.hero-collab-left h1 span:last-child{
  white-space:nowrap;
}

.hero-collab-left p{
  font-size:1.45rem;
  line-height:1.45;
  color:#27364f;
  max-width:560px;
  margin:0 0 34px 0;
}

.hero-buttons{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

.btn-hero{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border-radius:999px;
  font-weight:700;
  transition:all .25s ease;
  white-space:nowrap;
}

.btn-hero-primary{
  background:linear-gradient(135deg, #1f4fff, #295dff);
  color:#fff;
  padding:18px 34px;
  font-size:1.15rem;
  min-width:240px;
  box-shadow:0 18px 35px rgba(35,79,255,.28);
}

.btn-hero-primary:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 42px rgba(35,79,255,.34);
}

.btn-hero-secondary{
  background:rgba(255,255,255,.72);
  color:#2450ff;
  border:2px solid rgba(36,80,255,.35);
  padding:16px 30px;
  font-size:1.08rem;
  min-width:220px;
  box-shadow:0 10px 24px rgba(0,0,0,.04);
}

.btn-hero-secondary:hover{
  transform:translateY(-4px);
  border-color:#2450ff;
  background:#ffffff;
}

.hero-collab-right{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  animation:fadeInScaleHero 1s ease;
  position:relative;
}

.hero-devices{
  width:100%;
  max-width:1180px;
  height:auto;
  display:block;
  object-fit:contain;
  filter:drop-shadow(0 28px 35px rgba(0,0,0,.12));
  transform:translateX(64px) scale(1.22);
}

@keyframes fadeUpHero{
  from{
    opacity:0;
    transform:translateY(28px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes fadeInScaleHero{
  from{
    opacity:0;
    transform:scale(.96);
  }
  to{
    opacity:1;
    transform:scale(1);
  }
}

@media (max-width: 1200px){
  .hero-collab-container{
    grid-template-columns:1fr 1fr;
    padding:0 40px;
    gap:20px;
  }

  .hero-devices{
    max-width:720px;
  }

  .hero-collab-left p{
    font-size:1.2rem;
  }
}

@media (max-width: 980px){
  .hero.hero-collab{
    min-height:auto;
    padding:40px 0 60px;
  }

  .hero-collab-container{
    grid-template-columns:1fr;
    padding:0 24px;
    gap:35px;
  }

  .hero-collab-right{
    order:-1;
    justify-content:center;
  }

  .hero-collab-left{
    max-width:100%;
    text-align:center;
    margin:0 auto;
  }

  .hero.hero-collab .hero-badge{
    margin-bottom:20px;
  }

  .hero-collab-left p{
    margin-left:auto;
    margin-right:auto;
    font-size:1.08rem;
  }

  .hero-buttons{
    justify-content:center;
  }

  .hero-devices{
    max-width:92%;
    transform:none;
  }
}

@media (max-width: 640px){
  .hero.hero-collab{
    padding:25px 0 45px;
  }

  .hero-collab-container{
    padding:0 18px;
  }

  .hero.hero-collab .hero-badge{
    font-size:.92rem;
    padding:10px 16px;
  }

  .hero-collab-left h1{
    font-size:clamp(2.3rem, 9vw, 3.4rem);
    letter-spacing:-1.5px;
  }

  .hero-collab-left h1 span:last-child{
    white-space:normal;
  }

  .hero-collab-left p{
    font-size:1rem;
    line-height:1.5;
  }

  .hero-buttons{
    flex-direction:column;
    gap:14px;
  }

  .btn-hero-primary,
  .btn-hero-secondary{
    width:100%;
    max-width:320px;
    min-width:auto;
  }

  .hero-devices{
    max-width:100%;
  }
}

/* ===== ABOUT (ACA SE ARREGLA EL TAMAÑO DE LA IMAGEN) ===== */
.about-split{
  width:100%;
  padding:90px var(--pad);

  display:grid;
  grid-template-columns:1fr 1.1fr;
  align-items:center;
  gap:72px;
}

.home-page .about-split{
  min-height:min(100svh, 920px);
  padding-top:clamp(56px, 10vh, 110px);
  padding-bottom:clamp(56px, 10vh, 110px);
  scroll-snap-align:center;
  align-content:center;
}

/* texto */
.about-left{
  display:flex;
  flex-direction:column;
  gap:18px;
  align-items:flex-end;
  padding-left:42px;
  text-align:right;
}

.about-box{
  max-width:560px;
}

.about-box h2{
  color:#000;
  font-size:clamp(40px, 3.6vw, 62px);
  margin-bottom:18px;
  font-weight:900;
}

.about-box p{
  line-height:1.7;
  font-size:18px;
  color:#111;
  max-width:520px;
}

/* contenedor imagen */
.about-right{
  display:flex;
  justify-content:flex-start;
}

/* ✅ ARREGLO PRINCIPAL: limita tamaño */
.about-split-img{
  width:100%;
  max-width:640px;
  max-height:420px;    /* evita que “crezca” en alto */
  height:auto;
  object-fit:cover;    /* recorta prolijo si hace falta */
  border-radius:28px;  /* bordes redondeados */
  box-shadow:0 18px 45px rgba(0,0,0,.16);
  display:block;
  transition:transform var(--duration-slow) var(--ease-premium), box-shadow var(--duration-slow) var(--ease-premium), filter var(--duration-slow) var(--ease-premium);
}

.about-right:hover .about-split-img{
  transform:translateY(-4px);
  box-shadow:0 24px 54px rgba(0,0,0,.16);
}

/* ===== ABOUT EXTENDIDO ===== */
.about-network{
  padding:0 var(--pad) 90px;
}

.about-network__intro{
  max-width:var(--max);
  margin:0 auto;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:30px;
  align-items:stretch;
}

.about-network__copy,
.partner-card,
.about-network__panel{
  background:#fff;
  border-radius:28px;
  box-shadow:0 18px 45px rgba(0,0,0,.10);
}

.about-network__copy{
  padding:34px;
}

.about-network--home{
  padding-top:10px;
}

.about-network__copy--hero{
  background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(243,247,255,.98));
  border:1px solid rgba(10,60,255,.08);
}

.about-network__eyebrow{
  display:inline-block;
  margin-bottom:14px;
  color:var(--titleBlue);
  font-size:12px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.about-network__copy h2{
  color:var(--titleBlue);
  font-size:clamp(30px, 3vw, 50px);
  line-height:1.05;
  margin-bottom:18px;
  font-weight:900;
}

.about-network__copy p{
  max-width:680px;
  line-height:1.8;
  font-size:17px;
  color:#15203d;
}

.about-network__copy p + p{
  margin-top:16px;
}

.about-network__chips{
  margin-top:26px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.about-network__chips span{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  background:rgba(10,60,255,.07);
  border:1px solid rgba(10,60,255,.10);
  color:#14317f;
  font-size:13px;
  font-weight:800;
}

.about-network__cta{
  margin-top:28px;
}

.partner-card{
  padding:28px;
  display:flex;
  flex-direction:column;
  background:linear-gradient(160deg, #163a19 0%, #2f7b2c 36%, #52cf4c 100%);
  color:#fff;
  position:relative;
  overflow:hidden;
}

.partner-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at top center, rgba(122,255,104,.38), transparent 45%);
}

.partner-card > *{
  position:relative;
  z-index:1;
}

.partner-card__header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  margin-bottom:26px;
}

.partner-card__eyebrow{
  font-size:12px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  opacity:.8;
}

.partner-card__meta{
  display:flex;
  align-items:center;
  gap:16px;
}

.partner-card__count{
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  opacity:.85;
}

.partner-card__count strong{
  font-size:18px;
}

.partner-card__arrows{
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.partner-card__arrows span{
  width:10px;
  height:10px;
  border-top:2px solid rgba(255,255,255,.92);
  border-right:2px solid rgba(255,255,255,.92);
  transform:rotate(45deg);
  animation:partnerArrowPulse 1.8s ease-in-out infinite;
}

.partner-card__arrows span:nth-child(2){
  animation-delay:.15s;
}

.partner-carousel{
  min-height:480px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:20px;
}

.partner-carousel__viewport{
  overflow:hidden;
  border-radius:26px;
  flex:1;
}

.partner-carousel__track{
  display:flex;
  height:100%;
  transition:transform .75s cubic-bezier(.22,.61,.36,1);
}

.partner-brand{
  min-width:100%;
  min-height:100%;
  padding:26px;
  border-radius:26px;
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:28px;
  position:relative;
  overflow:hidden;
}

.partner-brand::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at top right, rgba(255,255,255,.18), transparent 34%);
}

.partner-brand > *{
  position:relative;
  z-index:1;
}

.partner-brand__mark{
  width:112px;
  height:112px;
  border-radius:28px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.20);
  font-size:62px;
  font-weight:900;
  box-shadow:inset 0 0 26px rgba(255,255,255,.12);
}

.partner-brand__label{
  display:block;
  margin-bottom:12px;
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.14em;
  opacity:.82;
}

.partner-brand strong{
  display:block;
  font-size:clamp(30px, 2.6vw, 48px);
  line-height:1.02;
  margin-bottom:14px;
}

.partner-brand p{
  max-width:360px;
  line-height:1.75;
  color:rgba(255,255,255,.9);
  font-weight:700;
}

.partner-brand__link{
  width:fit-content;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:999px;
  text-decoration:none;
  background:#fff;
  color:#111;
  font-weight:900;
}

.partner-brand--glascar{
  background:linear-gradient(160deg, #143918 0%, #2e7b2f 44%, #4dcc48 100%);
}

.partner-brand--aurora{
  background:linear-gradient(160deg, #102553 0%, #2259c9 48%, #67b3ff 100%);
}

.partner-brand--velar{
  background:linear-gradient(160deg, #30114d 0%, #6e2dd8 46%, #aa7cff 100%);
}

.partner-brand--atelier{
  background:linear-gradient(160deg, #1a1a1f 0%, #7a3f18 44%, #e59445 100%);
}

.partner-carousel__dots{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:center;
}

.partner-dot{
  width:12px;
  height:12px;
  border-radius:999px;
  border:none;
  background:rgba(255,255,255,.28);
  cursor:pointer;
  transition:transform .25s ease, background .25s ease, width .25s ease;
}

.partner-dot.is-active{
  width:34px;
  background:#fff;
}

.partner-card:hover .partner-carousel__track{
  transition-duration:.9s;
}

.partner-card--trust{
  background:linear-gradient(160deg, #0b2b8f 0%, #0a3cff 54%, #66a8ff 100%);
}

.partner-card--trust::before{
  background:radial-gradient(circle at top center, rgba(255,255,255,.28), transparent 45%);
}

.partner-card__note{
  padding:16px 18px;
  border-radius:20px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  font-size:14px;
  line-height:1.7;
  color:rgba(255,255,255,.92);
}

@keyframes partnerArrowPulse{
  0%, 100%{
    opacity:.35;
    transform:rotate(45deg) translateX(0);
  }
  50%{
    opacity:1;
    transform:rotate(45deg) translateX(4px);
  }
}

.about-network__details{
  max-width:var(--max);
  margin:30px auto 0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:26px;
}

.about-network__panel{
  padding:34px;
}

.about-network__panel h3{
  color:var(--titleBlue);
  font-size:28px;
  font-weight:900;
  margin-bottom:18px;
}

.about-network__panel--process{
  background:linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
}

.about-value-grid{
  display:grid;
  gap:16px;
}

.about-value-card{
  padding:22px;
  border-radius:22px;
  background:#f7f9ff;
  border:1px solid rgba(10,60,255,.08);
}

.about-value-card strong,
.about-process-step h4{
  display:block;
  color:#10214f;
  font-size:20px;
  font-weight:900;
  line-height:1.2;
}

.about-value-card p,
.about-process-step p{
  margin-top:10px;
  color:#314367;
  line-height:1.75;
}

.about-process-list{
  display:grid;
  gap:14px;
}

.about-process-step{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:16px;
  align-items:start;
  padding:18px;
  border-radius:22px;
  background:#fff;
  border:1px solid rgba(10,60,255,.08);
}

.about-process-step strong{
  width:52px;
  height:52px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg, var(--blue) 0%, var(--blue2) 100%);
  color:#fff;
  font-size:18px;
  font-weight:900;
}

.footer-box{
  padding:70px var(--pad);
  display:grid;
  grid-template-columns:1fr 1fr;
  grid-template-areas:
    "left right"
    "logo logo";
  gap:80px;
  background:#fff;
}

.home-page .footer-box{
  min-height:min(88svh, 900px);
  align-content:start;
  padding-top:clamp(60px, 10vh, 100px);
  padding-bottom:clamp(54px, 8vh, 90px);
}

.footer-left{
  grid-area:left;
}

.footer-right{
  grid-area:right;
}

.footer-logo-wrap{
  grid-area:logo;
  display:flex;
  justify-content:center;
}

.footer-box h3{
  color:var(--titleBlue);
  font-size:28px;
  font-weight:900;
  margin-bottom:18px;
}

/* ===== SERVICES ===== */
.services-box{
  width:100%;
  padding:70px var(--pad);
}

.home-page .services-box{
  min-height:min(100svh, 920px);
  display:grid;
  align-content:center;
  padding-top:clamp(56px, 9vh, 100px);
  padding-bottom:clamp(56px, 9vh, 100px);
  scroll-snap-align:center;
}

.home-page .about-left,
.home-page .about-right,
.home-page .services-box h2,
.home-page .services-carousel,
.home-page .services-btn{
  transition:opacity 1s var(--ease-premium), transform 1s var(--ease-premium), filter 1s var(--ease-premium);
}

.home-page .about-split:not(.is-visible) .about-left{
  opacity:0;
  transform:translateX(-54px);
}

.home-page .about-split:not(.is-visible) .about-right{
  opacity:0;
  transform:translateX(54px);
}

.home-page .about-split.is-visible .about-left,
.home-page .about-split.is-visible .about-right,
.home-page .services-box.is-visible h2,
.home-page .services-box.is-visible .services-carousel,
.home-page .services-box.is-visible .services-btn{
  opacity:1;
  transform:none;
}

.home-page .services-box:not(.is-visible) h2{
  opacity:0;
  transform:translateY(24px);
}

.home-page .services-box:not(.is-visible) .services-carousel{
  opacity:0;
  transform:translateY(40px) scale(.985);
  filter:blur(10px);
}

.home-page .services-box:not(.is-visible) .services-btn{
  opacity:0;
  transform:translateY(28px);
}

.home-page .services-box.is-visible .services-carousel{
  filter:blur(0);
}

.services-box h2{
  text-align:center;
  font-size:clamp(36px, 3.2vw, 52px);
  font-weight:900;
  color:#000;
  margin-bottom:40px;
}

.services-carousel{
  width:100%;
  overflow:hidden;
  padding:10px 0 16px;
  margin:-10px 0 -16px;
}

.service-cards{
  --service-gap:26px;
  --services-loop-width:0px;
  display:flex;
  width:max-content;
  will-change:transform;
  animation:services-marquee 44s linear infinite;
}

.service-card{
  flex:0 0 clamp(260px, 28vw, 420px);
  background:var(--blue);
  color:#fff;
  border-radius:24px;
  padding:28px;
  min-height:300px;
  margin-right:var(--service-gap);
  box-shadow:0 18px 42px rgba(10,60,255,.18);
  border:1px solid rgba(255,255,255,.12);
  position:relative;
  overflow:hidden;
  transition:
    transform var(--duration-base) var(--ease-soft),
    box-shadow var(--duration-base) var(--ease-soft),
    border-color var(--duration-base) var(--ease-soft),
    filter var(--duration-base) var(--ease-soft);
}

.service-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:var(--surface-glow);
  opacity:0;
  pointer-events:none;
  transition:opacity var(--duration-base) var(--ease-soft);
}

.icon{
  height:3cm;
  margin-bottom:20px;
  display:flex;
  align-items:center;
}

.icon img{
  display:block;
  width:3cm;
  height:3cm;
  object-fit:contain;
  filter:brightness(0) saturate(100%) invert(100%) drop-shadow(0 0 10px rgba(255, 255, 255, 0.4)) drop-shadow(0 0 22px rgba(255, 255, 255, 0.18));
}

.icon img[src*="back.y.front.end.png"]{
  width:4.35cm;
  height:4.35cm;
}

.service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 56px rgba(0,0,0,.20);
  border-color:rgba(255,255,255,.24);
}

.service-card:hover::before{
  opacity:1;
}

.service-card h3{
  font-size:clamp(24px, 2vw, 31px);
  line-height:1.16;
  margin-bottom:12px;
}

.service-card p{
  font-size:17px;
  line-height:1.6;
  color:rgba(255,255,255,.94);
}

@keyframes services-marquee{
  from{
    transform:translateX(0);
  }

  to{
    transform:translateX(calc(-1 * var(--services-loop-width)));
  }
}

@media (max-width: 1180px){
  .services-carousel{
    overflow:visible;
    padding:4px 0 10px;
    margin:0;
  }

  .service-cards{
    animation:none;
    width:100%;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
  }

  .service-card{
    margin-right:0;
  }
}

@media (max-width: 760px){
  .services-box{
    padding:52px 18px;
  }

  .services-box h2{
    font-size:clamp(28px, 8vw, 36px);
    margin-bottom:24px;
  }

  .services-carousel{
    padding:0;
  }

  .service-cards{
    display:grid;
    width:100%;
    grid-template-columns:minmax(0, 1fr);
    gap:14px;
  }

  .service-card{
    flex:none;
    width:100%;
    max-width:100%;
    min-height:auto;
    padding:20px 18px;
    border-radius:20px;
    box-shadow:0 12px 28px rgba(10,60,255,.14);
  }

  .icon{
    height:56px;
    margin-bottom:14px;
  }

  .icon img{
    width:56px;
    height:56px;
  }

  .icon img[src*="back.y.front.end.png"]{
    width:78px;
    height:78px;
  }

  .service-card h3{
    font-size:clamp(20px, 5.8vw, 24px);
    line-height:1.22;
    margin-bottom:10px;
  }

  .service-card p{
    font-size:15px;
    line-height:1.5;
  }

  .service-card:hover{
    transform:none;
    box-shadow:0 12px 28px rgba(10,60,255,.14);
  }

  .services-btn{
    width:100%;
    max-width:340px;
    min-height:54px;
    margin-top:22px;
    padding:0 24px;
    font-size:1rem;
  }
}

@media (max-width: 480px){
  .services-box{
    padding:46px 16px;
  }

  .service-card{
    padding:18px 16px;
  }

  .service-cards{
    gap:12px;
  }
}

.services-btn{
  margin:30px auto 0;
  display:flex;
  align-items:center;
  justify-content:center;
  width:fit-content;
  background:var(--blue);
  color:#fff;
  text-decoration:none;
  border:none;
  min-height:60px;
  padding:0 34px;
  border-radius:999px;
  cursor:pointer;
  font-size:1.08rem;
  font-weight:900;
  box-shadow:0 10px 28px rgba(10,60,255,.18);
  transition:
    transform var(--duration-base) var(--ease-soft),
    box-shadow var(--duration-base) var(--ease-soft),
    filter var(--duration-base) var(--ease-soft),
    background-color var(--duration-base) var(--ease-soft);
}

.services-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 38px rgba(10,60,255,.22);
  filter:brightness(1.04);
}

.services-btn:focus-visible{
  outline:none;
  box-shadow:0 18px 38px rgba(10,60,255,.22), var(--ring-soft);
}

@media (prefers-reduced-motion: reduce){
  html{
    scroll-behavior:auto;
  }

  .home-page{
    scroll-snap-type:none;
  }

  .home-page [data-scroll-section]{
    transition:none;
  }

  .home-page [data-scroll-section]::before{
    display:none;
  }

  .home-page [data-scroll-section]:not(.is-visible){
    opacity:1;
    transform:none;
  }

  .service-cards{
    animation:none;
    width:100%;
    flex-wrap:wrap;
  }

  .service-card{
    flex:1 1 260px;
  }

  .nav,
  .nav-pill,
  .btn-secondary,
  .services-btn,
  .service-card,
  .hero-img,
  .about-split-img,
  .admin-modal,
  .admin-modal__backdrop,
  .admin-modal__dialog,
  .admin-modal__close,
  .admin-login-form__field input,
  .admin-login-form__submit,
  .info-link,
  .info-service-card,
  .info-module-card,
  .info-step,
  .info-benefit{
    transition:none !important;
  }

  .info-page.js-enhanced [data-reveal-block]:not(.is-visible){
    filter:none;
  }
}

/* ===== QUOTE ===== */
.quote{
  padding:90px var(--pad);
  background:var(--blue2);
  color:#fff;
  text-align:center;
}

.home-page .quote{
  min-height:min(62svh, 560px);
  display:grid;
  place-items:center;
}

.quote p{
  max-width:820px;
  margin:auto;
  font-size:20px;
  line-height:1.6;
  font-weight:800;
}

.footer-item{
  margin:10px 0;
  display:flex;
  gap:10px;
  font-size:13px;
}

.footer-label{ font-weight:900; }
.footer-value{ font-weight:500; }

.footer-logo{
  width:170px;
  height:auto;
  margin-top:8px;
  display:block;
}

.footer-block{
  margin:16px 0 22px;
}

.footer-mini{
  color:var(--titleBlue);
  font-size:12px;
  font-weight:900;
  margin-bottom:6px;
}

.footer-text{
  color:#111;
  font-size:13px;
}

.admin-modal{
  position:fixed;
  inset:0;
  z-index:1000;
  display:grid;
  place-items:center;
  padding:22px;
  opacity:1;
  transition:opacity var(--duration-base) var(--ease-soft);
}

.admin-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(6,18,54,.58);
  backdrop-filter:blur(8px);
  transition:opacity var(--duration-base) var(--ease-soft);
}

.admin-modal__dialog{
  position:relative;
  z-index:1;
  width:min(100%, 460px);
  padding:30px;
  border-radius:30px;
  background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(243,247,255,.98));
  box-shadow:0 30px 80px rgba(0,0,0,.28);
  border:1px solid rgba(255,255,255,.8);
  transform:translateY(0) scale(1);
  transition:transform var(--duration-base) var(--ease-premium), opacity var(--duration-base) var(--ease-soft), box-shadow var(--duration-base) var(--ease-soft);
}

.admin-modal__close{
  position:absolute;
  top:14px;
  right:14px;
  width:40px;
  height:40px;
  border:none;
  border-radius:999px;
  background:rgba(10,60,255,.08);
  color:var(--blue);
  font-size:26px;
  cursor:pointer;
  transition:transform var(--duration-base) var(--ease-soft), background-color var(--duration-base) var(--ease-soft), box-shadow var(--duration-base) var(--ease-soft);
}

.admin-modal__close:hover{
  transform:translateY(-1px) scale(1.02);
  background:rgba(10,60,255,.12);
  box-shadow:0 12px 22px rgba(10,60,255,.14);
}

.admin-modal__eyebrow{
  display:inline-block;
  margin-bottom:12px;
  color:var(--titleBlue);
  font-size:12px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.admin-modal__header h2{
  font-size:clamp(30px, 4vw, 40px);
  line-height:1.05;
  margin-bottom:10px;
  color:#0d1838;
}

.admin-modal__header p{
  color:#50607f;
  line-height:1.6;
}

.admin-login-form{
  display:grid;
  gap:14px;
  margin-top:24px;
}

.admin-login-form__field{
  display:grid;
  gap:8px;
}

.admin-login-form__field span{
  font-size:14px;
  font-weight:800;
  color:#0d1838;
}

.admin-login-form__field input{
  width:100%;
  border:1px solid rgba(15,37,84,.14);
  border-radius:16px;
  padding:14px 16px;
  font-size:15px;
  background:#fff;
  color:#0d1838;
  transition:border-color var(--duration-base) var(--ease-soft), box-shadow var(--duration-base) var(--ease-soft), transform var(--duration-base) var(--ease-soft), background-color var(--duration-base) var(--ease-soft);
}

.admin-login-form__field input:focus{
  outline:none;
  border-color:rgba(10,60,255,.45);
  box-shadow:var(--ring-soft);
  background:#fbfcff;
  transform:translateY(-1px);
}

.admin-login-form__submit{
  margin-top:6px;
  min-height:52px;
  border:none;
  border-radius:999px;
  background:linear-gradient(135deg, var(--blue) 0%, var(--blue2) 100%);
  color:#fff;
  font-size:15px;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 18px 40px rgba(10,60,255,.26);
  transition:transform var(--duration-base) var(--ease-soft), box-shadow var(--duration-base) var(--ease-soft), filter var(--duration-base) var(--ease-soft), opacity var(--duration-base) var(--ease-soft);
}

.admin-login-form__submit:hover:not(:disabled){
  transform:translateY(-2px);
  box-shadow:0 24px 48px rgba(10,60,255,.28);
  filter:brightness(1.03);
}

.admin-login-form__submit:disabled{
  opacity:.7;
  cursor:progress;
}

.admin-login-status{
  margin-top:18px;
  padding:16px 18px;
  border-radius:18px;
  border:1px solid transparent;
}

.admin-login-status strong{
  display:block;
  margin-bottom:6px;
}

.admin-login-status.is-success{
  background:rgba(17,122,78,.08);
  border-color:rgba(17,122,78,.18);
  color:#117a4e;
}

.admin-login-status.is-error{
  background:rgba(180,35,24,.08);
  border-color:rgba(180,35,24,.18);
  color:#b42318;
}

.is-hidden{
  display:none !important;
}

.admin-modal:not(.is-hidden).is-entering .admin-modal__backdrop,
.admin-modal:not(.is-hidden).is-entering .admin-modal__dialog{
  opacity:0;
}

.admin-modal:not(.is-hidden).is-entering .admin-modal__dialog{
  transform:translateY(18px) scale(.985);
}

.info-page{
  background:
    radial-gradient(circle at top left, rgba(10,60,255,.12), transparent 28%),
    linear-gradient(180deg, #f5f8ff 0%, #eef2fb 100%);
}

.info-wrap{
  width:min(100%, var(--max));
  margin:0 auto;
}

.info-section{
  padding:34px var(--pad) 90px;
}

.info-section--soft{
  background:linear-gradient(180deg, rgba(255,255,255,.66), rgba(235,241,255,.92));
}

.info-section--dark{
  background:linear-gradient(135deg, #07163f 0%, #0d2d8d 58%, #0a3cff 100%);
  color:#fff;
}

.info-hero{
  padding:78px var(--pad) 40px;
}

.info-hero__grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:28px;
  align-items:stretch;
}

.info-hero__grid--cinematic{
  perspective:1400px;
}

.info-hero__copy,
.info-highlight,
.info-service-card,
.info-module-card,
.info-step,
.info-benefit,
.info-cta{
  border-radius:28px;
  box-shadow:0 20px 50px rgba(7,21,61,.10);
}

.info-hero__copy{
  padding:40px;
  background:linear-gradient(180deg, rgba(255,255,255,.97), rgba(246,249,255,.95));
  border:1px solid rgba(16,53,147,.10);
}

.info-kicker{
  display:inline-block;
  margin-bottom:14px;
  color:var(--titleBlue);
  font-size:12px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.info-hero__copy h1,
.info-head h2,
.info-process__intro h2,
.info-cta h2{
  color:#10214f;
  font-size:clamp(34px, 4vw, 58px);
  line-height:1.03;
  font-weight:900;
}

.info-head h2,
.info-process__intro h2,
.info-cta h2{
  font-size:clamp(30px, 3vw, 46px);
}

.info-hero__copy p,
.info-head p,
.info-process__intro p,
.info-cta p{
  margin-top:18px;
  max-width:760px;
  color:#25365f;
  font-size:17px;
  line-height:1.8;
}

.info-actions{
  margin-top:28px;
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  align-items:center;
}

.info-actions--stack{
  align-items:flex-start;
  justify-content:center;
}

.info-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 18px;
  border-radius:999px;
  text-decoration:none;
  color:#0b2b8f;
  font-weight:900;
  background:rgba(10,60,255,.08);
  border:1px solid rgba(10,60,255,.12);
  transition:
    transform var(--duration-base) var(--ease-soft),
    box-shadow var(--duration-base) var(--ease-soft),
    background-color var(--duration-base) var(--ease-soft),
    border-color var(--duration-base) var(--ease-soft),
    color var(--duration-base) var(--ease-soft);
}

.info-link:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow-soft);
  background:rgba(10,60,255,.11);
  border-color:rgba(10,60,255,.16);
}

.info-highlight{
  padding:32px;
  color:#fff;
  background:linear-gradient(155deg, #0a3cff 0%, #092eaf 52%, #05183d 100%);
  position:relative;
  overflow:hidden;
}

.info-highlight::before{
  content:"";
  position:absolute;
  inset:auto -60px -90px auto;
  width:220px;
  height:220px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.22), transparent 68%);
}

.info-highlight > *{
  position:relative;
  z-index:1;
}

.info-page.js-enhanced [data-reveal-block]{
  transition:opacity .95s var(--ease-premium), transform .95s var(--ease-premium), box-shadow .95s var(--ease-premium), filter .95s var(--ease-premium);
  will-change:transform, opacity;
}

.info-page.js-enhanced [data-reveal-block="left"]{
  transform-origin:left center;
}

.info-page.js-enhanced [data-reveal-block="right"]{
  transform-origin:right center;
}

.info-page.js-enhanced [data-reveal-block="service-card"]{
  transform-origin:center bottom;
  transition-delay:var(--reveal-delay, 0s);
}

.info-page.js-enhanced [data-reveal-block]:not(.is-visible){
  opacity:0;
  filter:blur(8px);
}

.info-page.js-enhanced [data-reveal-block="left"]:not(.is-visible){
  transform:translate3d(-72px, 0, 0) scale(.97);
}

.info-page.js-enhanced [data-reveal-block="right"]:not(.is-visible){
  transform:translate3d(72px, 0, 0) scale(.97);
}

.info-page.js-enhanced [data-reveal-block="service-card"]:not(.is-visible){
  transform:translate3d(0, 42px, 0) scale(.965);
}

.info-page.js-enhanced [data-reveal-block].is-visible{
  opacity:1;
  transform:translate3d(0, 0, 0) scale(1);
  filter:blur(0);
}

.info-page.js-enhanced .info-hero__copy.is-visible{
  box-shadow:0 28px 70px rgba(7,21,61,.14);
}

.info-page.js-enhanced .partner-card.is-visible{
  box-shadow:0 30px 74px rgba(7,21,61,.22);
}

.info-page.js-enhanced .info-service-card.is-visible{
  box-shadow:0 26px 68px rgba(7,21,61,.14);
}

.info-highlight__eyebrow{
  display:inline-block;
  margin-bottom:14px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(255,255,255,.7);
}

.info-highlight h2{
  font-size:28px;
  line-height:1.18;
  margin-bottom:22px;
}

.info-highlight__list{
  list-style:none;
  display:grid;
  gap:14px;
}

.info-highlight__list li{
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  line-height:1.6;
}

.info-head{
  max-width:840px;
  margin-bottom:28px;
}

.info-head--light h2,
.info-head--light p,
.info-head--light .info-kicker{
  color:#fff;
}

.info-service-grid,
.info-module-grid,
.info-process__steps,
.info-benefits{
  display:grid;
  gap:22px;
}

.info-service-grid{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}

.info-module-grid{
  grid-template-columns:repeat(4, minmax(0, 1fr));
}

.info-service-card,
.info-module-card,
.info-step,
.info-benefit{
  background:#fff;
  padding:26px;
  border:1px solid rgba(16,53,147,.09);
  transition:transform var(--duration-base) var(--ease-soft), box-shadow var(--duration-base) var(--ease-soft), border-color var(--duration-base) var(--ease-soft), background-color var(--duration-base) var(--ease-soft);
}

.info-service-card:hover,
.info-module-card:hover,
.info-step:hover,
.info-benefit:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-hover);
  border-color:rgba(16,53,147,.14);
}

.info-service-card__tag{
  display:inline-flex;
  margin-bottom:14px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(10,60,255,.08);
  color:#0a3cff;
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.info-service-card h3,
.info-module-card h3,
.info-step h3,
.info-benefit h3{
  color:#10214f;
  font-size:24px;
  line-height:1.2;
  margin-bottom:12px;
}

.info-service-card p,
.info-module-card p,
.info-step p,
.info-benefit p{
  color:#314367;
  line-height:1.75;
}

.info-service-card ul{
  margin-top:16px;
  padding-left:18px;
  color:#10214f;
  display:grid;
  gap:10px;
}

.info-process{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:24px;
  align-items:start;
}

.info-process__steps{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}

.info-step strong{
  display:inline-flex;
  margin-bottom:16px;
  color:#0a3cff;
  font-size:28px;
  font-weight:900;
}

.info-benefits{
  grid-template-columns:repeat(4, minmax(0, 1fr));
}

.info-section--dark .info-benefit{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:none;
}

.info-section--dark .info-benefit h3,
.info-section--dark .info-benefit p{
  color:#fff;
}

.info-cta{
  padding:34px;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:24px;
  align-items:center;
  background:linear-gradient(145deg, #ffffff 0%, #eef4ff 100%);
  border:1px solid rgba(16,53,147,.10);
}

a,
button,
input,
textarea,
select{
  -webkit-tap-highlight-color:transparent;
}

input,
textarea,
select{
  transition:border-color var(--duration-base) var(--ease-soft), box-shadow var(--duration-base) var(--ease-soft), background-color var(--duration-base) var(--ease-soft), transform var(--duration-base) var(--ease-soft);
}

input:focus,
textarea:focus,
select:focus{
  outline:none;
  box-shadow:var(--ring-soft);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px){
  .home-page{
    scroll-snap-type:y proximity;
    scroll-padding-top:84px;
  }

  .narrative-page{
    scroll-snap-type:y proximity;
    scroll-padding-top:20px;
  }

  .nav{
    position:relative;
    flex-wrap:wrap;
    align-items:center;
    justify-content:space-between;
  }

  .nav-toggle{
    display:inline-flex;
  }

  .nav-center{
    display:flex;
    flex-direction:column;
    width:100%;
    padding:16px 0 4px;
    gap:16px;
    order:3;
    max-height:0;
    opacity:0;
    overflow:hidden;
    pointer-events:none;
    transform:translateY(-12px);
    transition:max-height .38s cubic-bezier(.22, 1, .36, 1), opacity .28s ease, transform .38s cubic-bezier(.22, 1, .36, 1), padding .38s cubic-bezier(.22, 1, .36, 1);
  }

  .nav.is-open .nav-center{
    max-height:420px;
    opacity:1;
    pointer-events:auto;
    transform:translateY(0);
    padding:16px 0 10px;
  }

  .nav-links{
    width:100%;
    flex-direction:column;
    justify-content:center;
    gap:12px;
  }

  .nav-links li{
    width:100%;
  }

  .nav-links a,
  .nav-center > .nav-cta{
    width:100%;
  }

  .logo{
    display:flex;
    align-items:center;
  }

  .logo img{
    width:74px;
  }

  .hero{
    grid-template-columns:1fr;
    gap:30px;
    padding:50px 18px;
  }

  .home-page .hero,
  .home-page .about-split,
  .home-page .services-box,
  .home-page .quote,
  .home-page .footer-box{
    min-height:auto;
    scroll-snap-align:none;
    scroll-snap-stop:normal;
  }

  .narrative-page [data-scroll-section]{
    scroll-snap-align:start;
    scroll-snap-stop:normal;
  }

  .about-split{
    grid-template-columns:1fr;
    padding:60px 18px;
  }

  .about-network{
    padding:0 18px 70px;
  }

  .about-network__intro,
  .about-network__details{
    grid-template-columns:1fr;
  }

  .partner-card__header{
    align-items:flex-start;
    flex-direction:column;
  }

  .partner-carousel{
    min-height:420px;
  }

  .partner-brand{
    min-height:420px;
  }

  .partner-brand strong{
    font-size:34px;
  }

  .about-right{
    justify-content:center;
  }

  .about-split-img{
    max-width:560px;
    max-height:360px;
  }

  .about-split-img--illustration{
    max-width:100%;
    height:auto;
  }

  .about-network__chips{
    gap:10px;
  }

  .about-network__chips span{
    width:100%;
    justify-content:center;
    text-align:center;
  }

  .about-process-step{
    grid-template-columns:1fr;
  }

  .footer-box{
    grid-template-columns:1fr;
    grid-template-areas:
      "left"
      "right"
      "logo";
    gap:40px;
  }

  .footer-logo-wrap{
    justify-content:flex-start;
  }

  .home-page [data-scroll-section]:not(.is-visible){
    opacity:1;
    transform:none;
  }

  .home-page [data-scroll-section]::before{
    display:none;
  }

  .admin-modal__dialog{
    padding:24px 20px;
    border-radius:24px;
  }

  .info-hero{
    padding:56px 18px 24px;
  }

  .info-section{
    padding:24px 18px 70px;
  }

  .info-hero__grid,
  .info-process,
  .info-cta,
  .info-service-grid,
  .info-module-grid,
  .info-process__steps,
  .info-benefits{
    grid-template-columns:1fr;
  }

  .info-hero__copy,
  .info-highlight,
  .info-service-card,
  .info-module-card,
  .info-step,
  .info-benefit,
  .info-cta{
    padding:24px;
    border-radius:24px;
  }

  .info-hero__copy h1,
  .info-head h2,
  .info-process__intro h2,
  .info-cta h2{
    font-size:34px;
  }

  .info-service-card h3,
  .info-module-card h3,
  .info-step h3,
  .info-benefit h3{
    font-size:22px;
  }
}
