:root {
  --rk-bg-base: #0a0a10;
  --rk-bg-mid: #0e0e1a;
  --rk-surface: #14141f;
  --rk-surface-2: #1a1a28;
  --rk-border: #2a2a40;
  --rk-border-light: #3a3a55;
  --rk-text-main: #f0f0f5;
  --rk-text-muted: #9494a8;
  --rk-text-dark: #666677;
  --rk-accent: #8b5cf6;
  --rk-accent-hover: #a78bfa;
  --rk-accent-dim: rgba(139, 92, 246, 0.15);
  --rk-accent-dim2: rgba(139, 92, 246, 0.08);
  --rk-green: #22c55e;
  --rk-green-dim: rgba(34, 197, 94, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--rk-bg-base);
  color: var(--rk-text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--rk-accent);
  text-decoration: none;
}

a:hover {
  color: var(--rk-accent-hover);
}

/* ── Layout ── */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 40px 0;
}

/* ── Nav ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 16, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rk-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--rk-text-main);
}

.nav-logo-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.9rem;
  color: var(--rk-text-muted);
}

.nav-links a:not(.btn) {
  color: var(--rk-text-muted);
}

.nav-links a:not(.btn):hover {
  color: var(--rk-text-main);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--rk-border);
  border-radius: 8px;
  padding: 8px 9px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--rk-text-main);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.15s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-menu {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.15s ease;
  border: none;
}

.btn-primary {
  background: var(--rk-accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--rk-accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--rk-accent);
  border: 1px solid var(--rk-accent);
}

.btn-outline:hover {
  background: var(--rk-accent-dim);
  color: var(--rk-accent-hover);
}

/* ── Hero ── */
.hero {
  padding: 40px 0 40px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: var(--rk-accent-dim2);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--rk-accent-hover);
  font-weight: 500;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero h1 span {
  background: linear-gradient(135deg, #a78bfa, #8b5cf6, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--rk-text-muted);
  max-width: 540px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.hero-ctas .btn {
  padding: 13px 26px;
  font-size: 1rem;
}

.hero-trial-note {
  font-size: 0.8rem;
  color: var(--rk-text-dark);
}

/* ── Screenshot placeholder ── */
.screenshot-placeholder {
  background: var(--rk-surface);
  border: 2px dashed var(--rk-border);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--rk-text-dark);
  font-size: 0.85rem;
  text-align: center;
  padding: 24px;
}

.screenshot-placeholder .placeholder-icon {
  font-size: 2rem;
  opacity: 0.4;
}

.screenshot-placeholder .placeholder-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--rk-text-muted);
}

.screenshot-placeholder .placeholder-desc {
  max-width: 420px;
  line-height: 1.5;
}

.hero-screenshot {
  margin-top: 40px;
}

.hero-screenshot .screenshot-placeholder {
  height: 420px;
}

/* ── Social proof bar ── */
.proof-bar {
  border-top: 1px solid var(--rk-border);
  border-bottom: 1px solid var(--rk-border);
  background: var(--rk-surface);
  padding: 20px 0;
}

.proof-bar-inner {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  gap: 12px 48px;
  align-items: center;
  font-size: 0.9rem;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--rk-text-muted);
}

.proof-item strong {
  color: var(--rk-text-main);
}

/* ── How it works ── */
.how-section {
  background: var(--rk-bg-mid);
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rk-accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.section-sub {
  color: var(--rk-text-muted);
  max-width: 680px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}

.step {
  background: var(--rk-surface);
  border: 1px solid var(--rk-border);
  border-radius: 12px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  margin-top: 12px;
}

.step-number {
  position: absolute;
  top: -16px;
  left: 20px;
  width: 32px;
  height: 32px;
  background: var(--rk-surface);
  border: 1px solid var(--rk-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--rk-accent);
}

.step h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.step p {
  font-size: 0.85rem;
  color: var(--rk-text-muted);
  line-height: 1.6;
}

/* Two-col layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split.reverse {
  direction: rtl;
}

.split.reverse > * {
  direction: ltr;
}

@media (max-width: 680px) {
  .split,
  .split.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

.inline-screenshot .screenshot-placeholder {
  height: 320px;
}

.screenshot-img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--rk-border);
  display: block;
}

/* ── Overlay badge demo ── */
.badge-demo {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 56px;
}

.badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--rk-surface);
  border: 1px solid var(--rk-border);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.85rem;
}

.badge-chip .flag {
  font-size: 1.1rem;
}

/* ── Features ── */
.features-section {
  background: var(--rk-bg-base);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: var(--rk-surface);
  border: 1px solid var(--rk-border);
  border-radius: 12px;
  padding: 24px;
}

.feature-card.pro-card {
  border-color: rgba(139, 92, 246, 0.4);
  background: linear-gradient(135deg, var(--rk-surface), rgba(139, 92, 246, 0.05));
}

