/* ============================================================
 * Components — header, footer, button, card, form, faq, badge
 * ============================================================ */

/* =====================  HEADER / NAV  ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: background var(--motion-base), border-color var(--motion-base), box-shadow var(--motion-base);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--c-border);
  box-shadow: var(--shadow-xs);
}
.nav {
  display: flex;
  align-items: center;
  gap: var(--s-6);
  padding-block: var(--s-4);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-weight: var(--fw-extrabold);
  color: var(--c-brand);
  font-size: var(--fs-md);
  letter-spacing: var(--tracking-tight);
}
.nav__brand:hover { color: var(--c-brand); }
.nav__brand-mark {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-brand);
  color: var(--c-white);
  border-radius: var(--r-md);
  font-weight: var(--fw-extrabold);
  font-size: var(--fs-sm);
}
.nav__menu {
  display: none;
  align-items: center;
  gap: var(--s-2);
  margin-inline-start: auto;
  list-style: none;
  padding: 0;
  margin-block: 0;
}
.nav__link {
  padding: var(--s-2) var(--s-3);
  color: var(--c-text-body);
  font-weight: var(--fw-medium);
  font-size: var(--fs-sm);
  border-radius: var(--r-md);
  transition: background var(--motion-fast), color var(--motion-fast);
}
.nav__link:hover { color: var(--c-brand); background: var(--c-brand-soft); }
.nav__link[aria-current="page"] {
  color: var(--c-brand);
  background: var(--c-brand-soft);
}
.nav__cta { margin-inline-start: var(--s-2); }
.nav__toggle {
  margin-inline-start: auto;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  color: var(--c-text);
}
.nav__toggle:hover { background: var(--c-surface); }
.nav__toggle-bar {
  display: block; width: 18px; height: 2px; background: currentColor;
  position: relative;
}
.nav__toggle-bar::before,
.nav__toggle-bar::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: currentColor;
  transition: transform var(--motion-base), top var(--motion-base);
}
.nav__toggle-bar::before { top: -6px; }
.nav__toggle-bar::after  { top: 6px; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar { background: transparent; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar::before { top: 0; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar::after  { top: 0; transform: rotate(-45deg); }

@media (min-width: 1024px) {
  .nav__menu { display: inline-flex; }
  .nav__toggle { display: none; }
}

/* Mobile drawer */
.nav__drawer {
  display: none;
  border-top: 1px solid var(--c-border);
  padding: var(--s-4) var(--gutter) var(--s-6);
  background: var(--c-white);
}
.nav__drawer.is-open { display: block; }
.nav__drawer .nav__link {
  display: block;
  padding: var(--s-3) var(--s-3);
  font-size: var(--fs-base);
  border-radius: var(--r-md);
}
.nav__drawer .nav__cta { display: block; margin-top: var(--s-3); text-align: center; }
@media (min-width: 1024px) {
  .nav__drawer { display: none !important; }
}

/* =====================  BUTTONS  ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: var(--s-3) var(--s-5);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  font-family: var(--ff-sans);
  letter-spacing: 0;
  line-height: 1.2;
  border: 1px solid transparent;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: background var(--motion-fast), color var(--motion-fast),
              border-color var(--motion-fast), transform var(--motion-fast),
              box-shadow var(--motion-fast);
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--c-accent);
  color: var(--c-white);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}
.btn--primary:hover {
  background: var(--c-accent-hover);
  color: var(--c-white);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn--secondary {
  background: var(--c-brand);
  color: var(--c-white);
}
.btn--secondary:hover {
  background: var(--c-brand-hover);
  color: var(--c-white);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--c-brand);
  border-color: var(--c-border-strong);
}
.btn--ghost:hover {
  background: var(--c-brand-soft);
  border-color: var(--c-brand);
  color: var(--c-brand);
}

.btn--link {
  background: transparent;
  color: var(--c-brand);
  padding-inline: 0;
}
.btn--link:hover { color: var(--c-accent); }
.btn--link .btn__arrow { transition: transform var(--motion-base); }
.btn--link:hover .btn__arrow { transform: translateX(3px); }

.btn--lg { padding: var(--s-4) var(--s-6); font-size: var(--fs-base); }
.btn--sm { padding: var(--s-2) var(--s-3); font-size: var(--fs-xs); }
.btn--block { width: 100%; }

.btn[disabled] {
  opacity: 0.5; cursor: not-allowed; pointer-events: none;
}

/* =====================  BADGES / TAGS  ===================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  padding: 2px var(--s-2);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  border-radius: var(--r-full);
  background: var(--c-brand-soft);
  color: var(--c-brand);
  line-height: 1.4;
}
.badge--accent  { background: var(--c-accent-soft);  color: var(--c-accent-hover); }
.badge--success { background: var(--c-success-soft); color: var(--c-success); }
.badge--warn    { background: var(--c-warn-soft);    color: var(--c-warn); }
.badge--danger  { background: var(--c-danger-soft);  color: var(--c-danger); }
.badge--ghost   { background: transparent; color: var(--c-text-subtle); border: 1px solid var(--c-border); }

/* =====================  CARDS  ===================== */
.card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  transition: transform var(--motion-base), box-shadow var(--motion-base), border-color var(--motion-base);
}
.card--interactive { cursor: pointer; }
.card--interactive:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-border-strong);
}
.card--soft { background: var(--c-surface-alt); border-color: transparent; }
.card--ink {
  background: var(--c-brand);
  color: var(--c-white);
  border-color: transparent;
}
.card--ink h3, .card--ink h4 { color: var(--c-white); }
.card--ink p { color: rgba(255,255,255,0.85); }

