/* ============================================
   Bookfor — Design tokens (extraits du projet Framer)
   ============================================ */
:root {
  /* Primitive → Semantic color tokens */
  --color-bg: #F9F8F8;
  --color-bg-alt: #F4F1EE;
  --color-card-beige: #F1EBE5;
  --color-white: #FFFFFF;

  --color-text: #1A1615;
  --color-text-soft: #453F3D;
  --color-text-muted: #757170;
  --color-stroke: #E4E2E2;

  --color-accent-blue: #156CC2;
  --color-accent-blue-tint: #EDEFF0;
  --color-accent-blue-light: #84B9EF;
  --color-accent-green: #0EA158;
  --color-accent-yellow: #CF8D13;
  --color-accent-orange: #C9502E;
  --color-dark: #1A1615;

  /* Type */
  --font-display: "Fredoka", ui-rounded, "SF Pro Rounded", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1072px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

html, body { overflow-x: hidden; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

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

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--color-text);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-blue);
  margin-bottom: 12px;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-header h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
.section-header p { font-size: 18px; color: var(--color-text-muted); line-height: 1.5; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--color-dark); color: #fff; }
.btn-primary:hover { opacity: 0.9; }
.btn-secondary { background: var(--color-white); color: var(--color-text); border: 1px solid var(--color-stroke); }

/* ---------- Nav ---------- */
.nav-wrap {
  position: sticky;
  top: 16px;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 0 16px;
}
.nav {
  width: 100%;
  max-width: var(--container);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-stroke);
  border-radius: 100px;
  padding: 10px 12px 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: max-width 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
.nav--scrolled {
  max-width: 834px;
  padding: 8px 10px 8px 18px;
  box-shadow: 0 12px 32px -12px rgba(26, 22, 21, 0.18);
  background: rgba(255, 255, 255, 0.9);
}
.nav-logo { font-family: var(--font-display); font-weight: 700; font-size: 18px; }
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-soft);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a:hover { color: var(--color-text); }
.nav-links-cta { display: none; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-shrink: 0; }
.nav-burger span { display: block; width: 20px; height: 2px; background: var(--color-text); margin: 4px 0; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  padding: 96px 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #A9CDF0 0%, #C9E0F5 35%, var(--color-bg) 85%);
}
.hero-clouds {
  position: absolute;
  inset: 0;
  background-color: #fff;
  -webkit-mask-image: url('https://framerusercontent.com/images/qazH0744I2w9AnpfmUJIze7g.png');
  mask-image: url('https://framerusercontent.com/images/qazH0744I2w9AnpfmUJIze7g.png');
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
  -webkit-mask-size: 900px auto;
  mask-size: 900px auto;
  -webkit-mask-position: top center;
  mask-position: top center;
  opacity: 0.55;
  animation: cloudDrift 50s linear infinite alternate;
}
@keyframes cloudDrift {
  from { -webkit-mask-position: 0 top; mask-position: 0 top; }
  to { -webkit-mask-position: -450px top; mask-position: -450px top; }
}
.hero-inner, .hero > .container { position: relative; z-index: 1; }
.hero-inner { max-width: 792px; margin: 0 auto; }
.hero h1 {
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero p.lead {
  font-size: 20px;
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.5;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-image {
  max-width: 1072px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-stroke);
  box-shadow: 0 40px 80px -30px rgba(26, 22, 21, 0.25);
  animation: heroImageIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-image img { width: 100%; height: auto; }
@keyframes heroImageIn {
  from { opacity: 0; transform: scale(1.12) translateY(32px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ---------- How it works ---------- */
.how {
  background: var(--color-bg-alt);
  padding: 96px 0;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.how-card {
  background: var(--color-white);
  border: 1px solid var(--color-stroke);
  border-radius: var(--radius-md);
  padding: 32px 28px;
}
.how-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-accent-blue);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  margin-bottom: 20px;
}
.how-card h3 { font-size: 20px; margin-bottom: 10px; }
.how-card p { font-size: 15px; line-height: 1.6; color: var(--color-text-muted); margin: 0; }

/* ---------- Trust ticker ---------- */
.trust {
  padding: 64px 0;
  text-align: center;
}
.trust p { font-size: 16px; color: var(--color-text-muted); margin-bottom: 24px; }
.trust-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.trust-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.trust-track span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-text-soft);
  border: 1px solid var(--color-stroke);
  padding: 8px 20px;
  border-radius: 100px;
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Generic feature section ---------- */
.feature-section { padding: 64px 0; }
.feature-row {
  display: flex;
  align-items: center;
  gap: 64px;
}
.feature-row.reverse { flex-direction: row-reverse; }
.feature-media, .feature-copy { flex: 1; min-width: 0; }
.feature-media img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-stroke);
  width: 100%;
}
.feature-copy .eyebrow { display: block; }
.feature-copy h2 { font-size: clamp(26px, 4vw, 40px); margin-bottom: 16px; }
.feature-copy p { font-size: 17px; line-height: 1.6; color: var(--color-text-muted); margin-bottom: 28px; }
.pill-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
  max-width: 360px;
}
.pill {
  background: var(--color-card-beige);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
}

