: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; } }
/* On desktop, keep the hero text clear of the absolutely-positioned image so a
   long title never runs behind it. Reserve the image's width (+gap) on the right. */
@media (min-width: 981px) { .hero .shell { padding-right: calc(min(46vw, 560px) + 40px); } }

/* 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; }
body[data-page="home"] .reviews-grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  body[data-page="home"] .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  body[data-page="home"] .reviews-grid { grid-template-columns: 1fr; }
  body[data-page="home"] .reviews-grid > .review:nth-child(n+4) { display: none; }
}
.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-grid-big { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.blog-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-3px); border-color: var(--ink); box-shadow: var(--shadow-md); }
.blog-card .blog-thumb {
  aspect-ratio: 1.6;
  background: var(--accent-soft);
  overflow: hidden;
  display: block;
}
.blog-card .blog-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-thumb img { transform: scale(1.04); }
.blog-card .blog-body { padding: 24px; display: flex; flex-direction: column; flex: 1; gap: 8px; }
.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: 4px 0 6px; line-height: 1.2; letter-spacing: -0.015em; font-weight: 500; }
.blog-excerpt { color: var(--ink-soft); font-size: 14.5px; margin: 0; line-height: 1.55; flex: 1; }
.blog-read { margin-top: 8px; color: var(--accent-ink); font-size: 13px; font-weight: 600; }

/* feature card on /blog */
.blog-feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  margin-top: 30px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.blog-feature:hover { border-color: var(--ink); box-shadow: var(--shadow-md); }
.blog-feature .blog-feature-img { aspect-ratio: 1.4; overflow: hidden; background: var(--accent-soft); }
.blog-feature .blog-feature-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-feature:hover .blog-feature-img img { transform: scale(1.03); }
.blog-feature .blog-feature-body { padding: clamp(28px, 4vw, 44px); display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.blog-feature .blog-feature-tag {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  align-self: flex-start;
}
.blog-feature h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 500; line-height: 1.1; letter-spacing: -0.02em; margin: 4px 0 8px; }
.blog-feature p { color: var(--ink-soft); font-size: 16px; margin: 0; line-height: 1.55; }
.blog-feature .blog-feature-meta { color: var(--muted); font-size: 13px; margin-top: 6px; }
@media (max-width: 820px) {
  .blog-feature { grid-template-columns: 1fr; }
  .blog-feature .blog-feature-img { aspect-ratio: 1.6; }
}

/* 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.3fr repeat(4, 1fr); gap: 32px; 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: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
}

/* sticky mobile CTA on product page */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 10px 14px;
  z-index: 90;
  align-items: center;
  gap: 12px;
  box-shadow: 0 -8px 20px -10px rgba(0,0,0,0.12);
  font-size: 14px;
}
.sticky-cta .info { flex: 1; min-width: 0; }
.sticky-cta .name { font-weight: 600; color: var(--ink); line-height: 1.2; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sticky-cta .price { color: var(--ink-soft); font-size: 12.5px; }
.sticky-cta .price strong { font-family: var(--font-display); color: var(--ink); font-weight: 600; font-size: 16px; }
.sticky-cta .btn { padding: 10px 18px; font-size: 14px; }
@media (max-width: 880px) {
  body[data-page="product"] .sticky-cta { display: flex; }
  body[data-page="product"] { padding-bottom: 68px; }
  body[data-page="product"] .float-cta { bottom: 78px; }
}

/* 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; color: var(--ink); font-family: inherit; -webkit-appearance: none; appearance: none; }
.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: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 30px; }
.order-step { padding: 10px 12px; border: 1px solid var(--line); border-radius: 10px; font-size: 13px; color: var(--muted); font-weight: 600; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@media (max-width: 600px) {
  .order-steps { gap: 6px; }
  .order-step { padding: 8px 8px; font-size: 11.5px; }
}
.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;
  color: var(--ink);
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
}
.via-chip.active { background: var(--ink); color: #fff !important; border-color: var(--ink); }

/* Phone input with country code picker */
.phone-input {
  display: flex;
  gap: 0;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}
.phone-input:focus-within { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
.phone-input select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--bg);
  border: none;
  border-right: 1px solid var(--line);
  padding: 12px 28px 12px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  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 10px center;
  flex: none;
  min-width: 110px;
}
.phone-input input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  outline: none;
}
.phone-input input:focus { outline: none; }
.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-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(24px, 4vw, 44px); align-items: start; margin-top: 30px; }
.contact-side { display: grid; gap: 12px; position: sticky; top: 100px; }
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.12s ease, transform 0.12s ease;
}
.contact-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.contact-card .ico { width: 38px; height: 38px; border-radius: 10px; background: var(--accent-soft); color: var(--accent-ink); display: grid; place-items: center; flex: none; }
.contact-card .ico svg { width: 20px; height: 20px; }
.contact-card .body { flex: 1; min-width: 0; }
.contact-card h3 { font-size: 13.5px; margin: 0 0 2px; font-weight: 600; color: var(--ink); }
.contact-card .val { font-size: 14px; color: var(--ink-soft); word-break: break-word; line-height: 1.3; }
@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-side { position: static; }
}