.card__icon {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-brand-soft);
  color: var(--c-brand);
  border-radius: var(--r-md);
  margin-bottom: var(--s-4);
}
.card__icon--accent { background: var(--c-accent-soft); color: var(--c-accent-hover); }

.card__title { margin: 0 0 var(--s-2); font-size: var(--fs-lg); }
.card__body  { color: var(--c-text-body); font-size: var(--fs-sm); line-height: var(--lh-relaxed); }

/* =====================  PRICING CARD  ===================== */
.pricing-grid {
  display: grid;
  gap: var(--s-6);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); align-items: stretch; }
}

.plan {
  position: relative;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--s-8);
  display: flex;
  flex-direction: column;
  transition: transform var(--motion-base), box-shadow var(--motion-base);
}
.plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.plan--featured {
  border-color: var(--c-accent);
  background: linear-gradient(180deg, var(--c-white) 0%, var(--c-accent-soft) 100%);
  box-shadow: var(--shadow-md);
}
.plan__ribbon {
  position: absolute;
  top: var(--s-4);
  right: var(--s-4);
  background: var(--c-accent);
  color: var(--c-white);
  padding: var(--s-1) var(--s-3);
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}
.plan__name {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--c-text-subtle);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  margin-bottom: var(--s-2);
}
.plan__headline { font-size: var(--fs-2xl); margin: 0 0 var(--s-2); }
.plan__audience { color: var(--c-text-subtle); font-size: var(--fs-sm); margin-bottom: var(--s-6); }
.plan__price {
  display: flex; align-items: baseline; gap: var(--s-2);
  margin-bottom: var(--s-1);
}
.plan__price-amount {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-extrabold);
  color: var(--c-text-strong);
  letter-spacing: var(--tracking-tight);
  line-height: 1;
}
.plan__price-unit { color: var(--c-text-subtle); font-size: var(--fs-sm); }
.plan__price-meta { color: var(--c-text-subtle); font-size: var(--fs-sm); margin-bottom: var(--s-6); }
.plan__features {
  list-style: none; padding: 0; margin: 0 0 var(--s-6);
  display: grid; gap: var(--s-3);
}
.plan__features li {
  display: flex; gap: var(--s-2); align-items: flex-start;
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
}
.plan__features li::before {
  content: "";
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 3px;
  background-color: var(--c-success);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") no-repeat center / contain;
}
.plan__features li.is-excluded { color: var(--c-muted); text-decoration: line-through; }
.plan__features li.is-excluded::before {
  background-color: var(--c-muted);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M19 13H5v-2h14v2z'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M19 13H5v-2h14v2z'/></svg>") no-repeat center / contain;
}
.plan__footer { margin-top: auto; }
.plan__contract { font-size: var(--fs-xs); color: var(--c-text-subtle); margin-top: var(--s-3); text-align: center; }

