/* Page-level layout for the website UI kit */
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--fg); }

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

.section {
  padding: var(--section-y-lg) 0;
}
.section.tight { padding: var(--section-y-md) 0; }
.section.soft  { background: var(--bg-soft); }
.section.dark  { background: var(--brand-blue-800); color: var(--fg-invert); }
.section.dark h1, .section.dark h2, .section.dark h3 { color: #fff; }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--brand-blue-600);
}
.eyebrow.gold { color: var(--brand-gold-600); }
.eyebrow.invert { color: var(--brand-gold-300); }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-display);
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out);
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 14px;
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn-cta {
  background: var(--cta);
  color: var(--cta-fg);
  box-shadow: var(--shadow-cta);
}
.btn-cta:hover { background: var(--cta-hover); transform: translateY(-1px); }

.btn-primary { background: var(--brand-blue-500); color: #fff; }
.btn-primary:hover { background: var(--brand-blue-600); }

.btn-secondary {
  background: #fff;
  color: var(--brand-blue-800);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover { border-color: var(--brand-blue-500); color: var(--brand-blue-600); }

.btn-ghost { background: transparent; color: var(--brand-blue-800); }
.btn-ghost:hover { background: var(--brand-blue-50); }

.btn-sm { padding: 10px 16px; font-size: 14px; border-radius: 12px; }
.btn-lg { padding: 18px 28px; font-size: 16px; border-radius: 16px; }

/* ---------- Card ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
}
.card.hover:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* ---------- Chip / pill ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  background: var(--brand-blue-50);
  color: var(--brand-blue-700);
  border: 1px solid transparent;
}
.chip-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.chip-gold  { background: var(--brand-gold-50); color: var(--brand-gold-700); }
.chip-green { background: var(--success-50);   color: var(--success-700); }
.chip-outline { background: #fff; color: var(--fg-muted); border-color: var(--border); }

/* ---------- Input ---------- */
.input {
  height: 48px;
  padding: 0 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg-strong);
  outline: none;
  width: 100%;
  transition: .15s;
}
.input:focus { border-color: var(--brand-blue-500); box-shadow: var(--shadow-ring); }
.input-lg { height: 56px; font-size: 16px; }

.field-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--fg-strong);
  margin-bottom: 6px;
}

textarea.input { height: auto; padding: 12px 14px; resize: vertical; min-height: 100px; }

/* ---------- Nav ---------- */
.nav-wrap {
  position: sticky;
  top: 16px;
  z-index: var(--z-nav);
  padding: 0 24px;
}
.nav {
  max-width: var(--container-xl);
  margin: 0 auto;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
}
.nav-left { display: flex; align-items: center; gap: 32px; }
.nav-logo { height: 36px; display: block; }
.nav-links { display: flex; gap: 26px; }
.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--fg-strong);
  text-decoration: none;
  position: relative;
}
.nav-links a:hover { color: var(--brand-blue-600); }
.nav-actions { display: flex; gap: 10px; align-items: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 80px 0 96px;
  background: var(--bg);
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background-image: url('../../assets/hero-glow.svg');
  background-size: cover;
  background-position: center;
  z-index: 0;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 4.5vw + 0.5rem, 4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--fg-strong);
  margin: 16px 0 18px;
  text-wrap: balance;
}
.hero-title em { font-style: normal; color: var(--brand-blue-500); position: relative; }
.hero-title em::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 6%; height: 30%;
  background: var(--brand-gold-200);
  z-index: -1;
  border-radius: 6px;
}
.hero-lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-600);
  margin: 0 0 28px;
  max-width: 520px;
  text-wrap: pretty;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust { margin-top: 28px; display: flex; gap: 22px; flex-wrap: wrap; align-items: center; color: var(--fg-muted); font-size: 14px; }
.hero-trust strong { color: var(--fg-strong); font-family: var(--font-display); font-weight: 800; }

/* Hero side panel — quote teaser */
.quote-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-2xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.quote-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, rgba(255,189,36,0.4), rgba(42,91,234,0.3));
  z-index: -1;
  filter: blur(20px);
  opacity: 0.6;
}
.quote-card h3 { font-size: 22px; margin: 0 0 4px; }
.quote-card .qsub { color: var(--fg-muted); font-size: 14px; margin: 0 0 18px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }

