:root{
  --bg:#f6f7fb;
  --card:#ffffff;
  --line:#dfe4f2;

  --text:#0f1222;
  --muted:#58607a;

  /* NEW palette: deep plum/violet + green-mint + coral */
  --dark1:#1a0f2b;
  --dark2:#2a1650;
  --dark3:#0e2a2f;

  --primary:#4ef2c5;     /* mint */
  --primary2:#27d6a8;

  --accent:#ff6b6b;      /* coral */
  --accent2:#ff9f7a;

  --lilac:#b992ff;

  --shadow: 0 20px 60px rgba(17, 15, 40, .14);
  --shadowSoft: 0 14px 34px rgba(17, 15, 40, .10);
  --r:16px;

  --max:1180px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: var(--bg);
}
a{color:inherit}
button,input,select,textarea{font-family:inherit}
.sr{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}

.container{width:min(var(--max), calc(100% - 40px)); margin:0 auto}

.skip{
  position:absolute; left:-9999px; top:10px;
  padding:10px 12px; border-radius:12px;
  background:#fff; border:1px solid var(--line);
}
.skip:focus{left:10px; z-index:9999}

/* ===== Topbar ===== */
.topbar{
  position:sticky; top:0; z-index:2000;
  background: linear-gradient(180deg, rgba(26,15,43,.98), rgba(26,15,43,.92));
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.topbar__row{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.logo{
  display:flex; align-items:center; gap:10px;
  text-decoration:none; color:#fff;
  font-weight:900;
}
.logo__mark{
  width:30px; height:30px; border-radius:999px;
  display:grid; place-items:center;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
}
.logo__dot{
  width:12px; height:12px; border-radius:999px;
  background: radial-gradient(circle at 30% 30%, #fff, var(--primary));
}
.logo__name{
  font-size:14px;
  opacity:.95;
  letter-spacing:.2px;
  white-space:nowrap;
}

.nav{display:flex; align-items:center; gap:18px}
.nav__link{
  color: rgba(255,255,255,.85);
  text-decoration:none;
  font-weight:800;
  font-size:13px;
  padding:8px 2px;
  border-bottom:2px solid transparent;
}
.nav__link:hover{color:#fff}
.nav__link.is-active{
  color:#fff;
  border-bottom-color: var(--primary);
}

.cta{
  display:inline-flex; align-items:center; justify-content:center;
  text-decoration:none;
  font-weight:900;
  font-size:13px;
  color:#0a1212;
  padding:10px 14px;
  border-radius:999px;
  background: linear-gradient(180deg, var(--primary), var(--primary2));
  box-shadow: 0 12px 28px rgba(78,242,197,.22);
  white-space:nowrap;
}
.cta:hover{filter:brightness(1.03)}
.cta--full{width:100%}

/* Mobile drawer */
.navBtn{
  display:none;
  width:42px; height:42px;
  border-radius:12px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  cursor:pointer;
}
.navBtn__bar{
  width:18px; height:2px; background:#fff;
  display:block; margin:0 auto; position:relative;
}
.navBtn__bar::before,.navBtn__bar::after{
  content:""; position:absolute; left:0; width:18px; height:2px; background:#fff;
}
.navBtn__bar::before{top:-6px}
.navBtn__bar::after{top:6px}

.drawer{display:none}
.drawer.is-open{display:block}
.drawer__card{
  width:min(420px, calc(100% - 40px));
  margin: 10px auto 16px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  padding:14px;
}
.drawer__links{display:grid; gap:10px; margin-bottom:12px}
.drawer__link{
  color:#fff; text-decoration:none; font-weight:900;
  padding:10px 12px; border-radius:12px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
}

/* ===== Pages ===== */
.page{display:none}
.page.is-active{display:block}

/* ===== Hero ===== */
.hero{
  color:#fff;
  background:
    radial-gradient(820px 420px at 15% 30%, rgba(185,146,255,.22), transparent 55%),
    radial-gradient(760px 420px at 88% 0%, rgba(78,242,197,.18), transparent 58%),
    radial-gradient(680px 420px at 70% 85%, rgba(255,107,107,.12), transparent 55%),
    linear-gradient(180deg, var(--dark1), var(--dark2) 55%, var(--dark3));
  padding: 44px 0;
}
/* --- Sticky footer for SPA pages --- */
:root{
  --topbarH: 72px; /* приблизна висота хедера (можеш 68-78 підкрутити) */
}

main{
  min-height: calc(100vh - var(--topbarH));
}

/* коли сторінка активна — робимо її колонкою на всю висоту */
.page.is-active{
  display:flex;
  flex-direction:column;
  min-height: calc(100vh - var(--topbarH));
}

/* футер всередині сторінки завжди знизу */
.page.is-active .footer{
  margin-top:auto;
}
.hero--home{padding: 54px 0 44px}
.hero--inner{padding: 44px 0}
.hero--about{padding: 54px 0 0}
.hero--contact{padding: 44px 0 44px}

.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:22px;
  align-items:start;
}
.hero__grid--about{padding-bottom:24px}
.hero__inner{max-width: 900px}

.kicker{
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: rgba(255,255,255,.72);
  font-weight:900;
  margin-bottom:12px;
}
.hero__title{
  margin:0;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height:1.12;
  letter-spacing:-.4px;
}
.hero__lead{
  margin:12px 0 0;
  color: rgba(255,255,255,.84);
  line-height:1.7;
  font-size:14px;
  max-width: 62ch;
}

.hero__actions{
  display:flex; gap:12px; flex-wrap:wrap;
  margin-top:18px;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  text-decoration:none;
  border-radius:999px;
  padding:10px 14px;
  font-weight:900;
  font-size:13px;
  border:1px solid transparent;
}
.btn--primary{
  color:#071313;
  background: linear-gradient(180deg, var(--primary), var(--primary2));
  box-shadow: 0 12px 28px rgba(78,242,197,.22);
}
.btn--ghost{
  color:#fff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
}
.btn--inline{margin-top:12px}

.hero__badges{
  display:flex; gap:12px; flex-wrap:wrap;
  margin-top:22px;
}
.badge{
  min-width: 150px;
  padding:10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
}
.badge__k{font-weight:900; font-size:12px; color: rgba(255,255,255,.70)}
.badge__v{margin-top:6px; font-weight:900}

.panel{
  border-radius: 16px;
  padding:16px;
  border:1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 50px rgba(0,0,0,.30);
}
.panel--glass{background: rgba(0,0,0,.18)}
.panel__title{font-weight:900; font-size:14px}
.panel__sub{margin-top:8px; color: rgba(255,255,255,.72); font-size:12px; line-height:1.6}

.snapGrid{
  margin-top:14px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
.snap{
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  padding:12px;
}
.snap--wide{grid-column: 1 / -1}
.snap__pill{
  display:inline-flex;
  padding:4px 8px;
  border-radius:999px;
  font-size:11px;
  font-weight:900;
  color:#0b101a;
  background:#fff;
}
.snap__pill--mint{background: rgba(78,242,197,1)}
.snap__pill--coral{background: rgba(255,107,107,1)}
.snap__pill--lilac{background: rgba(185,146,255,1)}
.snap__t{margin-top:8px; font-weight:900; color:#fff; font-size:13px}
.snap__p{margin-top:6px; color: rgba(255,255,255,.74); font-size:12px; line-height:1.55}

.miniLine{
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}
.miniLine__k{font-weight:900; font-size:12px; color: rgba(255,255,255,.70)}
.miniLine__v{font-weight:900; font-size:12px}

.heroCard2{
  margin-top:10px;
  border-radius: 16px;
  padding:14px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
}
.heroCard2__t{font-weight:900}
.heroList{margin:10px 0 0; padding-left:18px; color: rgba(255,255,255,.78); line-height:1.7; font-size:12px}

/* Strip */
.strip{
  background:#fff;
  border-bottom:1px solid var(--line);
  padding: 14px 0;
}
.strip__inner{display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap}
.strip__k{font-weight:900; font-size:12px; color:#757e96}
.strip__p{margin-top:6px; color:#58607a; font-size:12px; line-height:1.6}
.pillLink{
  text-decoration:none;
  font-weight:900;
  color:#1a0f2b;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fbfcff;
}

/* Section */
.section{padding: 34px 0}
.h2{margin:0; font-size:22px; letter-spacing:-.2px}
.h2--small{font-size:18px}
.sub{margin:10px 0 0; color:#757e96; font-size:12px; line-height:1.6}
.p{margin:12px 0 0; color:var(--muted); line-height:1.75}
.p--light{color: rgba(255,255,255,.78)}
.centerHead{text-align:center; margin-bottom:16px}

/* Head row */
.headRow{
  display:flex; align-items:flex-start; justify-content:space-between;
  gap:14px; flex-wrap:wrap;
}
.headRow__meta{display:flex; gap:10px; flex-wrap:wrap}
.metaChip{
  display:inline-flex; gap:8px; align-items:center;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  font-weight:900;
  font-size:12px;
  color:#2f3550;
}
.metaChip__dot{
  width:10px; height:10px; border-radius:999px;
  background: radial-gradient(circle at 30% 30%, var(--primary), #ffffff);
  border:1px solid rgba(78,242,197,.35);
}

/* Capabilities grid */
.capGrid{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:14px;
}
.cap{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--r);
  padding:16px;
  box-shadow: var(--shadowSoft);
}
.cap--dark{
  color:#fff;
  background: linear-gradient(180deg, var(--dark1), var(--dark2));
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 52px rgba(0,0,0,.28);
}
.cap--soft{
  background: linear-gradient(180deg, #ffffff, #fbfcff);
  border:1px solid #e8ecf7;
}
.cap__h{font-weight:900; font-size:14px}
.cap__p{margin-top:10px; color:#58607a; font-size:13px; line-height:1.7}
.cap--dark .cap__p{color: rgba(255,255,255,.78)}
.cap__list{margin:12px 0 0; padding-left:18px; color:#58607a; font-size:12px; line-height:1.7}
.cap--dark .cap__list{color: rgba(255,255,255,.78)}

/* Two column block */
.twoCol{
  margin-top:14px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--r);
  padding:16px;
  box-shadow: var(--shadowSoft);
}
.card--dark{
  color:#fff;
  background: linear-gradient(180deg, #1a0f2b, #0e2a2f);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 52px rgba(0,0,0,.28);
}
.card__t{font-weight:900; font-size:14px}
.card__t--light{color:#fff}

.steps{margin-top:12px; display:grid; gap:10px}
.step{display:flex; gap:10px; align-items:flex-start}
.step__n{
  width:28px; height:28px; border-radius:10px;
  display:grid; place-items:center;
  background: rgba(78,242,197,.18);
  border:1px solid rgba(78,242,197,.28);
  color:#0b2b27;
  font-weight:900;
}
.step__h{font-weight:900; color:#2f3550; font-size:13px}
.step__p{margin-top:4px; color:#58607a; font-size:12px; line-height:1.6}

.check{margin:12px 0 0; padding:0; list-style:none; display:grid; gap:10px}
.check li{
  padding-left:18px;
  position:relative;
  color:#58607a;
  font-weight:800;
  font-size:12px;
  line-height:1.6;
}
.check li::before{
  content:"✓";
  position:absolute; left:0; top:0;
  color: var(--primary);
  font-weight:900;
}
.check--light li{color: rgba(255,255,255,.78)}
.check--light li::before{color:#bfffee}

.ctaWide{
  margin-top:18px;
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(78,242,197,.22), rgba(255,107,107,.16));
  border:1px solid rgba(26,15,43,.10);
  padding: 16px;
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; flex-wrap:wrap;
}
.ctaWide__t{font-weight:900}
.ctaWide__p{margin-top:6px; color:#58607a; font-size:12px; line-height:1.6}

/* Services */
.svcGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:14px;
}
.svcCard{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--r);
  padding:16px;
  box-shadow: var(--shadowSoft);
}
.svcCard--dark{
  color:#fff;
  background: linear-gradient(180deg, var(--dark1), var(--dark2));
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 52px rgba(0,0,0,.28);
}
.svcCard--soft{background:#fbfcff}
.svcCard__top{display:flex; align-items:center; gap:10px}
.svcCard__tag{
  width:30px; height:30px; border-radius:12px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.12);
  font-weight:900;
  color:#fff;
  font-size:12px;
}
.svcCard__tag--mint{background: rgba(78,242,197,.22); border-color: rgba(78,242,197,.28); color:#0b2b27}
.svcCard__tag--coral{background: rgba(255,107,107,.20); border-color: rgba(255,107,107,.28); color:#2a0d12}
.svcCard__tag--lilac{background: rgba(185,146,255,.18); border-color: rgba(185,146,255,.28); color:#1a1026}
.svcCard__h{font-weight:900; font-size:14px}
.svcCard__p{margin-top:10px; color:#58607a; font-size:13px; line-height:1.7}
.svcCard--dark .svcCard__p{color: rgba(255,255,255,.78)}
.svcCard__list{margin:12px 0 0; padding-left:18px; color:#58607a; font-size:12px; line-height:1.7}
.svcCard--dark .svcCard__list{color: rgba(255,255,255,.78)}
.sectionSplit{
  margin-top:14px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.pillSet{margin-top:12px; display:flex; gap:10px; flex-wrap:wrap}
.pill{
  display:inline-flex;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  font-weight:900;
  font-size:12px;
  color:#2f3550;
}

/* About pipeline */
.aboutGrid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:14px;
  align-items:start;
}
.pipelineCard{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--r);
  padding:16px;
  box-shadow: var(--shadow);
}
.pipelineCard__t{font-weight:900; font-size:14px}
.pipelineCard__sub{margin-top:8px; color:#757e96; font-size:12px; line-height:1.6}
.pipelineWrap{
  margin-top:12px;
  border-radius: 16px;
  overflow:hidden;
  border:1px solid #eceffd;
}
.pipelineNotes{
  margin-top:12px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.note{
  border-radius: 14px;
  border:1px solid #eceffd;
  background:#fbfcff;
  padding:12px;
}
.note__h{font-weight:900; font-size:12px}
.note__p{margin-top:6px; color:#58607a; font-size:12px; line-height:1.6}

.aboutRight{display:grid; gap:14px}
.addr{margin-top:10px; color:#58607a; font-size:12px; line-height:1.7}

/* About hero box */
.aboutBox{
  border-radius: 16px;
  padding:16px;
  background: rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 50px rgba(0,0,0,.30);
}
.aboutBox__h{font-weight:900}
.aboutBox__row{
  display:flex; justify-content:space-between; gap:10px;
  margin-top:10px;
  color: rgba(255,255,255,.82);
  font-size:12px;
  font-weight:800;
}
.aboutBox__row span:first-child{color: rgba(255,255,255,.66)}
.aboutBox__note{margin-top:10px; color: rgba(255,255,255,.66); font-size:11px; line-height:1.6}

/* Stat bar */
.statBar{
  margin-top:24px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border-top: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
}
.statBar__grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:12px;
}
.stat{text-align:center}
.stat__v{font-weight:900; font-size:16px}
.stat__k{margin-top:6px; color: rgba(255,255,255,.72); font-size:12px}

/* FAQ */
.faqWrap{margin-top:20px}
.faq{margin-top: 12px}
.faqItem{
  width:100%;
  display:flex; justify-content:space-between; align-items:center;
  background:#fff;
  border:1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font-weight:900;
  cursor:pointer;
  margin-top:10px;
}
.faqItem__icon{
  width:26px; height:26px;
  display:grid; place-items:center;
  border-radius:999px;
  border:1px solid var(--line);
  color:#2f3550;
  font-weight:900;
}
.faqPanel{
  display:none;
  background:#fff;
  border:1px solid var(--line);
  border-top:none;
  border-radius: 0 0 12px 12px;
  padding: 12px 14px;
  color:#58607a;
  line-height:1.75;
  font-size:13px;
}
.faqItem.is-open{border-radius: 12px 12px 0 0}
.faqPanel.is-open{display:block}

/* Contact */
.contactGrid{
  display:grid;
  grid-template-columns: .92fr 1.08fr;
  gap:16px;
  align-items:start;
}
.infoCard{
  display:flex; gap:12px; align-items:flex-start;
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--r);
  padding:14px;
  box-shadow: var(--shadowSoft);
  margin-top:12px;
}
.infoCard__ic{
  width:34px; height:34px; border-radius:12px;
  display:grid; place-items:center;
  background: rgba(78,242,197,.16);
  border:1px solid rgba(78,242,197,.26);
  font-size:14px;
}
.infoCard__t{font-weight:900; font-size:13px}
.infoCard__p{margin-top:6px; color:#58607a; font-size:12px; line-height:1.6}
.link{color:#1a0f2b; font-weight:900; text-decoration:none}
.link:hover{text-decoration:underline}

.mapCard{
  margin-top:12px;
  border-radius: var(--r);
  overflow:hidden;
  border:1px solid var(--line);
  background:#fff;
  box-shadow: var(--shadowSoft);
}
.mapCard iframe{width:100%; height:220px; border:0}

.noteBox{
  margin-top:12px;
  border-radius: var(--r);
  border:1px solid #eceffd;
  background:#fbfcff;
  padding:12px;
}
.noteBox__t{font-weight:900; font-size:12px}
.noteBox__p{margin-top:6px; color:#58607a; font-size:12px; line-height:1.6}

.formCard{
  background:#fff;
  border:1px solid var(--line);
  border-radius: 16px;
  padding:18px;
  box-shadow: var(--shadow);
}
.formCard__h{font-weight:900; font-size:16px}
.formCard__sub{margin-top:8px; color:#757e96; font-size:12px; line-height:1.6}

.form{margin-top:14px}
.form__row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.field{display:grid; gap:8px; margin-top:12px}
.field__label{font-weight:900; font-size:12px; color:#2f3550}
.req{color:#d21b1b}
.field__input{
  width:100%;
  padding:12px 12px;
  border-radius: 12px;
  border:1px solid var(--line);
  background:#fff;
  outline:none;
  font-size:13px;
}
.field__input:focus{
  border-color: rgba(78,242,197,.55);
  box-shadow: 0 0 0 4px rgba(78,242,197,.14);
}
.field__input--area{resize:vertical; min-height:140px}

.submitBtn{
  width:100%;
  margin-top:14px;
  padding:12px 14px;
  border-radius:999px;
  border:0;
  cursor:pointer;
  font-weight:900;
  color:#071313;
  background: linear-gradient(180deg, var(--primary), var(--primary2));
  box-shadow: 0 14px 30px rgba(78,242,197,.22);
}
.formNote{
  margin-top:10px;
  color:#757e96;
  font-size:11px;
  line-height:1.6;
  text-align:center;
}
.formStatus{
  margin-top:10px;
  font-weight:900;
  color:#2f3550;
  text-align:center;
}

/* Footer */
.footer{
  background: linear-gradient(180deg, #140b22, #0c0a14);
  color:#fff;
  padding: 28px 0 18px;
}
.footer--simple{padding: 18px 0}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr .7fr .7fr .9fr;
  gap:18px;
  align-items:start;
}
.footer__logo{display:flex; align-items:center; gap:10px; font-weight:900}
.footer__badge{
  width:10px; height:10px; border-radius:999px;
  background: radial-gradient(circle at 30% 30%, #fff, var(--primary));
  border:1px solid rgba(78,242,197,.25);
}
.footer__desc{margin-top:10px; color: rgba(255,255,255,.70); font-size:12px; line-height:1.7}
.footer__col{display:grid; gap:10px}
.footer__h{font-weight:900; font-size:12px; color: rgba(255,255,255,.90)}
.footer__col a, .footerBtn{
  color: rgba(255,255,255,.72);
  text-decoration:none;
  font-weight:800;
  font-size:12px;
  background: transparent;
  border:0;
  padding:0;
  text-align:left;
  cursor:pointer;
}
.footer__col a:hover, .footerBtn:hover{color:#fff; text-decoration:underline}
.footer__txt{color: rgba(255,255,255,.72); font-size:12px; line-height:1.6}
.footer__link{color:#fff; font-weight:900; font-size:12px; text-decoration:none}
.footer__link:hover{text-decoration:underline}

.footer__bottom{
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.60);
  font-size:12px;
}

/* Modal */
.modal{position:fixed; inset:0; display:none; z-index:4000}
.modal.is-open{display:block}
.modal__backdrop{position:absolute; inset:0; background: rgba(0,0,0,.55)}
.modal__card{
  position:relative;
  width:min(780px, calc(100% - 30px));
  margin: 10vh auto;
  background:#fff;
  border-radius: 16px;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.modal__head{
  display:flex; align-items:center; justify-content:space-between;
  padding: 12px 14px;
  border-bottom:1px solid var(--line);
}
.modal__title{font-weight:900}
.modal__close{
  width:40px; height:40px;
  border-radius: 12px;
  border:1px solid var(--line);
  background:#fff;
  cursor:pointer;
  font-weight:900;
}
.modal__body{padding:14px; color:#58607a; line-height:1.75; font-size:13px}

/* Cookie */
.cookie{
  position:fixed;
  left:16px; right:16px; bottom:16px;
  z-index:5000;
}
.cookie__inner{
  width:min(var(--max), 100%);
  margin:0 auto;
  background:#fff;
  border:1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: var(--shadow);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.cookie__t{font-weight:900}
.cookie__p{margin-top:4px; color:#58607a; font-size:12px; line-height:1.6}
.cookieBtn{
  border-radius: 999px;
  padding: 10px 12px;
  font-weight:900;
  border:1px solid var(--line);
  cursor:pointer;
}
.cookieBtn--ghost{background:#fff}
.cookieBtn--primary{
  border:0;
  color:#071313;
  background: linear-gradient(180deg, var(--primary), var(--primary2));
}

/* Responsive */
@media (max-width: 1120px){
  .capGrid{grid-template-columns: 1fr 1fr}
}
@media (max-width: 1020px){
  .hero__grid{grid-template-columns: 1fr; gap:16px}
  .statBar__grid{grid-template-columns: repeat(2, minmax(0,1fr))}
  .twoCol{grid-template-columns: 1fr}
  .svcGrid{grid-template-columns: 1fr}
  .sectionSplit{grid-template-columns: 1fr}
  .aboutGrid{grid-template-columns: 1fr}
  .pipelineNotes{grid-template-columns: 1fr}
  .contactGrid{grid-template-columns: 1fr}
  .footer__grid{grid-template-columns: 1fr}
}
@media (max-width: 820px){
  .nav{display:none}
  .cta{display:none}
  .navBtn{display:inline-grid; place-items:center}
  .snapGrid{grid-template-columns: 1fr}
  .form__row{grid-template-columns: 1fr}
}
@media (max-width: 820px){
  :root{ --topbarH: 66px; }
}