/* order page sidebar layout */
.order-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(24px, 4vw, 44px); align-items: start; margin-top: 30px; }
.order-side { display: grid; gap: 14px; position: sticky; top: 100px; }
.order-side-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; }
.order-side-card h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin: 0 0 14px; font-weight: 600; }
.order-side-trust { display: grid; gap: 14px; }
.order-side-trust .item { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; line-height: 1.4; }
.order-side-trust .item svg { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 2px; }
.order-side-trust .item strong { display: block; color: var(--ink); font-weight: 600; }
.order-side-trust .item span { color: var(--ink-soft); }
.order-side-review { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; }
.order-side-review .review-stars { font-size: 14px; }
.order-side-review .review-text { font-size: 14px; margin: 8px 0 10px; line-height: 1.5; color: var(--ink); }
.order-side-review .review-meta { font-size: 12.5px; color: var(--muted); }
@media (max-width: 860px) {
  .order-layout { grid-template-columns: 1fr; }
  .order-side { position: static; }
}

/* extras as checkboxes inside order Review step */
.order-extras { display: grid; gap: 8px; margin: 18px 0; }
.order-extras .opt {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  cursor: pointer;
  font-size: 14px;
}
.order-extras .opt:has(input:checked) { border-color: var(--ink); background: #fff; }
.order-extras .opt input { width: 16px; height: 16px; accent-color: var(--accent); flex: none; }
.order-extras .opt strong { font-weight: 600; }
.order-extras .opt .cost { margin-left: auto; color: var(--accent-ink); font-weight: 600; font-size: 13px; white-space: nowrap; }

/* 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; }

/* reading progress bar */
.read-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--accent);
  z-index: 200;
  transition: width 0.1s ease;
}

