/* =========================================================
   NAKASHA FIBER TEKNOLOGI — DESIGN SYSTEM
   Signature motif: fiber topology (nodes + light-pulse lines)
   ========================================================= */

:root{
  --navy:        #0B3C8A;
  --navy-deep:   #071C3D;
  --navy-mid:    #123B7A;
  --signal:      #17B8CC;
  --signal-dim:  #0E8A99;
  --amber:       #F2A93B;
  --bg:          #F5F8FC;
  --surface:     #FFFFFF;
  --line:        #E3E9F3;
  --ink:         #0B1220;
  --muted:       #5B6B85;
  --muted-2:     #8496B3;

  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 28px;

  --shadow-sm: 0 6px 18px rgba(11,28,61,.08);
  --shadow-md: 0 18px 44px rgba(11,28,61,.14);
  --shadow-lg: 0 30px 70px rgba(11,28,61,.22);

  --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,h4{ font-family:var(--font-display); margin:0; line-height:1.12; letter-spacing:-.01em; }
p{ margin:0; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }

::selection{ background:var(--signal); color:#fff; }

/* focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline:3px solid var(--amber);
  outline-offset:2px;
}

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

/* =============== LAYOUT UTILS =============== */
.wrap{
  max-width:1240px;
  margin:0 auto;
  padding:0 24px;
}
.section{ padding:96px 0; position:relative; }
.section-tight{ padding:64px 0; }
.section-alt{ background:var(--surface); }
.section-dark{ background:var(--navy-deep); color:#fff; }

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-mono);
  font-size:12.5px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--signal-dim);
  margin-bottom:14px;
}
.eyebrow::before{
  content:"";
  width:22px; height:2px;
  background:var(--amber);
  display:inline-block;
}
.section-dark .eyebrow{ color:var(--signal); }

