/* ===========================
   CinqEtoiles — Design System
   =========================== */

:root {
  --c-bg: #0b1220;
  --c-bg-2: #0f172a;
  --c-surface: #ffffff;
  --c-surface-alt: #f7f9fc;
  --c-border: #e5e9f0;
  --c-text: #0f172a;
  --c-text-muted: #475569;
  --c-text-light: #64748b;
  --c-primary: #4f46e5;
  --c-primary-dark: #4338ca;
  --c-primary-light: #eef2ff;
  --c-accent: #f59e0b;
  --c-accent-dark: #d97706;
  --c-warning: #f59e0b;
  --c-danger: #ef4444;
  --c-star: #fbbf24;

  --shadow-sm: 0 1px 2px rgba(15,23,42,.06);
  --shadow: 0 4px 12px rgba(15,23,42,.08);
  --shadow-lg: 0 16px 40px rgba(15,23,42,.12);
  --shadow-xl: 0 24px 60px rgba(15,23,42,.16);

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  --container: 1180px;
  --header-h: 72px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--c-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--c-text);
}

h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: .5rem; }
h3 { font-size: 1.35rem; margin-bottom: .5rem; }
h4 { font-size: 1.1rem; margin-bottom: .25rem; }

p { color: var(--c-text-muted); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  transition: all .18s ease;
  text-decoration: none;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, #4f46e5 0%, #3730a3 100%);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.22),
    inset 0 -1px 0 rgba(0,0,0,.10),
    0 1px 2px rgba(15,23,42,.10),
    0 8px 22px -6px rgba(79,70,229,.55);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 50%);
  pointer-events: none;
  border-radius: inherit;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #6366f1 0%, #1e5fff 100%);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.28),
    inset 0 -1px 0 rgba(0,0,0,.10),
    0 2px 4px rgba(15,23,42,.12),
    0 14px 32px -6px rgba(79,70,229,.65);
}
.btn-primary:active { transform: translateY(0); box-shadow: 0 4px 10px -2px rgba(79,70,229,.45); }
.btn-accent {
  background: var(--c-accent);
  color: #fff;
  box-shadow: 0 6px 18px rgba(245,158,11,.32);
}
.btn-accent:hover { background: var(--c-accent-dark); }
.btn-outline {
  background: #fff;
  color: var(--c-text);
  border-color: var(--c-border);
}
.btn-outline:hover { border-color: var(--c-primary); color: var(--c-primary); }
.btn-ghost { background: transparent; color: var(--c-text); }
.btn-ghost:hover { background: var(--c-surface-alt); }
.btn-lg { padding: 17px 32px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--c-border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--c-text);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-logo:hover { text-decoration: none; }
.nav-logo-mark {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--c-primary), #7c83ff);
  border-radius: 9px;
  color: #fff;
  font-weight: 800;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  color: var(--c-text);
  font-weight: 500;
  font-size: .95rem;
  border-radius: 8px;
  transition: background .15s;
}
.nav-links a:hover { background: var(--c-surface-alt); text-decoration: none; }
.nav-cta { margin-left: 12px; }
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 8px;
  align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--c-text);
  position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 22px; height: 2px; background: var(--c-text);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

/* ===== Sections ===== */
section { padding: 84px 0; }
.section-sm { padding: 56px 0; }
.bg-alt { background: var(--c-surface-alt); }
.bg-dark {
  background: radial-gradient(ellipse at top, #1e1b4b 0%, var(--c-bg) 60%);
  color: #e2e8f0;
}
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: #fff; }
.bg-dark p { color: #cbd5e1; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .eyebrow {
  display: inline-block;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-primary);
  background: var(--c-primary-light);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-head p { font-size: 1.1rem; margin-top: 12px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 90px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(79,70,229,.10), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(245,158,11,.08), transparent 60%),
    #fbfcff;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--c-primary);
  background: #fff;
  border: 1px solid var(--c-border);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.hero-eyebrow .dot { width: 8px; height: 8px; background: var(--c-accent); border-radius: 50%; }
.hero h1 { margin-bottom: 22px; }
.hero h1 .accent { color: var(--c-primary); }
.hero-sub {
  font-size: 1.2rem;
  color: var(--c-text-muted);
  margin-bottom: 32px;
  max-width: 560px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: .92rem;
  color: var(--c-text-light);
}
.hero-trust-stars { color: var(--c-star); letter-spacing: 1px; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 24px;
  border: 1px solid var(--c-border);
}
.hero-card-header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px; border-bottom: 1px solid var(--c-border); margin-bottom: 14px;
}
.hero-card-title { font-weight: 700; font-size: .98rem; }
.hero-card-badge {
  font-size: .72rem; font-weight: 700; color: var(--c-accent-dark);
  background: rgba(245,158,11,.12); padding: 4px 10px; border-radius: 999px;
}
.review-row {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid #f1f5f9;
}
.review-row:last-child { border-bottom: none; }
.avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, #c7d2fe, #a5b4fc);
  display: grid; place-items: center; color: #fff; font-weight: 700; font-size: .9rem;
  flex-shrink: 0;
}
.avatar.green { background: linear-gradient(135deg, #6ee7b7, #34d399); }
.avatar.orange { background: linear-gradient(135deg, #fdba74, #fb923c); }
.review-body { flex: 1; min-width: 0; }
.review-name { font-weight: 600; font-size: .9rem; color: var(--c-text); }
.review-stars { color: var(--c-star); font-size: .85rem; letter-spacing: 1px; }
.review-text { font-size: .85rem; color: var(--c-text-muted); margin-top: 2px; line-height: 1.45; }

.hero-floating {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .88rem;
  font-weight: 600;
}
.hero-floating-1 { top: -18px; left: -28px; }
.hero-floating-2 { bottom: -16px; right: -18px; }
.hero-floating-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center; flex-shrink: 0;
}
.hero-floating-icon.green { background: rgba(245,158,11,.15); color: var(--c-accent-dark); }
.hero-floating-icon.blue { background: var(--c-primary-light); color: var(--c-primary); }

/* ===== Logos / trust strip ===== */
.trust-strip { padding: 44px 0; border-bottom: 1px solid var(--c-border); }
.trust-strip-label {
  text-align: center;
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-text-light);
  margin-bottom: 22px;
}
.trust-strip-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
  opacity: .7;
}
.trust-pill {
  display: flex; align-items: center; justify-content: center;
  height: 38px; padding: 0 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--c-border);
  font-weight: 700; font-size: .9rem;
  color: var(--c-text-muted);
  letter-spacing: -0.01em;
}

