:root {
  --blue: #2aa0db;
  --blue-dark: #1d7fb2;
  --ink: #2f3237;
  --ink-soft: #5a5f66;
  --bg: #ffffff;
  --bg-soft: #f4f7f9;
  --dark: #14181d;
  --dark-2: #1c2229;
  --line: #e3e8ec;
  --radius: 14px;
  --max: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
header.site .bar {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
header.site img.logo { height: 30px; display: block; }
nav.main { display: flex; gap: 28px; align-items: center; }
nav.main a {
  color: var(--ink-soft); text-decoration: none; font-size: 15px; font-weight: 500;
}
nav.main a:hover { color: var(--blue); }
nav.main a.cta {
  color: #fff; background: var(--blue); padding: 9px 18px; border-radius: 999px;
  transition: background 0.2s;
}
nav.main a.cta:hover { background: var(--blue-dark); color: #fff; }
@media (max-width: 720px) {
  nav.main a:not(.cta) { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, #f8fbfd 0%, #eef4f8 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero .inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px;
  align-items: center; padding: 88px 0 96px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 20px;
}
.eyebrow img { height: 14px; }
.hero h1 {
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.12; letter-spacing: -0.02em; font-weight: 700;
  margin-bottom: 22px;
}
.hero h1 span { color: var(--blue); }
.hero p.lead { font-size: 19px; color: var(--ink-soft); max-width: 34em; margin-bottom: 34px; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block; text-decoration: none; font-weight: 600; font-size: 16px;
  padding: 14px 28px; border-radius: 999px; transition: all 0.2s;
}
.btn.primary { background: var(--blue); color: #fff; }
.btn.primary:hover { background: var(--blue-dark); }
.btn.ghost { border: 1.5px solid var(--ink); color: var(--ink); }
.btn.ghost:hover { border-color: var(--blue); color: var(--blue); }
.hero .photo {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 24px 60px rgba(20, 40, 60, 0.18);
}
.hero .photo img { width: 100%; display: block; }
@media (max-width: 860px) {
  .hero .inner { grid-template-columns: 1fr; padding: 56px 0 64px; }
}

/* ---------- Sections ---------- */
section { padding: 88px 0; }
section.alt { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.kicker {
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 12px;
}
h2 { font-size: clamp(26px, 3.2vw, 38px); letter-spacing: -0.015em; margin-bottom: 18px; }
.section-intro { font-size: 18px; color: var(--ink-soft); max-width: 46em; }

/* ---------- Story ---------- */
.story {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center;
}
.story .photo { border-radius: var(--radius); overflow: hidden; box-shadow: 0 18px 44px rgba(20,40,60,0.14); }
.story .photo img { width: 100%; display: block; }
.story p { color: var(--ink-soft); margin-bottom: 16px; font-size: 17px; }
.story p strong { color: var(--ink); }
@media (max-width: 860px) { .story { grid-template-columns: 1fr; } }

/* ---------- Services ---------- */
.cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px;
}
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(20,40,60,0.10); }
.card .icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(42, 160, 219, 0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card .icon img { width: 22px; height: 22px; }
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 15.5px; }
@media (max-width: 860px) { .cards { grid-template-columns: 1fr; } }

.domain-cta { margin-top: 40px; font-size: 18px; color: var(--ink-soft); }
.domain-cta a { color: var(--blue); font-weight: 600; }

/* ---------- Track record / dark ---------- */
section.dark {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #eef2f5;
}
section.dark h2 { color: #fff; }
section.dark .section-intro { color: #aab4bd; }
.facts {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px;
}
.fact {
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius);
  padding: 28px;
  background: rgba(255,255,255,0.03);
}
.fact .num { font-size: 34px; font-weight: 700; color: var(--blue); margin-bottom: 6px; }
.fact p { color: #aab4bd; font-size: 15.5px; }
.partners {
  margin-top: 44px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.12);
}
.partners .label { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: #7d8893; margin-bottom: 18px; }
.partners ul { list-style: none; display: flex; flex-wrap: wrap; gap: 12px 14px; }
.partners li {
  border: 1px solid rgba(255,255,255,0.18); border-radius: 999px;
  padding: 8px 20px; font-size: 15px; font-weight: 600; color: #dde5ea;
}
@media (max-width: 860px) { .facts { grid-template-columns: 1fr; } }

/* ---------- Community / gallery ---------- */
.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px;
}
.gallery figure {
  border-radius: var(--radius); overflow: hidden; position: relative;
  box-shadow: 0 14px 34px rgba(20,40,60,0.12);
}
.gallery img { width: 100%; height: 320px; object-fit: cover; display: block; transition: transform 0.35s; }
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px; font-size: 13.5px; color: #fff;
  background: linear-gradient(transparent, rgba(10, 16, 22, 0.75));
}
.conf-list { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px 14px; }
.conf-list span {
  border: 1px solid var(--line); background: #fff; border-radius: 999px;
  padding: 9px 20px; font-size: 15px; font-weight: 600; color: var(--ink);
}
.conf-list span em { font-style: normal; color: var(--blue); font-weight: 700; }
@media (max-width: 860px) { .gallery { grid-template-columns: 1fr; } .gallery img { height: 260px; } }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.contact-grid .photo { border-radius: var(--radius); overflow: hidden; box-shadow: 0 18px 44px rgba(20,40,60,0.14); }
.contact-grid .photo img { width: 100%; display: block; }
.contact-item { display: flex; gap: 16px; margin-top: 26px; align-items: flex-start; }
.contact-item .icon {
  width: 44px; height: 44px; flex: none; border-radius: 12px;
  background: rgba(42,160,219,0.12); display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.contact-item h4 { font-size: 15px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); margin-bottom: 2px; }
.contact-item a { color: var(--ink); font-size: 18px; font-weight: 600; text-decoration: none; }
.contact-item a:hover { color: var(--blue); }
.contact-item p { font-size: 17px; font-weight: 600; }
.contact-item p small { display: block; font-weight: 400; color: var(--ink-soft); }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
footer.site {
  background: var(--dark); color: #8b96a0; padding: 44px 0;
}
footer.site .row {
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
}
footer.site img { height: 24px; opacity: 0.9; }
footer.site nav { display: flex; gap: 24px; }
footer.site a { color: #b9c2ca; text-decoration: none; font-size: 14.5px; }
footer.site a:hover { color: var(--blue); }
footer.site p { font-size: 14px; }

/* ---------- Legal pages ---------- */
.legal { padding: 72px 0 96px; max-width: 780px; }
.legal h1 { font-size: clamp(30px, 4vw, 42px); letter-spacing: -0.02em; margin-bottom: 10px; }
.legal .updated { color: var(--ink-soft); font-size: 15px; margin-bottom: 40px; }
.legal h2 { font-size: 22px; margin: 40px 0 12px; }
.legal h3 { font-size: 17.5px; margin: 26px 0 8px; }
.legal p, .legal li { color: var(--ink-soft); font-size: 16px; margin-bottom: 12px; }
.legal ul { padding-left: 22px; margin-bottom: 12px; }
.legal address { font-style: normal; color: var(--ink); font-size: 16px; line-height: 1.7; margin-bottom: 12px; }
.legal a { color: var(--blue); }