.section-head{
  max-width:680px;
  margin-bottom:56px;
}
.section-head h2{
  font-size:clamp(28px,3.6vw,42px);
  font-weight:700;
  color:var(--navy-deep);
}
.section-dark .section-head h2{ color:#fff; }
.section-head p{
  margin-top:16px;
  font-size:16px;
  line-height:1.75;
  color:var(--muted);
}
.section-dark .section-head p{ color:#B9C6E0; }

.center{ text-align:center; margin-left:auto; margin-right:auto; }

/* =============== BUTTONS =============== */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 28px;
  border-radius:100px;
  font-weight:600;
  font-size:14.5px;
  border:1px solid transparent;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space:nowrap;
}
.btn-primary{
  background:var(--amber);
  color:var(--navy-deep);
  box-shadow:0 10px 26px rgba(242,169,59,.35);
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 16px 34px rgba(242,169,59,.45); }
.btn-outline{
  background:transparent;
  border-color:rgba(255,255,255,.35);
  color:#fff;
}
.btn-outline:hover{ background:rgba(255,255,255,.1); }
.btn-navy{
  background:var(--navy);
  color:#fff;
  box-shadow:0 10px 26px rgba(11,60,138,.3);
}
.btn-navy:hover{ transform:translateY(-2px); }
.btn-ghost{
  background:transparent;
  border-color:var(--line);
  color:var(--navy-deep);
}
.btn-ghost:hover{ border-color:var(--navy); background:#fff; }
.btn-sm{ padding:10px 20px; font-size:13px; }

/* =============== HEADER / NAV =============== */
.site-header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:1000;
  padding:16px 20px 0;
}
.nav-shell{
  max-width:1240px;
  margin:0 auto;
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(14px) saturate(160%);
  -webkit-backdrop-filter:blur(14px) saturate(160%);
  border:1px solid rgba(255,255,255,.6);
  border-radius:100px;
  padding:10px 12px 10px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  box-shadow:0 10px 34px rgba(11,28,61,.1);
  transition:box-shadow .3s ease;
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand img{ height:36px; width:auto; }
.brand-text{ font-family:var(--font-display); font-weight:700; font-size:15px; color:var(--navy-deep); line-height:1.1; }
.brand-text span{ display:block; font-family:var(--font-mono); font-size:9.5px; letter-spacing:.12em; color:var(--muted-2); font-weight:400; text-transform:uppercase; margin-top:2px; }

.nav-menu{
  display:flex;
  align-items:center;
  gap:6px;
}
.nav-menu a{
  padding:10px 16px;
  border-radius:100px;
  font-size:14px;
  font-weight:500;
  color:var(--navy-deep);
  transition:background .2s ease, color .2s ease;
}
.nav-menu a:hover{ background:rgba(11,60,138,.08); }
.nav-menu a.active{ background:var(--navy); color:#fff; }

.nav-cta{ display:flex; align-items:center; gap:10px; }
.nav-cta .btn-primary{ padding:11px 22px; }

.hamburger{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:40px; height:40px;
  border-radius:50%;
  background:var(--navy);
  border:none;
  flex-shrink:0;
}
.hamburger span{
  width:18px; height:2px; margin:0 auto;
  background:#fff; border-radius:4px;
  transition:transform .25s ease, opacity .25s ease;
}
.hamburger.active span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2){ opacity:0; }
.hamburger.active span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

@media (max-width:980px){
  .nav-menu{
    position:fixed;
    top:88px; left:20px; right:20px;
    background:#fff;
    border-radius:22px;
    flex-direction:column;
    align-items:stretch;
    padding:14px;
    gap:4px;
    box-shadow:var(--shadow-lg);
    display:none;
  }
  .nav-menu.active{ display:flex; }
  .nav-menu a{ padding:14px 18px; }
  .nav-cta{ display:none; }
  .nav-menu .mobile-cta{ display:flex; margin-top:8px; }
  .hamburger{ display:flex; }
  .brand img{ height:30px; }
}

/* =============== TOPOLOGY BACKDROP (signature) =============== */
.topology{
  position:absolute; inset:0;
  overflow:hidden;
  pointer-events:none;
}
.topology svg{ width:100%; height:100%; }
.topo-line{
  fill:none;
  stroke:rgba(23,184,204,.35);
  stroke-width:1.2;
}
.topo-node{ fill:var(--signal); opacity:.55; }
.topo-node.amber{ fill:var(--amber); }
.pulse-dot{
  fill:#fff;
  filter:drop-shadow(0 0 4px rgba(255,255,255,.9));
  offset-rotate:0deg;
  animation:travel 6s linear infinite;
}
@keyframes travel{
  0%{ offset-distance:0%; opacity:0; }
  8%{ opacity:1; }
  92%{ opacity:1; }
  100%{ offset-distance:100%; opacity:0; }
}

/* =============== HERO =============== */
.hero{
  position:relative;
  padding:200px 0 120px;
  background:
    radial-gradient(ellipse 60% 60% at 80% 0%, rgba(23,184,204,.25), transparent 60%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  color:#fff;
  overflow:hidden;
}
.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:48px;
  align-items:center;
}
.hero-kicker{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--font-mono);
  font-size:12.5px; letter-spacing:.14em; text-transform:uppercase;
  color:var(--signal);
  background:rgba(23,184,204,.12);
  border:1px solid rgba(23,184,204,.35);
  padding:8px 16px;
  border-radius:100px;
  margin-bottom:26px;
}
.hero-kicker .dot{ width:7px; height:7px; border-radius:50%; background:var(--amber); animation:blink 1.6s ease-in-out infinite; }
@keyframes blink{ 0%,100%{opacity:1;} 50%{opacity:.25;} }

.hero h1{
  font-size:clamp(34px,4.6vw,56px);
  font-weight:700;
  letter-spacing:-.02em;
}
.hero h1 .hl{ color:var(--signal); }
.hero p{
  margin-top:22px;
  font-size:17px;
  line-height:1.8;
  color:#C6D3EA;
  max-width:520px;
}
.hero-actions{ display:flex; gap:14px; margin-top:36px; flex-wrap:wrap; }

.hero-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  margin-top:56px;
  border-top:1px solid rgba(255,255,255,.18);
  padding-top:28px;
  max-width:560px;
}
.hero-stats div{ padding-right:16px; }
.hero-stats b{ font-family:var(--font-display); font-size:28px; display:block; color:#fff; }
.hero-stats span{ font-family:var(--font-mono); font-size:11px; color:#9FB1D1; letter-spacing:.05em; text-transform:uppercase; }

.hero-visual{
  position:relative;
  z-index:2;
  aspect-ratio:4/5;
  border-radius:var(--radius-l);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  border:1px solid rgba(255,255,255,.15);
}
.hero-visual img{ width:100%; height:100%; object-fit:cover; }
.hero-visual::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(7,28,61,0) 40%, rgba(7,28,61,.65) 100%);
}
.hero-visual-badge{
  position:absolute; left:20px; bottom:20px; z-index:3;
  background:rgba(255,255,255,.94);
  color:var(--navy-deep);
  padding:14px 18px;
  border-radius:var(--radius-m);
  display:flex; align-items:center; gap:12px;
  font-size:13px; font-weight:600;
  box-shadow:var(--shadow-md);
}
.hero-visual-badge .ping{
  width:34px; height:34px; border-radius:50%;
  background:var(--signal); color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-mono); font-size:11px;
}