/* ===== How it works ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step-num {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-primary-light);
  color: var(--c-primary);
  font-weight: 800;
  display: grid; place-items: center;
  font-size: 1.1rem;
}
.step-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--c-primary), #7c83ff);
  display: grid; place-items: center;
  margin-bottom: 22px;
  color: #fff;
}
.step h3 { margin-bottom: 10px; }
.step p { font-size: .98rem; }

/* ===== Features grid ===== */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .2s;
}
.feature:hover { border-color: var(--c-primary); box-shadow: var(--shadow); transform: translateY(-3px); }
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--c-primary-light);
  color: var(--c-primary);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.feature h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature p { font-size: .96rem; }

/* ===== Stats band ===== */
.stats-band {
  background: linear-gradient(135deg, var(--c-primary), #4338ca);
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  color: #fff;
  box-shadow: var(--shadow-xl);
}
.stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: .95rem; color: rgba(255,255,255,.85); }

/* ===== Pricing ===== */
.pricing-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1100px;
  margin: 0 auto;
}
.price-card {
  background: #fff;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border-color: var(--c-primary);
  box-shadow: 0 18px 50px rgba(79,70,229,.18);
  transform: translateY(-12px);
}
.price-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--c-primary);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.price-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-text-muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}
.price-amount .num {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--c-text);
  line-height: 1;
}
.price-amount .per {
  font-size: 1rem;
  color: var(--c-text-light);
  font-weight: 500;
}
.price-desc {
  color: var(--c-text-muted);
  font-size: .95rem;
  margin-bottom: 24px;
  min-height: 48px;
}
.price-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: .96rem;
  color: var(--c-text);
  border-bottom: 1px solid #f1f5f9;
}
.price-features li:last-child { border-bottom: none; }
.price-check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: rgba(245,158,11,.15);
  color: var(--c-accent-dark);
  border-radius: 50%;
  display: grid; place-items: center;
  margin-top: 2px;
}
.price-check svg { width: 12px; height: 12px; }
.price-note {
  font-size: .82rem;
  color: var(--c-text-light);
  text-align: center;
  margin-top: 14px;
}

/* ===== FAQ ===== */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .15s;
}
.faq-item.open { border-color: var(--c-primary); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--c-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
}
.faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--c-primary-light);
  color: var(--c-primary);
  display: grid; place-items: center;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1;
  transition: transform .2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  padding: 0 24px;
}
.faq-a-inner { padding: 0 0 22px; color: var(--c-text-muted); font-size: .98rem; line-height: 1.7; }
.faq-item.open .faq-a { max-height: 600px; }

/* ===== Guarantee band ===== */
.guarantee-band {
  padding: 36px 0;
  background: linear-gradient(135deg, #f0fdf6 0%, #ecfdf5 100%);
  border-top: 1px solid #bbf7d0;
  border-bottom: 1px solid #bbf7d0;
}
.guarantee-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}
.guarantee-icon {
  flex-shrink: 0;
  width: 64px; height: 64px;
  font-size: 2rem;
  display: grid; place-items: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(245,158,11,.18);
  border: 1px solid #bbf7d0;
}
.guarantee-title {
  display: block;
  font-size: 1.15rem;
  color: var(--c-accent-dark);
  margin-bottom: 4px;
  font-weight: 700;
}
.guarantee-text {
  margin: 0;
  font-size: .95rem;
  color: var(--c-text);
}
@media (max-width: 700px) {
  .guarantee-inner { flex-direction: column; text-align: center; gap: 16px; }
}

