:root {
  --bg: #ffffff;
  --soft: #f3fbf9;
  --soft-2: #eef6ff;
  --text: #10201f;
  --muted: #5e6f6d;
  --primary: #0f766e;
  --primary-dark: #0a514c;
  --accent: #f59e0b;
  --border: #dce9e7;
  --shadow: 0 24px 70px rgba(15, 118, 110, 0.14);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), #22c3b5);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: -0.04em;
  box-shadow: 0 14px 28px rgba(15, 118, 110, 0.18);
}
.brand strong { display: block; font-size: 17px; line-height: 1.1; }
.brand small { display: block; color: var(--muted); font-size: 12px; margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 22px; font-size: 14px; font-weight: 600; color: #304542; }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--primary); }
.hero-section {
  padding: 84px 0 72px;
  background:
    radial-gradient(circle at 12% 12%, rgba(245, 158, 11, 0.16), transparent 32%),
    radial-gradient(circle at 90% 18%, rgba(15, 118, 110, 0.16), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7fffd 100%);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr); gap: 42px; align-items: center; }
.eyebrow { margin: 0 0 12px; color: var(--primary); text-transform: uppercase; letter-spacing: 0.12em; font-size: 12px; font-weight: 800; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(48px, 8vw, 86px); line-height: 0.94; letter-spacing: -0.07em; margin-bottom: 24px; }
h2 { font-size: clamp(28px, 4vw, 46px); line-height: 1.05; letter-spacing: -0.04em; margin-bottom: 16px; }
h3 { font-size: 20px; line-height: 1.2; margin-bottom: 10px; }
.hero-text { font-size: 19px; color: var(--muted); max-width: 680px; margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 13px 22px; border-radius: 999px; text-decoration: none; font-weight: 800; border: 1px solid transparent; transition: transform .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: white; box-shadow: 0 15px 30px rgba(15,118,110,.22); }
.btn-secondary { background: white; color: var(--primary-dark); border-color: var(--border); box-shadow: 0 12px 24px rgba(16,32,31,.06); }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-row span { background: white; border: 1px solid var(--border); border-radius: 999px; padding: 8px 13px; font-size: 13px; font-weight: 700; color: #3d5350; }
.hero-card { position: relative; overflow: hidden; background: #10201f; color: white; border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.card-glow { position: absolute; inset: -120px -120px auto auto; width: 260px; height: 260px; border-radius: 50%; background: rgba(245,158,11,.28); filter: blur(8px); }
.hero-card h2 { position: relative; font-size: 28px; margin-bottom: 24px; }
dl { position: relative; display: grid; gap: 18px; margin: 0; }
dt { font-size: 12px; color: #a4d5cf; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; margin-bottom: 3px; }
dd { margin: 0; color: #f3fffd; }
dd a { color: white; }
.section-pad { padding: 76px 0; }
.alt-bg { background: linear-gradient(180deg, var(--soft), #ffffff); }
.two-col { display: grid; grid-template-columns: .8fr 1.2fr; gap: 36px; align-items: start; }
.content-card, .feature-card, .contact-card, .legal-card, .info-band { background: white; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: 0 14px 40px rgba(16,32,31,.06); }
.content-card { padding: 30px; color: var(--muted); font-size: 17px; }
.content-card p:last-child, .legal-card p:last-child { margin-bottom: 0; }
.section-heading { text-align: center; max-width: 720px; margin: 0 auto 34px; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { padding: 28px; min-height: 210px; }
.feature-card p { color: var(--muted); margin-bottom: 0; }
.icon-dot { display: inline-block; width: 42px; height: 42px; border-radius: 15px; background: linear-gradient(135deg, var(--accent), #ffd27a); margin-bottom: 20px; box-shadow: 0 12px 28px rgba(245,158,11,.2); }
.info-band { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 34px; background: linear-gradient(135deg, #ffffff, #f4fffd); }
.info-band p { color: var(--muted); max-width: 680px; margin-bottom: 0; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 28px; align-items: start; }
.contact-copy p { color: var(--muted); }
.contact-card { padding: 30px; }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.contact-list li { color: var(--muted); }
.contact-list strong { color: var(--text); }
.legal-card { padding: 34px; max-width: 920px; }
.legal-card p { color: var(--muted); }
.site-footer { background: #10201f; color: white; padding: 52px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 34px; }
.footer-brand { margin-bottom: 16px; }
.footer-grid p { color: #c8d8d6; margin-bottom: 0; }
.footer-grid h3 { font-size: 15px; margin-bottom: 10px; color: #ffffff; }
.footer-grid a { color: #e9fffb; text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; border-top: 1px solid rgba(255,255,255,.12); margin-top: 34px; padding-top: 20px; color: #a9bfbc; font-size: 13px; }
@media (max-width: 900px) {
  .nav-wrap { align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .nav-links { width: 100%; overflow-x: auto; padding-bottom: 4px; gap: 16px; }
  .hero-grid, .two-col, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .hero-section { padding-top: 54px; }
  .info-band { align-items: flex-start; flex-direction: column; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 520px) {
  .container { width: min(100% - 24px, 1120px); }
  .hero-card, .content-card, .feature-card, .contact-card, .legal-card, .info-band { border-radius: 20px; padding: 24px; }
  .hero-actions .btn { width: 100%; }
  h1 { font-size: 48px; }
  .section-pad { padding: 56px 0; }
}
