:root {
  --green: #1faa59;
  --green-dark: #168447;
  --blue: #174c7e;
  --blue-dark: #113a61;
  --ink: #17212b;
  --muted: #66727f;
  --line: #e5e9ee;
  --soft: #f5f8fa;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(17, 58, 97, .10);
  --radius: 20px;
}

* { 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.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.navbar {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; }
.brand img { width: 170px; display: block; }
.navlinks { display: flex; align-items: center; gap: 8px; }
.navlinks a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 15px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--ink);
}
.navlinks a:hover,
.navlinks a.active { background: var(--soft); color: var(--blue); text-decoration: none; }
.navlinks .cta { background: var(--blue); color: white; }
.navlinks .cta:hover { background: var(--blue-dark); color: white; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 18%, rgba(31,170,89,.18), transparent 34%),
    radial-gradient(circle at 12% 85%, rgba(23,76,126,.14), transparent 32%),
    linear-gradient(180deg, #fff, #f8fbfd);
  border-bottom: 1px solid var(--line);
}
.hero::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -140px;
  width: 430px;
  height: 430px;
  border: 46px solid rgba(23,76,126,.035);
  border-radius: 50%;
}
.hero-inner {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 60px;
  align-items: center;
  padding: 70px 0;
  position: relative;
  z-index: 1;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #eaf7f0;
  color: var(--green-dark);
  font-weight: 800;
  font-size: .84rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: .98;
  letter-spacing: -.045em;
  max-width: 840px;
}
.hero h1 span { color: var(--blue); }
.hero p {
  margin: 0 0 30px;
  max-width: 680px;
  font-size: 1.18rem;
  color: var(--muted);
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
}
.btn:hover { text-decoration: none; }
.btn-primary { color: white; background: var(--blue); }
.btn-primary:hover { color: white; background: var(--blue-dark); }
.btn-secondary { color: var(--ink); background: white; border-color: var(--line); }
.btn-secondary:hover { border-color: #cbd4dc; color: var(--blue); }

.hero-card {
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(23,76,126,.10);
  border-radius: 28px;
  padding: 38px;
  box-shadow: var(--shadow);
}
.hero-card img { width: min(100%, 310px); display: block; margin: 0 auto 24px; }
.hero-card p { font-size: 1rem; margin: 0; text-align: center; }

.section { padding: 84px 0; }
.section.soft { background: var(--soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head h2 { margin: 0 0 12px; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; letter-spacing: -.03em; }
.section-head p { margin: 0; color: var(--muted); font-size: 1.08rem; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 8px 30px rgba(17,58,97,.05);
}
.card .icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: #edf4fb;
  color: var(--blue);
  font-weight: 900;
  font-size: 1.15rem;
}
.card h3 { margin: 0 0 8px; font-size: 1.18rem; }
.card p { margin: 0; color: var(--muted); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: start; }
.info-panel {
  border-radius: 24px;
  padding: 34px;
  background: linear-gradient(145deg, var(--blue), var(--blue-dark));
  color: white;
  box-shadow: var(--shadow);
}
.info-panel h2 { margin-top: 0; font-size: 2rem; }
.info-panel a { color: white; text-decoration: underline; text-underline-offset: 3px; }
.info-list { display: grid; gap: 20px; }
.info-row { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; }
.info-row .dot {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,.13);
  display: grid;
  place-items: center;
  font-weight: 900;
}
.info-row strong { display: block; margin-bottom: 2px; }
.info-row span { color: rgba(255,255,255,.82); }

.legal-box { border: 1px solid var(--line); border-radius: 20px; padding: 28px; background: white; }
.legal-box h3 { margin-top: 0; }
.legal-grid { display: grid; gap: 12px; }
.legal-grid div { padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.legal-grid div:last-child { border-bottom: 0; padding-bottom: 0; }
.legal-grid b { display: block; font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 2px; }

.notice {
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid #dbe6ee;
  background: #f8fbfd;
  color: #44515e;
}
.notice strong { color: var(--ink); }

.site-footer { background: #101820; color: #d6dde3; padding: 44px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: start; }
.footer-brand img { width: 150px; filter: drop-shadow(0 0 0 transparent); background: white; border-radius: 10px; padding: 8px; }
.footer-brand p { max-width: 560px; color: #aeb9c2; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: flex-end; }
.footer-links a { color: #d6dde3; }
.footer-bottom { margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.10); color: #8d9aa5; font-size: .92rem; }

.page-hero { padding: 76px 0 58px; background: linear-gradient(180deg,#f8fbfd,#fff); border-bottom: 1px solid var(--line); }
.page-hero h1 { margin: 12px 0 12px; font-size: clamp(2.4rem, 5vw, 4.2rem); line-height: 1; letter-spacing: -.04em; }
.page-hero p { margin: 0; color: var(--muted); font-size: 1.14rem; max-width: 700px; }

@media (max-width: 860px) {
  .navbar { min-height: auto; padding: 14px 0; align-items: flex-start; }
  .brand img { width: 135px; }
  .navlinks { gap: 2px; flex-wrap: wrap; justify-content: flex-end; }
  .navlinks a { min-height: 38px; padding: 0 10px; font-size: .92rem; }
  .hero-inner { grid-template-columns: 1fr; min-height: auto; gap: 36px; padding: 58px 0; }
  .hero-card { max-width: 520px; }
  .cards { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 26px, 1120px); }
  .navbar { display: block; }
  .brand { margin-bottom: 8px; }
  .navlinks { justify-content: flex-start; }
  .hero h1 { font-size: 2.65rem; }
  .section { padding: 62px 0; }
  .hero-card, .info-panel, .legal-box, .card { padding: 24px; }
  .btn { width: 100%; }
}