/* ===== Trades grid ===== */
.trades {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.trade-card {
  display: block;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--c-text);
  transition: all .2s;
  position: relative;
}
.trade-card:hover {
  text-decoration: none;
  border-color: var(--c-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.trade-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--c-primary-light);
  color: var(--c-primary);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.trade-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.trade-card p { font-size: .94rem; color: var(--c-text-muted); margin-bottom: 14px; }
.trade-arrow {
  font-weight: 600;
  color: var(--c-primary);
  font-size: .94rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.trade-card:hover .trade-arrow { gap: 8px; }

/* ===== Testimonials ===== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.testimonial-stars { color: var(--c-star); margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { color: var(--c-text); font-size: 1rem; flex: 1; line-height: 1.65; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--c-border);
}
.testimonial-author .name { font-weight: 600; color: var(--c-text); font-size: .95rem; }
.testimonial-author .role { font-size: .85rem; color: var(--c-text-light); }

/* ===== CTA Section ===== */
.cta-band {
  background: linear-gradient(135deg, #1e5fff 0%, #4338ca 100%);
  border-radius: var(--radius-xl);
  padding: 60px 50px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,.1), transparent 70%);
  border-radius: 50%;
}
.cta-band h2 { color: #fff; margin-bottom: 16px; position: relative; }
.cta-band p {
  color: rgba(255,255,255,.92);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto 28px;
  position: relative;
}
.cta-band .btn-accent { position: relative; }
.cta-band .btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.4);
  color: #fff;
}
.cta-band .btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }

/* ===== Compare ===== */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.compare-col {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.compare-col.bad { background: #fff7f7; border-color: #fecaca; }
.compare-col.good { background: #f0fdf6; border-color: #bbf7d0; }
.compare-col h3 { margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.compare-col ul { list-style: none; }
.compare-col li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: .98rem;
  color: var(--c-text);
}
.compare-col .mark { flex-shrink: 0; font-weight: 700; }
.compare-col.bad .mark { color: var(--c-danger); }
.compare-col.good .mark { color: var(--c-accent-dark); }

/* ===== Footer ===== */
.site-footer {
  background: #0b1220;
  color: #cbd5e1;
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid #1e293b;
}
.footer-brand p {
  color: #94a3b8;
  margin-top: 16px;
  max-width: 320px;
  font-size: .94rem;
}
.footer-col h4 {
  color: #fff;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: #94a3b8;
  font-size: .94rem;
  transition: color .15s;
}
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .88rem;
  color: #64748b;
}
.footer-bottom a { color: #94a3b8; }

/* ===== Trade page hero variant ===== */
.trade-hero {
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(79,70,229,.10), transparent 60%),
    #fbfcff;
  padding: 70px 0 80px;
}
.trade-hero h1 { margin-bottom: 18px; }
.trade-hero .crumbs {
  font-size: .9rem;
  color: var(--c-text-light);
  margin-bottom: 18px;
}
.trade-hero .crumbs a { color: var(--c-text-light); }

/* Pain / benefit grid */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pain-card {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
}
.pain-card .pain-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.pain-card.before .pain-icon { background: #fee2e2; color: var(--c-danger); }
.pain-card.after .pain-icon { background: #d1fae5; color: var(--c-accent-dark); }
.pain-card h4 { font-size: 1.05rem; margin-bottom: 6px; }
.pain-card p { font-size: .92rem; }

/* ===== Legal pages ===== */
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 50px 0;
}
.legal h1 { margin-bottom: 8px; }
.legal .updated { color: var(--c-text-light); font-size: .9rem; margin-bottom: 36px; }
.legal h2 { font-size: 1.4rem; margin: 40px 0 12px; }
.legal h3 { font-size: 1.15rem; margin: 24px 0 8px; }
.legal p, .legal li { color: var(--c-text-muted); margin-bottom: 12px; font-size: .98rem; line-height: 1.75; }
.legal ul, .legal ol { padding-left: 24px; margin-bottom: 16px; }
.legal a { color: var(--c-primary); text-decoration: underline; }

/* ===== Utility ===== */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }

/* ===== Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-floating-1 { left: -10px; }
  .hero-floating-2 { right: -8px; }
  .steps, .features, .trades, .testimonials, .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-wrap { grid-template-columns: 1fr; max-width: 460px; }
  .price-card.featured { transform: none; }
  .stats-band { grid-template-columns: repeat(2, 1fr); padding: 40px 28px; }
  .compare { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .trust-strip-row { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

@media (max-width: 700px) {
  section { padding: 60px 0; }
  .hero { padding: 60px 0 70px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid var(--c-border);
    box-shadow: var(--shadow);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; }
  .nav-cta { margin-left: 0; margin-top: 8px; }
  .steps, .features, .trades, .testimonials, .pain-grid {
    grid-template-columns: 1fr;
  }
  .stats-band { grid-template-columns: 1fr 1fr; gap: 22px; padding: 32px 22px; }
  .stat-num { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 44px 24px; }
  .compare-col { padding: 24px; }
  .hero-floating-1, .hero-floating-2 { display: none; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
}
