:root {
  --bg: #fafaf7;
  --surface: #ffffff;
  --ink: #0f1115;
  --ink-soft: #4b5260;
  --muted: #8a92a1;
  --line: #ececec;
  --line-strong: #e2e2e2;
  --accent: #0a7f54;
  --accent-soft: #d8f0e4;
  --accent-ink: #064b32;
  --warn: #c5762a;
  --max: 1180px;
  --gutter: clamp(16px, 4vw, 28px);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(15,17,21,0.04), 0 1px 3px rgba(15,17,21,0.04);
  --shadow-md: 0 10px 25px -10px rgba(15,17,21,0.12), 0 4px 12px -6px rgba(15,17,21,0.08);
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-display: "Newsreader", Georgia, "Times New Roman", serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-ink); text-decoration: underline; text-underline-offset: 3px; }
a:hover { text-decoration-thickness: 2px; }
button { font-family: inherit; }

/* layout */
.shell { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(48px, 7vw, 96px) 0; }
.section-tight { padding: clamp(32px, 5vw, 60px) 0; }

/* nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: var(--ink); text-decoration: none;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-style: italic; font-weight: 500;
  font-size: 18px;
}
.brand-text { font-family: var(--font-display); font-size: 21px; font-weight: 500; letter-spacing: -0.015em; }
.nav-links {
  display: flex; align-items: center; gap: 22px;
  font-size: 14.5px;
}
.nav-links > a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
}
.nav-links > a:hover { color: var(--ink); }
.nav-links a.nav-cta,
.nav-cta {
  background: var(--ink);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
}
.nav-links a.nav-cta:hover,
.nav-cta:hover { background: var(--accent); color: #fff !important; }
.nav-toggle {
  display: none;
  width: 38px; height: 38px;
  border: 1px solid var(--line-strong);
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle span {
  position: relative;
  width: 18px; height: 2px;
  background: var(--ink);
  display: block;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.lang-cur { display: flex; gap: 6px; align-items: center; }
.lang-cur select {
  appearance: none;
  background: transparent;
  border: 1px solid var(--line-strong);
  padding: 7px 26px 7px 10px;
  border-radius: 999px;
  font-size: 13px; color: var(--ink-soft);
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'><path d='M2 3.5 L5 6.5 L8 3.5' stroke='%234b5260' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 8px center;
}

@media (max-width: 880px) {
  .nav-inner { padding: 14px var(--gutter); }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute; top: 66px; left: 0; right: 0;
    background: var(--surface);
    flex-direction: column;
    padding: 18px var(--gutter) 26px;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    align-items: stretch;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links > a { width: 100%; padding: 14px 4px; font-size: 16px; border-bottom: 1px solid var(--line); }
  .nav-links > a:last-of-type { border-bottom: none; }
  .lang-cur { width: 100%; padding: 16px 0 8px; gap: 10px; }
  .lang-cur select { flex: 1; padding: 12px 32px 12px 14px; font-size: 14px; }
  .nav-links a.nav-cta { padding: 14px 22px; text-align: center; margin-top: 6px; }
}

/* hero */
.hero { padding: clamp(60px, 9vw, 120px) 0 clamp(40px, 6vw, 80px); position: relative; overflow: hidden; }
.hero-tag {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent-ink);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin: 0 0 22px;
  max-width: 22ch;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 0 32px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 24px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 22px; border-radius: 999px; font-size: 15px; font-weight: 600; text-decoration: none; border: none; cursor: pointer; transition: transform 0.12s ease, background 0.12s ease; }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--accent); }
.btn-secondary { background: #fff; color: var(--ink); border: 1px solid var(--line-strong); }
.btn-secondary:hover { border-color: var(--ink); }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1ebe57; }
.btn-block { width: 100%; justify-content: center; }
.hero-trust { color: var(--muted); font-size: 14px; margin-top: 24px; }
.hero-figure { position: absolute; right: calc(-1 * var(--gutter)); top: 8%; width: 46%; max-width: 560px; pointer-events: none; opacity: 0.92; border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-md); }
.hero-figure img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 980px) { .hero-figure { display: none; } }