/* ---------- Trust strip ---------- */
.trust {
  padding: 28px 0 32px;
  background: var(--bg);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.trust .lbl {
  text-align: center;
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.trust-grid { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.trust-grid img { height: 44px; opacity: 0.78; transition: opacity .2s; }
.trust-grid img:hover { opacity: 1; }

/* ---------- Section heading ---------- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head h2 { margin: 14px 0 12px; }
.section-head p { color: var(--ink-600); font-size: 19px; line-height: 1.55; }

/* ---------- Feature grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: .2s var(--ease-out);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card .ic {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--brand-blue-50);
  color: var(--brand-blue-600);
  display: flex; align-items: center; justify-content: center;
}
.feature-card .ic.gold  { background: var(--brand-gold-50);  color: var(--brand-gold-700); }
.feature-card .ic.green { background: var(--success-50); color: var(--success-700); }
.feature-card h3 { font-size: 19px; margin: 0; }
.feature-card p { color: var(--fg-muted); font-size: 15px; line-height: 1.6; margin: 0; }

/* ---------- Services bento ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(160px, auto);
  gap: 16px;
}
.bento-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: .2s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.bento-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.bento-card.span-2 { grid-column: span 2; }
.bento-card.row-2  { grid-row: span 2; }
.bento-card.feature { background: linear-gradient(135deg, var(--brand-blue-800), var(--brand-blue-600)); color: #fff; border: none; }
.bento-card.feature h3 { color: #fff; }
.bento-card.feature p  { color: rgba(255,255,255,0.78); }
.bento-card.gold-feature { background: var(--brand-gold-50); border-color: var(--brand-gold-200); }
.bento-card h3 { font-size: 22px; margin: 0; }
.bento-card p { color: var(--fg-muted); font-size: 14px; margin: 0; line-height: 1.55; }
.bento-card .link {
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  color: var(--brand-blue-600); display: inline-flex; align-items: center; gap: 4px;
}
.bento-card.feature .link { color: var(--brand-gold-300); }
.bento-card .ic-lg { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: var(--brand-blue-50); color: var(--brand-blue-600); }
.bento-card.feature .ic-lg { background: rgba(255,189,36,0.18); color: var(--brand-gold-300); }
.bento-card.gold-feature .ic-lg { background: var(--brand-gold-200); color: var(--brand-gold-700); }

/* ---------- Writer cards ---------- */
.writer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.writer-card {
  background: #fff; border: 1px solid var(--border-soft); border-radius: var(--radius-xl);
  padding: 22px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 12px;
  transition: .2s var(--ease-out);
}
.writer-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.writer-card img.av { width: 64px; height: 64px; border-radius: 50%; }
.writer-card .stats { display: flex; gap: 14px; margin-top: 4px; }
.writer-card .stats b { font-family: var(--font-display); font-weight: 800; color: var(--brand-blue-800); font-size: 15px; display: block; }
.writer-card .stats span { font-size: 11px; color: var(--fg-muted); }

/* ---------- Stats band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: 52px; line-height: 1; letter-spacing: -0.03em; color: #fff; }
.stat-num small { color: var(--brand-gold-300); font-size: 28px; }
.stat-lab { color: rgba(255,255,255,0.75); font-size: 15px; margin-top: 8px; }

/* ---------- Testimonials ---------- */
.tg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tcard { background: #fff; border: 1px solid var(--border-soft); border-radius: var(--radius-xl); padding: 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 14px; }
.tcard .stars { display: flex; gap: 2px; color: var(--brand-gold-400); }
.tcard .q { font-family: var(--font-display); font-weight: 600; font-size: 17px; line-height: 1.5; color: var(--fg-strong); margin: 0; }
.tcard .who { display: flex; align-items: center; gap: 12px; margin-top: 6px; }
.tcard .who img { width: 44px; height: 44px; border-radius: 50%; }
.tcard .who .n { font-family: var(--font-display); font-weight: 800; color: var(--fg-strong); font-size: 14px; }
.tcard .who .r { font-size: 12px; color: var(--fg-muted); }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1000px; margin: 0 auto; }
.price-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: 22px;
  padding: 28px; display: flex; flex-direction: column; gap: 14px; position: relative;
  box-shadow: var(--shadow-sm); transition: .25s var(--ease-out);
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.price-card.feat { border-color: var(--brand-gold-400); box-shadow: 0 18px 48px rgba(255,189,36,0.22); transform: scale(1.02); }
.price-card .pop {
  position: absolute; top: -14px; left: 28px;
  background: var(--brand-gold-400); color: var(--ink-900);
  font-family: var(--font-display); font-weight: 800; font-size: 12px;
  padding: 6px 12px; border-radius: 999px;
}
.price-card .pname { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--fg-strong); }
.price-card .pprice { font-family: var(--font-display); font-weight: 800; font-size: 44px; line-height: 1; color: var(--brand-blue-800); letter-spacing: -0.02em; }
.price-card .pprice small { font-size: 16px; color: var(--fg-muted); font-weight: 600; }
.price-card .pdesc { color: var(--fg-muted); font-size: 14px; margin: -4px 0 4px; }
.price-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.price-card ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--ink-700); }
.price-card ul li svg { flex: none; color: var(--success-500); width: 18px; height: 18px; margin-top: 1px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; background: #fff; border: 1px solid var(--border-soft); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-item { border-bottom: 1px solid var(--border-soft); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%; background: transparent; border: none; cursor: pointer; padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; text-align: left;
}
.faq-q h3 { font-size: 17px; font-weight: 700; color: var(--fg-strong); margin: 0; }
.faq-q .ic { width: 36px; height: 36px; border-radius: 50%; background: var(--brand-blue-50); color: var(--brand-blue-600); display: flex; align-items: center; justify-content: center; transition: .25s; flex: none; }
.faq-item.open .faq-q .ic { background: var(--brand-blue-800); color: var(--brand-gold-300); transform: rotate(45deg); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s var(--ease-out);
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-a-inner { padding: 0 24px 22px; color: var(--ink-600); line-height: 1.65; font-size: 15px; }

/* ---------- Sticky mobile CTA / floating WhatsApp ---------- */
.float-cta {
  position: fixed; right: 24px; bottom: 24px; z-index: var(--z-sticky);
  display: flex; flex-direction: column; gap: 10px; align-items: flex-end;
}
.fab {
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 18px 36px rgba(37,211,102,0.42); cursor: pointer; border: none;
  transition: transform .2s var(--ease-spring);
}
.fab:hover { transform: scale(1.06); }
.float-pill {
  background: var(--brand-blue-800); color: #fff;
  border-radius: 999px; padding: 10px 18px 10px 12px;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg);
}
.float-pill .ic { width: 26px; height: 26px; border-radius: 50%; background: var(--brand-gold-400); color: var(--ink-900); display: flex; align-items: center; justify-content: center; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--brand-blue-800) 0%, var(--brand-blue-600) 100%);
  border-radius: var(--radius-2xl);
  padding: 56px 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: ''; position: absolute; right: -120px; top: -120px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,189,36,0.35), transparent 70%);
  pointer-events: none;
}
.cta-band h2 { color: #fff; font-size: 40px; margin: 0 0 12px; }
.cta-band p { color: rgba(255,255,255,0.85); font-size: 18px; margin: 0; max-width: 520px; }
.cta-band .actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

/* ---------- Footer ---------- */
.footer {
  background: var(--brand-blue-900);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 28px;
}
.footer h4 { font-size: 13px; color: #fff; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin: 0 0 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: rgba(255,255,255,0.75); font-size: 14px; text-decoration: none; }
.footer ul a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer .brand { display: flex; flex-direction: column; gap: 14px; }
.footer .brand p { color: rgba(255,255,255,0.7); font-size: 14px; max-width: 320px; line-height: 1.6; }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,0.55); }
.footer-bottom a { color: rgba(255,255,255,0.7); margin-left: 18px; text-decoration: none; }