/* =====================  TESTIMONIAL  ===================== */
.testimonial {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  position: relative;
}
.testimonial__quote::before {
  content: "\201C";
  font-size: 64px;
  line-height: 1;
  color: var(--c-accent);
  position: absolute;
  top: var(--s-2);
  left: var(--s-4);
  font-family: Georgia, serif;
  opacity: 0.3;
}
.testimonial__body {
  position: relative; z-index: 1;
  color: var(--c-text-body);
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--s-4);
}
.testimonial__author {
  display: flex; gap: var(--s-3); align-items: center;
  padding-top: var(--s-4);
  border-top: 1px solid var(--c-border);
}
.testimonial__avatar {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-brand-soft);
  color: var(--c-brand);
  border-radius: var(--r-full);
  font-weight: var(--fw-bold);
}
.testimonial__name { font-weight: var(--fw-semibold); color: var(--c-text-strong); font-size: var(--fs-sm); }
.testimonial__meta { color: var(--c-text-subtle); font-size: var(--fs-xs); }

/* =====================  FORM  ===================== */
.form {
  display: grid;
  gap: var(--s-5);
}
.field {
  display: grid;
  gap: var(--s-2);
}
.field__label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--c-text-strong);
  display: flex;
  align-items: center;
  gap: var(--s-2);
}
.field__required { color: var(--c-accent); }
.field__hint { color: var(--c-text-subtle); font-size: var(--fs-xs); }
.field__error {
  color: var(--c-danger);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  display: none;
}
.field.is-invalid .field__error { display: block; }
.field.is-invalid .input,
.field.is-invalid .select,
.field.is-invalid .textarea {
  border-color: var(--c-danger);
  background: var(--c-danger-soft);
}

.input, .select, .textarea {
  width: 100%;
  padding: var(--s-3) var(--s-4);
  font-family: var(--ff-sans);
  font-size: var(--fs-base);
  color: var(--c-text);
  background: var(--c-white);
  border: 1px solid var(--c-border-strong);
  border-radius: var(--r-md);
  transition: border-color var(--motion-fast), box-shadow var(--motion-fast);
}
.input:hover, .select:hover, .textarea:hover { border-color: var(--c-muted); }
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--c-accent);
  box-shadow: var(--shadow-focus);
}
.textarea { resize: vertical; min-height: 120px; line-height: var(--lh-relaxed); }
.select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='%234D463C'><path d='M7 10l5 5 5-5z'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

.checkbox-group {
  display: grid;
  gap: var(--s-2);
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}
.checkbox {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-2) var(--s-3);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  background: var(--c-white);
  font-size: var(--fs-sm);
  cursor: pointer;
  transition: border-color var(--motion-fast), background var(--motion-fast);
}
.checkbox:hover { border-color: var(--c-brand); background: var(--c-brand-tint); }
.checkbox input { accent-color: var(--c-accent); width: 16px; height: 16px; }
.checkbox input:checked + span { color: var(--c-brand); font-weight: var(--fw-semibold); }

.form__success {
  display: none;
  padding: var(--s-5);
  background: var(--c-success-soft);
  color: var(--c-success);
  border-radius: var(--r-md);
  font-weight: var(--fw-semibold);
}
.form.is-submitted .form__success { display: block; }

/* =====================  FAQ ACCORDION  ===================== */
.faq-list {
  display: grid;
  gap: var(--s-3);
}
.faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--motion-fast), box-shadow var(--motion-fast);
}
.faq-item:hover { border-color: var(--c-border-strong); }
.faq-item[open] { border-color: var(--c-brand); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--s-5) var(--s-6);
  font-weight: var(--fw-semibold);
  color: var(--c-text-strong);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  font-size: var(--fs-base);
  line-height: var(--lh-snug);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-full);
  background: var(--c-brand-soft);
  color: var(--c-brand);
  transition: transform var(--motion-base), background var(--motion-base);
}
.faq-item[open] .faq-item__icon { transform: rotate(45deg); background: var(--c-accent); color: var(--c-white); }
.faq-item__body {
  padding: 0 var(--s-6) var(--s-6);
  color: var(--c-text-body);
  line-height: var(--lh-relaxed);
  font-size: var(--fs-sm);
}