/* sections */
.h-eyebrow { color: var(--muted); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }
.h-title { font-family: var(--font-display); font-size: clamp(1.7rem, 3.6vw, 2.4rem); margin: 8px 0 18px; line-height: 1.15; letter-spacing: -0.02em; font-weight: 500; }
.h-sub { color: var(--ink-soft); max-width: 65ch; margin: 0 0 36px; }

/* why grid */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.why-card { background: var(--surface); padding: 28px; border-radius: var(--radius-lg); border: 1px solid var(--line); }
.why-card h3 { font-size: 17px; margin: 0 0 8px; font-weight: 600; }
.why-card p { font-size: 14.5px; color: var(--ink-soft); margin: 0; line-height: 1.55; }
.why-num { width: 36px; height: 36px; border-radius: 10px; background: var(--accent-soft); color: var(--accent-ink); display: grid; place-items: center; font-weight: 700; font-size: 16px; margin-bottom: 18px; }

/* category chips */
.cat-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
a.cat-chip, button.cat-chip, .cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  color: var(--ink-soft);
  text-decoration: none !important;
  transition: all 0.12s ease;
  font-family: inherit;
}
a.cat-chip:hover, button.cat-chip:hover, .cat-chip:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--bg);
}
a.cat-chip.active, button.cat-chip.active, .cat-chip.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* product cards */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 22px; }
.product-card { background: var(--surface); border-radius: var(--radius-lg); border: 1px solid var(--line); padding: 22px; text-decoration: none; color: inherit; display: flex; flex-direction: column; gap: 14px; transition: transform 0.12s ease, border-color 0.12s ease, box-shadow 0.12s ease; }
.product-card:hover { transform: translateY(-2px); border-color: var(--ink); box-shadow: var(--shadow-md); }
.product-thumb {
  aspect-ratio: 1.5;
  background: linear-gradient(180deg, var(--accent-soft) 0%, #f4f9f5 100%);
  border-radius: 12px;
  overflow: hidden;
  display: block;
  position: relative;
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.product-cat { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.product-name { font-size: 17px; font-weight: 600; line-height: 1.3; margin: 0; }
.product-short { color: var(--ink-soft); font-size: 14px; margin: 0; }
.product-price { font-family: var(--font-display); font-size: 22px; font-weight: 500; margin-top: auto; letter-spacing: -0.01em; }
.product-price small { font-size: 12px; color: var(--muted); font-family: var(--font-sans); font-weight: 400; margin-left: 4px; }

/* reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.reviews-grid-big { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; margin-top: 30px; }
.rev-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; max-width: 540px; margin: 8px 0 0; }
.rev-stat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; }
.rev-num { font-family: var(--font-display); font-size: 48px; font-weight: 500; letter-spacing: -0.025em; line-height: 1; margin-bottom: 6px; }
.rev-label { color: var(--ink-soft); font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.rev-stars { color: #f5a623; letter-spacing: 2px; font-size: 18px; margin-top: 8px; }
.rev-link { display: inline-block; margin-top: 12px; font-size: 13px; color: var(--accent-ink); text-decoration: none; font-weight: 600; }
.rev-link:hover { text-decoration: underline; }
.review-when { color: var(--muted); font-size: 12px; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.04em; }
.review-author { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.review-author img { width: 36px; height: 36px; border-radius: 999px; object-fit: cover; background: var(--accent-soft); }
.review-author-name { font-weight: 600; font-size: 14.5px; }
.review-author-when { color: var(--muted); font-size: 12px; }
.review { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; }
.review-stars { color: #f5a623; font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }
.review-text { font-size: 15px; color: var(--ink); margin: 0 0 14px; line-height: 1.55; }
.review-meta { color: var(--muted); font-size: 13px; }

/* blog cards */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.blog-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; text-decoration: none; color: inherit; transition: transform 0.12s ease, border-color 0.12s ease; }
.blog-card:hover { transform: translateY(-2px); border-color: var(--ink); }
.blog-date { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.blog-title { font-family: var(--font-display); font-size: 22px; margin: 10px 0; line-height: 1.25; letter-spacing: -0.015em; font-weight: 500; }
.blog-excerpt { color: var(--ink-soft); font-size: 14.5px; margin: 0; }

/* big cta panel */
.cta-panel {
  background: var(--ink); color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
}
.cta-panel h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin: 0 0 14px; line-height: 1.15; letter-spacing: -0.02em; font-weight: 500; }
.cta-panel p { color: rgba(255,255,255,0.78); margin: 0; }
.cta-panel .btn-primary { background: #fff; color: var(--ink); }
.cta-panel .btn-primary:hover { background: var(--accent-soft); color: var(--accent-ink); }
@media (max-width: 720px) { .cta-panel { grid-template-columns: 1fr; } }

/* footer */
.footer { background: var(--ink); color: #cfd2da; padding: 60px 0 30px; margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 36px; margin-bottom: 40px; }
.footer h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 16px; font-weight: 600; }
.footer a { color: #cfd2da; text-decoration: none; display: block; padding: 5px 0; font-size: 14.5px; }
.footer a:hover { color: #fff; }
.footer-brand p { color: #8d93a0; max-width: 30ch; margin: 14px 0 0; font-size: 14px; }
.footer-bottom { border-top: 1px solid #2a2d34; padding-top: 24px; font-size: 13px; color: #8d93a0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* floating CTA */
.float-cta {
  position: fixed;
  bottom: 22px; right: 22px;
  background: #25D366; color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 600; font-size: 14.5px;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.5), 0 4px 12px -4px rgba(15,17,21,0.18);
  z-index: 100;
  animation: pulse-wa 2.4s ease-in-out infinite;
}
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.5), 0 0 0 14px rgba(37, 211, 102, 0); }
}
.float-cta:hover { background: #1fbe5a; }
.float-cta svg { width: 18px; height: 18px; }
@media (max-width: 600px) {
  .float-cta { bottom: 14px; right: 14px; padding: 12px 16px; font-size: 13.5px; }
}

/* product page detail */
.product-hero {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  background: linear-gradient(180deg, var(--accent-soft) 0%, #fff 100%);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  margin-bottom: 40px;
}
.product-media {
  display: block;
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 0.72;
  max-height: 560px;
  width: 100%;
  margin: 0 auto;
  box-shadow:
    0 1px 0 rgba(15,17,21,0.04),
    0 12px 30px -14px rgba(15,17,21,0.18),
    0 36px 70px -30px rgba(15,17,21,0.25);
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.product-info { display: flex; flex-direction: column; justify-content: center; }
.product-info h1 { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3rem); margin: 12px 0 12px; line-height: 1.05; letter-spacing: -0.025em; font-weight: 500; }
.product-info .product-cat { display: inline-block; background: var(--ink); color: #fff; padding: 6px 14px; border-radius: 999px; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; align-self: flex-start; }
.product-info .product-short { color: var(--ink-soft); font-size: 17px; margin: 0 0 22px; line-height: 1.5; }

.fact-pills { display: flex; gap: 8px; flex-wrap: wrap; margin: 22px 0 26px; }
.fact-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}
.fact-pill .fact-icon { width: 16px; height: 16px; color: var(--accent); flex: none; }
.fact-pill strong { font-weight: 600; }

.price-block { display: flex; align-items: baseline; gap: 10px; margin: 0 0 24px; padding: 18px 0; border-top: 1px solid rgba(15,17,21,0.08); }
.price-block .price-amount { font-family: var(--font-display); font-size: 44px; font-weight: 500; letter-spacing: -0.025em; }
.price-block .price-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }

.product-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.product-actions .btn { flex: 1 1 200px; justify-content: center; }

/* trust strip on product page */
.trust-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 0; margin: 40px 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.trust-item { display: flex; align-items: center; gap: 12px; padding: 18px 22px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: none; }
.trust-item svg { width: 24px; height: 24px; color: var(--accent); flex: none; }
.trust-item div { font-size: 13px; line-height: 1.3; }
.trust-item strong { display: block; font-weight: 600; color: var(--ink); font-size: 14px; }
.trust-item span { color: var(--ink-soft); }
@media (max-width: 720px) {
  .trust-item { border-right: none; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: none; }
}

/* product body */
.product-body { color: var(--ink); }
.product-body h2 { font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--ink); margin: 36px 0 12px; letter-spacing: -0.015em; line-height: 1.25; display: inline-flex; align-items: center; gap: 10px; }
.product-body h2::before { content: ""; width: 4px; height: 22px; background: var(--accent); border-radius: 2px; display: inline-block; }
.product-body p, .product-body li { font-size: 15.5px; line-height: 1.6; color: var(--ink-soft); }
.product-body ul, .product-body ol { padding-left: 20px; }
.product-body li { margin-bottom: 8px; }
.product-body p { margin: 0 0 14px; color: var(--ink); }

/* Length of Stay as a vertical timeline */
.product-body ul.timeline-list,
.product-body ol.timeline-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
  position: relative;
}
.product-body ul.timeline-list::before,
.product-body ol.timeline-list::before {
  content: "";
  position: absolute;
  left: 9px; top: 12px; bottom: 12px;
  width: 2px;
  background: var(--accent);
  opacity: 0.3;
}
.product-body ul.timeline-list > li,
.product-body ol.timeline-list > li {
  position: relative;
  padding: 0 0 16px 32px;
  margin: 0;
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.5;
}
.product-body ul.timeline-list > li::before,
.product-body ol.timeline-list > li::before {
  content: "";
  position: absolute;
  left: 4px; top: 7px;
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 999px;
  z-index: 1;
}
.product-body ul.timeline-list > li:last-child,
.product-body ol.timeline-list > li:last-child { padding-bottom: 0; }

/* Requirements / Documents as numbered cards */
.product-body ul.req-list,
.product-body ol.req-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-auto-rows: 1fr;
  gap: 12px;
  counter-reset: req;
}
.product-body ul.req-list > li,
.product-body ol.req-list > li {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px 20px 56px;
  margin: 0;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.5;
  counter-increment: req;
  display: flex;
  align-items: flex-start;
}
.product-body ul.req-list > li::before,
.product-body ol.req-list > li::before {
  content: counter(req);
  position: absolute;
  left: 18px; top: 20px;
  width: 24px; height: 24px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  border-radius: 999px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
}

/* process step cards (replaces plain ol) */
.process-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 20px;
  position: relative;
}
@media (min-width: 720px) {
  .process-cards::before {
    content: "";
    position: absolute;
    top: 38px;
    left: 36px; right: 36px;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--line-strong) 0 6px, transparent 6px 12px);
    z-index: 0;
    pointer-events: none;
  }
}
.process-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  position: relative;
  z-index: 1;
}
.process-card .step-num {
  width: 36px; height: 36px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  border: 2px solid #fff;
  border-radius: 999px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 14px;
  box-shadow: 0 0 0 1px var(--line-strong);
}
.process-card p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.5;
}

