
:root {
  --primary: #001733;
  --primary-2: #0a2a52;
  --accent: #bfe9de;
  --accent-2: #8fd9c7;
  --signal: #d81e2c;
  --bg: #f7f7f5;
  --surface: #ffffff;
  --text: #45566a;
  --text-strong: #1c2b3f;
  --line: #e7e9e6;
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow: 0px 0px 20px 0px rgba(0,23,51,0.08);
  --shadow-strong: 0px 10px 40px 0px rgba(0,23,51,0.16);
  --conversion: #25D366;
  --conversion-strong: #128C4A;
  --conversion-text: #001733;
  --wrap: 1180px;
}

:root[data-theme="dark"] {
  --primary: #eef2f6; --primary-2: #cfe0ee; --accent: #2f6357; --accent-2: #3f8271;
  --signal: #ff5c68; --bg: #0b1420; --surface: #121d2b; --text: #a9b6c4; --text-strong: #eef2f6;
  --line: #223047; --shadow: 0px 0px 20px 0px rgba(0,0,0,0.45); --shadow-strong: 0px 10px 40px 0px rgba(0,0,0,0.55);
}
:root[data-theme="light"] {
  --primary: #001733; --primary-2: #0a2a52; --accent: #bfe9de; --accent-2: #8fd9c7;
  --signal: #d81e2c; --bg: #f7f7f5; --surface: #ffffff; --text: #45566a; --text-strong: #1c2b3f;
  --line: #e7e9e6; --shadow: 0px 0px 20px 0px rgba(0,23,51,0.08); --shadow-strong: 0px 10px 40px 0px rgba(0,23,51,0.16);
}

* { box-sizing: border-box; }
html { overflow-x: hidden; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--accent); color: var(--primary); }

h1, h2, h3, .display {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-strong);
  text-wrap: balance;
  margin: 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--primary);
  background: color-mix(in srgb, var(--accent) 45%, transparent);
  padding: 7px 16px 7px 12px;
  border-radius: 999px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--signal); flex: none; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 18px; }
@media (min-width: 640px) { .wrap { padding: 0 24px; } }

/* ---------- header ---------- */
header.site {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: box-shadow .3s ease, border-color .3s ease;
}
header.site.is-scrolled {
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}
@media (prefers-reduced-motion: reduce) { header.site { transition: none; } }

/* ---------- reading progress (article pages only) ---------- */
.read-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--conversion); z-index: 70;
  transition: width .1s linear;
}
@media (prefers-reduced-motion: reduce) { .read-progress { transition: none; } }
.site-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 0; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 32px; width: auto; }
@media (min-width: 560px) { .brand img { height: 40px; } }
.site-locale {
  font-size: 12px; font-weight: 600; color: var(--text);
  display: none; align-items: center; gap: 8px;
}
@media (min-width: 760px) { .site-locale { display: flex; } }
.site-locale .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-2); flex: none; box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-2) 25%, transparent); }
.site-bar .btn { padding: 11px 16px; font-size: 12.5px; }
@media (min-width: 560px) { .site-bar .btn { padding: 14px 22px; font-size: 13.5px; } }
.site-bar .btn span.full { display: none; }
@media (min-width: 420px) { .site-bar .btn span.full { display: inline; } .site-bar .btn span.short { display: none; } }

