/* ============================================================
   Feerr Tech — Shopify 2026 palette
   Dark hero (#061a1c) + mint accent (#36f4a4) + tailwind grays
   ============================================================ */

:root {
  /* Dark surfaces (Shopify 2026 hero/footer) */
  --bg-deep:      #061a1c;   /* primary dark — hero/footer/CTA */
  --bg-deep-2:    #02090a;   /* deeper black, contrast accent */
  --bg-deep-3:    #121c1e;   /* slightly lifted dark surface */
  --bg-deep-4:    #1c2c30;   /* card backgrounds on dark */

  /* Light surfaces */
  --bg-white:     #ffffff;
  --bg-off:       #fafafa;   /* near-white section bg */
  --bg-soft:      #f4f4f5;   /* zinc-100, subtle cards */

  /* Ink scale (zinc family — what Shopify uses) */
  --ink:          #18181b;   /* primary text on light */
  --ink-2:        #27272a;
  --ink-3:        #3f3f46;   /* zinc-700 */
  --ink-4:        #71717a;   /* zinc-500, secondary text */
  --ink-5:        #a1a1aa;   /* zinc-400, muted on light */

  /* Borders */
  --border:       #e4e4e7;   /* zinc-200 */
  --border-2:     #d4d4d8;   /* zinc-300 */
  --border-dark:  rgba(255,255,255,0.10);   /* on dark surfaces */
  --border-dark-2: rgba(255,255,255,0.18);

  /* Text on dark */
  --on-dark:        #fafafa;
  --on-dark-2:      #d4d4d8;
  --on-dark-muted:  #a1a1aa;

  /* Brand */
  --mint:         #36f4a4;   /* primary accent */
  --mint-soft:    #e6fdf2;   /* mint tint for light bg */
  --mint-dark:    #11352d;   /* deep teal-green */
  --shopify-green:#008060;   /* classic — used sparingly */

  /* Pops (used very sparingly, like Shopify) */
  --pop-cyan:     #02f0ff;
  --pop-purple:   #6b26ff;
  --pop-orange:   #ff4500;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4 {
  line-height: 1.08;
  margin: 0 0 0.5em;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--ink);
}
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- Nav (on dark hero) ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(6, 26, 28, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border-dark);
  color: var(--on-dark);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 18px; color: var(--on-dark);
}
.brand-mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--mint);
  display: grid; place-items: center;
  color: var(--bg-deep); font-weight: 800; font-size: 16px;
}
.brand-mark::after {
  content: ""; position: absolute;
  /* dot removed — Shopify 2026 doesn't use the dot motif */
}
.nav-links { display: flex; align-items: center; gap: 32px; font-size: 14px; }
.nav-links > a, .nav-links .dropdown-trigger {
  color: var(--on-dark-2); transition: color 0.15s;
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 500;
}
.nav-links > a:hover, .nav-links > a.active,
.nav-links .dropdown-trigger:hover, .nav-links .dropdown-trigger.active {
  color: var(--mint);
}
.nav-cta {
  background: var(--mint);
  color: var(--bg-deep);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px; font-weight: 600;
  transition: background 0.15s, transform 0.15s;
  border: 1px solid var(--mint);
}
.nav-cta:hover {
  background: #5cf6b5;
  border-color: #5cf6b5;
  transform: translateY(-1px);
}
@media (max-width: 720px) { .nav-links { display: none; } }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-trigger svg { transition: transform 0.2s; }
.has-dropdown:hover .dropdown-trigger svg,
.has-dropdown:focus-within .dropdown-trigger svg { transform: rotate(180deg); }
.dropdown {
  position: absolute;
  top: 100%; left: 50%;
  transform: translate(-50%, -8px);
  min-width: 320px;
  background: var(--bg-deep-3);
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 10px;
  margin-top: 14px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.5);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible;
  transform: translate(-50%, 0);
}
.has-dropdown::after {
  content: ""; position: absolute;
  top: 100%; left: 0; right: 0; height: 18px;
}
.dropdown a {
  display: block;
  padding: 12px 14px;
  border-radius: 9px;
  color: var(--on-dark-2);
  transition: background 0.15s, color 0.15s;
}
.dropdown a:hover { background: rgba(54, 244, 164, 0.10); color: var(--mint); }
.dropdown a.current { background: rgba(54, 244, 164, 0.12); color: var(--mint); }
.dropdown .dropdown-title { font-weight: 600; font-size: 14px; margin-bottom: 3px; color: var(--on-dark); }
.dropdown .dropdown-desc { font-size: 12px; color: var(--on-dark-muted); line-height: 1.4; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: 999px;   /* Shopify uses pill buttons */
  font-weight: 600; font-size: 15px;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s;
  cursor: pointer; border: 1px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: var(--mint);
  color: var(--bg-deep);
  border-color: var(--mint);
}
.btn-primary:hover {
  background: #5cf6b5;
  border-color: #5cf6b5;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent; color: var(--on-dark);
  border-color: var(--border-dark-2);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.3); }
