:root {
  --teal: #2ec4b6;
  --teal-dark: #1fa79b;
  --navy: #0b5d8f;
  --deep: #062b44;
  --ink: #10222e;
  --muted: #5b6b78;
  --line: #e6edf1;
  --bg-soft: #f4f8fa;
  --white: #ffffff;
  --shadow: 0 8px 30px rgba(6, 43, 68, 0.08);
  --radius: 16px;
  --max: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.gen-img {
  background: linear-gradient(135deg, #dcebf2, #e8f6f4);
  min-height: 80px;
}

.container {
  width: min(var(--max), 92%);
  margin: 0 auto;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--deep);
}
.brand .logo { flex: none; }
.brand-name {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.brand-name .accent { color: var(--navy); }
.site-nav { display: flex; gap: 26px; }
.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.98rem;
}
.site-nav a:hover { color: var(--deep); }

.btn {
  display: inline-block;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  font-weight: 600;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: var(--white);
  padding: 12px 24px;
  box-shadow: 0 8px 20px rgba(11, 93, 143, 0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(11, 93, 143, 0.32); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 10px 22px;
}
.btn-ghost:hover { background: rgba(11, 93, 143, 0.08); }
.btn-lg { padding: 14px 28px; font-size: 1.02rem; }
.btn-block { width: 100%; padding: 13px; font-size: 1rem; }
.cta-top { padding: 10px 20px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--deep);
  border-radius: 2px;
  transition: 0.25s ease;
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(46, 196, 182, 0.18), transparent 60%),
    radial-gradient(900px 500px at 0% 110%, rgba(11, 93, 143, 0.12), transparent 55%),
    var(--bg-soft);
  padding: clamp(56px, 8vw, 96px) 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.badge {
  display: inline-block;
  background: rgba(46, 196, 182, 0.15);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.3rem);
  line-height: 1.12;
  margin: 0 0 16px;
  color: var(--deep);
  letter-spacing: -0.03em;
}
.accent-text { color: var(--navy); }
.hero p { color: var(--muted); font-size: 1.08rem; max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin: 26px 0 30px; }
.hero-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
}
.hero-points li { color: var(--deep); font-weight: 600; font-size: 0.95rem; }
.check { color: var(--teal); font-weight: 800; margin-right: 4px; }

.hero-visual { position: relative; display: grid; }
.hero-visual img {
  border-radius: 22px;
  box-shadow: var(--shadow);
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.card-float {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(6, 43, 68, 0.18);
  padding: 12px 18px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--deep);
}
.card-float-up { top: -18px; left: -18px; color: var(--teal-dark); }
.card-float-down { bottom: -18px; right: -12px; }

/* ---------- Sections ---------- */
.section { padding: clamp(48px, 7vw, 88px) 0; }
.section-alt { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 40px; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin: 0 0 8px; color: var(--deep); letter-spacing: -0.02em; }
.section-head p { color: var(--muted); margin: 0; }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 24px; }
.services { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  background: color-mix(in srgb, var(--i) 15%, transparent);
  margin-bottom: 16px;
}
.card h3 { margin: 0 0 6px; color: var(--deep); font-size: 1.15rem; }
.card p { margin: 0; color: var(--muted); }

/* ---------- Offices ---------- */
.offices { grid-template-columns: repeat(3, 1fr); }
.office { padding: 0; overflow: hidden; }
.office img { width: 100%; height: 190px; object-fit: cover; }
.office-body { padding: 20px 22px 24px; }
.office p { font-size: 0.92rem; }
.office a { color: var(--navy); text-decoration: none; font-weight: 600; }
.office a:hover { text-decoration: underline; }

/* ---------- Team ---------- */
.team { grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-item { padding: 16px; text-align: center; }
.team-item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 14px;
}
.team-item h3 { margin: 0; font-size: 1.02rem; }
.team-item span { color: var(--muted); font-size: 0.88rem; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 { font-size: 2rem; color: var(--deep); margin: 0 0 10px; letter-spacing: -0.02em; }
.contact-info p { color: var(--muted); }
.contact-list { list-style: none; padding: 0; margin: 20px 0 24px; }
.contact-list li { margin-bottom: 14px; font-weight: 600; }
.contact-list .mini {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(46, 196, 182, 0.15);
  margin-right: 12px;
  color: var(--navy);
  font-size: 1.1rem;
}
.contact-list a { color: var(--deep); text-decoration: none; }
.contact-list a:hover { color: var(--navy); }

.socials { display: flex; gap: 12px; }
.soc {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--deep);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: 0.2s ease;
}
.soc:hover { background: var(--navy); transform: translateY(-2px); }

.form { max-width: 460px; margin-left: auto; }
.form h3 { margin-top: 0; color: var(--deep); }
.form label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 14px;
}
.form input, .form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg-soft);
}
.form input:focus, .form textarea:focus { outline: 2px solid var(--teal); border-color: transparent; }
.form-note { margin-top: 14px; font-size: 0.9rem; font-weight: 600; text-align: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--deep); color: #c7d6e0; padding: 40px 0; text-align: center; font-size: 0.9rem; }
.footer-inner { display: grid; gap: 6px; }
.brand-brand { color: var(--white); font-weight: 800; font-size: 1.1rem; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual img { height: 320px; }
  .services, .team { grid-template-columns: repeat(2, 1fr); }
  .team { gap: 16px; }
  .offices { grid-template-columns: 1fr; }
  .form { margin-left: 0; }
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 12px 16px 20px;
    box-shadow: 0 12px 24px rgba(6, 43, 68, 0.08);
    display: none;
  }
  .site-nav.open { display: flex; }
  .cta-top { display: none; }
}
@media (max-width: 520px) {
  .services, .team { grid-template-columns: 1fr; }
  .card-float-up { top: -12px; left: -6px; }
  .card-float-down { bottom: -12px; right: -6px; }
  .hero-actions .btn { width: 100%; text-align: center; }
}