.faq-search {
  margin-bottom: var(--s-6);
  position: relative;
}
.faq-search input {
  width: 100%;
  padding: var(--s-3) var(--s-4) var(--s-3) 44px;
  font-size: var(--fs-base);
  border: 1px solid var(--c-border-strong);
  border-radius: var(--r-md);
  background: var(--c-white) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='%236F665A'><path d='M15.5 14h-.8l-.3-.3a6.5 6.5 0 1 0-.7.7l.3.3v.8l5 5 1.5-1.5-5-5zm-6 0a4.5 4.5 0 1 1 0-9 4.5 4.5 0 0 1 0 9z'/></svg>") no-repeat 14px center;
}
.faq-search input:focus { outline: none; border-color: var(--c-accent); box-shadow: var(--shadow-focus); }

.faq-category {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--c-text-subtle);
  margin: var(--s-8) 0 var(--s-3);
  padding-top: var(--s-4);
  border-top: 1px solid var(--c-border);
}
.faq-category:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }

/* =====================  CHAT BUBBLE  ===================== */
/* Used on home + how-it-works for Telegram-style preview */
.chat {
  display: grid; gap: var(--s-3);
  background: var(--c-brand-tint);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
}
.chat__bubble {
  background: var(--c-white);
  padding: var(--s-3) var(--s-4);
  border-radius: var(--r-md);
  max-width: 90%;
  box-shadow: var(--shadow-xs);
}
.chat__bubble--user {
  background: var(--c-brand);
  color: var(--c-white);
  align-self: flex-end;
  margin-left: auto;
}
.chat__bubble--ai {
  background: var(--c-white);
  border-left: 3px solid var(--c-accent);
}
.chat__who {
  display: block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--c-text-subtle);
  margin-bottom: var(--s-1);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}
.chat__bubble--user .chat__who { color: rgba(255,255,255,0.7); }
.chat__time {
  font-size: 10px;
  color: var(--c-text-subtle);
  margin-left: var(--s-2);
  text-transform: none;
  letter-spacing: 0;
  font-weight: var(--fw-regular);
}
.chat__bubble--user .chat__time { color: rgba(255,255,255,0.6); }
.chat__bubble code, .chat__bubble pre {
  font-family: var(--ff-mono);
  font-size: var(--fs-xs);
  background: var(--c-surface-alt);
  padding: 2px 6px;
  border-radius: var(--r-sm);
}
.chat__bubble--user code { background: rgba(255,255,255,0.15); color: var(--c-white); }
.chat__divider {
  height: 1px;
  background: var(--c-border);
  margin: var(--s-2) 0;
}

/* =====================  STEPS / TIMELINE  ===================== */
.steps {
  display: grid;
  gap: var(--s-6);
  counter-reset: step;
}
@media (min-width: 768px) {
  .steps--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .steps--4 { grid-template-columns: repeat(4, 1fr); }
}
.step {
  position: relative;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  counter-increment: step;
  transition: border-color var(--motion-fast), transform var(--motion-base);
}
.step:hover { border-color: var(--c-accent); transform: translateY(-2px); }
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--c-brand);
  color: var(--c-white);
  border-radius: var(--r-full);
  font-weight: var(--fw-bold);
  margin-bottom: var(--s-4);
}
.step__title { font-size: var(--fs-lg); margin: 0 0 var(--s-2); }
.step__body  { font-size: var(--fs-sm); color: var(--c-text-body); line-height: var(--lh-relaxed); }

/* =====================  STATS / KPI  ===================== */
.kpi-grid {
  display: grid;
  gap: var(--s-6);
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.kpi {
  text-align: center;
  padding: var(--s-4);
}
.kpi__num {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-extrabold);
  color: var(--c-accent);
  letter-spacing: var(--tracking-tight);
  line-height: 1;
}
.kpi__label {
  font-size: var(--fs-sm);
  color: var(--c-text-subtle);
  margin-top: var(--s-2);
}

/* =====================  CALLOUT  ===================== */
.callout {
  display: flex;
  gap: var(--s-4);
  padding: var(--s-5);
  background: var(--c-brand-tint);
  border-left: 4px solid var(--c-brand);
  border-radius: var(--r-md);
  color: var(--c-text-body);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
}
.callout--accent { background: var(--c-accent-soft); border-color: var(--c-accent); }
.callout--warn { background: var(--c-warn-soft); border-color: var(--c-warn); }
.callout--success { background: var(--c-success-soft); border-color: var(--c-success); }

/* =====================  FOOTER  ===================== */
.site-footer {
  background: var(--c-brand);
  color: rgba(255,255,255,0.78);
  padding-block: var(--s-16) var(--s-8);
  margin-top: var(--s-24);
}
.footer-grid {
  display: grid;
  gap: var(--s-8);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}