@media (max-width:980px){
  .hero{ padding:150px 0 80px; }
  .hero-grid{ grid-template-columns:1fr; }
  .hero-visual{ aspect-ratio:16/10; order:-1; }
  .hero-stats{ grid-template-columns:1fr 1fr; row-gap:22px; max-width:none; }
}

/* =============== PAGE HERO (inner pages) =============== */
.page-hero{
  position:relative;
  padding:170px 0 90px;
  background:linear-gradient(180deg, var(--navy-deep), var(--navy));
  color:#fff;
  overflow:hidden;
}
.page-hero .wrap{ position:relative; z-index:2; }
.breadcrumb{
  font-family:var(--font-mono);
  font-size:12px; letter-spacing:.08em;
  color:var(--signal);
  margin-bottom:18px;
  text-transform:uppercase;
}
.breadcrumb a{ color:#9FB1D1; }
.page-hero h1{ font-size:clamp(30px,4vw,46px); font-weight:700; }
.page-hero p{ margin-top:16px; max-width:620px; color:#C6D3EA; font-size:16px; line-height:1.75; }

/* =============== CARDS: SERVICES =============== */
.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; }

.svc-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-m);
  padding:34px 28px;
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position:relative;
}
.svc-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:transparent; }
.svc-icon{
  width:54px; height:54px;
  border-radius:14px;
  background:linear-gradient(145deg, var(--navy), var(--signal-dim));
  display:flex; align-items:center; justify-content:center;
  margin-bottom:22px;
}
.svc-icon svg{ width:26px; height:26px; stroke:#fff; fill:none; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
.svc-card h3{ font-size:18px; color:var(--navy-deep); margin-bottom:10px; }
.svc-card p{ font-size:14.5px; line-height:1.7; color:var(--muted); }
.svc-tag{
  font-family:var(--font-mono); font-size:10.5px; letter-spacing:.08em;
  color:var(--signal-dim); text-transform:uppercase; margin-bottom:14px; display:block;
}
.svc-link{
  display:inline-flex; align-items:center; gap:6px;
  margin-top:18px; font-size:13.5px; font-weight:600; color:var(--navy);
}
.svc-card:hover .svc-link{ color:var(--signal-dim); }

/* =============== WHY US =============== */
.why-list{ display:flex; flex-direction:column; gap:16px; }
.why-row{
  display:grid;
  grid-template-columns:64px 1fr;
  gap:22px;
  align-items:flex-start;
  padding:24px 26px;
  border-radius:var(--radius-m);
  background:var(--surface);
  border:1px solid var(--line);
  transition:box-shadow .3s ease, transform .3s ease;
}
.why-row:hover{ box-shadow:var(--shadow-sm); transform:translateX(4px); }
.why-idx{
  font-family:var(--font-mono);
  font-size:13px; color:var(--signal-dim);
  width:64px; height:64px; border-radius:50%;
  background:var(--bg); border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  font-weight:600;
}
.why-row h4{ font-size:16px; color:var(--navy-deep); margin-bottom:6px; }
.why-row p{ font-size:14.5px; color:var(--muted); line-height:1.7; }

/* =============== SPLIT / ABOUT =============== */
.split{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:56px;
  align-items:center;
}
.split.reverse{ grid-template-columns:1.1fr .9fr; }
.split.reverse .split-media{ order:2; }
.split-media{
  position:relative;
  border-radius:var(--radius-l);
  overflow:hidden;
  box-shadow:var(--shadow-md);
  aspect-ratio:4/3.2;
}
.split-media img{ width:100%; height:100%; object-fit:cover; }
.split-text .eyebrow{ margin-bottom:16px; }
.split-text h2{ font-size:clamp(26px,3.2vw,36px); color:var(--navy-deep); font-weight:700; margin-bottom:20px; }
.split-text p{ font-size:15.5px; line-height:1.85; color:var(--muted); margin-bottom:16px; }

@media (max-width:980px){
  .split, .split.reverse{ grid-template-columns:1fr; }
  .split.reverse .split-media{ order:0; }
}

/* =============== MISSION / VISION =============== */
.mv-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
  border-radius:var(--radius-l);
  overflow:hidden;
  box-shadow:var(--shadow-md);
}
.mv-panel{
  padding:52px 44px;
  position:relative;
}
.mv-panel.mission{ background:var(--navy-deep); color:#fff; }
.mv-panel.vision{ background:var(--signal-dim); color:#fff; }
.mv-panel .tag{ font-family:var(--font-mono); font-size:12px; letter-spacing:.16em; text-transform:uppercase; opacity:.7; margin-bottom:14px; display:block; }
.mv-panel h3{ font-size:26px; margin-bottom:18px; }
.mv-panel p{ font-size:15px; line-height:1.85; opacity:.92; }
@media (max-width:768px){ .mv-grid{ grid-template-columns:1fr; } .mv-panel{ padding:38px 26px; } }

/* =============== STATS STRIP =============== */
.stats-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-l);
  overflow:hidden;
}
.stat-cell{
  padding:34px 26px;
  text-align:center;
  border-right:1px solid var(--line);
}
.stat-cell:last-child{ border-right:none; }
.stat-cell b{ font-family:var(--font-display); font-size:34px; color:var(--navy-deep); display:block; }
.stat-cell span{ font-family:var(--font-mono); font-size:11px; color:var(--muted-2); text-transform:uppercase; letter-spacing:.06em; }
@media (max-width:768px){ .stats-strip{ grid-template-columns:1fr 1fr; } .stat-cell{ border-bottom:1px solid var(--line); } }

