:root {
  --mint-dark: #0A8A5C;
  --mint: #2DB682;
  --mint-type: #0C8F60;
  --navy: #15232F;
  --navy-deep: #0E1A23;
  --ink: #1b2730;
  --muted: #5b6b76;
  --bg: #f6f8f7;
  --card: #ffffff;
  --radius: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--mint-type); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e6ecea;
}
.nav .container { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; color: var(--navy); }
.brand img.logo { height: 34px; width: auto; display: block; }
.nav-links a { color: var(--ink); margin-left: 22px; font-weight: 600; font-size: 15px; }

/* Hero */
.hero {
  background:
    radial-gradient(1100px 400px at 80% -10%, rgba(45,182,130,.18), transparent),
    var(--bg);
  padding: 72px 0 56px;
}
.hero .container { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.eyebrow { color: var(--mint-type); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; font-size: 13px; }
.hero h1 { font-size: clamp(34px, 5vw, 52px); line-height: 1.1; color: var(--navy); margin: 12px 0 16px; letter-spacing: -.02em; }
.hero p.lead { font-size: 18px; color: var(--muted); max-width: 540px; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--mint), var(--mint-dark));
  color: #fff; font-weight: 700; padding: 14px 22px; border-radius: 14px;
  box-shadow: 0 10px 24px rgba(10,138,92,.32);
}
.btn:hover { text-decoration: none; filter: brightness(1.03); }
.btn-ghost { background: transparent; color: var(--navy); box-shadow: none; border: 1.5px solid #cfdcd6; }
.note { font-size: 13px; color: var(--muted); margin-top: 14px; }

.phone {
  justify-self: center;
  width: 100%; max-width: 320px; aspect-ratio: 9/17;
  background: linear-gradient(160deg, var(--navy), var(--navy-deep));
  border-radius: 36px; padding: 16px;
  box-shadow: 0 30px 60px rgba(21,35,47,.35);
  display: flex; align-items: center; justify-content: center;
}
.phone .inner { text-align: center; color: #fff; }
.phone .inner img { width: 92px; height: 92px; margin-bottom: 14px; }
.phone .wm { font-weight: 800; font-size: 26px; }
.phone .wm .mint { color: var(--mint); }
.phone .tag { color: #9fb2bd; font-size: 13px; margin-top: 8px; }

/* Sections */
section { padding: 64px 0; }
.section-title { text-align: center; margin-bottom: 12px; font-size: 30px; color: var(--navy); letter-spacing: -.01em; }
.section-sub { text-align: center; color: var(--muted); max-width: 620px; margin: 0 auto 40px; }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: var(--card); border: 1px solid #e9efed; border-radius: var(--radius);
  padding: 24px; box-shadow: 0 2px 10px rgba(21,35,47,.04);
}
.card .ic {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(45,182,130,.14); color: var(--mint-dark); font-size: 22px; margin-bottom: 14px;
}
.card h3 { font-size: 17px; color: var(--navy); margin-bottom: 6px; }
.card p { color: var(--muted); font-size: 15px; }

.privacy-band { background: var(--navy); color: #fff; border-radius: 24px; padding: 44px; text-align: center; }
.privacy-band h2 { font-size: 26px; margin-bottom: 10px; }
.privacy-band p { color: #aebec9; max-width: 640px; margin: 0 auto; }

.cta-final { text-align: center; }

/* Footer */
.footer { border-top: 1px solid #e6ecea; padding: 32px 0; color: var(--muted); font-size: 14px; }
.footer .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer a { color: var(--muted); margin-left: 18px; }

/* Legal pages */
.legal { max-width: 800px; margin: 0 auto; padding: 48px 20px 80px; }
.legal h1 { color: var(--navy); font-size: 34px; margin-bottom: 6px; }
.legal .updated { color: var(--muted); font-size: 14px; margin-bottom: 28px; }
.legal h2 { color: var(--navy); font-size: 20px; margin: 28px 0 8px; }
.legal p, .legal li { color: var(--ink); margin-bottom: 10px; }
.legal ul { padding-left: 22px; }
.back { display: inline-block; margin-bottom: 24px; font-weight: 600; }

@media (max-width: 820px) {
  .hero .container { grid-template-columns: 1fr; }
  .phone { grid-row: 1; max-width: 260px; }
  .grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