/* Centered showcase card (used for Personnalisation + Benefits) */
.showcase {
  background: var(--color-card-beige);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}
.showcase h3 { font-size: 24px; margin-bottom: 24px; }
.showcase img { border-radius: 12px; margin: 0 auto 24px; }
.showcase p { font-size: 16px; color: var(--color-text-soft); max-width: 640px; margin: 0 auto; line-height: 1.6; }

/* Mock booking widget (replaces the animated BookingMotion component) */
.mock-widget {
  background: var(--color-white);
  border: 1px solid var(--color-stroke);
  border-radius: 16px;
  padding: 24px;
  max-width: 380px;
  margin: 0 auto 24px;
  text-align: left;
}
.mock-widget .row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.mock-widget .row:last-child { margin-bottom: 0; }
.mock-widget .label { font-size: 13px; color: var(--color-text-muted); }
.mock-widget .value { font-size: 14px; font-weight: 600; }
.mock-widget .slot {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--color-accent-blue-tint); color: var(--color-accent-blue);
  padding: 6px 12px; border-radius: 100px; font-size: 13px; font-weight: 600;
}
.mock-widget .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--color-accent-green); }

/* Multi-location switcher mock (replaces AboutAppCarousel) */
.mock-switcher {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 24px;
}
.mock-switcher .chip {
  padding: 10px 18px; border-radius: 100px; font-size: 14px; font-weight: 600;
  border: 1px solid var(--color-stroke); background: var(--color-white);
}
.mock-switcher .chip.active { background: var(--color-dark); color: #fff; border-color: var(--color-dark); }

/* ---------- Community ---------- */
.community-card {
  background: #1A1615;
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.community-card .tag {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--color-accent-blue-light);
  margin-bottom: 12px;
}
.community-card h3 { color: #fff; font-size: 24px; margin-bottom: 12px; }
.community-card p { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.6; max-width: 560px; margin: 0; }
.community-card .btn { flex-shrink: 0; background: var(--color-accent-green); color: #fff; }

/* ---------- Pricing ---------- */
.pricing { padding: 96px 0; }
.pricing-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}
.toggle-group {
  display: inline-flex;
  background: var(--color-stroke);
  border-radius: 100px;
  padding: 4px;
  gap: 4px;
}
.toggle-group button {
  border: none; background: transparent; cursor: pointer;
  padding: 10px 24px; border-radius: 100px; font-family: var(--font-body);
  font-size: 14px; font-weight: 600; color: var(--color-text-muted);
  display: flex; align-items: center; gap: 8px;
}
.toggle-group button.active { background: #fff; color: var(--color-text); box-shadow: 0 1px 4px rgba(0,0,0,0.12); }
.save-badge {
  background: var(--color-accent-green); color: #fff; font-size: 11px; font-weight: 700;
  padding: 2px 8px; border-radius: 100px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 920px;
  margin: 0 auto 32px;
  align-items: stretch;
}
.price-card {
  background: linear-gradient(160deg, var(--color-accent-blue-light) 0%, var(--color-card-beige) 85%);
  color: var(--color-text);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  flex-direction: column;
}
.price-card .plan-tag { color: var(--color-accent-blue); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-bottom: 16px; }
.price-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.price-amount { font-family: var(--font-display); font-size: 48px; font-weight: 600; }
.price-period { color: var(--color-text-muted); font-size: 16px; }
.price-annual-note { font-size: 14px; color: var(--color-text-muted); min-height: 20px; margin-bottom: 20px; }
.price-features { border-top: 1px solid rgba(26,22,21,0.12); padding-top: 24px; margin-bottom: 32px; margin-top: auto; }
.price-features .feat { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 15px; color: var(--color-text-soft); line-height: 1.5; }
.price-features .feat svg { flex-shrink: 0; margin-top: 2px; }
.price-card .btn-primary { width: 100%; background: var(--color-accent-blue); }
.price-fine { text-align: center; font-size: 13px; color: var(--color-text-muted); opacity: 0.8; margin: 16px 0 0; }

/* Light (pay-as-you-go) card variant */
.price-card--light {
  background: var(--color-white);
  color: var(--color-text);
  border: 1px solid var(--color-stroke);
}
.price-card--light .plan-tag { color: var(--color-accent-blue); }
.price-card--light .price-period,
.price-card--light .payg-sub { color: var(--color-text-muted); }
.price-card--light .price-features { border-top-color: var(--color-stroke); }
.price-card--light .price-features .feat { color: var(--color-text-soft); }
.price-card--light .btn-primary { background: var(--color-dark); }
.price-card--light .price-fine { color: var(--color-text-muted); opacity: 0.7; }
.payg-sub { font-size: 14px; margin: 0 0 20px; }

/* Pay-as-you-go slider */
.payg-slider { margin-bottom: 28px; }
.payg-slider input[type="range"] {
  width: 100%;
  accent-color: var(--color-accent-blue);
  cursor: pointer;
}

/* Duration selector (engagement card) */
.duration-selector {
  display: inline-flex;
  background: rgba(26,22,21,0.08);
  border-radius: 100px;
  padding: 4px;
  gap: 4px;
  margin-bottom: 24px;
}
.duration-selector button {
  border: none; background: transparent; cursor: pointer;
  padding: 8px 18px; border-radius: 100px; font-family: var(--font-body);
  font-size: 13px; font-weight: 600; color: var(--color-text-muted);
  transition: background 0.15s ease, color 0.15s ease;
}
.duration-selector button.active { background: #fff; color: var(--color-text); }

.pricing-custom { max-width: 920px; margin: 0 auto; }
.price-error {
  text-align: center;
  background: var(--color-card-beige);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 640px;
  margin: 0 auto;
  color: var(--color-text);
}
.price-error a { color: var(--color-accent-blue); font-weight: 600; }

@media (max-width: 700px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
}
.reassurance {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 16px 40px; margin-top: 48px;
}
.reassurance .item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--color-text-muted); }

/* ---------- Blog ---------- */
.blog { padding: 96px 0; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.blog-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-stroke);
  background: var(--color-white);
}
.blog-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.blog-card .body { padding: 18px; }
.blog-card .cat { font-size: 12px; font-weight: 700; color: var(--color-accent-blue); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; display: block; }
.blog-card h4 { font-size: 15px; line-height: 1.4; font-weight: 600; }

/* ---------- FAQ ---------- */
.faq { padding: 80px 0; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-stroke); }
.faq-item:first-child { border-top: 1px solid var(--color-stroke); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 0; text-align: left; font-family: var(--font-body);
  font-size: 16px; font-weight: 500; color: var(--color-text);
}
.faq-icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--color-stroke);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 300; transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  color: var(--color-text);
}
.faq-item.open .faq-icon { background: var(--color-accent-blue); border-color: var(--color-accent-blue); color: #fff; transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.25s ease, opacity 0.2s ease;
}
.faq-a p { margin: 0; padding-bottom: 20px; font-size: 15px; line-height: 1.6; color: var(--color-text-muted); }
.faq-item.open .faq-a { max-height: 240px; opacity: 1; }