/* ---------- buttons (sweep-fill pattern) ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: none;
  cursor: pointer;
  overflow: hidden;
  z-index: 0;
  white-space: nowrap;
  transition: color .35s ease;
}
.btn::after {
  content: '';
  position: absolute; left: 0; bottom: 0; width: 102%; height: 100%;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
  transform: scaleY(0); transform-origin: bottom;
  z-index: -1;
}
.btn-primary {
  background: var(--conversion);
  color: var(--conversion-text);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.28), inset 0 0 0 1px rgba(0, 23, 51, 0.08);
  transition: color .35s ease, transform .25s ease, box-shadow .25s ease;
}
.btn-primary::after { background: var(--conversion-strong); }
.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.36), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary:hover::after { transform: scaleY(1); }
.btn-ghost { background: transparent; color: var(--text-strong); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn-ghost::after { background: var(--text-strong); }
.btn-ghost:hover { color: var(--bg); }
.btn-ghost:hover::after { transform: scaleY(1); }
.btn svg { width: 18px; height: 18px; flex: none; position: relative; }
.btn-primary svg { animation: wa-pulse 2.8s ease-in-out infinite; }
@keyframes wa-pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.14)} }
@media (prefers-reduced-motion: reduce) { .btn-primary svg { animation: none; } .btn::after { transition: none; } }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding: 20px 0 10px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; padding: 50px 0 70px; }
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; padding: 20px 0 30px; gap: 56px; } }
.hero h1 { font-size: clamp(36px, 5vw, 58px); margin: 20px 0 22px; }
.hero h1 span.hl {
  color: var(--primary);
  background: linear-gradient(to top, color-mix(in srgb, var(--accent) 70%, transparent) 38%, transparent 38%);
  padding: 0 2px;
}
.hero-sub { font-size: 18px; color: var(--text); max-width: 46ch; margin: 0 0 32px; }
.zone-picker { margin: 0 0 22px; }
.zone-picker-label { display: block; font-size: 13px; font-weight: 700; letter-spacing: .04em; color: var(--text-strong); margin-bottom: 12px; }
.zone-picker-row { display: flex; gap: 14px; flex-wrap: wrap; }
.zone-picker .btn { padding: 14px 24px; }
.zone-picker .btn svg { animation: none; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 34px; align-items: center; }
.hero-ctas .btn-ghost { padding: 12px 22px; font-size: 14.5px; box-shadow: none; color: var(--text); }
.hero-ctas .btn-ghost::after { display: none; }
.hero-ctas .btn-ghost:hover { color: var(--primary); text-decoration: underline; }
.hero-facts { display: flex; gap: 28px; flex-wrap: wrap; font-size: 13.5px; color: var(--text); }
.hero-facts b { color: var(--text-strong); font-weight: 700; }
.hero-facts span { display: inline-flex; align-items: center; gap: 8px; }
.hero-facts svg { width: 18px; height: 18px; color: var(--accent-2); flex: none; }

.hero-visual { position: relative; padding: 10px 4px 44px 4px; }
@media (min-width: 640px) { .hero-visual { padding: 20px 20px 56px 6px; } }
.hero-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  aspect-ratio: 4 / 3.2;
  position: relative;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(200deg, transparent 55%, rgba(0,23,51,.35));
}
.hero-blob {
  position: absolute; z-index: -1;
  width: 92%; height: 92%; top: -6%; right: -8%;
  background: var(--accent);
  border-radius: 40% 60% 55% 45% / 50% 40% 60% 50%;
  opacity: .55;
}

.float-card {
  position: absolute;
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-strong);
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 11px;
  max-width: calc(100% - 16px);
}
.float-card.rating { left: 0; bottom: 6px; }
@media (min-width: 640px) { .float-card.rating { left: -6%; bottom: 10px; padding: 16px 20px; gap: 14px; } }
.float-card .stars { color: var(--signal); font-size: 13px; letter-spacing: 1px; }
@media (min-width: 640px) { .float-card .stars { font-size: 15px; } }
.float-card .score { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 20px; color: var(--text-strong); line-height: 1; }
@media (min-width: 640px) { .float-card .score { font-size: 24px; } }
.float-card .fine { font-size: 10.5px; color: var(--text); line-height: 1.35; margin-top: 3px; }
@media (min-width: 640px) { .float-card .fine { font-size: 11.5px; } }

.float-tag {
  position: absolute; top: 14px; right: 8px;
  background: var(--primary); color: #fff;
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 10.5px; font-weight: 700;
  box-shadow: var(--shadow-strong);
  display: flex; align-items: center; gap: 7px;
  white-space: nowrap;
}
@media (min-width: 640px) { .float-tag { top: 26px; right: -4%; padding: 11px 18px; font-size: 12.5px; gap: 9px; } }
.float-tag .dot-live { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-2) 35%, transparent); flex: none; }
@media (min-width: 640px) { .float-tag .dot-live { width: 8px; height: 8px; box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-2) 35%, transparent); } }

.chip-row { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 8px; }
@media (min-width: 640px) { .chip-row { margin-top: 34px; gap: 10px; } }

/* ---------- section shell ---------- */
section { padding: 52px 0; }
@media (min-width: 640px) { section { padding: 84px 0; } }
.section-head { max-width: 620px; margin: 0 0 44px; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); }
.section-head p { color: var(--text); font-size: 16px; margin: 16px 0 0; }
.section-head.center { max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { margin-left: auto; margin-right: auto; }

/* ---------- cards ---------- */
.card-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 520px) { .card-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 900px) { .card-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.icon-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 30px 26px;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
}
.icon-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); }
.icon-card .ic {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--accent) 50%, transparent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: box-shadow .3s ease;
}
.icon-card:hover .ic { box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent-2) 30%, transparent); }
.icon-card .ic svg { width: 26px; height: 26px; color: var(--primary); }
@media (prefers-reduced-motion: reduce) { .icon-card .ic { transition: none; } }
.icon-card h3 { font-size: 18px; margin-bottom: 8px; }
.icon-card p { font-size: 14.5px; color: var(--text); margin: 0; }
.icon-card-featured {
  background: linear-gradient(155deg, var(--primary) 0%, color-mix(in srgb, var(--primary) 88%, black) 100%);
  padding: 34px 30px;
  position: relative;
}
@media (min-width: 900px) { .icon-card-featured { grid-column: span 2; } }
.icon-card-featured .badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .04em;
  color: var(--primary); background: var(--accent);
  padding: 5px 12px; border-radius: 999px; margin-bottom: 16px;
}
.icon-card-featured .ic { background: color-mix(in srgb, var(--accent) 22%, transparent); }
.icon-card-featured .ic svg { color: var(--accent); }
.icon-card-featured h3, .icon-card-featured p { color: var(--bg); }
.icon-card-featured p { opacity: .82; max-width: 42ch; }
.icon-card-featured .go { color: var(--accent); }

