@font-face {
  font-family: Vazirmatn;
  src: url("fonts/vazirmatn-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Vazirmatn;
  src: url("fonts/vazirmatn-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Vazirmatn;
  src: url("fonts/vazirmatn-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Vazirmatn;
  src: url("fonts/vazirmatn-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Vazirmatn;
  src: url("fonts/vazirmatn-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #f8fafc;
  --bg-alt: #f1f5f9;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --border: rgba(15, 23, 42, 0.09);
  --text: #0f172a;
  --muted: #475569;
  --dim: #64748b;
  --accent: #4f46e5;
  --accent-dark: #4338ca;
  --accent-light: #6366f1;
  --accent-soft: rgba(79, 70, 229, 0.08);
  --accent-border: rgba(79, 70, 229, 0.22);
  --accent-glow: rgba(99, 102, 241, 0.2);
  --shadow: rgba(15, 23, 42, 0.06);
  --shadow-lg: rgba(15, 23, 42, 0.1);
  --radius: 1rem;
  --font-fa: Vazirmatn, "Segoe UI", Tahoma, sans-serif;
  --font-en: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font: var(--font-fa);
  --pad-x: 1.25rem;
}

html { scroll-behavior: smooth; }
html[lang="en"] { --font: var(--font-en); }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-synthesis: none;
}

/* Latin/numbers in RTL text — prevents overlap with Persian punctuation */
.ltr-isolate {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.ambient::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(ellipse 55% 45% at 12% 8%, rgba(99, 102, 241, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 88% 15%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(79, 70, 229, 0.06) 0%, transparent 55%);
  animation: drift 18s ease-in-out infinite alternate;
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 75%);
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(2%, -1%) scale(1.04); }
}

.container {
  width: min(72rem, calc(100% - 2 * var(--pad-x)));
  margin-inline: auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px) saturate(1.4);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 var(--shadow);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 0;
  min-height: 4.25rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}
.brand-logo {
  display: block;
  height: 4.25rem;
  width: auto;
  max-width: none;
  object-fit: contain;
  flex-shrink: 0;
}
/* Full wordmark: icon + OKANE text (always bright on landing). */
.brand-logo--wordmark {
  height: 3.75rem;
}
@media (min-width: 641px) {
  .brand-logo { height: 4.75rem; }
  .brand-logo--wordmark { height: 4.25rem; }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links a:not(.btn):not(.lang-switch) {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:not(.btn):not(.lang-switch):hover { color: var(--accent); }
.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.7rem;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--border);
  background: var(--surface);
  text-decoration: none;
  flex-shrink: 0;
}
.lang-switch:hover { color: var(--accent); border-color: var(--accent-border); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.1rem;
  border-radius: 0.75rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  text-align: center;
  line-height: 1.35;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 55%, var(--accent-dark) 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.32);
}
.btn-gold:hover { box-shadow: 0 10px 28px rgba(79, 70, 229, 0.42); }
.btn-ghost {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  box-shadow: 0 1px 2px var(--shadow);
}
.btn-ghost:hover {
  border-color: var(--accent-border);
  color: var(--accent);
}
.btn-lg { padding: 0.9rem 1.5rem; font-size: 0.95rem; border-radius: 0.85rem; }

.hero { padding: 2.5rem 0 3rem; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 960px) {
  .hero { padding: 3.5rem 0 4rem; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 2.5rem; }
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-light);
  box-shadow: 0 0 8px var(--accent-glow);
  animation: pulse 2s ease infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
  font-size: clamp(1.75rem, 6vw, 3.2rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  word-break: break-word;
}
.hero h1 .gold {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 50%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-lead {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 1.5rem;
}
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}
@media (min-width: 480px) {
  .hero-cta { flex-direction: row; flex-wrap: wrap; }
}
.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.65rem 0.5rem;
  border-radius: 0.65rem;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px var(--shadow);
  text-align: center;
}
.trust-item strong {
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-weight: 800;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.trust-item span { font-size: 0.72rem; color: var(--dim); font-weight: 500; line-height: 1.4; }

.mock-wrap { position: relative; width: 100%; max-width: 100%; }
.mock-glow {
  position: absolute;
  inset: 10% 5%;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
}
.mock {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: linear-gradient(160deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 20px 48px var(--shadow-lg), 0 0 0 1px var(--shadow);
  overflow: hidden;
}
@media (min-width: 641px) {
  .mock { animation: float 6s ease-in-out infinite; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.mock-bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.75rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  min-width: 0;
}
.mock-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.mock-dot.r { background: #ef4444; }
.mock-dot.y { background: var(--accent-light); }
.mock-dot.g { background: #22c55e; }
.mock-url {
  flex: 1;
  min-width: 0;
  font-size: 0.62rem;
  color: var(--dim);
  background: #e2e8f0;
  padding: 0.25rem 0.5rem;
  border-radius: 0.35rem;
  direction: ltr;
  text-align: left;
  font-family: ui-monospace, monospace;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
html[dir="rtl"] .mock-url { margin-right: 0.35rem; }
html[dir="ltr"] .mock-url { margin-left: 0.35rem; }
.mock-body { display: flex; min-height: 240px; }
@media (min-width: 641px) { .mock-body { min-height: 280px; } }
.mock-sidebar {
  width: 3.5rem;
  padding: 0.65rem 0.4rem;
  border-inline-start: 1px solid var(--border);
  background: var(--bg-alt);
  display: none;
  flex-direction: column;
  gap: 0.45rem;
  align-items: center;
  flex-shrink: 0;
}
@media (min-width: 641px) { .mock-sidebar { display: flex; width: 4.5rem; } }
.mock-nav-item {
  width: 2rem; height: 2rem;
  border-radius: 0.5rem;
  background: #e2e8f0;
}
.mock-nav-item.active {
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
}
.mock-main { flex: 1; padding: 0.85rem; min-width: 0; }
@media (min-width: 641px) { .mock-main { padding: 1rem; } }
.mock-title { font-size: 0.72rem; font-weight: 700; margin-bottom: 0.65rem; }
.mock-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
}
@media (min-width: 400px) {
  .mock-stats { grid-template-columns: repeat(3, 1fr); }
}
.mock-stat {
  padding: 0.45rem 0.5rem;
  border-radius: 0.5rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  min-width: 0;
}
.mock-stat label {
  display: block;
  font-size: 0.55rem;
  color: var(--dim);
  margin-bottom: 0.15rem;
  line-height: 1.3;
}
.mock-stat val {
  display: block;
  font-size: clamp(0.55rem, 2.2vw, 0.65rem);
  font-weight: 700;
  color: var(--accent);
  direction: rtl;
  text-align: end;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mock-chart {
  height: 4.5rem;
  border-radius: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.45rem;
  display: flex;
  align-items: flex-end;
  gap: 0.2rem;
}
@media (min-width: 641px) { .mock-chart { height: 5.5rem; } }
.mock-bar-col {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, var(--accent-dark), var(--accent-light));
  opacity: 0.85;
}
.mock-table { margin-top: 0.5rem; }
.mock-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.58rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  color: var(--muted);
}
.mock-row span:last-child {
  color: var(--text);
  font-weight: 600;
  flex-shrink: 0;
  direction: rtl;
  text-align: end;
  font-size: 0.52rem;
  line-height: 1.35;
  max-width: 48%;
}

section { padding: 2.75rem 0; }
@media (min-width: 641px) { section { padding: 4rem 0; } }
.section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
}
@media (min-width: 641px) { .section-head { margin-bottom: 2.75rem; } }
.section-head h2 {
  font-size: clamp(1.4rem, 4vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
  line-height: 1.35;
}
.section-head p { color: var(--muted); font-size: clamp(0.9rem, 2.5vw, 1rem); }

.pain-grid,
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
@media (min-width: 640px) {
  .pain-grid { grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); gap: 1rem; }
  .features-grid { grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr)); gap: 1rem; }
}
.pain-card,
.feat {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px var(--shadow);
}
@media (min-width: 641px) {
  .pain-card { padding: 1.35rem; }
  .feat { padding: 1.5rem; background: linear-gradient(145deg, #ffffff, var(--surface-2)); }
}
.pain-card:hover { border-color: var(--accent-border); box-shadow: 0 4px 16px var(--shadow-lg); }
.pain-icon {
  width: 2.25rem; height: 2.25rem;
  border-radius: 0.6rem;
  display: grid;
  place-items: center;
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}
.pain-card h3, .feat h3 {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  line-height: 1.55;
  letter-spacing: 0;
  word-spacing: 0;
}
.pain-card p, .feat p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
  letter-spacing: 0;
}
.pain-card .fix {
  margin-top: 0.65rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--border);
  font-size: 0.84rem;
  color: var(--accent);
  font-weight: 600;
}
.feat-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.7rem;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  color: var(--accent);
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
@media (min-width: 640px) {
  .steps { grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr)); gap: 1.25rem; }
}
.step {
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px dashed var(--accent-border);
  background: var(--accent-soft);
  box-shadow: 0 2px 8px var(--shadow);
}
.step-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: rgba(79, 70, 229, 0.2);
  line-height: 1;
  margin-bottom: 0.45rem;
}
.step h3 { font-size: 0.98rem; font-weight: 700; margin-bottom: 0.3rem; }
.step p { font-size: 0.875rem; color: var(--muted); }

