:root {
  --teal: #22a8bd;
  --teal-dark: #117f91;
  --orange: #f79432;
  --ink: #18313a;
  --muted: #60727a;
  --soft: #f4f8f9;
  --line: #dce8eb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(22, 72, 82, .10);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}
a { color: var(--teal-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(220,232,235,.85);
}
.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 255px; height: auto; }
.nav { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.nav a { color: var(--ink); font-weight: 650; font-size: .94rem; }

.hero {
  min-height: 68vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(34,168,189,.15), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(247,148,50,.13), transparent 28%),
    linear-gradient(145deg, #ffffff 0%, #f4fafb 58%, #eef7f8 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(34,168,189,.045) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(34,168,189,.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 88px 0;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  gap: 64px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(34,168,189,.10);
  color: var(--teal-dark);
  font-weight: 750;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.02;
  margin: 22px 0 22px;
  letter-spacing: -.045em;
}
.lead { font-size: clamp(1.05rem, 2vw, 1.28rem); color: var(--muted); max-width: 700px; }
.hero-card {
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.hero-card h2 { margin-top: 0; font-size: 1.35rem; }
.status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
  color: var(--teal-dark);
}
.status-dot {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(247,148,50,.13);
}
.contact-list { display: grid; gap: 13px; margin-top: 24px; }
.contact-item {
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--soft);
  border: 1px solid var(--line);
}
.contact-item small { display: block; color: var(--muted); font-weight: 650; }
.contact-item strong { display: block; margin-top: 2px; overflow-wrap: anywhere; }

.section { padding: 84px 0; }
.section-soft { background: var(--soft); }
.section-title { font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.15; margin: 0 0 14px; letter-spacing: -.025em; }
.section-intro { color: var(--muted); max-width: 760px; margin: 0 0 36px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(22,72,82,.05);
}
.card h3 { margin: 0 0 9px; font-size: 1.15rem; }
.card p { margin: 0; color: var(--muted); }

.legal {
  padding: 64px 0 90px;
}
.legal article {
  max-width: 860px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(26px, 5vw, 54px);
  box-shadow: var(--shadow);
}
.legal h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
.legal h2 { margin-top: 34px; font-size: 1.25rem; }
.legal p, .legal li { color: #405861; }
.notice {
  padding: 16px 18px;
  border-left: 4px solid var(--orange);
  background: #fff8f0;
  border-radius: 10px;
}

.site-footer {
  background: #102d35;
  color: rgba(255,255,255,.82);
  padding: 48px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; }
.footer-logo {
  width: 220px;
  padding: 14px;
  background: white;
  border-radius: 14px;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 14px 22px; align-content: start; }
.footer-links a { color: white; }
.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: .9rem;
}

@media (max-width: 820px) {
  .header-inner { min-height: auto; padding: 15px 0; align-items: flex-start; }
  .brand img { width: 210px; }
  .nav { display: none; }
  .hero-content { grid-template-columns: 1fr; gap: 34px; padding: 64px 0; }
  .grid-3, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}