/* =============== ACCORDION =============== */
.accordion-item{
  border:1px solid var(--line);
  border-radius:var(--radius-m);
  margin-bottom:14px;
  background:var(--surface);
  overflow:hidden;
}
.accordion-head{
  display:flex; align-items:center; justify-content:space-between;
  padding:22px 26px;
  cursor:pointer;
  gap:16px;
}
.accordion-head .num{ font-family:var(--font-mono); color:var(--signal-dim); font-size:13px; margin-right:14px; }
.accordion-head h4{ font-size:16px; color:var(--navy-deep); flex:1; }
.accordion-toggle{
  width:30px; height:30px; border-radius:50%;
  background:var(--bg); border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  font-size:16px; color:var(--navy); flex-shrink:0;
  transition:transform .3s ease, background .3s ease;
}
.accordion-item.active .accordion-toggle{ transform:rotate(45deg); background:var(--navy); color:#fff; }
.accordion-body{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}
.accordion-body-inner{ padding:0 26px 24px 66px; font-size:14.5px; line-height:1.8; color:var(--muted); }

/* =============== CLIENTS =============== */
.marquee{
  overflow:hidden;
  position:relative;
  mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track{
  display:flex;
  gap:20px;
  width:max-content;
  animation:scroll-left 32s linear infinite;
}
.marquee:hover .marquee-track{ animation-play-state:paused; }
@keyframes scroll-left{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
.client-logo{
  width:150px; height:88px;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-s);
  display:flex; align-items:center; justify-content:center;
  padding:16px;
  flex-shrink:0;
}
.client-logo img{ max-width:100%; max-height:44px; object-fit:contain; filter:grayscale(45%); opacity:.85; transition:.25s; }
.client-logo:hover img{ filter:none; opacity:1; }

.client-grid{ display:grid; grid-template-columns:repeat(6,1fr); gap:20px; margin-top:20px; }
@media (max-width:900px){ .client-grid{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:560px){ .client-grid{ grid-template-columns:repeat(2,1fr); } }

/* =============== PORTFOLIO =============== */
.porto-card{
  position:relative;
  border-radius:var(--radius-m);
  overflow:hidden;
  aspect-ratio:4/3;
  box-shadow:var(--shadow-sm);
}
.porto-card img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.porto-card:hover img{ transform:scale(1.08); }
.porto-cap{
  position:absolute; inset:auto 0 0 0;
  padding:22px;
  background:linear-gradient(180deg, transparent, rgba(7,28,61,.92));
  color:#fff;
}
.porto-cap .tag{ font-family:var(--font-mono); font-size:10.5px; text-transform:uppercase; letter-spacing:.08em; color:var(--signal); display:block; margin-bottom:6px; }
.porto-cap h4{ font-size:16px; font-weight:600; }

/* =============== CTA BAND =============== */
.cta-band{
  position:relative;
  border-radius:var(--radius-l);
  overflow:hidden;
  background:linear-gradient(120deg, var(--navy-deep), var(--navy-mid) 60%, var(--signal-dim));
  padding:64px 56px;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  flex-wrap:wrap;
}
.cta-band h3{ font-size:clamp(22px,2.8vw,32px); max-width:520px; }
.cta-band p{ margin-top:10px; color:#C6D3EA; font-size:15px; max-width:480px; }
.cta-actions{ display:flex; gap:14px; flex-wrap:wrap; }

/* =============== FOOTER =============== */
.site-footer{
  background:var(--navy-deep);
  color:#B9C6E0;
  padding:76px 0 26px;
  position:relative;
  overflow:hidden;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:40px;
  position:relative; z-index:2;
}
.footer-brand{ display:flex; align-items:center; gap:10px; margin-bottom:18px; }
.footer-brand img{ height:34px; }
.footer-brand b{ font-family:var(--font-display); color:#fff; font-size:16px; }
.footer-col h5{
  font-family:var(--font-mono); font-size:12px; letter-spacing:.1em; text-transform:uppercase;
  color:#fff; margin-bottom:20px;
}
.footer-col ul li{ margin-bottom:12px; }
.footer-col a{ font-size:14px; color:#B9C6E0; transition:color .2s; }
.footer-col a:hover{ color:var(--signal); }
.footer-desc{ font-size:14px; line-height:1.8; max-width:320px; color:#9FB1D1; }
.footer-social{ display:flex; gap:10px; margin-top:22px; }
.footer-social a{
  width:38px; height:38px; border-radius:50%;
  background:rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center;
}
.footer-social a:hover{ background:var(--signal); }
.footer-social svg{ width:16px; height:16px; stroke:#fff; fill:none; stroke-width:1.8; }
.footer-contact li{ display:flex; gap:10px; font-size:14px; align-items:flex-start; }
.footer-contact svg{ width:17px; height:17px; stroke:var(--signal); fill:none; stroke-width:1.8; flex-shrink:0; margin-top:2px; }
.footer-bottom{
  margin-top:56px; padding-top:26px;
  border-top:1px solid rgba(255,255,255,.1);
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
  font-size:12.5px; color:#7B8EB5;
  position:relative; z-index:2;
}

@media (max-width:900px){
  .footer-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:560px){
  .footer-grid{ grid-template-columns:1fr; }
}

/* =============== WHATSAPP FLOAT =============== */
.wa-float{
  position:fixed; right:22px; bottom:22px; z-index:900;
  width:58px; height:58px; border-radius:50%;
  background:#25D366;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 12px 28px rgba(37,211,102,.45);
  animation:float-bob 3s ease-in-out infinite;
}
.wa-float svg{ width:28px; height:28px; fill:#fff; }
@keyframes float-bob{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-6px);} }

/* =============== FORM (Contact) =============== */
.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.field{ display:flex; flex-direction:column; gap:8px; }
.field.full{ grid-column:1/-1; }
.field label{ font-size:13px; font-weight:600; color:var(--navy-deep); }
.field input, .field select, .field textarea{
  border:1px solid var(--line);
  border-radius:var(--radius-s);
  padding:13px 16px;
  font-family:var(--font-body);
  font-size:14.5px;
  background:var(--bg);
  color:var(--ink);
  transition:border-color .2s ease, background .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color:var(--signal); background:#fff;
}
.field textarea{ resize:vertical; min-height:120px; }
@media (max-width:768px){ .form-grid{ grid-template-columns:1fr; } }

.info-card{
  background:var(--navy-deep);
  color:#fff;
  border-radius:var(--radius-l);
  padding:40px 34px;
  height:100%;
}
.info-row{ display:flex; gap:16px; padding:18px 0; border-bottom:1px solid rgba(255,255,255,.12); }
.info-row:last-child{ border-bottom:none; }
.info-row svg{ width:22px; height:22px; stroke:var(--signal); fill:none; stroke-width:1.7; flex-shrink:0; }
.info-row h5{ font-size:14px; margin-bottom:4px; }
.info-row p, .info-row a{ font-size:13.5px; color:#B9C6E0; line-height:1.6; }
.map-embed{ border-radius:var(--radius-m); overflow:hidden; margin-top:24px; border:1px solid rgba(255,255,255,.15); }
.map-embed iframe{ width:100%; height:220px; border:0; display:block; filter:grayscale(20%); }

/* =============== RESPONSIVE GRID DOWNSCALE =============== */
@media (max-width:980px){
  .grid-3{ grid-template-columns:1fr 1fr; }
  .grid-4{ grid-template-columns:1fr 1fr; }
  .stats-strip{ grid-template-columns:1fr 1fr; }
}
@media (max-width:640px){
  .section{ padding:64px 0; }
  .grid-3, .grid-2, .grid-4{ grid-template-columns:1fr; }
  .cta-band{ padding:40px 26px; flex-direction:column; align-items:flex-start; }
  .accordion-body-inner{ padding-left:26px; }
}

/* Scroll reveal */
.reveal{ opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in-view{ opacity:1; transform:translateY(0); }

/* Utility */
.mt-8{ margin-top:8px;} .mt-16{ margin-top:16px;} .mt-24{ margin-top:24px;} .mt-40{margin-top:40px;} .mt-56{margin-top:56px;}
.tag-pill{
  display:inline-block; font-family:var(--font-mono); font-size:11px; letter-spacing:.06em;
  text-transform:uppercase; color:var(--navy); background:rgba(11,60,138,.08);
  padding:6px 14px; border-radius:100px;
}
