:root {
  --bg: #081122;
  --bg-2: #0d1a33;
  --panel: rgba(11, 23, 48, .82);
  --panel-strong: #111d39;
  --gold: #f2c230;
  --gold-2: #ffd86b;
  --teal: #17a39a;
  --text: #f5f7fb;
  --muted: #b3bfd1;
  --line: rgba(255,255,255,.10);
  --shadow: 0 18px 60px rgba(0,0,0,.28);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(242, 194, 48, .16), transparent 28%),
    radial-gradient(circle at 82% 14%, rgba(23, 163, 154, .20), transparent 20%),
    linear-gradient(180deg, #050b18 0%, var(--bg) 32%, #081221 100%);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 92%);
  opacity: .18;
  z-index: 0;
}

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.page {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(7,14,28,.84);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 12px 26px rgba(0,0,0,.34);
  background: rgba(255,255,255,.06);
}

.brand-copy strong {
  display: block;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: .01em;
  color: #ffffff;
}

.brand-copy span {
  display: block;
  font-size: 12.5px;
  color: rgba(255,255,255,.72);
  margin-top: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav a {
  color: rgba(255,255,255,.82);
  font-size: 14px;
  font-weight: 700;
  opacity: .92;
}

.nav a:hover { color: #ffffff; }

.actions {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 800;
  font-size: 14px;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); box-shadow: 0 14px 30px rgba(0,0,0,.2); }
.btn.primary {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #122041;
  border-color: rgba(242, 194, 48, .8);
}
.btn.secondary {
  background: rgba(255,255,255,.05);
  color: #ffffff;
  border-color: rgba(255,255,255,.10);
}
.btn.ghost {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,.10);
}

.hero {
  padding: 52px 0 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 530px);
  gap: 34px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 84px);
  line-height: .92;
  letter-spacing: -.05em;
  max-width: 11ch;
}

.lead {
  margin: 20px 0 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}

.site-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(242, 194, 48, .24);
  border-radius: 999px;
  background: rgba(242, 194, 48, .08);
  color: #ffe9a6;
  font-size: 13px;
  font-weight: 800;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.chips li {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(23,163,154,.26);
  background: rgba(23,163,154,.12);
  color: #dbfffb;
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.panel,
.hero-card,
.metric,
.service-card,
.partner-card,
.story-card,
.contact-card,
.faq-card,
.quote-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card {
  position: relative;
  overflow: hidden;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card.main {
  height: 100%;
  min-height: 560px;
}

.hero-badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(8,17,34,.82);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
}

.hero-badge strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
  color: #ffffff;
}

.hero-badge span {
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.5;
}

.section {
  padding: 24px 0 82px;
}

.section.alt {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
  max-width: 900px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -.03em;
  color: #ffffff;
}

.section-head p {
  margin: 0;
  color: rgba(255,255,255,.84);
  font-size: 16px;
  line-height: 1.7;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.services-spot-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px 18px;
  align-items: start;
}

.service-spot {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 12px;
}

.service-spot-icon {
  width: 130px;
  height: 130px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,.18), transparent 28%),
    linear-gradient(145deg, #f4cf4d 0%, #e89d24 38%, #15b7ab 100%);
  box-shadow:
    0 20px 40px rgba(0,0,0,.24),
    inset 0 1px 0 rgba(255,255,255,.22);
  color: #ffffff;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: .08em;
}

.service-spot strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -.02em;
  max-width: 14ch;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.metric, .service-card, .partner-card, .story-card, .contact-card, .faq-card, .quote-card {
  padding: 22px;
}

.number-card {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 12px;
  min-height: 255px;
  padding: 28px 22px;
  background:
    radial-gradient(circle at top, rgba(242,194,48,.10), transparent 42%),
    linear-gradient(180deg, rgba(10,20,41,.90), rgba(8,16,32,.78));
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 24px;
  box-shadow: 0 22px 48px rgba(0,0,0,.22);
}

.number-card strong {
  display: block;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--gold-2);
}

.number-card span {
  color: rgba(255,255,255,.80);
  font-size: 16px;
  line-height: 1.5;
  max-width: 18ch;
}

.number-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  border: 1px solid rgba(242,194,48,.22);
  background: linear-gradient(180deg, rgba(242,194,48,.10), rgba(23,163,154,.08));
  color: #ffdb7d;
  font-size: 30px;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.number-card-wide {
  grid-column: span 1;
}

.metric strong,
.service-card strong,
.partner-card strong,
.story-card strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
  color: #ffffff;
}

.metric span,
.service-card p,
.partner-card p,
.story-card p,
.contact-card p,
.faq-card p,
.quote-card p {
  color: rgba(245,248,255,.76);
  line-height: 1.65;
  margin: 0;
}

.service-card {
  background: linear-gradient(180deg, rgba(8, 16, 32, .84), rgba(8, 16, 32, .68));
  backdrop-filter: blur(14px);
}

.service-card .tag,
.partner-card .tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(242, 194, 48, .18);
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 14px;
}

.partner-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}

.partner-logo {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(242,194,48,.30), rgba(72,215,208,.18));
  color: #ffffff;
  font-weight: 900;
  letter-spacing: .06em;
}

.partner-mark {
  width: min(100%, 210px);
  height: 86px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.18));
}

.partner-mark.tall {
  height: 100px;
}

.story-card img,
.quote-card img,
.contact-card img {
  width: 100%;
  border-radius: 18px;
  margin-top: 14px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-card summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 16px;
  color: #ffffff;
}

.faq-card summary::marker { color: var(--gold); }

.faq-card p {
  margin-top: 12px;
}

.contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 16px;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(7,14,28,.72);
  color: #ffffff;
  border-radius: 16px;
  padding: 13px 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.footer {
  padding: 26px 0 50px;
  color: rgba(255,255,255,.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .95fr .95fr .95fr .95fr;
  gap: 16px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(135deg, rgba(22, 36, 64, .96), rgba(11, 22, 42, .94)),
    #0f1b34;
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}

.footer-brand,
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-brand strong,
.footer-title {
  color: #ffffff;
}

.footer-brand strong {
  font-size: 23px;
  line-height: 1.1;
}

.footer-brand-logo {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 14px;
  object-fit: contain;
  box-shadow: 0 10px 20px rgba(0,0,0,.24);
}

.footer-main-link {
  color: var(--gold-2);
  font-weight: 900;
  font-size: 13px;
}

.footer-brand p {
  margin: 0;
  color: rgba(255,255,255,.72);
}

.footer-title {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .88;
}

.footer-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,.9);
  font-weight: 800;
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}

.footer-links a:hover {
  transform: translateY(-1px);
  background: rgba(242, 194, 48, .12);
  border-color: rgba(242, 194, 48, .45);
  color: #ffffff;
}

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

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

@media (max-width: 1100px) {
  .hero-grid,
  .contact-wrap,
  .numbers-grid,
  .services-spot-grid,
  .grid-4,
  .grid-3,
  .grid-2,
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 780px) {
  .topbar-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .nav,
  .actions {
    justify-content: flex-start;
  }

  .hero-grid,
  .contact-wrap,
  .numbers-grid,
  .services-spot-grid,
  .grid-4,
  .grid-3,
  .grid-2,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-card.main {
    min-height: 380px;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero {
    padding-top: 34px;
  }

  .number-card {
    min-height: 220px;
  }

  .service-spot-icon {
    width: 112px;
    height: 112px;
  }
}