/* ---------- Reviews bar (multi-platform) ---------- */
.reviews-bar {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-2xl);
  padding: 20px 28px;
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr 1fr;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow-md);
}
.reviews-bar .lbl {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--fg-strong);
  line-height: 1.3;
}
.reviews-bar .lbl span { color: var(--fg-muted); font-weight: 600; font-size: 13px; display: block; margin-top: 2px; }
.review-tile { display: flex; flex-direction: column; gap: 4px; padding-left: 28px; border-left: 1px solid var(--border-soft); }
.review-tile .src { font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--fg-strong); }
.review-tile .rating { display: flex; align-items: center; gap: 6px; }
.review-tile .num { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--brand-blue-800); letter-spacing: -0.02em; }
.review-tile .stars { color: var(--brand-gold-400); display: flex; gap: 1px; }

/* ---------- How it works (3 steps) ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  position: relative;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--brand-blue-100);
}
.step h3 { font-size: 22px; margin: 0; }
.step p { font-size: 15px; color: var(--ink-600); line-height: 1.6; margin: 0; }
.step-ic {
  position: absolute; top: 28px; right: 28px;
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--brand-gold-50); color: var(--brand-gold-600);
  display: flex; align-items: center; justify-content: center;
}

/* ---------- What's included block ---------- */
.included {
  background: linear-gradient(135deg, var(--brand-blue-50), var(--white));
  border: 1px solid var(--brand-blue-100);
  border-radius: var(--radius-2xl);
  padding: 40px 44px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}