.feature-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.feature-icon {
  font-size: 1.3rem;
  display: inline-flex;
  width: 28px;
  justify-content: center;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
}

.feature-tier {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  line-height: 1;
}

.tier-free {
  background: var(--rk-green-dim);
  color: var(--rk-green);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.tier-pro {
  background: var(--rk-accent-dim);
  color: var(--rk-accent-hover);
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--rk-text-muted);
  line-height: 1.5;
}

.feature-list li::before {
  content: '✓';
  color: var(--rk-green);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}

.feature-list.pro-list li::before {
  color: var(--rk-accent);
}

/* ── Filter screenshot section ── */
.filters-section {
  background: var(--rk-bg-mid);
}

/* ── Pricing ── */
.pricing-section {
  background: var(--rk-bg-base);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

@media (max-width: 700px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  background: var(--rk-surface);
  border: 1px solid var(--rk-border);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--rk-accent);
  background: linear-gradient(160deg, var(--rk-surface-2), var(--rk-surface));
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rk-accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rk-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.pricing-price {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-price sup {
  font-size: 1.1rem;
  font-weight: 600;
  vertical-align: super;
  margin-right: 2px;
}

.pricing-period {
  font-size: 0.82rem;
  color: var(--rk-text-muted);
  margin-bottom: 6px;
}

.pricing-savings {
  font-size: 0.8rem;
  color: var(--rk-green);
  font-weight: 500;
  margin-bottom: 24px;
  min-height: 20px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.87rem;
  color: var(--rk-text-muted);
  line-height: 1.5;
}

.pricing-features li::before {
  content: '✓';
  color: var(--rk-accent);
  font-weight: 600;
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
  padding: 12px;
  margin-top: auto;
}

.trial-note {
  text-align: center;
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--rk-text-muted);
}

.trial-note strong {
  color: var(--rk-text-main);
}

/* ── Testimonials placeholder ── */
.social-section {
  background: var(--rk-bg-mid);
}

.testimonials-placeholder {
  background: var(--rk-surface);
  border: 2px dashed var(--rk-border);
  border-radius: 14px;
  padding: 40px 24px;
  text-align: center;
  color: var(--rk-text-dark);
}

.testimonials-placeholder .placeholder-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--rk-text-muted);
  margin-bottom: 8px;
}

/* ── FAQ ── */
.faq-section {
  background: var(--rk-bg-base);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--rk-border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--rk-border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  width: 100%;
  background: var(--rk-surface);
  border: none;
  padding: 24px 28px;
  text-align: left;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--rk-text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-q:hover {
  background: var(--rk-surface-2);
}

.faq-q .chevron {
  font-size: 0.7rem;
  color: var(--rk-text-muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.open .chevron {
  transform: rotate(180deg);
}

.faq-a {
  display: none;
  padding: 16px 28px 24px;
  font-size: 0.9rem;
  color: var(--rk-text-muted);
  background: var(--rk-surface);
  line-height: 1.7;
}

.faq-item.open .faq-a {
  display: block;
}

/* ── CTA banner ── */
.cta-section {
  background: var(--rk-bg-mid);
}

.cta-box {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(139, 92, 246, 0.04));
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  padding: 56px 40px;
  text-align: center;
}

.cta-box h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 14px;
}

.cta-box p {
  color: var(--rk-text-muted);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.cta-box .btn {
  padding: 14px 32px;
  font-size: 1rem;
}

/* ── Footer ── */
footer {
  background: var(--rk-surface);
  border-top: 1px solid var(--rk-border);
  padding: 60px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-weight: 700;
  font-size: 1rem;
  color: var(--rk-text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.875rem;
  color: var(--rk-text-muted);
}

.footer-links a {
  color: var(--rk-text-muted);
}

.footer-links a:hover {
  color: var(--rk-text-main);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--rk-text-dark);
  width: 100%;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--rk-border);
  margin-top: 20px;
}

/* ── Article / content pages ── */
.article {
  padding: 40px 0 24px;
}

.article h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  text-align: center;
}

.article h1 span {
  background: linear-gradient(135deg, #a78bfa, #8b5cf6, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.article-lead {
  font-size: 1.1rem;
  color: var(--rk-text-muted);
  max-width: 640px;
  margin: 0 auto 28px;
  line-height: 1.7;
  text-align: center;
}

.article-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.article-ctas .btn {
  padding: 13px 26px;
  font-size: 1rem;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 16px 0 8px;
  color: var(--rk-text-main);
}

.article-body h2 {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 36px 0 12px;
}

.article-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 24px 0 8px;
}