.btn-dark {
  background: var(--bg-deep); color: var(--on-dark);
  border-color: var(--bg-deep);
}
.btn-dark:hover { background: var(--bg-deep-2); border-color: var(--bg-deep-2); }
.btn-outline {
  background: transparent; color: var(--ink);
  border: 1px solid var(--border-2);
}
.btn-outline:hover { border-color: var(--ink); color: var(--ink); }

/* ---------- Hero (homepage) ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--bg-deep);
  color: var(--on-dark);
  padding: 120px 0 140px;
}
/* organic green/cyan blob */
.hero::before {
  content: ""; position: absolute;
  right: -15%; top: -10%;
  width: 720px; height: 720px; border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(54, 244, 164, 0.30), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(2, 240, 255, 0.18), transparent 55%);
  filter: blur(20px);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute;
  left: -10%; bottom: -25%;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(107, 38, 255, 0.18), transparent 60%);
  filter: blur(20px);
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 64px; align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 56px; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mint);
  background: rgba(54, 244, 164, 0.08);
  border: 1px solid rgba(54, 244, 164, 0.25);
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 24px;
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--mint); flex-shrink: 0;
  box-shadow: 0 0 8px var(--mint);
}

.hero h1 {
  font-size: clamp(40px, 5.8vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--on-dark);
}
.hero h1 em {
  font-style: normal;
  color: var(--mint);
}
.hero .sub {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--on-dark-muted);
  max-width: 560px; margin-bottom: 36px;
  line-height: 1.55;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero visual: floating cards (white cards on dark hero, with mint accents) */
.hero-visual {
  position: relative; height: 380px;
}
.float-card {
  position: absolute;
  background: var(--bg-deep-3);
  border: 1px solid var(--border-dark);
  border-radius: 14px; padding: 20px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
  color: var(--on-dark);
}
.fc1 {
  width: 260px; top: 0; left: 0;
  animation: floatA 6s ease-in-out infinite;
}
.fc2 {
  width: 240px; top: 120px; right: 0;
  animation: floatB 7s ease-in-out infinite;
  border-color: rgba(54, 244, 164, 0.4);
  box-shadow: 0 30px 60px -20px rgba(54, 244, 164, 0.15), 0 30px 60px -20px rgba(0,0,0,0.5);
}
.fc3 {
  width: 270px; bottom: 0; left: 50px;
  animation: floatA 8s ease-in-out infinite reverse;
}
@keyframes floatA { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes floatB { 0%,100% { transform: translateY(0); } 50% { transform: translateY(12px); } }
.fc-title {
  font-size: 11px; color: var(--on-dark-muted); font-weight: 600;
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.fc-bar { height: 6px; border-radius: 4px; background: rgba(255,255,255,0.08); margin: 8px 0; overflow: hidden; }
.fc-bar > span { display: block; height: 100%; background: var(--mint); border-radius: 4px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 8px var(--mint); }

/* ---------- Sub-page hero ---------- */
.page-hero {
  position: relative; overflow: hidden;
  background: var(--bg-deep);
  color: var(--on-dark);
  padding: 88px 0 96px;
  border-bottom: 1px solid var(--border-dark);
}
.page-hero::before {
  content: ""; position: absolute;
  right: -10%; top: -50%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(54, 244, 164, 0.18), transparent 60%);
  filter: blur(20px);
  pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(38px, 4.8vw, 56px);
  font-weight: 800;
  letter-spacing: -0.035em;
  max-width: 820px;
  color: var(--on-dark);
}
.page-hero p {
  color: var(--on-dark-muted);
  font-size: clamp(16px, 1.3vw, 18px);
  max-width: 680px; margin-bottom: 0;
  line-height: 1.55;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--on-dark-muted); margin-bottom: 24px;
}
.breadcrumb a { color: var(--on-dark-2); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--mint); }
.breadcrumb svg { color: var(--on-dark-muted); }