/* ---------- photo strip (taller real) ---------- */
.photo-strip { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 700px) { .photo-strip { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.photo-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
}
@media (min-width: 700px) { .photo-item { border-radius: var(--radius-lg); } }
.photo-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-strong); }
.photo-item img { width: 100%; height: 100%; object-fit: cover; }
.photo-item .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,23,51,.82), transparent);
  color: #fff; font-size: 13px; font-weight: 600;
  padding: 28px 16px 14px;
}

/* ---------- nav (home only) ---------- */
.nav-links { display: none; align-items: center; gap: 6px; }
@media (min-width: 980px) { .nav-links { display: flex; } }
.nav-links a {
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 13.5px;
  color: var(--text-strong); text-decoration: none;
  padding: 9px 13px; border-radius: 999px; transition: background .2s ease, color .2s ease;
  position: relative;
}
.nav-links a:hover { background: color-mix(in srgb, var(--accent) 35%, transparent); }
.nav-links .has-drop { display: flex; align-items: center; gap: 4px; cursor: pointer; }
.nav-links .drop {
  position: absolute; top: 100%; left: 0; margin-top: 8px;
  background: var(--surface); border-radius: var(--radius-md); box-shadow: var(--shadow-strong);
  padding: 8px; min-width: 200px; opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease;
}
.nav-item:hover .drop, .nav-item:focus-within .drop { opacity: 1; pointer-events: auto; transform: translateY(0); }
.drop a { display: block; padding: 10px 12px; border-radius: var(--radius-sm); white-space: nowrap; }