.article-body p {
  color: var(--rk-text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
  font-size: 1rem;
}

.article-body ul {
  list-style: none;
  padding: 0 0 0 26px;
  margin: 12px 0 18px;
}

.article-body ul li {
  position: relative;
  font-size: 0.96rem;
  color: var(--rk-text-muted);
  line-height: 1.65;
  margin-bottom: 8px;
}

.article-body ul li::before {
  content: '✓';
  color: var(--rk-accent);
  font-weight: 700;
  position: absolute;
  left: -22px;
  top: 0;
}

.article-body strong {
  color: var(--rk-text-main);
  font-weight: 600;
}

.article-body .callout {
  background: var(--rk-surface);
  border: 1px solid var(--rk-border);
  border-left: 3px solid var(--rk-accent);
  border-radius: 10px;
  padding: 18px 22px;
  margin: 22px 0;
  font-size: 0.95rem;
  color: var(--rk-text-muted);
  line-height: 1.7;
}

.article-body .callout strong {
  color: var(--rk-text-main);
}

/* Comparison table */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 24px 0 12px;
  background: var(--rk-surface);
  border: 1px solid var(--rk-border);
  border-radius: 12px;
  overflow: hidden;
  font-size: 0.92rem;
}

.compare-table th,
.compare-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--rk-border);
}

.compare-table thead th {
  background: var(--rk-surface-2);
  color: var(--rk-text-main);
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table td {
  color: var(--rk-text-muted);
}

.compare-table td.feat {
  color: var(--rk-text-main);
  font-weight: 500;
}

.compare-table .yes {
  color: var(--rk-green);
  font-weight: 600;
}

.compare-table .no {
  color: #ef4444;
  font-weight: 600;
}

@media (max-width: 600px) {
  .compare-table {
    font-size: 0.85rem;
  }
  .compare-table th,
  .compare-table td {
    padding: 10px 10px;
  }
}

/* Related links block */
.related-links {
  background: var(--rk-bg-mid);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.related-card {
  background: var(--rk-surface);
  border: 1px solid var(--rk-border);
  border-radius: 12px;
  padding: 20px;
  display: block;
  color: var(--rk-text-main);
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.related-card:hover {
  border-color: var(--rk-accent);
  color: var(--rk-text-main);
  transform: translateY(-2px);
}

.related-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.related-card p {
  font-size: 0.88rem;
  color: var(--rk-text-muted);
  line-height: 1.55;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  section { padding: 32px 0; }

  .nav-inner { height: 56px; gap: 10px; }
  .nav-logo { font-size: 1rem; }
  .nav-logo-icon { width: 24px; height: 24px; }
  .nav-links { gap: 8px; margin-left: auto; }
  .nav-links a:not(.btn) { display: none; }
  .nav-links .btn { padding: 8px 14px !important; font-size: 0.82rem; }
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    display: flex;
    flex-direction: column;
    background: rgba(10, 10, 16, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--rk-border);
    padding: 8px 16px 12px;
  }
  .nav-menu[hidden] { display: none; }
  .nav-menu a {
    color: var(--rk-text-muted);
    padding: 12px 4px;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--rk-border);
  }
  .nav-menu a:last-child { border-bottom: none; }
  .nav-menu a:hover { color: var(--rk-text-main); }

  .hero { padding: 24px 0 32px; }
  .hero-subtitle { font-size: 1rem; margin-bottom: 22px; }
  .hero-screenshot { margin-top: 24px; }
  .hero-ctas .btn { padding: 12px 22px; font-size: 0.95rem; }

  .proof-bar { padding: 16px 0; }
  .proof-bar-inner { grid-template-columns: 1fr; gap: 10px; font-size: 0.85rem; }

  .steps { gap: 20px; margin-bottom: 36px; }
  .step { padding: 24px 20px 20px; }

  .feature-card { padding: 20px; }

  .pricing-grid { margin-top: 32px; gap: 16px; }
  .pricing-card { padding: 24px 20px; }
  .lifetime-row {
    flex-direction: column;
    align-items: flex-start !important;
    padding: 18px 20px !important;
  }
  .lifetime-row .btn {
    margin-left: 0 !important;
    width: 100%;
    justify-content: center;
  }

  .faq-q { padding: 18px 18px; font-size: 0.92rem; }
  .faq-a { padding: 14px 18px 20px; }

  .cta-box { padding: 36px 20px; border-radius: 16px; }
  .cta-box p { font-size: 0.95rem; margin-bottom: 24px; }

  footer { padding: 36px 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-links { gap: 12px 18px; font-size: 0.85rem; }

  .article { padding: 24px 0 16px; }
  .article-lead { font-size: 1rem; }
  .article-body h2 { font-size: 1.25rem; margin-top: 28px; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 2rem; }
  .nav-links .btn { padding: 7px 12px !important; font-size: 0.78rem; }
  .pricing-price { font-size: 2rem; }
}
