:root {
  --green: #03e882;
  --teal: #02c19f;
  --blue: #0f96bd;
  --white: #ffffff;
  --black: #101716;
  --muted: #53615e;
  --line: rgba(2, 193, 159, .22);
  --soft: rgba(3, 232, 130, .07);
  --shadow: 0 18px 55px rgba(16, 23, 22, .10);
  --radius: 24px;
  --max: 1180px;
}

* { 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(--black); background: var(--white); line-height: 1.65; }
img { display: block; max-width: 100%; }
a { color: var(--blue); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--teal); }
:focus-visible { outline: 4px solid var(--green); outline-offset: 3px; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 1000; background: var(--black); color: var(--white); padding: .75rem 1rem; border-radius: 8px; }
.skip-link:focus { top: 1rem; }
.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.topbar { background: var(--teal); color: var(--black); font-weight: 750; font-size: .9rem; }
.topbar .container { display: flex; justify-content: space-between; gap: 1rem; padding-block: .45rem; }
.topbar a { color: var(--black); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 84px; gap: 1.5rem; }
.brand { flex: 0 0 auto; }
.brand img { width: 86px; height: 64px; object-fit: contain; }
.menu { display: flex; align-items: center; gap: 1.25rem; list-style: none; margin: 0; padding: 0; }
.menu a { color: var(--black); text-decoration: none; font-weight: 720; }
.menu a[aria-current=page] { color: var(--teal); }
.menu-toggle { display: none; border: 0; background: var(--white); font: inherit; font-weight: 800; padding: .65rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: .75rem 1.1rem; border-radius: 999px; border: 2px solid var(--teal); background: var(--teal); color: var(--black); text-decoration: none; font-weight: 850; transition: transform .2s ease, background .2s ease; }
.button:hover { background: var(--green); border-color: var(--green); color: var(--black); transform: translateY(-2px); }
.button-secondary { background: var(--white); border-color: var(--blue); }
.hero { position: relative; overflow: hidden; background: linear-gradient(135deg, rgba(3,232,130,.12), rgba(15,150,189,.11)); padding: clamp(4rem, 9vw, 8rem) 0; }
.hero::after { content: ""; position: absolute; width: 420px; height: 420px; right: -160px; top: -180px; border: 70px solid rgba(2,193,159,.14); border-radius: 50%; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 7vw, 6rem); align-items: center; }
.eyebrow { color: var(--teal); text-transform: uppercase; letter-spacing: .12em; font-weight: 900; font-size: .82rem; }
h1, h2, h3 { line-height: 1.14; margin: 0 0 1rem; }
h1 { font-size: clamp(2.55rem, 6vw, 5rem); letter-spacing: -.045em; max-width: 14ch; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -.03em; }
h3 { font-size: 1.3rem; }
.lead { font-size: clamp(1.06rem, 2vw, 1.25rem); color: var(--muted); max-width: 64ch; }
.actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.trust-row { display: flex; flex-wrap: wrap; gap: .7rem 1.2rem; margin-top: 1.8rem; font-weight: 750; }
.trust-row span::before { content: "✓"; color: var(--teal); margin-right: .4rem; font-weight: 950; }
.hero-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.4rem, 4vw, 2.2rem); box-shadow: var(--shadow); }
.hero-card img { width: 100%; max-height: 390px; object-fit: cover; border-radius: 18px; }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-soft { background: var(--soft); }
.section-heading { max-width: 720px; margin-bottom: 2.2rem; }
.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; box-shadow: 0 10px 35px rgba(16,23,22,.06); }
.card-icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 15px; background: var(--green); font-size: 1.3rem; margin-bottom: 1rem; }
.card p { color: var(--muted); }
.card-link { font-weight: 850; }
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.prose { max-width: 780px; }
.prose h2 { margin-top: 2.7rem; }
.prose h3 { margin-top: 2rem; }
.prose li { margin-block: .45rem; }
.sidebar { position: sticky; top: 120px; }
.callout { background: linear-gradient(145deg, var(--teal), var(--green)); border-radius: var(--radius); padding: 1.8rem; color: var(--black); }
.callout a { color: var(--black); font-weight: 850; }
.breadcrumbs { font-size: .92rem; color: var(--muted); padding-top: 1.5rem; }
.breadcrumbs a { color: var(--black); }
.page-hero { padding: 4rem 0 3rem; background: linear-gradient(120deg, rgba(3,232,130,.11), rgba(15,150,189,.09)); }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
.cta { background: var(--black); color: var(--white); border-radius: 32px; padding: clamp(2rem, 6vw, 4rem); display: flex; justify-content: space-between; align-items: center; gap: 2rem; }
.cta h2 { max-width: 14ch; }
.next-card { border-top: 5px solid var(--green); }
.form { display: grid; gap: 1rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: grid; gap: .4rem; font-weight: 760; }
input, select, textarea { width: 100%; font: inherit; padding: .82rem .9rem; border: 2px solid #c7d6d3; border-radius: 12px; background: var(--white); color: var(--black); }
textarea { min-height: 140px; resize: vertical; }
.check { display: flex; align-items: flex-start; gap: .7rem; font-weight: 500; }
.check input { width: 22px; height: 22px; flex: 0 0 auto; }
.faq { border-bottom: 1px solid var(--line); }
.faq button { width: 100%; padding: 1.2rem 0; display: flex; justify-content: space-between; text-align: left; border: 0; background: transparent; font: inherit; font-weight: 850; }
.faq-panel { padding: 0 0 1rem; color: var(--muted); }
.site-footer { margin-top: 5rem; background: var(--black); color: var(--white); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 2rem; }
.site-footer a { color: var(--white); }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.copyright { border-top: 1px solid rgba(255,255,255,.18); margin-top: 2.5rem; padding-top: 1.5rem; color: #d5dfdd; font-size: .9rem; }
.socials { display: flex; flex-wrap: wrap; gap: .6rem; }
.socials a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--white); color: var(--black); text-decoration: none; font-weight: 900; }

@media (max-width: 950px) {
  .menu-toggle { display: inline-flex; }
  .menu { display: none; position: absolute; left: 1rem; right: 1rem; top: calc(100% + .5rem); flex-direction: column; align-items: stretch; background: var(--white); padding: 1rem; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
  .menu[data-open=true] { display: flex; }
  .menu .button { width: 100%; }
  .hero-grid, .content-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 650px) {
  .topbar .container { flex-direction: column; gap: 0; }
  .grid-2, .grid-3, .grid-4, .form-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 3.5rem; }
  .cta { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