.burger {
  display: flex; flex-direction: column; justify-content: center; gap: 4px;
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  background: var(--surface); box-shadow: var(--shadow); border: none; cursor: pointer;
  padding: 0; align-items: center;
}
@media (min-width: 980px) { .burger { display: none; } }
.burger span { width: 18px; height: 2px; background: var(--text-strong); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 60;
  background: var(--bg); padding: 20px 18px; overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.mobile-menu a.mm-link {
  display: block; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 20px;
  color: var(--text-strong); text-decoration: none; padding: 14px 4px; border-bottom: 1px solid var(--line);
}
.mobile-menu .mm-sub a { font-size: 15px; font-weight: 600; padding: 10px 4px 10px 18px; border-bottom: none; color: var(--text); }

/* ---------- team ---------- */
.team-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 560px) { .team-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (min-width: 900px) { .team-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.team-card {
  background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: 26px; text-align: left;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease;
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-strong); }
.team-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--primary); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 18px;
  margin-bottom: 16px;
}
.team-card h3 { font-size: 17px; margin-bottom: 3px; }
.team-role { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 12px; color: var(--accent-2); text-transform: uppercase; letter-spacing: .04em; display: block; margin-bottom: 10px; }
:root[data-theme="light"] .team-role, .team-role { color: #0a8f7a; }
:root[data-theme="dark"] .team-role { color: var(--accent-2); }
.team-card p { font-size: 13.5px; color: var(--text); margin: 0; line-height: 1.6; }

/* ---------- video ---------- */
.video-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 700px) { .video-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.video-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--surface); }
.video-embed { position: relative; aspect-ratio: 16/9; background: var(--primary); }
.video-embed.short { aspect-ratio: 9/16; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-cap { padding: 14px 16px; font-size: 13.5px; font-weight: 600; color: var(--text-strong); }
.shorts-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 640px) { .shorts-row { grid-template-columns: repeat(4, 1fr); } }

/* ---------- blog ---------- */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card {
  background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: 24px; text-decoration: none; display: block;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-strong); }
.blog-tag { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--accent-2); }
:root[data-theme="light"] .blog-tag { color: #0a8f7a; }
.blog-card h3 { font-size: 16.5px; margin: 10px 0 0; line-height: 1.35; }

/* ---------- services (reuse icon-card, add link) ---------- */
.icon-card.linkish { text-decoration: none; display: block; cursor: pointer; }
.icon-card .go { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700; color: var(--primary); margin-top: 14px; display: inline-flex; align-items: center; gap: 6px; }

/* ---------- b2b band ---------- */
.b2b-band {
  background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: 36px; display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center;
}
@media (min-width: 860px) { .b2b-band { grid-template-columns: 1.3fr auto; padding: 44px 48px; } }

/* ---------- warranty ---------- */
.warranty { background: var(--surface); border-radius: var(--radius-md); box-shadow: var(--shadow); padding: 26px 20px; }
.warranty-inner { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 640px) { .warranty { border-radius: var(--radius-lg); padding: 40px 28px; } }
@media (min-width: 900px) {
  .warranty { padding: 60px; margin: 0 24px; max-width: calc(var(--wrap) - 48px); margin-left: auto; margin-right: auto; }
  .warranty-inner { grid-template-columns: 1fr 1fr; gap: 56px; }
}
.warranty h2 { font-size: clamp(28px, 3.6vw, 40px); }
.warranty .eyebrow { margin-bottom: 18px; }
.warranty p.lead { color: var(--text); font-size: 16px; max-width: 46ch; margin: 16px 0 28px; }
.warranty-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.warranty-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; color: var(--text-strong); font-weight: 600; }
.warranty-list .tick {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--accent); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.warranty-list svg { width: 15px; height: 15px; }
.warranty-visual {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
}
.warranty-visual .big { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 76px; line-height: 1; color: #fff; }
.warranty-visual .big span { color: var(--accent); }
.warranty-visual .cap { font-size: 13px; color: color-mix(in srgb, #fff 70%, transparent); margin-top: 12px; font-weight: 600; }

/* ---------- price gate ---------- */
.price-gate {
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: center;
  background: color-mix(in srgb, var(--accent) 30%, var(--surface));
  box-shadow: var(--shadow);
}
@media (max-width: 700px) { .price-gate { flex-direction: column; align-items: flex-start; } }
.price-gate .ic { flex: none; width: 48px; height: 48px; border-radius: 50%; background: var(--surface); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); }
.price-gate .ic svg { width: 24px; height: 24px; color: var(--primary); }
.price-gate p { margin: 0; font-size: 15px; color: var(--text-strong); }
.price-gate strong { color: var(--primary); }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: 36px 28px; position: relative;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); }
.step .idx {
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 15px; color: var(--primary);
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--accent); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--text); margin: 0; }
.step-arrow { display: none; }
@media (min-width: 861px) {
  .steps { position: relative; }
}