/* ---------- Trust strip ---------- */
.trust {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 32px 0; color: var(--ink-4);
}
.trust-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em;
  font-weight: 700; color: var(--ink-4);
}
.trust-items {
  display: flex; gap: 36px; flex-wrap: wrap;
  font-weight: 600; color: var(--ink-2);
}

/* ---------- Section base ---------- */
section { padding: 110px 0; }
.section-head { max-width: 760px; margin: 0 auto 72px; text-align: center; }
.section-head .eyebrow { margin: 0 auto 20px; color: var(--mint-dark); background: var(--mint-soft); border-color: #b6f0d4; }
.section-head .eyebrow::before { background: var(--mint-dark); box-shadow: none; }
.section-head h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.section-head p { color: var(--ink-4); font-size: 18px; line-height: 1.55; }

/* ---------- Services grid ---------- */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }
.service {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
  display: flex; flex-direction: column;
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px rgba(6, 26, 28, 0.18);
  border-color: var(--bg-deep);
}
.service-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--bg-deep);
  color: var(--mint);
  margin-bottom: 24px;
}
.service h3 { font-size: 22px; color: var(--ink); margin-bottom: 10px; }
.service p { color: var(--ink-4); font-size: 15px; }
.service ul {
  list-style: none; padding: 0; margin: 18px 0 0;
  font-size: 14px; color: var(--ink-3);
}
.service li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 6px 0;
}
.service li::before {
  content: ""; width: 16px; height: 16px; border-radius: 50%;
  background: var(--mint-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2311352d'%3E%3Cpath fill-rule='evenodd' d='M16.7 5.3a1 1 0 010 1.4l-8 8a1 1 0 01-1.4 0l-4-4a1 1 0 011.4-1.4L8 12.6l7.3-7.3a1 1 0 011.4 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 12px;
  margin-top: 4px; flex-shrink: 0;
}
.service-link {
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 14px; font-weight: 700; color: var(--bg-deep);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s, color 0.15s;
}
.service-link:hover { gap: 12px; color: var(--mint-dark); }

/* ---------- Why us (dark section for contrast) ---------- */
.why {
  background: var(--bg-deep);
  color: var(--on-dark);
}
.why .section-head h2 { color: var(--on-dark); }
.why .section-head p { color: var(--on-dark-muted); }
.why .section-head .eyebrow {
  color: var(--mint); background: rgba(54, 244, 164, 0.08); border-color: rgba(54, 244, 164, 0.25);
}
.why .section-head .eyebrow::before { background: var(--mint); box-shadow: 0 0 8px var(--mint); }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: var(--bg-deep-3);
  border-radius: 14px; padding: 32px;
  border: 1px solid var(--border-dark);
}
.why-card .num {
  font-size: 44px; font-weight: 800; letter-spacing: -0.04em;
  color: var(--mint);
  margin-bottom: 6px;
}
.why-card h4 { font-size: 16px; color: var(--on-dark); margin-bottom: 6px; }
.why-card p { font-size: 14px; color: var(--on-dark-muted); margin: 0; }

/* ---------- Process ---------- */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .process-grid { grid-template-columns: 1fr; } }
.step {
  padding: 28px; background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  position: relative;
}
.step::before {
  content: ""; position: absolute;
  left: 0; top: 0; bottom: 0; width: 3px;
  border-radius: 12px 0 0 12px;
  background: var(--mint);
}
.step .step-num {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--mint-dark); text-transform: uppercase;
}
.step h4 { font-size: 18px; color: var(--ink); margin-top: 8px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--ink-4); margin: 0; }

/* ---------- Contact CTA (dark with mint button) ---------- */
.cta {
  background: var(--bg-deep);
  color: var(--on-dark);
  border-radius: 28px;
  padding: 80px 56px;
  text-align: center;
  position: relative; overflow: hidden;
  border: 1px solid var(--border-dark);
}
.cta::before {
  content: ""; position: absolute;
  right: -150px; top: -150px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(54, 244, 164, 0.22), transparent 60%);
  filter: blur(20px);
  pointer-events: none;
}
.cta::after {
  content: ""; position: absolute;
  left: -120px; bottom: -150px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(2, 240, 255, 0.15), transparent 60%);
  filter: blur(20px);
  pointer-events: none;
}
.cta > * { position: relative; }
.cta h2 {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--on-dark);
  letter-spacing: -0.035em;
  font-weight: 800;
}
.cta p {
  color: var(--on-dark-muted);
  max-width: 560px; margin: 0 auto 32px;
  font-size: 17px;
}