/* docs as icon list */
.docs-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
  margin-top: 18px;
  list-style: none;
  padding: 0;
}
.docs-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 14.5px;
  color: var(--ink);
  margin: 0;
  line-height: 1.45;
}
.docs-list li svg {
  width: 18px; height: 18px;
  color: var(--accent);
  flex: none;
  margin-top: 1px;
}

@media (max-width: 880px) {
  .product-hero { grid-template-columns: 1fr; }
  .product-media { aspect-ratio: 0.72; max-width: 360px; }
}

/* quiz */
.quiz-stage { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); max-width: 720px; }
.quiz-progress { display: flex; gap: 6px; margin-bottom: 28px; }
.quiz-progress span { flex: 1; height: 4px; border-radius: 4px; background: var(--line); }
.quiz-progress span.done { background: var(--accent); }
.quiz-progress span.active { background: var(--ink); }
.quiz-q { font-family: var(--font-display); font-size: clamp(1.4rem, 2.6vw, 1.9rem); line-height: 1.2; letter-spacing: -0.015em; font-weight: 500; margin-bottom: 24px; }
.quiz-options { display: grid; gap: 10px; }
.quiz-option { background: var(--bg); border: 1px solid var(--line); border-radius: 14px; padding: 16px 20px; cursor: pointer; font-size: 15px; text-align: left; transition: all 0.12s ease; }
.quiz-option:hover { border-color: var(--ink); background: #fff; }
.quiz-result { padding: 8px 0; }
.quiz-result h3 { font-family: var(--font-display); font-size: 1.8rem; margin: 8px 0 16px; font-weight: 500; letter-spacing: -0.02em; }
.quiz-result-card { background: var(--bg); border: 1px solid var(--line); border-radius: 14px; padding: 22px; margin-bottom: 16px; }
.quiz-result-card .product-name { margin-bottom: 4px; }
.quiz-result-card .product-price { font-size: 18px; margin: 8px 0 14px; }

/* order */
.order-stage { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); max-width: 760px; }
.order-steps { display: flex; gap: 12px; margin-bottom: 30px; }
.order-step { flex: 1; padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; font-size: 13px; color: var(--muted); font-weight: 600; }
.order-step.done { color: var(--accent); border-color: var(--accent); }
.order-step.active { color: var(--ink); border-color: var(--ink); background: var(--bg); }
.field { display: block; margin-bottom: 18px; }
.field label { font-size: 13px; color: var(--ink-soft); margin-bottom: 6px; display: block; font-weight: 500; }
.field input,
.field select,
.field textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
}
.field input:focus,
.field select:focus,
.field textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 100px; }
.via-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.via-chip { padding: 10px 16px; border: 1px solid var(--line-strong); border-radius: 999px; cursor: pointer; background: #fff; font-size: 14px; }
.via-chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.order-actions { display: flex; gap: 10px; justify-content: space-between; margin-top: 24px; }
.order-review { background: var(--bg); border-radius: 12px; padding: 20px; margin-bottom: 18px; }
.order-review dl { margin: 0; display: grid; grid-template-columns: max-content 1fr; gap: 8px 18px; font-size: 14px; }
.order-review dt { color: var(--muted); }
.order-status { padding: 14px 18px; border-radius: 12px; margin-top: 18px; }
.order-status.ok { background: var(--accent-soft); color: var(--accent-ink); }
.order-status.err { background: #fde9e1; color: #a3531a; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 4vw, 40px); }
.contact-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; }
.contact-card h3 { font-size: 15px; margin: 0 0 6px; font-weight: 600; }
.contact-card p { font-size: 14.5px; color: var(--ink-soft); margin: 0 0 14px; }
.contact-card a { color: var(--accent-ink); font-weight: 600; word-break: break-all; }
@media (max-width: 720px) { .contact-grid { grid-template-columns: 1fr; } }

/* about */
.about-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: start; }
.about-grid img { border-radius: var(--radius-lg); }
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; } }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; margin-top: 22px; }
.value-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.value-card h3 { font-size: 16px; margin: 0 0 8px; font-weight: 600; }
.value-card p { font-size: 14px; color: var(--ink-soft); margin: 0; }