/* ---------- Footer ---------- */
footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.6);
  padding: 56px 0 32px;
  margin-top: 40px;
}
.footer-top {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px;
  padding-bottom: 32px; margin-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: #fff; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; font-size: 14px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 13px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 68px;
    left: 16px;
    right: 16px;
    background: #fff;
    border: 1px solid var(--color-stroke);
    border-radius: 16px;
    padding: 8px;
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { display: block; padding: 12px; border-radius: 10px; }
  .nav-links li a:hover { background: var(--color-bg-alt); }
  .nav-links-cta { display: block; margin-top: 4px; }
  .nav-links-cta .btn { display: flex; width: 100%; }
  .nav-cta-desktop { display: none; }
  .nav-burger { display: block; }
  .how-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
  .feature-row, .feature-row.reverse { flex-direction: column; }
}
@media (max-width: 600px) {
  .how-grid, .blog-grid { grid-template-columns: 1fr; }
  .community-card { flex-direction: column; align-items: flex-start; text-align: left; }
  .price-card { padding: 32px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .trust-track { animation: none; }
  html { scroll-behavior: auto; }
  .nav { transition: none; }
  .hero-image { animation: none !important; opacity: 1; transform: none; }
  .hero-clouds { animation: none; }
}

/* ---------- Page hero (sub-pages) ---------- */
.page-hero { padding: 72px 0 56px; text-align: center; }
.page-hero .eyebrow { display: block; }
.page-hero h1 { font-size: clamp(34px, 5vw, 56px); margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: var(--color-text-muted); max-width: 640px; margin: 0 auto; line-height: 1.6; }

/* ---------- Testimonial ---------- */
.testimonial {
  max-width: 720px; margin: 0 auto; text-align: center;
  background: var(--color-card-beige); border-radius: var(--radius-lg); padding: 40px;
}
.testimonial p.quote { font-family: var(--font-display); font-size: clamp(20px, 3vw, 26px); font-weight: 500; line-height: 1.4; margin: 0 0 20px; }
.testimonial .source { font-size: 14px; color: var(--color-text-muted); font-weight: 600; }

/* ---------- Freetools ---------- */
.tools-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.tool-card { background: var(--color-white); border: 1px solid var(--color-stroke); border-radius: var(--radius-md); padding: 32px; }
.tool-card .icon { width: 48px; height: 48px; border-radius: 12px; background: var(--color-accent-blue-tint); color: var(--color-accent-blue); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px; }
.tool-card h3 { font-size: 20px; margin-bottom: 10px; }
.tool-card p { font-size: 15px; color: var(--color-text-muted); line-height: 1.6; margin: 0 0 20px; }
@media (max-width: 700px) { .tools-grid { grid-template-columns: 1fr; } }

/* ---------- Contact ---------- */
.contact-wrap { display: flex; gap: 48px; align-items: flex-start; flex-wrap: wrap; }
.contact-card { flex: 1; min-width: 280px; background: var(--color-white); border: 1px solid var(--color-stroke); border-radius: var(--radius-lg); padding: 40px; }
.contact-card h3 { font-size: 20px; margin-bottom: 8px; }
.contact-card p { font-size: 15px; color: var(--color-text-muted); line-height: 1.6; margin-bottom: 24px; }
.contact-list { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.contact-list li { font-size: 15px; display: flex; align-items: center; gap: 10px; }
.contact-list a { font-weight: 600; color: var(--color-accent-blue); }

/* ---------- Article (blog post) ---------- */
.article-hero { padding: 56px 0 32px; }
.article-hero .cat { color: var(--color-accent-blue); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.article-hero h1 { font-size: clamp(28px, 4vw, 44px); margin: 16px 0; line-height: 1.2; }
.article-hero .meta { color: var(--color-text-muted); font-size: 14px; }
.article-cover { max-width: 900px; margin: 0 auto 48px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--color-stroke); }
.article-cover img { width: 100%; }
.article-body { max-width: 720px; margin: 0 auto; padding-bottom: 80px; font-size: 17px; line-height: 1.75; color: var(--color-text-soft); }
.article-body h2 { font-size: 26px; margin: 40px 0 16px; }
.article-body h3 { font-size: 21px; margin: 32px 0 14px; }
.article-body p { margin: 0 0 20px; }
.article-body ul, .article-body ol { margin: 0 0 20px; padding-left: 22px; }
.article-body li { margin-bottom: 8px; }
.article-body strong { color: var(--color-text); }
.article-body a { color: var(--color-accent-blue); text-decoration: underline; }
.article-back { display: inline-block; margin-bottom: 24px; font-size: 14px; font-weight: 600; color: var(--color-text-muted); }
.article-cta { max-width: 720px; margin: 0 auto 64px; background: var(--color-dark); border-radius: var(--radius-lg); padding: 40px; text-align: center; }
.article-cta h3 { color: #fff; font-size: 22px; margin-bottom: 20px; }