.included h2 { margin: 0 0 8px; }
.included .lead { color: var(--ink-600); margin: 0 0 20px; }
.included-list {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-soft);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.included-row { display: flex; align-items: center; gap: 14px; padding: 8px 0; border-bottom: 1px dashed var(--border-soft); }
.included-row:last-child { border-bottom: none; }
.included-row .ic { width: 28px; height: 28px; border-radius: 50%; background: var(--success-50); color: var(--success-500); display: flex; align-items: center; justify-content: center; flex: none; }
.included-row .name { font-family: var(--font-display); font-weight: 700; color: var(--fg-strong); font-size: 15px; flex: 1; }
.included-row .strike { color: var(--fg-muted); text-decoration: line-through; font-family: var(--font-display); font-weight: 600; font-size: 14px; }
.included-row .free { background: var(--brand-gold-400); color: var(--ink-900); font-family: var(--font-display); font-weight: 800; font-size: 12px; padding: 4px 10px; border-radius: 999px; letter-spacing: 0.04em; }
.included-total { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; padding-top: 14px; border-top: 2px solid var(--brand-blue-100); }
.included-total .lab { font-family: var(--font-display); font-weight: 800; font-size: 14px; color: var(--fg-strong); text-transform: uppercase; letter-spacing: 0.06em; }
.included-total .amt { display: flex; align-items: center; gap: 10px; }
.included-total .strike-big { color: var(--fg-muted); text-decoration: line-through; font-family: var(--font-display); font-weight: 700; font-size: 18px; }
.included-total .free-big { color: var(--brand-blue-800); font-family: var(--font-display); font-weight: 900; font-size: 24px; letter-spacing: -0.02em; }

/* ---------- Tabbed samples ---------- */
.samples { background: #fff; border: 1px solid var(--border-soft); border-radius: var(--radius-2xl); padding: 32px; box-shadow: var(--shadow-sm); }
.tabs { display: flex; gap: 4px; background: var(--ink-50); padding: 4px; border-radius: 14px; margin-bottom: 24px; width: fit-content; }
.tab {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--fg-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 10px;
  transition: .2s;
}
.tab.active { background: #fff; color: var(--brand-blue-800); box-shadow: var(--shadow-sm); }
.samples-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.sample-link {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; border-radius: 12px;
  background: var(--ink-50);
  text-decoration: none;
  color: var(--fg-strong);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  transition: .15s;
}
.sample-link:hover { background: var(--brand-blue-50); color: var(--brand-blue-700); transform: translateY(-1px); }
.sample-link .ic { width: 28px; height: 28px; border-radius: 8px; background: #fff; color: var(--brand-blue-600); display: flex; align-items: center; justify-content: center; flex: none; }

/* ---------- Modal ---------- */
.modal-back { position: fixed; inset: 0; background: rgba(14,21,37,0.55); backdrop-filter: blur(6px); z-index: var(--z-modal); display: flex; align-items: center; justify-content: center; padding: 24px; }
.modal { background: #fff; border-radius: var(--radius-2xl); padding: 32px; max-width: 520px; width: 100%; box-shadow: var(--shadow-xl); position: relative; }
.modal h2 { font-size: 26px; margin: 0 0 6px; }
.modal .sub { color: var(--fg-muted); margin: 0 0 22px; }
.modal-close { position: absolute; top: 18px; right: 18px; background: var(--ink-100); border: none; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--fg-muted); }
.modal-close:hover { background: var(--ink-200); color: var(--fg-strong); }
.success-state { text-align: center; padding: 12px 0; }
.success-state .ic-big { width: 72px; height: 72px; border-radius: 50%; background: var(--success-50); color: var(--success-500); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; }