/* blog detail */
.post-wrap { max-width: 720px; margin: 0 auto; }
.post-meta { color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.post-title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); line-height: 1.1; letter-spacing: -0.025em; font-weight: 500; margin: 10px 0 28px; }
.post-body { color: var(--ink); font-size: 17px; line-height: 1.7; }
.post-body p { margin: 0 0 1.1em; }
.post-body h2 { font-family: var(--font-display); font-size: 26px; margin: 36px 0 14px; font-weight: 500; letter-spacing: -0.015em; }
.post-body h3 { font-size: 20px; margin: 28px 0 12px; }
.post-body img { border-radius: 12px; margin: 18px 0; }
.post-body ul, .post-body ol { padding-left: 22px; }
.post-body a { color: var(--accent-ink); }

/* hide header brand mark on desktop, keep on mobile */
@media (min-width: 881px) {
  .brand-mark { display: none; }
}

/* nudge banner on order page */
.nudge-banner {
  display: flex; align-items: center; gap: 16px;
  background: var(--accent-soft);
  border: 1px solid #b7e3cd;
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.nudge-banner .text { flex: 1; min-width: 220px; }
.nudge-banner h4 { margin: 0 0 4px; font-size: 15px; font-weight: 600; color: var(--accent-ink); }
.nudge-banner p { margin: 0; font-size: 14px; color: var(--accent-ink); opacity: 0.85; }
.nudge-banner a {
  background: var(--accent-ink); color: #fff;
  padding: 10px 18px; border-radius: 999px;
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.nudge-banner a:hover { background: var(--ink); }

/* social proof strip */
.social-proof {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: clamp(22px, 4vw, 44px);
  padding: 22px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-top: 30px;
  font-size: 14px;
}
.proof-item { display: flex; align-items: center; gap: 12px; }
.proof-num { font-family: var(--font-display); font-size: 30px; font-weight: 500; letter-spacing: -0.02em; line-height: 1; }
.proof-label { color: var(--ink-soft); font-size: 14px; line-height: 1.3; max-width: 14ch; }
.proof-avatars { display: flex; align-items: center; }
.proof-avatars img {
  width: 38px; height: 38px;
  border-radius: 999px;
  border: 2px solid #fff;
  background: #f4f4f0;
  margin-left: -12px;
  object-fit: cover;
}
.proof-avatars img:first-child { margin-left: 0; }
.proof-stars { display: flex; flex-direction: column; gap: 2px; }
.proof-stars .stars { color: #f5a623; font-size: 16px; letter-spacing: 2px; }
@media (max-width: 540px) {
  .social-proof { padding: 18px 18px; gap: 18px; }
  .proof-num { font-size: 24px; }
  .proof-avatars img { width: 32px; height: 32px; margin-left: -10px; }
}

/* search */
.search-wrap { margin-bottom: 22px; position: relative; }
.search-wrap input {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 14px 18px 14px 46px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
}
.search-wrap input:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
.search-wrap::before {
  content: '';
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a92a1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><path d='m20 20-3.5-3.5'/></svg>") no-repeat center / contain;
  pointer-events: none;
}

/* services page */
.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.service-card .icon {
  width: 44px; height: 44px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 22px;
  margin-bottom: 6px;
}
.service-card h3 { font-family: var(--font-display); font-size: 22px; margin: 0; font-weight: 500; letter-spacing: -0.015em; line-height: 1.2; }
.service-card p { color: var(--ink-soft); font-size: 15px; margin: 0; line-height: 1.6; flex: 1; }
.service-card a { font-weight: 600; text-decoration: none; color: var(--accent-ink); margin-top: 6px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.promises-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 26px; }

/* contact form */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px);
  margin-top: 30px;
  max-width: 640px;
}
.contact-form h3 { font-family: var(--font-display); font-size: 22px; margin: 0 0 6px; font-weight: 500; letter-spacing: -0.015em; }
.contact-form p.sub { color: var(--ink-soft); font-size: 14.5px; margin: 0 0 22px; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .contact-form .row { grid-template-columns: 1fr; } }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  user-select: none;
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--muted);
  transition: transform 0.18s ease;
  margin-left: 14px;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 22px 20px; color: var(--ink-soft); font-size: 14.5px; line-height: 1.65; }

/* misc */
[hidden] { display: none !important; }
.spinner { display: inline-block; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.4); border-top-color: #fff; border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