/* ---------- Footer ---------- */
footer {
  background: var(--bg-deep-2);
  color: var(--on-dark-muted);
  padding: 72px 0 36px;
  border-top: 1px solid var(--border-dark);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 56px;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-grid h5 {
  color: var(--on-dark); font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em;
  margin: 0 0 16px; font-weight: 700;
}
.footer-grid p, .footer-grid a {
  font-size: 14px;
  color: var(--on-dark-muted);
  display: block; margin-bottom: 10px;
  transition: color 0.15s;
}
.footer-grid a:hover { color: var(--mint); }
.footer-brand p { max-width: 360px; margin-top: 14px; line-height: 1.6; }
.footer-bot {
  border-top: 1px solid var(--border-dark);
  padding-top: 28px;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-5);
}
.footer-bot a { color: var(--on-dark-muted); }
.footer-bot a:hover { color: var(--mint); }

/* ============================================================
   Sub-page specific styles
   ============================================================ */

/* ---------- Service detail page ---------- */
.service-detail {
  display: grid; grid-template-columns: 1fr 320px; gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .service-detail { grid-template-columns: 1fr; gap: 40px; }
}
.detail-body h2 {
  font-size: 32px; color: var(--ink);
  margin-top: 56px; margin-bottom: 18px;
  letter-spacing: -0.025em;
}
.detail-body h2:first-child { margin-top: 0; }
.detail-body h3 {
  font-size: 20px; color: var(--ink);
  margin-top: 32px; margin-bottom: 10px;
}
.detail-body p, .detail-body li {
  color: var(--ink-3); font-size: 16px;
}
.detail-body ul { padding-left: 0; list-style: none; }
.detail-body ul li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 10px 0;
}
.detail-body ul li::before {
  content: ""; width: 18px; height: 18px; border-radius: 50%;
  background: var(--mint-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2311352d'%3E%3Cpath fill-rule='evenodd' d='M16.7 5.3a1 1 0 010 1.4l-8 8a1 1 0 01-1.4 0l-4-4a1 1 0 011.4-1.4L8 12.6l7.3-7.3a1 1 0 011.4 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 14px;
  margin-top: 4px; flex-shrink: 0;
}

.feature-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  margin-top: 24px;
}
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }
.feature {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 12px; padding: 22px;
}
.feature h4 {
  font-size: 15px; color: var(--ink); margin-bottom: 6px;
  display: flex; align-items: center; gap: 10px;
}
.feature h4 svg { color: var(--mint-dark); }
.feature p { font-size: 14px; color: var(--ink-4); margin: 0; }

.detail-aside { position: sticky; top: 96px; }
.aside-card {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px;
  margin-bottom: 16px;
}
.aside-card h4 {
  font-size: 16px; color: var(--ink); margin-bottom: 14px;
}
.aside-card p { font-size: 14px; color: var(--ink-4); margin-bottom: 16px; }
.aside-card .btn { width: 100%; justify-content: center; }
.aside-meta { display: flex; flex-direction: column; gap: 0; }
.aside-meta-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.aside-meta-row:last-child { border-bottom: none; }
.aside-meta-row .label { color: var(--ink-4); }
.aside-meta-row .value { color: var(--ink); font-weight: 600; }

/* FAQ */
.faq-grid {
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: 12px; padding: 22px 26px;
  cursor: pointer;
}
.faq-item summary {
  font-weight: 600; color: var(--ink); font-size: 16px;
  list-style: none; display: flex; justify-content: space-between; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; color: var(--mint-dark); font-weight: 400; font-size: 24px; line-height: 1;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: 14px 0 0; color: var(--ink-4); font-size: 15px; }

/* Related */
.related { background: var(--bg-soft); }

/* ---------- Legal page ---------- */
.legal-body {
  max-width: 820px; margin: 0 auto;
  color: var(--ink-3); font-size: 16px;
}
.legal-body h2 {
  font-size: 26px; color: var(--ink);
  margin-top: 52px; margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 {
  font-size: 18px; color: var(--ink);
  margin-top: 28px; margin-bottom: 8px;
}
.legal-body p, .legal-body li { color: var(--ink-3); }
.legal-body ul, .legal-body ol { padding-left: 22px; }
.legal-body li { padding: 4px 0; }
.legal-body strong { color: var(--ink); }
.legal-meta {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 12px; padding: 16px 20px;
  font-size: 14px; color: var(--ink-4);
  margin-bottom: 52px;
}
.legal-meta strong { color: var(--ink); }
.legal-body a { color: var(--mint-dark); text-decoration: underline; text-underline-offset: 3px; }
.legal-body a:hover { color: var(--bg-deep); }
