
:root {
  --brand-900: #143d2c;
  --brand-800: #1f533d;
  --brand-700: #2a6a4d;
  --brand-600: #3f7d61;
  --brand-500: #5d9577;
  --brand-300: #b9d2c2;
  --brand-200: #d6e6dc;
  --brand-100: #edf4f0;
  --ink: #1f2a24;
  --muted: #58655d;
  --line: #d7e1da;
  --surface: #ffffff;
  --surface-soft: #f6faf7;
  --shadow: 0 18px 50px rgba(20, 61, 44, 0.10);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1120px;
}

* { 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:
    radial-gradient(circle at top right, rgba(185, 210, 194, 0.28), transparent 22%),
    linear-gradient(180deg, #fbfdfb 0%, #f4f8f5 100%);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(20, 61, 44, 0.08);
}

.navbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--brand-900);
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-700), var(--brand-500));
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 15px;
}

.nav-links a:hover { color: var(--brand-900); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(20, 61, 44, 0.14);
}

.button.primary {
  background: linear-gradient(135deg, var(--brand-800), var(--brand-600));
  color: white;
}

.button.secondary {
  background: white;
  color: var(--brand-900);
  border-color: var(--line);
}

.hero {
  padding: 76px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-100);
  color: var(--brand-800);
  border: 1px solid var(--brand-200);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: var(--brand-900);
}

.hero p {
  font-size: 19px;
  color: var(--muted);
  max-width: 680px;
  margin: 22px 0 28px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.logo-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.logo-card img {
  width: 100%;
  border-radius: 18px;
}

.section {
  padding: 56px 0;
}

.section h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--brand-900);
}

.section-intro {
  color: var(--muted);
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 17px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 10px;
  color: var(--brand-900);
  font-size: 20px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--brand-800);
  background: var(--brand-100);
  border: 1px solid var(--brand-200);
  border-radius: 999px;
  padding: 6px 10px;
  margin-bottom: 14px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.flow {
  display: grid;
  gap: 12px;
}

.flow-item {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.flow-item strong {
  color: var(--brand-900);
}

.cta {
  margin: 10px 0 72px;
  background:
    radial-gradient(circle at top left, rgba(214, 230, 220, 0.70), transparent 42%),
    linear-gradient(135deg, #ffffff 0%, #f6faf7 100%);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
}

footer {
  border-top: 1px solid var(--line);
  padding: 30px 0 44px;
  color: var(--muted);
  font-size: 14px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

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

.legal {
  padding: 56px 0 80px;
}

.legal-wrap {
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.legal h1 {
  font-size: clamp(36px, 5vw, 58px);
  margin-bottom: 16px;
}

.legal h2 {
  color: var(--brand-900);
  margin-top: 28px;
  margin-bottom: 8px;
  font-size: 24px;
}

.legal p, .legal li {
  color: var(--muted);
}

.notice {
  background: var(--brand-100);
  border: 1px solid var(--brand-200);
  color: var(--brand-800);
  border-radius: 16px;
  padding: 14px 16px;
  margin-top: 16px;
}

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

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.contact-item {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
}

.small {
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero-grid, .split, .card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 740px) {
  .nav-links a:not(.button) { display: none; }
  .container { width: min(var(--max), calc(100% - 24px)); }
  .hero { padding-top: 46px; }
  .cta, .legal-wrap { padding: 24px; }
}