.footer__brand { color: var(--c-white); font-weight: var(--fw-extrabold); font-size: var(--fs-lg); display: inline-flex; align-items: center; gap: var(--s-2); }
.footer__about { font-size: var(--fs-sm); line-height: var(--lh-relaxed); max-width: 320px; margin-top: var(--s-3); }
.footer__heading {
  color: var(--c-white);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  margin-bottom: var(--s-3);
}
.footer__nav { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s-2); font-size: var(--fs-sm); }
.footer__nav a { color: rgba(255,255,255,0.78); transition: color var(--motion-fast); }
.footer__nav a:hover { color: var(--c-accent); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: var(--s-6);
  margin-top: var(--s-12);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.55);
}
.footer__legal { display: inline-flex; gap: var(--s-4); flex-wrap: wrap; }
.footer__legal a { color: rgba(255,255,255,0.55); }
.footer__legal a:hover { color: var(--c-accent); }

/* =====================  HERO  ===================== */
.hero {
  position: relative;
  padding-block: var(--s-16) var(--s-20);
  overflow: hidden;
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-brand-tint) 100%);
}
@media (min-width: 768px) {
  .hero { padding-block: var(--s-24); }
}
.hero__grid {
  display: grid;
  gap: var(--s-12);
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; gap: var(--s-16); }
}
.hero__eyebrow { margin-bottom: var(--s-5); }
.hero__title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: var(--fw-extrabold);
  line-height: 1.08;
  letter-spacing: var(--tracking-tight);
  color: var(--c-text-strong);
  margin: 0 0 var(--s-5);
}
.hero__title em {
  font-style: normal;
  color: var(--c-accent);
  background: linear-gradient(180deg, transparent 70%, rgba(230,122,60,0.18) 70%, rgba(230,122,60,0.18) 92%, transparent 92%);
}
.hero__sub {
  font-size: var(--fs-md);
  color: var(--c-text-body);
  line-height: var(--lh-relaxed);
  max-width: 540px;
  margin-bottom: var(--s-8);
}
.hero__ctas { display: flex; gap: var(--s-3); flex-wrap: wrap; align-items: center; margin-bottom: var(--s-8); }
.hero__trust {
  display: flex; gap: var(--s-5); flex-wrap: wrap;
  font-size: var(--fs-xs);
  color: var(--c-text-subtle);
}
.hero__trust span { display: inline-flex; align-items: center; gap: var(--s-1); }

.hero__visual {
  position: relative;
}

/* Background decoration */
.hero::before, .hero::after {
  content: ""; position: absolute; pointer-events: none; z-index: 0;
}
.hero::before {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(230,122,60,0.10), transparent 70%);
  top: -160px; right: -120px;
  border-radius: 50%;
}
.hero::after {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(27,58,82,0.08), transparent 70%);
  bottom: -80px; left: -80px;
  border-radius: 50%;
}
.hero > .container { position: relative; z-index: 1; }

/* =====================  COMPARE TABLE  ===================== */
.compare {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--c-surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-size: var(--fs-sm);
}
.compare th, .compare td {
  padding: var(--s-3) var(--s-4);
  text-align: left;
  border-bottom: 1px solid var(--c-border);
  vertical-align: top;
}
.compare th {
  background: var(--c-surface-alt);
  font-weight: var(--fw-semibold);
  color: var(--c-text-strong);
}
.compare thead th { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: var(--tracking-wider); color: var(--c-text-subtle); }
.compare tr:last-child td { border-bottom: 0; }
.compare td.cell-check  { color: var(--c-success); font-weight: var(--fw-bold); text-align: center; }
.compare td.cell-x      { color: var(--c-muted); text-align: center; }
.compare td.cell-strong { font-weight: var(--fw-semibold); color: var(--c-text-strong); font-size: var(--fs-base); }
.compare-wrap { overflow-x: auto; }

/* =====================  LIST WITH MARKERS  ===================== */
.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--s-3);
}
.bullet-list li {
  position: relative;
  padding-left: var(--s-6);
  color: var(--c-text-body);
  line-height: var(--lh-relaxed);
}
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 8px; height: 8px;
  background: var(--c-accent);
  border-radius: var(--r-full);
}