.cta-band {
  padding: 2rem 1.15rem;
  border-radius: 1.1rem;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(14, 165, 233, 0.06) 100%),
    var(--surface);
  border: 1px solid var(--accent-border);
  box-shadow: 0 12px 40px var(--shadow-lg);
}
@media (min-width: 641px) { .cta-band { padding: 3rem 2rem; } }
.cta-band h2 {
  font-size: clamp(1.35rem, 4vw, 1.9rem);
  font-weight: 800;
  margin-bottom: 0.55rem;
  line-height: 1.35;
}
.cta-band p {
  color: var(--muted);
  margin-bottom: 1.35rem;
  max-width: 32rem;
  margin-inline: auto;
  font-size: 0.925rem;
}
.cta-contacts {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
  max-width: 22rem;
  margin-inline: auto;
}
@media (min-width: 480px) {
  .cta-contacts {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: none;
  }
}
.contact-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.8rem 1.2rem;
  border-radius: 0.8rem;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  box-shadow: 0 1px 3px var(--shadow);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color 0.2s, transform 0.2s;
  word-break: break-word;
}
.contact-chip:hover { border-color: var(--accent); transform: translateY(-2px); }
.contact-chip.gold {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: #ffffff;
  border: none;
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.32);
}

.section-alt {
  background: var(--bg-alt);
  border-block: 1px solid var(--border);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
@media (min-width: 640px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (min-width: 960px) {
  .audience-grid { grid-template-columns: repeat(4, 1fr); }
}
.audience-card {
  padding: 1.25rem 1rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 2px 10px var(--shadow);
  text-align: center;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.audience-card h3 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.55;
}
.audience-card p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 0.5rem;
  text-align: center;
}
.audience-card:hover {
  border-color: var(--accent-border);
  box-shadow: 0 6px 20px var(--shadow-lg);
  transform: translateY(-2px);
}
.audience-icon {
  display: block;
  font-size: 1.75rem;
  margin-bottom: 0.65rem;
  line-height: 1;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .preview-grid { grid-template-columns: repeat(3, 1fr); }
}
.preview-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
  box-shadow: 0 8px 28px var(--shadow-lg);
}
.preview-label {
  padding: 0.65rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.preview-mock {
  padding: 0.85rem;
  min-height: 9rem;
}
.preview-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  margin-bottom: 0.65rem;
}
.preview-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.45rem;
  border-radius: 0.45rem;
  background: var(--surface);
  border: 1px solid var(--border);
}
.preview-stat em {
  font-style: normal;
  font-size: 0.62rem;
  color: var(--dim);
}
.preview-stat strong {
  font-size: 0.72rem;
  color: var(--accent);
  direction: rtl;
  text-align: end;
  line-height: 1.35;
}
.preview-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  height: 4.5rem;
  padding: 0.45rem;
  border-radius: 0.45rem;
  background: var(--surface);
  border: 1px solid var(--border);
}
.preview-bars span {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, var(--accent-dark), var(--accent-light));
  opacity: 0.85;
}
.preview-list { display: flex; flex-direction: column; gap: 0.35rem; }
.preview-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.68rem;
  padding: 0.4rem 0.5rem;
  border-radius: 0.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
}
.preview-line strong {
  color: var(--text);
  font-weight: 600;
  flex-shrink: 0;
  text-align: end;
  line-height: 1.35;
  max-width: 55%;
}
.preview-line strong.debt { color: #16a34a; direction: rtl; }
.preview-line strong.paid { color: #dc2626; direction: rtl; }
.preview-line.dim { opacity: 0.55; font-size: 0.68rem; }

.faq-list {
  max-width: 40rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.faq-item {
  border-radius: 0.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 1px 4px var(--shadow);
  overflow: hidden;
}
.faq-item summary {
  padding: 1rem 1.1rem;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item[open] summary { color: var(--accent); }
.faq-item p {
  padding: 0 1.1rem 1rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

.contact-wa {
  border-color: rgba(34, 197, 94, 0.35);
}
.contact-wa:hover { border-color: #22c55e; }

.cta-note {
  margin-top: 1.25rem;
  margin-bottom: 0 !important;
}

footer {
  padding: 1.25rem 0 2rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--dim);
  line-height: 1.6;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.1rem;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }

.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  inset-inline: 0;
  z-index: 90;
  padding: 0.65rem var(--pad-x);
  padding-bottom: max(0.65rem, env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(12px);
  box-shadow: 0 -4px 16px var(--shadow);
}
.mobile-cta .btn { width: 100%; }
@media (max-width: 640px) {
  :root { --pad-x: 1rem; }
  body { padding-bottom: 4.5rem; }
  .mobile-cta { display: block; }
  .nav-links .nav-item { display: none; }
  .nav-links .btn-gold { display: none; }
  .hero-cta .btn { flex: 1; min-width: 0; }
}

@media (min-width: 641px) {
  .nav-links { gap: 1.1rem; }
}