/* ---------- reviews ---------- */
.reviews-strip {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  padding: 24px 30px; border-radius: var(--radius-lg);
  background: var(--surface); box-shadow: var(--shadow); margin-bottom: 36px;
}
.stars-row { color: var(--signal); font-size: 19px; letter-spacing: 2px; }
.reviews-strip .score-txt { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 17px; color: var(--text-strong); }
.reviews-strip .count { font-size: 14px; color: var(--text); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .review-grid { grid-template-columns: 1fr; } }
.review {
  background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: 26px; transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
}
.review:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); }
.review .stars-row { display: block; margin-bottom: 14px; font-size: 15px; }
.review p { font-size: 15px; color: var(--text-strong); margin: 0 0 16px; line-height: 1.6; }
.review cite { font-style: normal; font-size: 13px; color: var(--text); font-weight: 600; }

/* ---------- chips ---------- */
.chip { font-size: 13.5px; font-weight: 600; padding: 10px 18px; border-radius: 999px; background: var(--surface); box-shadow: var(--shadow); color: var(--text); transition: transform .2s ease, box-shadow .2s ease; }
.chip:hover { transform: translateY(-2px); box-shadow: var(--shadow-strong); }
.chip.core { background: var(--primary); color: #fff; }

/* ---------- final cta ---------- */
.final-cta {
  background: var(--primary);
  border-radius: var(--radius-md);
  text-align: center;
  padding: 44px 22px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px) { .final-cta { border-radius: var(--radius-lg); padding: 60px 32px; } }
@media (min-width: 900px) {
  .final-cta { margin: 0 24px; max-width: calc(var(--wrap) - 48px); margin-left: auto; margin-right: auto; padding: 76px 40px; }
}
.final-cta::before {
  content: ''; position: absolute; width: 480px; height: 480px; border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 22%, transparent);
  top: -220px; right: -160px;
}
.final-cta .inner { position: relative; }
.final-cta .eyebrow { background: color-mix(in srgb, #fff 15%, transparent); color: #fff; }
.final-cta .eyebrow .dot { background: var(--accent); }
.final-cta h2 { color: #fff; font-size: clamp(30px, 4.4vw, 48px); margin: 20px 0 16px; }
.final-cta p { color: color-mix(in srgb, #fff 78%, transparent); font-size: 16px; max-width: 48ch; margin: 0 auto 34px; }

/* ---------- footer ---------- */
footer.site { padding: 60px 0 30px; }
footer.site .wrap { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
@media (max-width: 800px) { footer.site .wrap { grid-template-columns: 1fr; } }
footer.site .brand { margin-bottom: 14px; }
footer.site p { font-size: 14px; line-height: 1.7; color: var(--text); }
footer.site h4 { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700; color: var(--text-strong); margin: 0 0 14px; }
footer.site a.wa-link { color: var(--primary); font-weight: 700; text-decoration: none; }
.foot-bottom {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line);
  font-size: 12.5px; color: var(--text);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}

/* ---------- sticky whatsapp ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 50;
  display: flex; align-items: center; gap: 10px;
  background: var(--conversion); color: var(--conversion-text);
  padding: 15px 22px; border-radius: 999px;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 13.5px;
  text-decoration: none;
  box-shadow: 0 14px 38px rgba(37, 211, 102, 0.38), 0 0 0 6px rgba(37, 211, 102, 0.14);
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.wa-float:hover { background: var(--conversion-strong); color: #fff; transform: translateY(-4px) scale(1.02); }
.wa-float svg { width: 19px; height: 19px; animation: wa-pulse 2.8s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .wa-float svg { animation: none; } }

a:focus-visible, button:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }
.btn-primary:focus-visible { outline: 3px solid var(--conversion-strong); }

.final-cta .btn-primary {
  box-shadow: 0 16px 42px rgba(37, 211, 102, 0.42), 0 0 0 1px rgba(255,255,255,.18);
}

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-grid.is-visible > * { animation: rise .7s cubic-bezier(.2,.7,.2,1) both; }
.reveal-grid.is-visible > *:nth-child(1) { animation-delay: .05s; }
.reveal-grid.is-visible > *:nth-child(2) { animation-delay: .15s; }
.reveal-grid.is-visible > *:nth-child(3) { animation-delay: .25s; }
.reveal-grid.is-visible > *:nth-child(4) { animation-delay: .35s; }
@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-visible, .reveal-grid.is-visible > * { opacity: 1; transform: none; animation: none; transition: none; }
}

/* ---------- faq (shared with landing pages) ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 760px; }
.faq-item { background: var(--surface); border-radius: var(--radius-md); box-shadow: var(--shadow); padding: 4px 24px; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 0;
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 16.5px; color: var(--text-strong);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { flex: none; width: 22px; height: 22px; position: relative; }
.faq-item summary .plus::before, .faq-item summary .plus::after {
  content: ''; position: absolute; background: var(--primary); border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.faq-item summary .plus::before { width: 14px; height: 2px; }
.faq-item summary .plus::after { width: 2px; height: 14px; transition: transform .25s ease; }
.faq-item[open] summary .plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item p { color: var(--text); font-size: 15px; line-height: 1.6; margin: 0 0 22px; max-width: 62ch; }

/* ---------- article / blog post ---------- */
.breadcrumb { font-size: 13px; color: var(--text); margin-bottom: 18px; }
.breadcrumb a { color: var(--text); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary); text-decoration: underline; }
.breadcrumb .sep { margin: 0 6px; opacity: .5; }
.article-head { max-width: 780px; margin: 0 auto 40px; text-align: center; }
.article-head .chip { margin-bottom: 18px; }
.article-head h1 { font-size: clamp(30px, 4.2vw, 46px); text-wrap: balance; }
.article-meta { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; font-size: 13.5px; color: var(--text); margin-top: 18px; }
.article-meta span { display: inline-flex; align-items: center; gap: 6px; }
.article-body { max-width: 700px; margin: 0 auto; font-size: 17px; line-height: 1.75; color: var(--text); }
.article-body h2 { font-size: clamp(22px, 2.8vw, 28px); color: var(--text-strong); margin: 44px 0 18px; }
.article-body h3 { font-size: 18.5px; color: var(--text-strong); margin: 32px 0 12px; }
.article-body p { margin: 0 0 20px; }
.article-body ul, .article-body ol { margin: 0 0 20px; padding-left: 22px; }
.article-body li { margin-bottom: 10px; }
.article-body strong { color: var(--text-strong); }
.article-body a { color: var(--primary); font-weight: 600; }
.article-cta {
  max-width: 700px; margin: 48px auto; background: var(--surface); border-radius: var(--radius-md);
  box-shadow: var(--shadow); padding: 32px 28px; text-align: center;
}
.article-cta h3 { font-size: 20px; margin: 0 0 10px; }
.article-cta p { color: var(--text); font-size: 15px; margin: 0 0 22px; max-width: 50ch; margin-left: auto; margin-right: auto; }
.article-tags { max-width: 700px; margin: 0 auto 50px; display: flex; flex-wrap: wrap; gap: 8px; }
.article-tags .chip { font-size: 12.5px; padding: 6px 14px; }
.related-articles { max-width: 900px; margin: 0 auto; }
.related-articles h2 { font-size: 22px; text-align: center; margin-bottom: 28px; }
.related-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 700px) { .related-grid { grid-template-columns: repeat(3, 1fr); } }
.related-card {
  background: var(--surface); border-radius: var(--radius-md); box-shadow: var(--shadow);
  padding: 22px; text-decoration: none; display: block; transition: transform .3s ease, box-shadow .3s ease;
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-strong); }
.related-card .cat { font-size: 11.5px; font-weight: 700; letter-spacing: .04em; color: var(--primary); text-transform: uppercase; }
.related-card h3 { font-size: 15.5px; margin: 8px 0 0; color: var(--text-strong); line-height: 1.4; }
