:root {
  --ink: #18343b;
  --muted: #60777b;
  --cream: #fffaf1;
  --paper: #ffffff;
  --teal: #18b8ba;
  --teal-dark: #087f86;
  --sun: #ffb631;
  --coral: #ff8167;
  --line: rgba(24, 52, 59, .11);
  --shadow: 0 22px 55px rgba(14, 76, 84, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
a { color: inherit; }
.site-header {
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(255,250,241,.88);
  border-bottom: 1px solid var(--line);
}
.nav {
  width: min(1160px, calc(100% - 40px)); margin: 0 auto;
  min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 800; letter-spacing: -.03em; }
.brand img { width: 42px; height: 42px; border-radius: 14px; box-shadow: 0 8px 20px rgba(255, 174, 45, .23); }
.brand span { font-size: 1.08rem; }
.nav-links { display: flex; align-items: center; gap: 24px; font-size: .94rem; color: var(--muted); }
.nav-links a { text-decoration: none; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--teal-dark); }
.nav-cta { padding: 10px 16px; border-radius: 999px; color: #fff !important; background: var(--teal-dark); }
.wrap { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.hero { position: relative; padding: 92px 0 82px; overflow: hidden; }
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; filter: blur(1px); }
.hero::before { width: 420px; height: 420px; right: -110px; top: -130px; background: rgba(24,184,186,.12); }
.hero::after { width: 260px; height: 260px; left: -100px; bottom: -120px; background: rgba(255,182,49,.16); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; }
.eyebrow { margin: 0 0 16px; color: var(--teal-dark); font-size: .78rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -.045em; margin: 0 0 18px; }
h1 { max-width: 700px; font-size: clamp(3rem, 7vw, 5.9rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.28rem; }
.lede { max-width: 630px; color: var(--muted); font-size: 1.18rem; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 20px; border: 1px solid transparent; border-radius: 999px; font-weight: 750; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(24,52,59,.12); }
.button.primary { color: #fff; background: var(--teal-dark); }
.button.secondary { background: var(--paper); border-color: var(--line); }
.hero-art { position: relative; min-height: 390px; display: grid; place-items: center; }
.orb { position: absolute; width: 315px; height: 315px; border-radius: 45% 55% 52% 48%; background: linear-gradient(145deg, #ffe082, #ffb631 54%, #ff9271); transform: rotate(-11deg); box-shadow: 0 30px 60px rgba(242, 162, 45, .2); }
.hero-logo { position: relative; width: min(270px, 70vw); border-radius: 34px; box-shadow: var(--shadow); background: #fff; }
.floating-note { position: absolute; padding: 12px 16px; border-radius: 18px; background: rgba(255,255,255,.9); box-shadow: 0 12px 28px rgba(24,52,59,.13); font-size: .9rem; font-weight: 750; }
.note-one { right: 1%; top: 8%; color: var(--teal-dark); }
.note-two { left: 1%; bottom: 8%; color: #a85a2b; }
.section { padding: 86px 0; }
.section.alt { background: #f2fbf8; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 35px; margin-bottom: 34px; }
.section-head p { max-width: 510px; margin: 0; color: var(--muted); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: var(--paper); box-shadow: 0 10px 30px rgba(24,52,59,.04); }
.card p { margin: 0; color: var(--muted); }
.icon { display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 22px; border-radius: 14px; font-size: 1.35rem; background: #e2f8f2; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: step; }
.step { position: relative; padding: 26px 26px 26px 74px; border-radius: 24px; background: var(--ink); color: #fff; }
.step::before { counter-increment: step; content: counter(step); position: absolute; left: 24px; top: 25px; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; color: var(--ink); background: var(--sun); font-weight: 900; }
.step p { margin: 0; color: rgba(255,255,255,.72); }
.banner { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding: 34px; border-radius: 28px; background: linear-gradient(120deg, #dbf7ee, #fff1ca); }
.banner p { max-width: 650px; margin: 0; color: var(--muted); }
.page-hero { padding: 68px 0 46px; background: linear-gradient(135deg, #e5faf3, #fff7de); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2.6rem, 5vw, 4.8rem); }
.page-hero p { max-width: 700px; margin: 0; color: var(--muted); font-size: 1.08rem; }
.prose { max-width: 840px; padding: 72px 0 94px; }
.prose h2 { margin-top: 44px; font-size: 1.65rem; }
.prose h3 { margin-top: 30px; font-size: 1.15rem; }
.prose p, .prose li { color: #496267; }
.prose ul { padding-left: 1.2rem; }
.meta { color: var(--muted); font-size: .92rem; }
.contact-card { display: grid; grid-template-columns: 1.2fr .8fr; gap: 22px; align-items: stretch; }
.contact-card .card { display: flex; flex-direction: column; justify-content: space-between; }
.email { color: var(--teal-dark); font-weight: 800; word-break: break-word; }
.faq { border-top: 1px solid var(--line); }
details { padding: 20px 0; border-bottom: 1px solid var(--line); }
summary { cursor: pointer; font-weight: 750; }
details p { margin: 12px 0 0; color: var(--muted); }
.site-footer { padding: 42px 0; border-top: 1px solid var(--line); background: #fffdf8; }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; align-items: start; }
.footer-grid p { margin: 6px 0 0; color: var(--muted); font-size: .92rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px 24px; color: var(--muted); font-size: .92rem; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--teal-dark); }
@media (max-width: 820px) {
  .nav { min-height: 70px; }
  .nav-links { gap: 12px; font-size: .84rem; }
  .nav-cta { display: none; }
  .hero-grid, .contact-card { grid-template-columns: 1fr; gap: 42px; }
  .hero { padding-top: 62px; }
  .hero-art { min-height: 330px; }
  .cards, .steps { grid-template-columns: 1fr; }
  .section-head, .banner, .footer-grid { align-items: start; flex-direction: column; }
}
@media (max-width: 520px) {
  .wrap, .nav { width: min(100% - 28px, 1160px); }
  .nav-links a:nth-child(3) { display: none; }
  h1 { font-size: 2.9rem; }
  .section { padding: 62px 0; }
  .card, .step, .banner { padding: 23px; }
  .step { padding-left: 70px; }
}