/* blog post hero */
.post-hero {
  background: var(--bg);
  padding-top: 40px;
}
.post-hero-inner { max-width: 880px; }
.post-back {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 24px;
}
.post-back:hover { color: var(--ink); }
.post-meta-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; color: var(--ink-soft); font-size: 13.5px; margin-bottom: 22px; }
.post-meta-pill {
  background: var(--accent-soft);
  color: var(--accent-ink);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
}
.post-meta-dot { color: var(--muted); }
.post-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin: 0 0 22px;
  max-width: 24ch;
  text-wrap: balance;
}
@media (max-width: 600px) {
  .post-hero-title { max-width: 100%; font-size: clamp(1.7rem, 8vw, 2.2rem); }
}
.post-hero-lead {
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  color: var(--ink-soft);
  margin: 0 0 36px;
  max-width: 60ch;
  line-height: 1.5;
}
.post-hero-image { padding: 0 var(--gutter); }
.post-hero-image img {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  height: clamp(260px, 42vw, 480px);
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

/* blog detail body */
.post-section { background: var(--bg); padding: clamp(48px, 7vw, 88px) 0; }
.post-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
.post-toc {
  position: sticky;
  top: 100px;
  font-size: 13.5px;
}
.post-toc-title {
  color: var(--muted);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}
.post-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 2px solid var(--line);
}
.post-toc li { padding: 0; margin: 0; }
.post-toc a {
  display: block;
  padding: 8px 16px;
  margin-left: -2px;
  border-left: 2px solid transparent;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 13.5px;
  line-height: 1.35;
  transition: all 0.12s ease;
}
.post-toc a:hover { color: var(--ink); border-left-color: var(--ink); }
.post-toc a.active { color: var(--accent-ink); border-left-color: var(--accent); font-weight: 600; }
.post-toc li.lvl-3 a { padding-left: 30px; font-size: 13px; }
@media (max-width: 980px) {
  .post-layout { grid-template-columns: 1fr; gap: 30px; }
  .post-toc { position: static; padding: 18px 22px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
  .post-toc ol { border-left: none; }
  .post-toc a { padding-left: 0; }
  .post-toc a.active { padding-left: 8px; background: var(--accent-soft); border-radius: 8px; border-left: none; }
}

.post-body { color: var(--ink); font-size: 17.5px; line-height: 1.75; max-width: 720px; width: 100%; }

/* Neutralise WP/Elementor wrapper cascade — force everything to clean block flow */
.post-body [class*="elementor-"],
.post-body [class*="e-con"],
.post-body [class*="e-flex"],
.post-body .e-parent,
.post-body .e-child {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
/* But keep figures laid out properly */
.post-body figure { display: block !important; margin: 24px 0 !important; width: 100% !important; max-width: 100% !important; }
.post-body figure img { width: 100% !important; max-width: 100% !important; height: auto !important; border-radius: 12px; }
.post-body figcaption { display: block !important; margin-top: 10px !important; }

/* Collapse layout to single column when TOC is empty/hidden */
.post-layout.no-toc { grid-template-columns: 1fr; max-width: 760px; }
.post-layout.no-toc .post-toc { display: none; }
.post-body > p:first-child { font-size: 19px; color: var(--ink); line-height: 1.6; }
.post-body p { margin: 0 0 1.3em; color: var(--ink); }
.post-body h2 { font-family: var(--font-display); font-size: 28px; margin: 50px 0 16px; font-weight: 500; letter-spacing: -0.02em; line-height: 1.2; scroll-margin-top: 100px; }
.post-body h3 { font-family: var(--font-display); font-size: 22px; margin: 36px 0 12px; font-weight: 500; letter-spacing: -0.015em; line-height: 1.25; scroll-margin-top: 100px; }
.post-body img { border-radius: 12px; margin: 24px 0; width: 100%; max-width: 100%; height: auto; }
.post-body figure { margin: 24px 0; }
.post-body figure img { margin: 0; }
.post-body figcaption { color: var(--muted); font-size: 13.5px; margin-top: 10px; text-align: center; }
.post-body .alignright, .post-body .alignleft { float: none !important; margin: 24px 0 !important; width: 100% !important; }
.post-body ul, .post-body ol { padding-left: 22px; margin: 0 0 1.3em; }
.post-body li { margin-bottom: 8px; line-height: 1.65; }
.post-body a { color: var(--accent-ink); text-decoration: underline; text-underline-offset: 3px; }
.post-body blockquote {
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 22px;
  margin: 28px 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.post-body strong { color: var(--ink); font-weight: 600; }

/* post CTA card */
.post-cta-card {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 56px);
  margin-top: 60px;
}
.post-cta-card .h-eyebrow { color: var(--accent); }
.post-cta-card h2 { color: #fff; }
.post-cta-card p { color: rgba(255,255,255,0.78); }

/* 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; }

/* compare */
.compare-picker { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 30px; }
@media (max-width: 600px) { .compare-picker { grid-template-columns: 1fr; } }
.compare-grid { display: grid; grid-template-columns: max-content 1fr 1fr; gap: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.compare-grid > div { padding: 16px 20px; border-bottom: 1px solid var(--line); font-size: 14.5px; color: var(--ink); }
.compare-grid > div:nth-last-child(-n+3) { border-bottom: none; }
.compare-grid > .cmp-label { background: var(--bg); color: var(--muted); font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; align-content: center; }
.compare-grid > .cmp-head { font-family: var(--font-display); font-size: 18px; font-weight: 500; letter-spacing: -0.01em; line-height: 1.2; }
.compare-grid > .cmp-price { font-family: var(--font-display); font-size: 24px; font-weight: 500; letter-spacing: -0.02em; }
.compare-grid img { width: 100%; max-width: 140px; border-radius: 8px; }

/* passports hub */
.passport-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin-top: 24px; }
.passport-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.12s ease, border-color 0.12s ease;
}
.passport-card:hover { transform: translateY(-2px); border-color: var(--ink); }
.passport-flag { font-size: 36px; line-height: 1; flex: none; }
.passport-info { flex: 1; min-width: 0; }
.passport-info h3 { font-family: var(--font-display); font-size: 19px; margin: 0 0 4px; font-weight: 500; letter-spacing: -0.01em; }
.passport-info p { font-size: 13.5px; color: var(--ink-soft); margin: 0; line-height: 1.4; }
.passport-card .arrow { color: var(--muted); font-size: 18px; }

/* quote builder */
.quote-stage { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; margin-top: 30px; }
@media (max-width: 920px) { .quote-stage { grid-template-columns: 1fr; } }
.quote-form { display: flex; flex-direction: column; gap: 24px; }
.quote-section-title { font-family: var(--font-display); font-size: 18px; font-weight: 500; letter-spacing: -0.01em; margin-bottom: 12px; }
.quote-option {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: border-color 0.12s ease;
}
.quote-option:has(input:checked) { border-color: var(--ink); background: #fff; }
.quote-option > div { flex: 1; min-width: 0; }
.quote-option strong { display: block; font-weight: 600; font-size: 14.5px; }
.quote-option span { display: block; color: var(--ink-soft); font-size: 13px; line-height: 1.4; margin-top: 2px; }
.quote-cost { font-family: var(--font-display); font-size: 14.5px; color: var(--accent-ink); font-weight: 500; white-space: nowrap; }
.quote-option input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--accent); }
.quote-option input[type="number"] { padding: 6px 10px; border: 1px solid var(--line-strong); border-radius: 8px; font-size: 15px; font-family: inherit; text-align: center; }

.quote-summary {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  position: sticky;
  top: 96px;
}
.quote-sum-title { color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; font-size: 12px; font-weight: 600; margin-bottom: 4px; }
.quote-sum-name { font-family: var(--font-display); font-size: 22px; line-height: 1.2; letter-spacing: -0.015em; font-weight: 500; margin-bottom: 18px; }
.quote-sum-row { display: flex; justify-content: space-between; align-items: baseline; padding: 8px 0; font-size: 14px; color: var(--ink-soft); border-bottom: 1px dashed var(--line); }
.quote-sum-row strong { color: var(--ink); font-weight: 600; }
.quote-sum-total { font-size: 16px; padding-top: 16px; margin-top: 8px; border-top: 2px solid var(--ink); border-bottom: none; }
.quote-sum-total strong { font-family: var(--font-display); font-size: 28px; letter-spacing: -0.02em; font-weight: 500; }
.quote-sum-note { font-size: 12.5px; color: var(--muted); margin: 14px 0 0; line-height: 1.45; }

/* 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); } }

/* team (about page) */
.team-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:22px;margin-top:22px}
.team-card{text-align:center}
.team-card img,.team-card .team-ph{width:100%;aspect-ratio:1;object-fit:cover;border-radius:16px;background:var(--wash,#eef2f0);display:block}
.team-card h3{margin:14px 0 2px;font-family:var(--font-display,'Newsreader',serif);font-size:19px;font-weight:600}
.team-card p{margin:0;color:var(--ink-soft,#667);font-size:14px}
