:root {
  --bg: #ffffff;
  --ink: #0f1720;
  --muted: #5a6872;
  --line: #e7edf1;
  --card: #ffffff;
  --accent: #0f766e;
  --accent-2: #0ea5a0;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); }
body { font-family: "Sora", "Plus Jakarta Sans", "Segoe UI", sans-serif; }
a { color: inherit; text-decoration: none; }
.container { width: min(1140px, 92vw); margin: 0 auto; }
.nav { position: sticky; top: 0; z-index: 30; backdrop-filter: blur(8px); background: rgba(255,255,255,.82); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; }
.brand { font-weight: 800; letter-spacing: .2px; font-size: 1.04rem; }
.links { display: flex; gap: 14px; align-items: center; color: var(--muted); font-size: .95rem; }
.btn { display: inline-block; padding: 12px 18px; border-radius: 999px; font-weight: 700; border: 1px solid var(--line); }
.btn.primary { color: #fff; background: linear-gradient(100deg, var(--accent), var(--accent-2)); border: none; box-shadow: 0 10px 20px rgba(15,118,110,.22); }
.hero { padding: 48px 0 34px; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 30px; align-items: center; }
.kicker { color: var(--accent); text-transform: uppercase; font-size: .76rem; font-weight: 800; letter-spacing: .08em; }
h1 { margin: 12px 0; font-size: clamp(2rem, 4.8vw, 3.6rem); line-height: 1.02; }
.sub { color: var(--muted); font-size: 1.08rem; line-height: 1.65; max-width: 62ch; }
.hero-shot { border: 1px solid var(--line); border-radius: 22px; padding: 14px; background: #f8fcfb; box-shadow: 0 15px 40px rgba(14,26,35,.07); }
.hero-shot video, .hero-shot img { width: 100%; border-radius: 14px; display: block; }
.pills { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 8px; }
.pill { border: 1px solid #cfe9e6; color: #11534f; border-radius: 999px; padding: 6px 10px; font-size: .79rem; font-weight: 700; background: #ecfbf7; }
.section { padding: 44px 0; }
.section h2 { font-size: clamp(1.45rem, 2.6vw, 2.2rem); margin: 0 0 10px; }
.lead { color: var(--muted); margin: 0; line-height: 1.6; max-width: 70ch; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 18px; }
.grid2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 18px; }
.card { border: 1px solid var(--line); border-radius: 16px; background: var(--card); padding: 18px; transition: transform .25s ease, box-shadow .25s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 14px 25px rgba(15,23,32,.08); }
.card h3 { margin: 0 0 8px; font-size: 1.06rem; }
.card p { margin: 0; color: var(--muted); line-height: 1.55; }
.step { position: relative; padding-left: 44px; }
.step .n { position: absolute; left: 0; top: 0; width: 30px; height: 30px; border-radius: 999px; background: #ddf4f1; color: #0f766e; display: grid; place-items: center; font-weight: 800; }
.banner { border: 1px solid var(--line); border-radius: 20px; padding: 22px; background: linear-gradient(120deg,#f6fbfb,#ffffff 45%,#f9f6ef); }
.image-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.image-grid img { width: 100%; height: 220px; object-fit: cover; border-radius: 12px; border: 1px solid var(--line); }
.footer { border-top: 1px solid var(--line); margin-top: 46px; padding: 24px 0 42px; color: var(--muted); font-size: .92rem; }
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (max-width: 980px) {
  .hero-grid, .grid3, .grid2, .image-grid { grid-template-columns: 1fr; }
  .links a.hide-mobile { display: none; }
}
