/* ==========================================================================
   SEO Fixing — Design System
   Display: Space Grotesk | Body: Inter | Data/Mono: IBM Plex Mono
   ========================================================================== */

:root{
  --ink:#0B1220;
  --ink-2:#121C33;
  --bg:#F5F7FB;
  --card:#FFFFFF;
  --blue:#3654FF;
  --blue-dark:#1F36B8;
  --blue-soft:#E9EDFF;
  --green:#00C48C;
  --green-soft:#DFFBF1;
  --amber:#FFB020;
  --text:#0B1220;
  --text-mute:#5B6472;
  --line:#E4E8F1;
  --line-dark:#243055;
  --radius-lg:22px;
  --radius-md:14px;
  --radius-sm:8px;
  --shadow: 0 20px 50px -18px rgba(11,18,32,0.18);
  --shadow-sm: 0 10px 24px -14px rgba(11,18,32,0.16);
  --container: 1180px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:'Inter',sans-serif;
  color:var(--text);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
h1,h2,h3,h4{ font-family:'Space Grotesk',sans-serif; margin:0; line-height:1.08; letter-spacing:-0.01em; }
p{ margin:0; }
.mono{ font-family:'IBM Plex Mono',monospace; }

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

:focus-visible{ outline:2px solid var(--blue); outline-offset:3px; border-radius:4px; }

.container{ max-width:var(--container); margin:0 auto; padding:0 24px; }
.section{ padding:104px 0; }
.section--tight{ padding:72px 0; }
@media (max-width:768px){
  .section{ padding:64px 0; }
  .section--tight{ padding:48px 0; }
}

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:'IBM Plex Mono',monospace; font-size:12.5px; letter-spacing:.08em; text-transform:uppercase;
  color:var(--blue); background:var(--blue-soft); border-radius:999px; padding:7px 14px 7px 10px;
  font-weight:600;
}
.eyebrow .pin{ width:14px; height:14px; }
.eyebrow--dark{ background:rgba(255,255,255,0.08); color:#9DB2FF; }

.section-head{ max-width:640px; margin-bottom:52px; }
.section-head h2{ font-size:clamp(28px,3.6vw,42px); margin-top:14px; }
.section-head p{ margin-top:16px; font-size:17px; color:var(--text-mute); line-height:1.6; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:15px 26px; border-radius:999px; font-weight:600; font-size:15px;
  border:1px solid transparent; transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space:nowrap;
}
.btn:active{ transform:translateY(1px); }
.btn-primary{ background:var(--blue); color:#fff; box-shadow:0 14px 30px -12px rgba(54,84,255,.55); }
.btn-primary:hover{ background:var(--blue-dark); box-shadow:0 18px 34px -12px rgba(54,84,255,.65); transform:translateY(-2px); }
.btn-ghost{ background:transparent; color:var(--ink); border-color:var(--line); }
.btn-ghost:hover{ border-color:var(--ink); transform:translateY(-2px); }
.btn-ghost-dark{ background:transparent; color:#fff; border-color:rgba(255,255,255,.28); }
.btn-ghost-dark:hover{ border-color:#fff; transform:translateY(-2px); }
.btn-white{ background:#fff; color:var(--blue-dark); box-shadow:0 14px 30px -12px rgba(0,0,0,.35); }
.btn-white:hover{ transform:translateY(-2px); }
.btn-block{ width:100%; }
.btn-sm{ padding:11px 18px; font-size:14px; }

/* ---------- Nav ---------- */
.nav{
  position:sticky; top:0; z-index:100;
  background:rgba(245,247,251,0.82); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.nav__inner{ display:flex; align-items:center; justify-content:space-between; padding:16px 24px; max-width:var(--container); margin:0 auto; }
.brand{ display:flex; align-items:center; gap:10px; font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:19px; }
.brand__mark{ width:34px; height:34px; border-radius:9px; background:linear-gradient(145deg,var(--blue),#6E86FF); display:flex; align-items:center; justify-content:center; box-shadow:0 8px 16px -6px rgba(54,84,255,.55); }
.brand__mark svg{ width:18px; height:18px; }
.nav__links{ display:flex; align-items:center; gap:34px; }
.nav__links a{ font-size:14.5px; font-weight:500; color:var(--text); position:relative; padding:4px 0; }
.nav__links a::after{ content:""; position:absolute; left:0; bottom:-2px; width:0; height:2px; background:var(--blue); transition:width .25s ease; }
.nav__links a:hover::after{ width:100%; }
.nav__cta{ display:flex; align-items:center; gap:14px; }
.nav__phone{ font-family:'IBM Plex Mono',monospace; font-size:13.5px; color:var(--text-mute); display:flex; align-items:center; gap:6px; }
.nav__toggle{ display:none; background:none; border:none; padding:6px; }
.nav__toggle span{ display:block; width:22px; height:2px; background:var(--ink); margin:5px 0; border-radius:2px; transition:.25s; }

@media (max-width:960px){
  .nav__links{ position:fixed; top:0; right:0; height:100vh; width:min(320px,85vw); background:#fff; flex-direction:column; align-items:flex-start; padding:100px 30px 30px; gap:24px; box-shadow:-20px 0 40px rgba(0,0,0,.1); transform:translateX(100%); transition:transform .35s ease; }
  .nav__links.open{ transform:translateX(0); }
  .nav__phone{ display:none; }
  .nav__toggle{ display:block; z-index:110; }
  .nav__toggle.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
  .nav__toggle.open span:nth-child(2){ opacity:0; }
  .nav__toggle.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
}

/* ---------- Hero ---------- */
.hero{ position:relative; padding:76px 0 40px; overflow:hidden; }
.hero__glow{ position:absolute; top:-180px; right:-180px; width:560px; height:560px; background:radial-gradient(circle,rgba(54,84,255,.22),transparent 65%); filter:blur(10px); z-index:0; }
.hero__grid{ display:grid; grid-template-columns:1.05fr 0.95fr; gap:56px; align-items:center; position:relative; z-index:1; }
.hero h1{ font-size:clamp(34px,4.6vw,60px); }
.hero h1 em{ font-style:normal; color:var(--blue); position:relative; }
.hero p.lead{ margin-top:22px; font-size:18px; color:var(--text-mute); max-width:520px; line-height:1.65; }
.hero__actions{ display:flex; gap:14px; margin-top:32px; flex-wrap:wrap; }
.hero__trust{ display:flex; align-items:center; gap:22px; margin-top:44px; flex-wrap:wrap; }
.hero__stars{ display:flex; align-items:center; gap:8px; font-size:14px; color:var(--text-mute); }
.hero__stars .stars{ color:var(--amber); letter-spacing:2px; }
.hero__avatars{ display:flex; align-items:center; }
.hero__avatars span{ width:32px; height:32px; border-radius:50%; border:2px solid var(--bg); margin-left:-10px; background:linear-gradient(145deg,#B9C6FF,var(--blue)); }
.hero__avatars span:first-child{ margin-left:0; }

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

/* ---- Rank card (signature element) ---- */
.rankcard{ background:var(--ink); border-radius:26px; padding:26px; box-shadow:var(--shadow); position:relative; }
.rankcard__bar{ display:flex; align-items:center; gap:8px; background:rgba(255,255,255,.06); border-radius:999px; padding:10px 16px; margin-bottom:20px; }
.rankcard__bar span.dot{ width:7px; height:7px; border-radius:50%; background:rgba(255,255,255,.35); }
.rankcard__bar input{ font-family:'IBM Plex Mono',monospace; color:#c9d2f2; font-size:12.5px; background:none; border:none; }
.rankcard__map{ height:150px; border-radius:16px; background:
    linear-gradient(180deg, rgba(54,84,255,.18), rgba(54,84,255,.02)),
    repeating-linear-gradient(0deg, rgba(255,255,255,.05) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 34px);
  background-color:#0F1830; margin-bottom:18px; position:relative; overflow:hidden;
}
.rankcard__map .pinwrap{ position:absolute; }
.rankcard__map .pinwrap.p1{ top:30%; left:24%; } 
.rankcard__map .pinwrap.p2{ top:56%; left:52%; }
.rankcard__map .pinwrap.p3{ top:22%; left:70%; }
.pin{ display:flex; align-items:center; justify-content:center; width:26px; height:26px; border-radius:50% 50% 50% 0; transform:rotate(-45deg); background:var(--text-mute); box-shadow:0 6px 14px rgba(0,0,0,.35); }
.pin span{ transform:rotate(45deg); font-family:'IBM Plex Mono',monospace; font-size:10px; color:#fff; font-weight:700; }
.pin.pin--lead{ background:var(--green); animation:pinPulse 2.4s ease-in-out infinite; }
@keyframes pinPulse{ 0%,100%{ box-shadow:0 6px 14px rgba(0,0,0,.35), 0 0 0 0 rgba(0,196,140,.5); } 50%{ box-shadow:0 6px 14px rgba(0,0,0,.35), 0 0 0 10px rgba(0,196,140,0); } }

.rankcard__list{ display:flex; flex-direction:column; gap:10px; }
.rank-row{ display:flex; align-items:center; gap:12px; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.06); border-radius:12px; padding:10px 12px; transition:transform .6s cubic-bezier(.4,0,.2,1); }
.rank-row .badge{ font-family:'IBM Plex Mono',monospace; font-size:11px; width:22px; height:22px; border-radius:6px; background:rgba(255,255,255,.08); color:#c9d2f2; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.rank-row .info{ flex:1; min-width:0; }
.rank-row .name{ color:#fff; font-size:13.5px; font-weight:600; }
.rank-row .meta{ color:#8B95B8; font-size:11.5px; margin-top:1px; }
.rank-row .stars{ color:var(--amber); font-size:11px; letter-spacing:1px; }
.rank-row.lead{ background:linear-gradient(90deg, rgba(0,196,140,.16), rgba(0,196,140,.04)); border-color:rgba(0,196,140,.35); order:-1; }
.rank-row.lead .badge{ background:var(--green); color:#052; color:#04241a; }
.rankcard__caption{ display:flex; justify-content:space-between; align-items:center; margin-top:18px; padding-top:16px; border-top:1px dashed rgba(255,255,255,.12); }
.rankcard__caption .up{ color:var(--green); font-family:'IBM Plex Mono',monospace; font-size:13px; font-weight:600; }
.rankcard__caption .label{ color:#8B95B8; font-size:12px; }

/* ---------- Logo / trust strip ---------- */
.trust-strip{ padding:36px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.trust-strip__inner{ display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap; }
.trust-strip p{ font-size:12.5px; text-transform:uppercase; letter-spacing:.08em; color:var(--text-mute); font-weight:600; white-space:nowrap; }
.trust-strip__logos{ display:flex; gap:36px; flex-wrap:wrap; align-items:center; opacity:.8; }
.trust-strip__logos span{ font-family:'Space Grotesk',sans-serif; font-weight:700; color:var(--text-mute); font-size:16px; letter-spacing:.02em; }

/* ---------- Stats ---------- */
.stats{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden; }
.stat{ background:var(--card); padding:34px 24px; text-align:center; }
.stat .num{ font-family:'Space Grotesk',sans-serif; font-size:clamp(30px,3.4vw,44px); font-weight:700; color:var(--blue); }
.stat .lbl{ margin-top:6px; font-size:13.5px; color:var(--text-mute); }
@media (max-width:768px){ .stats{ grid-template-columns:repeat(2,1fr); } }

/* ---------- Service Cards ---------- */
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.grid-2{ display:grid; grid-template-columns:repeat(2,1fr); gap:26px; }
.grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
@media (max-width:960px){ .grid-3{ grid-template-columns:1fr 1fr; } .grid-4{ grid-template-columns:1fr 1fr; } }
@media (max-width:640px){ .grid-3, .grid-2, .grid-4{ grid-template-columns:1fr; } }

.svc-card--sm{ padding:26px 22px; }
.svc-card--sm .svc-card__icon{ width:44px; height:44px; margin-bottom:16px; }
.svc-card--sm .svc-card__icon svg{ width:21px; height:21px; }
.svc-card--sm h3{ font-size:16.5px; margin-bottom:8px; }
.svc-card--sm p{ font-size:13.5px; }

.svc-card{
  background:var(--card); border:1px solid var(--line); border-radius:var(--radius-lg); padding:32px 28px;
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease; position:relative; overflow:hidden;
}
.svc-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-sm); border-color:transparent; }
.svc-card__icon{ width:52px; height:52px; border-radius:14px; display:flex; align-items:center; justify-content:center; background:var(--blue-soft); margin-bottom:22px; }
.svc-card__icon svg{ width:26px; height:26px; }
.svc-card h3{ font-size:20px; margin-bottom:10px; }
.svc-card p{ color:var(--text-mute); font-size:14.5px; line-height:1.6; }
.svc-card__link{ display:inline-flex; align-items:center; gap:6px; margin-top:18px; font-size:13.5px; font-weight:600; color:var(--blue); }
.svc-card__tag{ position:absolute; top:24px; right:24px; font-family:'IBM Plex Mono',monospace; font-size:11px; color:var(--text-mute); }

/* ---------- Process ---------- */
.process{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; counter-reset:step; }
@media (max-width:900px){ .process{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .process{ grid-template-columns:1fr; } }
.step{ position:relative; padding-top:8px; }
.step .pinbadge{ width:40px; height:40px; border-radius:50% 50% 50% 0; transform:rotate(-45deg); background:var(--ink); display:flex; align-items:center; justify-content:center; margin-bottom:22px; }
.step .pinbadge span{ transform:rotate(45deg); font-family:'IBM Plex Mono',monospace; color:#fff; font-weight:700; font-size:13px; }
.step h4{ font-size:17px; margin-bottom:8px; }
.step p{ font-size:14px; color:var(--text-mute); line-height:1.6; }
.step:not(:last-child)::after{ content:""; position:absolute; top:20px; left:56px; width:calc(100% - 40px); height:1px; background:repeating-linear-gradient(90deg,var(--line) 0 6px, transparent 6px 12px); }
@media (max-width:900px){ .step::after{ display:none; } }

/* ---------- Dark band (GMB feature) ---------- */
.band-dark{ background:var(--ink); color:#fff; border-radius:32px; overflow:hidden; position:relative; }
.band-dark .container{ padding-top:80px; padding-bottom:80px; }
.band-dark h2{ color:#fff; }
.band-dark p{ color:#A9B2CE; }
.band-dark .grid-2{ align-items:center; gap:60px; }
.checklist{ display:flex; flex-direction:column; gap:16px; margin-top:28px; }
.checklist li{ display:flex; gap:12px; align-items:flex-start; font-size:15px; color:#DCE1F5; }
.checklist svg{ flex-shrink:0; margin-top:3px; width:18px; height:18px; color:var(--green); }

.gbp-mock{ background:#0F1830; border:1px solid var(--line-dark); border-radius:20px; padding:22px; }
.gbp-mock__top{ display:flex; gap:14px; }
.gbp-mock__logo{ width:56px; height:56px; border-radius:12px; background:linear-gradient(145deg,var(--blue),#7C90FF); flex-shrink:0; }
.gbp-mock__title{ font-weight:700; color:#fff; font-size:16px; }
.gbp-mock__cat{ font-size:12.5px; color:#8B95B8; margin-top:3px; }
.gbp-mock__stars{ color:var(--amber); font-size:12.5px; margin-top:6px; }
.gbp-mock__row{ display:flex; justify-content:space-between; margin-top:18px; padding-top:16px; border-top:1px solid rgba(255,255,255,.08); font-size:12.5px; color:#8B95B8; }
.gbp-mock__row b{ color:#fff; font-family:'IBM Plex Mono',monospace; font-weight:600; }
.gbp-mock__bars{ display:flex; align-items:flex-end; gap:6px; height:70px; margin-top:20px; }
.gbp-mock__bars i{ flex:1; background:linear-gradient(180deg,var(--blue),#5C74FF); border-radius:4px 4px 0 0; opacity:.85; }

/* ---------- Portfolio ---------- */
.case{
  background:var(--card); border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden;
  transition:transform .3s ease, box-shadow .3s ease;
}
.case:hover{ transform:translateY(-6px); box-shadow:var(--shadow-sm); }
.case__head{ padding:22px 24px; display:flex; justify-content:space-between; align-items:flex-start; gap:12px; }
.case__industry{ font-family:'IBM Plex Mono',monospace; font-size:11px; text-transform:uppercase; letter-spacing:.06em; color:var(--blue); }
.case__head h3{ font-size:19px; margin-top:8px; }
.case__loc{ font-size:12.5px; color:var(--text-mute); margin-top:4px; }
.case__shift{ text-align:right; }
.case__shift .from{ font-size:11px; color:var(--text-mute); text-decoration:line-through; }
.case__shift .to{ font-family:'IBM Plex Mono',monospace; font-weight:700; color:var(--green); font-size:22px; }
.case__body{ padding:0 24px 24px; }
.case__metrics{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:12px; overflow:hidden; margin-top:6px; }
.case__metrics div{ background:var(--card); padding:14px 10px; text-align:center; }
.case__metrics b{ display:block; font-family:'Space Grotesk',sans-serif; font-size:19px; }
.case__metrics span{ font-size:11px; color:var(--text-mute); }
.case__quote{ margin-top:16px; font-size:13.5px; color:var(--text-mute); font-style:italic; line-height:1.6; border-left:2px solid var(--blue-soft); padding-left:14px; }

/* ---------- Testimonials ---------- */
.tmn{ background:var(--card); border:1px solid var(--line); border-radius:var(--radius-lg); padding:30px; height:100%; }
.tmn .stars{ color:var(--amber); font-size:14px; letter-spacing:2px; }
.tmn p.quote{ margin-top:16px; font-size:15px; line-height:1.7; color:var(--text); }
.tmn__person{ display:flex; align-items:center; gap:12px; margin-top:22px; }
.tmn__avatar{ width:42px; height:42px; border-radius:50%; background:linear-gradient(145deg,#B9C6FF,var(--blue)); flex-shrink:0; }
.tmn__person b{ font-size:14px; display:block; }
.tmn__person span{ font-size:12.5px; color:var(--text-mute); }

/* ---------- Pricing ---------- */
.price{ background:var(--card); border:1px solid var(--line); border-radius:var(--radius-lg); padding:34px 30px; display:flex; flex-direction:column; height:100%; }
.price--feat{ border-color:var(--blue); box-shadow:0 24px 50px -20px rgba(54,84,255,.35); position:relative; }
.price--feat .price__ribbon{ position:absolute; top:-13px; left:30px; background:var(--blue); color:#fff; font-size:11.5px; font-weight:700; padding:5px 14px; border-radius:999px; letter-spacing:.02em; }
.price h3{ font-size:20px; }
.price .sub{ font-size:13.5px; color:var(--text-mute); margin-top:6px; }
.price .cost{ margin-top:20px; font-family:'Space Grotesk',sans-serif; font-size:38px; font-weight:700; }
.price .cost span{ font-size:14px; color:var(--text-mute); font-weight:500; font-family:'Inter',sans-serif; }
.price ul{ margin-top:24px; display:flex; flex-direction:column; gap:12px; flex:1; }
.price li{ display:flex; gap:10px; font-size:14px; color:var(--text-mute); align-items:flex-start; }
.price li svg{ width:16px; height:16px; color:var(--green); flex-shrink:0; margin-top:3px; }
.price .btn{ margin-top:26px; }

/* ---------- FAQ ---------- */
.faq{ border-bottom:1px solid var(--line); }
.faq__q{ width:100%; display:flex; justify-content:space-between; align-items:center; gap:20px; padding:22px 0; background:none; border:none; text-align:left; font-size:16px; font-weight:600; font-family:'Space Grotesk',sans-serif; color:var(--text); }
.faq__q .plus{ width:22px; height:22px; flex-shrink:0; position:relative; }
.faq__q .plus::before, .faq__q .plus::after{ content:""; position:absolute; background:var(--ink); border-radius:2px; transition:.3s; }
.faq__q .plus::before{ width:14px; height:2px; top:10px; left:4px; }
.faq__q .plus::after{ width:2px; height:14px; left:10px; top:4px; }
.faq.open .plus::after{ transform:rotate(90deg); opacity:0; }
.faq__a{ max-height:0; overflow:hidden; transition:max-height .35s ease; }
.faq__a p{ padding-bottom:22px; font-size:14.5px; color:var(--text-mute); line-height:1.7; max-width:640px; }

/* ---------- CTA band ---------- */
.cta-band{ background:linear-gradient(135deg,var(--blue),#5C74FF 60%, #6E86FF); border-radius:32px; padding:70px 50px; text-align:center; position:relative; overflow:hidden; }
.cta-band::before{ content:""; position:absolute; inset:0; background:radial-gradient(circle at 80% 0%, rgba(255,255,255,.18), transparent 55%); }
.cta-band h2{ color:#fff; font-size:clamp(26px,3.4vw,40px); position:relative; }
.cta-band p{ color:rgba(255,255,255,.85); margin-top:14px; font-size:16px; position:relative; }
.cta-band__actions{ margin-top:30px; display:flex; gap:14px; justify-content:center; flex-wrap:wrap; position:relative; }

/* ---------- Footer ---------- */
.footer{ background:var(--ink); color:#A9B2CE; padding-top:80px; }
.footer h4{ color:#fff; font-size:15px; margin-bottom:18px; }
.footer__grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:60px; border-bottom:1px solid rgba(255,255,255,.08); }
.footer__brand p{ margin-top:16px; font-size:14px; line-height:1.7; max-width:280px; color:#8B95B8; }
.footer__links li{ margin-bottom:12px; }
.footer__links a{ font-size:14px; color:#A9B2CE; transition:color .2s; }
.footer__links a:hover{ color:#fff; }
.footer__contact li{ font-size:14px; margin-bottom:14px; color:#A9B2CE; display:flex; gap:10px; }
.footer__contact svg{ width:17px; height:17px; flex-shrink:0; margin-top:2px; color:var(--blue); }
.footer__bottom{ display:flex; justify-content:space-between; align-items:center; padding:26px 0; font-size:13px; color:#6B7494; flex-wrap:wrap; gap:12px; }
.footer__social{ display:flex; gap:12px; }
.footer__social a{ width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,.06); display:flex; align-items:center; justify-content:center; transition:.25s; }
.footer__social a:hover{ background:var(--blue); }
.footer__social svg{ width:16px; height:16px; }
@media (max-width:900px){ .footer__grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer__grid{ grid-template-columns:1fr; } }

/* ---------- Reveal animation ---------- */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1); }
.reveal.in{ opacity:1; transform:translateY(0); }
.reveal-stagger.in .r-item{ opacity:1; transform:translateY(0); }
.r-item{ opacity:0; transform:translateY(22px); transition:opacity .6s ease, transform .6s ease; }
.r-item:nth-child(1){ transition-delay:.02s; } .r-item:nth-child(2){ transition-delay:.1s; }
.r-item:nth-child(3){ transition-delay:.18s; } .r-item:nth-child(4){ transition-delay:.26s; }
.r-item:nth-child(5){ transition-delay:.34s; } .r-item:nth-child(6){ transition-delay:.42s; }

/* ---------- Page hero (inner pages) ---------- */
.pagehero{ padding:64px 0 40px; text-align:center; }
.pagehero h1{ font-size:clamp(30px,4.2vw,50px); margin-top:16px; }
.pagehero p{ margin:18px auto 0; max-width:600px; color:var(--text-mute); font-size:17px; }
.crumb{ font-size:13px; color:var(--text-mute); margin-bottom:10px; }
.crumb a{ color:var(--blue); }

/* ---------- Utility ---------- */
.tag-row{ display:flex; gap:10px; flex-wrap:wrap; margin-top:18px; }
.tag{ font-family:'IBM Plex Mono',monospace; font-size:11.5px; background:var(--bg); border:1px solid var(--line); padding:6px 12px; border-radius:999px; color:var(--text-mute); }
.filter-row{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:40px; }
.filter-btn{ padding:9px 18px; border-radius:999px; border:1px solid var(--line); background:var(--card); font-size:13.5px; font-weight:600; color:var(--text-mute); transition:.2s; }
.filter-btn.active, .filter-btn:hover{ background:var(--ink); color:#fff; border-color:var(--ink); }

/* Contact page */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:start; }
@media (max-width:900px){ .contact-grid{ grid-template-columns:1fr; } }
.form-card{ background:var(--card); border:1px solid var(--line); border-radius:var(--radius-lg); padding:34px; }
.field{ margin-bottom:18px; }
.field label{ display:block; font-size:13px; font-weight:600; margin-bottom:8px; }
.field input, .field select, .field textarea{
  width:100%; padding:13px 15px; border:1px solid var(--line); border-radius:10px; font-family:'Inter',sans-serif; font-size:14.5px; background:#FBFCFE; transition:border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color:var(--blue); outline:none; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media (max-width:520px){ .field-row{ grid-template-columns:1fr; } }
.info-card{ background:var(--ink); color:#fff; border-radius:var(--radius-lg); padding:34px; margin-bottom:20px; }
.info-card li{ display:flex; gap:14px; margin-bottom:20px; font-size:14.5px; }
.info-card li:last-child{ margin-bottom:0; }
.info-card svg{ width:20px; height:20px; color:var(--green); flex-shrink:0; margin-top:2px; }
.info-card b{ display:block; margin-bottom:3px; }
.info-card span{ color:#A9B2CE; font-size:13.5px; }
.map-frame{ border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--line); height:220px; }

/* About page */
.about-hero-grid{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
@media (max-width:900px){ .about-hero-grid{ grid-template-columns:1fr; } }
.value-card{ padding:26px; border-radius:var(--radius-md); background:var(--card); border:1px solid var(--line); }
.team-card{ text-align:center; }
.team-card .avatar{ width:100%; aspect-ratio:1; border-radius:18px; background:linear-gradient(150deg,#B9C6FF,var(--blue)); margin-bottom:16px; }
.team-card h4{ font-size:16px; }
.team-card span{ font-size:13px; color:var(--text-mute); }

.timeline{ position:relative; padding-left:30px; border-left:2px dashed var(--line); }
.tl-item{ position:relative; padding-bottom:38px; }
.tl-item:last-child{ padding-bottom:0; }
.tl-item::before{ content:""; position:absolute; left:-37px; top:2px; width:12px; height:12px; border-radius:50%; background:var(--blue); border:3px solid var(--bg); }
.tl-item .yr{ font-family:'IBM Plex Mono',monospace; font-size:12.5px; color:var(--blue); font-weight:600; }
.tl-item h4{ margin-top:6px; font-size:17px; }
.tl-item p{ margin-top:6px; font-size:14px; color:var(--text-mute); }
