/* ============ NORD DARK VARIABLES ============ */
:root {
  --slate:    #2e3440;
  --slate-2:  #3b4252;
  --slate-3:  #434c5e;
  --ink:      #eceff4;
  --ink-2:    #d8dee9;
  --ink-3:    #a8b3c6;
  --line:     #434c5e;
  --line-2:   #4c566a;
  --bg:       #3b4252;
  --bg-2:     #434c5e;
  --bg-3:     #4c566a;
  --surface:  #434c5e;
  --surface-alt: #3b4252;
  --amber:    #88c0d0;
  --amber-2:  #81a1c1;
  --amber-soft: #8fbcbb;
  --footer-bg: #2e3440;
  --footer-ink: #eceff4;
  --ok:       #a3be8c;
  --shadow-card: 0 1px 2px rgba(0,0,0,.2), 0 12px 32px -12px rgba(0,0,0,.5);
  --shadow-soft: 0 1px 2px rgba(0,0,0,.15), 0 8px 24px -16px rgba(0,0,0,.4);
  --maxw: 1280px;
  --pad: 32px;
}

/* ============ BASE ============ */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
body {
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-top: 62px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

/* ============ NAV ============ */
nav.primary {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  width: 100%;
  padding: 14px 0;
  background: var(--slate);
  border-bottom: 1px solid var(--line);
}
nav.primary .wrap { display: flex; align-items: center; gap: 48px; }
.brand { display: flex; align-items: center; gap: 12px; color: #fff; font-weight: 700; letter-spacing: -.01em; font-size: 18px; min-width: 0; flex-shrink: 1; }
.brand .mark {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-soft) 100%);
  display: grid; place-items: center;
  box-shadow: 0 6px 14px -4px rgba(136,192,208,.4);
  flex-shrink: 0;
}
.brand .mark svg { width: 20px; height: 20px; display: block; }
.brand .name { font-size: 16px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
.nav-links { display: flex; gap: 34px; font-size: 15px; font-weight: 500; color: rgba(255,255,255,.85); }
.nav-links a { display: inline-flex; align-items: center; gap: 6px; transition: color .15s; }
.nav-links a:hover { color: #fff; }
.nav-right { margin-left: auto; display: flex; gap: 18px; align-items: center; }
.nav-right .login { color: rgba(255,255,255,.85); font-size: 15px; font-weight: 500; }
.nav-right .login:hover { color: #fff; }
.nav-right .btn { padding: 7px 16px; }

/* ============ LANGUAGE SWITCHER ============ */
.lang-switch { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 5px;
  color: rgba(255,255,255,.85); font-size: 15px; font-weight: 500;
  background: none; border: none; cursor: pointer; padding: 0;
  transition: color .15s;
}
.lang-btn:hover { color: #fff; }
.lang-btn svg { flex-shrink: 0; opacity: .85; }
.lang-chevron { transition: transform .18s ease; }
.lang-switch.open .lang-chevron { transform: rotate(180deg); }
.lang-menu {
  display: none;
  position: absolute; top: calc(100% + 10px); right: 0;
  background: var(--slate-2);
  border: 1px solid var(--line-2);
  border-radius: 4px;
  min-width: 120px;
  z-index: 100;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.lang-switch.open .lang-menu { display: block; }
.lang-menu a {
  display: block; padding: 9px 16px;
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: color .15s, background .15s;
}
.lang-menu a:hover { color: #fff; background: var(--bg-3); }
.lang-menu a.active { color: var(--amber); }

/* ============ DRAWER LANGUAGE LINKS ============ */
.drawer-lang {
  display: flex; align-items: center; gap: 0;
  padding: 13px 4px 5px;
  margin-top: 4px;
  border-top: 1px solid var(--line);
}
.drawer-lang svg { color: rgba(255,255,255,.4); flex-shrink: 0; margin-right: 10px; }
.drawer-lang a {
  font-size: 13px !important; font-weight: 500 !important;
  color: rgba(255,255,255,.55) !important;
  padding: 0 12px !important; border-bottom: 0 !important;
  border-left: 1px solid rgba(255,255,255,.15) !important;
}
.drawer-lang a:first-of-type { border-left: 0 !important; padding-left: 4px !important; }
.drawer-lang a.active { color: var(--amber) !important; }
.drawer-lang a:hover { color: rgba(255,255,255,.9) !important; }

/* ============ NAV BURGER (mobile) ============ */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  margin-left: auto;
  padding: 6px;
  border: 1.5px solid rgba(255,255,255,.35);
  background: none; cursor: pointer; flex-shrink: 0;
}
.nav-burger span {
  display: block; width: 18px; height: 1.5px;
  background: #fff; transition: transform .2s, opacity .2s;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-drawer {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 62px; left: 0; right: 0;
  z-index: 49;
  max-height: calc(100vh - 62px);
  overflow-y: auto;
  background: var(--slate);
  border-bottom: 1px solid var(--line);
  padding: 8px var(--pad) 20px;
  gap: 0;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-size: 16px; font-weight: 500;
  color: rgba(255,255,255,.8);
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  display: block; transition: color .15s;
}
.nav-drawer a:last-child { border-bottom: 0; }
.nav-drawer a:hover { color: #fff; }

@media (max-width: 980px) {
  body { padding-top: 0; }
  nav.primary {
    position: fixed;
    background: var(--slate);
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
  }
  nav.primary .wrap { gap: 16px; }
  .nav-burger { display: flex; }
  .nav-right { display: none; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 22px;
  font-size: 15px; font-weight: 600; letter-spacing: -.005em;
  border: 1.5px solid transparent; transition: all .18s ease;
  cursor: pointer; white-space: nowrap;
}
.btn .arr { display: inline-flex; align-items: center; justify-content: center; width: 1.05em; height: 1.05em; transition: transform .18s ease; flex-shrink: 0; }
.btn .arr svg { width: 100%; height: 100%; display: block; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn:hover .arr { transform: translateX(3px); }
.btn-primary { background: var(--amber); color: var(--slate); border-color: var(--amber); }
.btn-primary:hover { background: var(--amber-2); border-color: var(--amber-2); }
.btn-outline-amber { color: var(--amber); border-color: var(--amber); }
.btn-outline-amber:hover { background: var(--amber); color: var(--slate); }
.btn-ghost-light { color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-ghost { color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--ink); background: var(--bg-2); }

/* ============ HERO ============ */
.hero {
  position: relative;
  background: var(--slate);
  color: #fff;
  padding: 40px 0 60px;
}
.hero-inner { text-align: center; padding-bottom: 32px; }
.hero h1 {
  font-size: clamp(32px, 5.4vw, 68px);
  font-weight: 700; line-height: 1.08; letter-spacing: -.025em;
  margin: 0; color: #fff;
  hyphens: auto; overflow-wrap: break-word; word-break: break-word;
}
.hero-visual { width: 100%; }
.hero-visual iframe {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 1;
  border: none;
}
.hero-bottom { text-align: center; padding-top: 36px; }
.hero p.sub {
  font-size: 18px; line-height: 1.55; font-weight: 400;
  color: rgba(255,255,255,.85);
  max-width: 620px; margin: 0 auto 40px;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-ctas .btn-primary { padding: 14px 28px; font-size: 16px; }
.hero-ctas .btn-ghost-light { padding: 12.5px 28px; font-size: 16px; }

/* ============ SECTION BASE ============ */
section { position: relative; }
.sec { padding: 110px 0; }
.sec--alt { background: var(--bg-2); }
.eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--amber); margin: 0 0 14px;
}
h2.sec-title {
  font-size: clamp(34px, 3.8vw, 48px);
  font-weight: 700; line-height: 1.1; letter-spacing: -.02em;
  color: var(--ink); margin: 0;
}
.sec-title .amber { color: var(--amber); }
.sec-lede {
  font-size: 18px; color: var(--ink-2); line-height: 1.6;
  margin: 18px 0 0; max-width: 680px;
}
.sec-head { display: flex; align-items: flex-end; gap: 48px; justify-content: space-between; margin-bottom: 56px; flex-wrap: wrap; }
.sec-head .left { max-width: 680px; }

/* ============ BENEFIT BLOCK ============ */
.benefit { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.benefit--reverse { direction: rtl; }
.benefit--reverse > * { direction: ltr; }
.benefit h3 {
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 700; line-height: 1.1; letter-spacing: -.018em;
  color: var(--amber); margin: 0 0 20px;
}
.benefit p { font-size: 17px; color: var(--ink-2); line-height: 1.65; margin: 0 0 16px; }
.benefit ul { margin: 24px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 14px; }
.benefit ul li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--ink); }
.benefit ul li::before {
  content: ""; flex: 0 0 auto; width: 22px; height: 22px;
  background: rgba(136,192,208,.15);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2388c0d0' stroke-width='3' stroke-linecap='square' stroke-linejoin='miter'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat; background-position: center; background-size: 13px 13px;
  margin-top: 2px; flex-shrink: 0;
}

/* Floating card scene */
.scene {
  position: relative; aspect-ratio: 1 / 1;
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 18px;
}
.scene .bg-img {
  position: absolute; inset: 8% 12%;
  background: linear-gradient(180deg, var(--slate-2) 0%, var(--slate) 100%);
  z-index: 0; overflow: hidden;
  display: grid; place-items: center; color: var(--ink-3);
}
.scene .bg-img img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: luminosity; opacity: .85; }
.stat-card {
  position: relative; z-index: 2;
  background: var(--surface);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  padding: 22px;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 170px;
}
.stat-card.amber-fill { background: var(--amber); color: var(--slate); }
.stat-card .label { font-size: 14px; color: var(--ink-2); font-weight: 500; line-height: 1.3; }
.stat-card.amber-fill .label { color: rgba(46,52,64,.9); }
.stat-card .big { font-size: 38px; font-weight: 700; letter-spacing: -.02em; color: var(--amber); line-height: 1; }
.stat-card.amber-fill .big { color: var(--slate); font-size: 34px; }
.stat-card .small { font-size: 13px; color: var(--ink-3); font-weight: 500; }

/* Gauge */
.gauge { position: relative; width: 90px; height: 54px; margin-bottom: 6px; }
.gauge svg { width: 100%; height: 100%; display: block; }
.gauge .needle {
  position: absolute; left: 50%; bottom: 0; width: 2px; height: 42px;
  background: var(--ink); transform-origin: bottom center;
}
/* Donut */
.donut { width: 96px; height: 96px; position: relative; }
.donut svg { transform: rotate(-90deg); width: 100%; height: 100%; }
.donut .num {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 22px; font-weight: 700; color: var(--amber); letter-spacing: -.02em;
}
/* Mini chart */
.minichart { height: 50px; margin-top: auto; }
.minichart svg { width: 100%; height: 100%; display: block; }

/* ============ TABS ============ */
.tabs { display: flex; gap: 0; flex-wrap: wrap; margin: 0 0 36px; border-bottom: 1px solid var(--line); }
.tab-btn {
  padding: 14px 22px;
  font-size: 15px; font-weight: 600; color: var(--ink-3);
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color .15s, border-color .15s; background: none; cursor: pointer;
}
.tab-btn:hover { color: var(--ink-2); }
.tab-btn.active { color: var(--amber); border-bottom-color: var(--amber); }
.tab-panel { display: none; }
.tab-panel.active { display: grid; animation: fade .25s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }

/* Tab image panel */
.tab-img-panel {
  overflow: hidden; border: 1px solid var(--line); min-height: 280px;
  background-size: cover; background-position: center;
}

/* ============ FEATURES 3-UP ============ */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feat-card {
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  padding: 36px 32px;
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.feat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.feat-card .icon {
  width: 52px; height: 52px;
  background: rgba(136,192,208,.15);
  color: var(--amber);
  display: grid; place-items: center; margin-bottom: 22px;
}
.feat-card .icon svg { width: 26px; height: 26px; }
.feat-card h3 { font-size: 22px; font-weight: 700; letter-spacing: -.015em; margin: 0 0 12px; color: var(--ink); }
.feat-card p { font-size: 15.5px; line-height: 1.6; color: var(--ink-2); margin: 0 0 18px; }
.feat-card .stat {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--ink-2);
  background: var(--bg-2); padding: 8px 14px;
  letter-spacing: .01em;
}
.feat-card .stat .dot { width: 6px; height: 6px; background: var(--amber); flex-shrink: 0; }

/* ============ COUNTERS BAND ============ */
.counters-band {
  background: var(--slate); color: #fff; padding: 80px 0;
}
.counters { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.counter .v { font-size: 54px; font-weight: 700; letter-spacing: -.02em; color: var(--amber); line-height: 1; }
.counter .k { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.75); margin-top: 10px; letter-spacing: .02em; }

/* ============ DEPLOYMENTS ============ */
.deploys { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.deploy {
  background: var(--surface); overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.deploy:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.deploy .photo { height: 280px; position: relative; overflow: hidden; background: #222; }
.deploy .photo img { width: 100%; height: 100%; object-fit: cover; }
.deploy .photo .tag {
  position: absolute; top: 18px; left: 18px;
  background: rgba(46,52,64,.92);
  backdrop-filter: blur(6px);
  color: #eceff4;
  font-size: 12px; font-weight: 600; letter-spacing: .06em;
  padding: 7px 12px;
}
.deploy .body { padding: 30px 32px 32px; }
.deploy .kicker { font-size: 13px; color: var(--amber); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 10px; }
.deploy h4 { font-size: 22px; font-weight: 700; letter-spacing: -.015em; margin: 0 0 14px; line-height: 1.25; color: var(--ink); }
.deploy p { font-size: 15.5px; line-height: 1.6; color: var(--ink-2); margin: 0 0 22px; }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding-top: 22px; border-top: 1px solid var(--line); }
.facts .f { min-width: 0; }
.facts .f .fk { font-size: 11.5px; color: var(--ink-3); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; overflow-wrap: break-word; }
.facts .f .fv { font-size: 16px; color: var(--ink); font-weight: 600; margin-top: 4px; overflow-wrap: break-word; }

/* ============ TEAM ============ */
.team-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.team-photo { overflow: hidden; box-shadow: var(--shadow-card); aspect-ratio: 4 / 3; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-copy h3 { font-size: 32px; font-weight: 700; letter-spacing: -.02em; margin: 0 0 18px; color: var(--ink); }
.team-copy p { font-size: 17px; color: var(--ink-2); line-height: 1.65; margin: 0 0 14px; }
.team-copy .aff { margin-top: 24px; font-size: 14px; color: var(--ink-3); font-weight: 500; display: inline-flex; gap: 8px; align-items: center; }
.team-copy .aff::before { content: ""; width: 8px; height: 8px; background: var(--amber); flex-shrink: 0; }

/* ============ SUPPORTERS ============ */
.supporters { padding: 60px 0; background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sup-label { font-size: 13px; color: var(--ink-3); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; text-align: center; margin-bottom: 30px; }
.sup-logos { display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap; }
.sup-logos { --supporter-logo-height: 56px; }
.sup-logos img { height: var(--supporter-logo-height); width: auto; opacity: .6; filter: grayscale(1) brightness(2); transition: opacity .2s, filter .2s; }
.sup-logos img:hover { opacity: 1; filter: grayscale(0) brightness(1); }
.sup-logos .logo-swap { position: relative; display: inline-block; height: var(--supporter-logo-height); }
.sup-logos .logo-swap img { display: block; height: var(--supporter-logo-height); width: auto; filter: none; opacity: 1; transition: opacity .2s; }
.sup-logos .logo-swap .logo-hover { opacity: 0; position: absolute; top: 0; left: 0; }
.sup-logos .logo-swap:hover .logo-default { opacity: 0; }
.sup-logos .logo-swap:hover .logo-hover { opacity: 1; }

/* ============ NEWS ============ */
.news-sec { padding: 110px 0; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card {
  background: var(--surface); border: 1px solid var(--line);
  padding: 28px; display: flex; flex-direction: column; gap: 14px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .2s;
  text-decoration: none;
}
.news-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); border-color: var(--amber); }
.news-src { display: flex; justify-content: space-between; font-size: 13px; align-items: center; gap: 12px; }
.news-src b { font-weight: 700; color: var(--ink); }
.news-src span { color: var(--ink-3); }
.news-card h5 { font-size: 16.5px; font-weight: 600; line-height: 1.4; margin: 0; color: var(--ink); letter-spacing: -.01em; flex: 1; }
.news-card .link { font-size: 13px; font-weight: 600; color: var(--amber); display: inline-flex; align-items: center; gap: 6px; margin-top: auto; }
.news-card .link .arr { transition: transform .15s; display: inline-block; }
.news-card:hover .link .arr { transform: translateX(3px); }

/* ============ CONTACT ============ */
.contact-band {
  background: var(--slate); color: #fff; padding: 120px 0;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.contact-grid .eyebrow { color: var(--amber-soft); }
.contact-grid h2 { color: #fff; font-size: clamp(32px, 3.4vw, 44px); font-weight: 700; line-height: 1.15; letter-spacing: -.02em; margin: 0 0 22px; }
.contact-grid h2 .amber { color: var(--amber-soft); }
.contact-grid p.lede { font-size: 17px; color: rgba(255,255,255,.78); line-height: 1.6; margin: 0 0 32px; }
.contact-meta-new { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15); }
.contact-meta-new .row { display: flex; gap: 18px; font-size: 15px; }
.contact-meta-new .k { flex: 0 0 100px; color: rgba(255,255,255,.6); font-weight: 500; }
.contact-meta-new .v { color: #fff; font-weight: 500; }
.contact-meta-new .v a { border-bottom: 1px solid rgba(255,255,255,.3); }
.contact-meta-new .v a:hover { border-bottom-color: var(--amber); }

.form-card {
  background: var(--surface); color: var(--ink);
  padding: 36px; box-shadow: 0 30px 60px -20px rgba(0,0,0,.4);
}
.form-card .frm-head { display: flex; justify-content: space-between; margin-bottom: 22px; align-items: center; }
.form-card .frm-head .t { font-size: 18px; font-weight: 700; letter-spacing: -.01em; }
.form-card .frm-head .pw { font-size: 12px; color: var(--ink-3); font-weight: 500; }
.form-card label { font-size: 13px; font-weight: 600; color: var(--ink-2); margin-bottom: 6px; display: block; }
.form-card input, .form-card select, .form-card textarea {
  width: 100%; padding: 12px 14px; font: inherit; font-size: 15px;
  background: var(--surface-alt); border: 1.5px solid transparent;
  color: var(--ink); transition: border-color .15s, background .15s;
  font-family: inherit;
}
.form-card input:focus, .form-card select:focus, .form-card textarea:focus {
  outline: none; border-color: var(--amber); background: var(--surface);
}
.form-card textarea { resize: vertical; min-height: 90px; }
.form-card .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-card .form-row.full { grid-template-columns: 1fr; }
.form-card .submit { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; gap: 14px; }
.form-card .submit .note { font-size: 12px; color: var(--ink-3); }
.form-card .sent { display: none; margin-top: 14px; font-size: 13px; color: var(--ok); font-weight: 600; }

/* ============ FOOTER ============ */
footer { background: var(--footer-bg); color: var(--footer-ink); padding: 80px 0 40px; }
footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
footer h6 { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin: 0 0 18px; color: rgba(255,255,255,.95); }
footer .col a { display: block; font-size: 14.5px; color: rgba(255,255,255,.65); margin-bottom: 10px; transition: color .15s; }
footer .col a:hover { color: var(--amber); }
footer .desc { font-size: 14.5px; color: rgba(255,255,255,.6); max-width: 38ch; margin: 18px 0 18px; line-height: 1.55; }
footer .loc { font-size: 13px; color: rgba(255,255,255,.4); font-weight: 500; letter-spacing: .04em; }
footer .bot { display: flex; justify-content: space-between; padding-top: 24px; font-size: 13px; color: rgba(255,255,255,.45); flex-wrap: wrap; gap: 12px; }
footer .bot a { display: inline; color: rgba(255,255,255,.55); margin: 0; }
footer .bot a:hover { color: var(--amber); }
footer .brand { color: #fff; }

/* ============ SINGLE PAGE ============ */
.single-page { padding: 120px 0 80px; min-height: 60vh; }
.single-page h1 { font-size: clamp(28px, 3vw, 44px); font-weight: 700; letter-spacing: -.025em; margin: 0 0 40px; }
.single-page h2 { font-size: 20px; font-weight: 700; letter-spacing: -.01em; margin: 32px 0 12px; }
.single-page p, .single-page li { color: var(--ink-2); line-height: 1.65; font-size: 15.5px; }
.single-page a { color: var(--amber); }
.single-page a:hover { text-decoration: underline; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .benefit { grid-template-columns: 1fr; gap: 48px; }
  .benefit--reverse { direction: ltr; }
  .feat-grid { grid-template-columns: 1fr; }
  .deploys { grid-template-columns: 1fr; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .facts .f:nth-child(3) { display: none; }
  .team-layout { grid-template-columns: 1fr; gap: 36px; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .counters { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  footer .cols { grid-template-columns: 1fr 1fr; gap: 36px; }
  .nav-links { display: none; }
  .hero { padding: 80px 0 48px; }
}
@media (max-width: 640px) {
  :root { --pad: 20px; }
  .news-grid { grid-template-columns: 1fr; }
  footer .cols { grid-template-columns: 1fr; }
  .form-card .form-row { grid-template-columns: 1fr; }
  .sec { padding: 80px 0; }
  .news-sec { padding: 80px 0; }
  .hero-visual iframe { aspect-ratio: 8 / 9; }
}
