/* ════════════════════════════════════════════════════
   MARQUEIVER — DESIGN SYSTEM
   Shared across all pages. Single source of truth.
   ════════════════════════════════════════════════════ */

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

:root {
  /* Palette */
  --bg: #080C16;
  --bg-2: #0D1626;
  --bg-3: #111C30;
  --bg-cream: #F0EAD8;
  --gold: #C8973A;
  --gold-light: #E4B96C;
  --gold-dim: rgba(200, 151, 58, 0.15);
  --cream: #F0EAD8;
  --cream-muted: #998F7C;
  --cream-dim: rgba(240, 234, 216, 0.5);
  --teal: #2E8B8E;
  --border: rgba(200, 151, 58, 0.2);
  --border-strong: rgba(200, 151, 58, 0.4);

  /* Typography */
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Jost', -apple-system, sans-serif;

  /* Rhythm */
  --section-pad: clamp(72px, 10vw, 120px);
  --container-pad: clamp(24px, 4vw, 40px);
}

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

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--cream);
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Skip link (accessibility) */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--gold);
  color: var(--bg);
  padding: 10px 20px;
  z-index: 200;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.skip-link:focus { top: 0; }

/* ═══ TYPOGRAPHY ═══ */

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 1.12;
  color: var(--cream);
}

h1 { font-size: clamp(40px, 7vw, 84px); font-weight: 300; }
h2 { font-size: clamp(32px, 5vw, 56px); font-weight: 400; }
h3 { font-size: clamp(22px, 2.5vw, 28px); font-weight: 500; }
h4 { font-size: 18px; font-weight: 500; letter-spacing: 0; }

em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--cream-muted);
}

p strong { color: var(--cream); font-weight: 400; }

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.25s ease;
}
a:hover { color: var(--gold-light); }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.divider {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 28px 0;
}
.divider-center { margin: 28px auto; }

/* ═══ LAYOUT ═══ */

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

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

section {
  padding: var(--section-pad) 0;
  position: relative;
}

section:nth-child(even) { background: var(--bg-2); }

/* ═══ LOGO / BRAND MARK ═══ */

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.brand:hover { opacity: 0.92; }

/* The new logo (tight-cropped wordmark, ~9.6:1).
   Header at 250px, footer at 215px keep the letterforms at the same
   visual size as before while now aligning M to the container edge. */
.brand-mark {
  display: block;
  width: 250px;
  height: auto;
  max-width: 100%;
  flex-shrink: 0;
  transition: opacity 0.25s ease;
}

@media (max-width: 540px) {
  .brand-mark { width: 180px; }
}

/* ═══ NAV / HEADER ═══ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 12, 22, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px var(--container-pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream-muted);
  font-weight: 400;
  position: relative;
  padding: 4px 0;
  transition: color 0.25s ease;
}

.nav-links a:hover { color: var(--cream); }

.nav-links a.active { color: var(--gold); }

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

.nav-cta {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 11px 22px;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  transition: all 0.25s ease;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--bg) !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--cream);
  padding: 8px 12px;
  cursor: pointer;
  font-size: 16px;
}

@media (max-width: 880px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-2);
    flex-direction: column;
    padding: 28px var(--container-pad);
    border-bottom: 1px solid var(--border);
    gap: 22px;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
}

/* ═══ HERO ═══ */

.hero {
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding: 120px 0 96px;
  position: relative;
  overflow: hidden;
}

.hero-compact { min-height: auto; padding: 100px 0 64px; }

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 18% 25%, rgba(200, 151, 58, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 82% 75%, rgba(46, 139, 142, 0.07) 0%, transparent 55%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 151, 58, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 151, 58, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 15%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 15%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  animation: fadeUp 0.9s ease-out;
}

.hero p.lede {
  font-size: 19px;
  line-height: 1.7;
  color: var(--cream-muted);
  margin-top: 32px;
  max-width: 680px;
  font-weight: 300;
}

/* Marquee bulbs row — decorative element tying to the "marquee" name */
.marquee-row {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 48px;
}

.marquee-row .bulb {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.85;
  animation: bulbPulse 3s ease-in-out infinite;
}

.marquee-row .bulb:nth-child(2) { animation-delay: 0.3s; }
.marquee-row .bulb:nth-child(3) { animation-delay: 0.6s; }
.marquee-row .bulb:nth-child(4) { animation-delay: 0.9s; }
.marquee-row .bulb:nth-child(5) { animation-delay: 1.2s; }

.marquee-row .label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-left: 8px;
}

@keyframes bulbPulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══ BUTTONS ═══ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--bg);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-secondary:hover {
  background: var(--gold);
  color: var(--bg);
}

.btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* ═══ GRIDS / CARDS ═══ */

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 880px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 1024px) and (min-width: 881px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

.card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 36px 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

section:nth-child(even) .card { background: var(--bg); }

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.card:hover::before { width: 100%; }

.card-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.card h3 { margin-bottom: 14px; }
.card p { font-size: 14.5px; line-height: 1.7; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--sans);
  font-weight: 500;
  transition: gap 0.25s ease;
}
.card-link:hover { gap: 14px; }

.card .price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--gold);
  margin-top: 18px;
  display: block;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

/* ═══ SECTION INTRO ═══ */

.section-intro {
  max-width: 720px;
  margin-bottom: 56px;
}
.section-intro.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-intro p {
  font-size: 17px;
  margin-top: 18px;
  line-height: 1.7;
}

/* ═══ MARKETS GRID ═══ */

.markets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

@media (max-width: 720px) {
  .markets-grid { grid-template-columns: repeat(2, 1fr); }
}

.market-cell {
  background: var(--bg-2);
  padding: 30px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}

section:nth-child(even) .market-cell { background: var(--bg); }
.market-cell:hover { background: var(--bg-3); }

.market-cell .flag {
  display: block;
  width: 36px;
  height: 27px;
  margin: 0 0 12px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  /* Subtle desaturation to match the muted brand palette */
  filter: saturate(0.88);
  transition: filter 0.25s ease;
}

.market-cell:hover .flag { filter: saturate(1); }

.market-cell .name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--cream);
}

/* ═══ LIST CLEAN ═══ */

.list-clean { list-style: none; }
.list-clean li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: var(--cream);
  font-size: 15px;
  line-height: 1.6;
}
.list-clean li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  flex-shrink: 0;
  border-radius: 50%;
  margin-top: 9px;
}

/* ═══ QUOTE ═══ */

.quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.45;
  color: var(--cream);
  font-weight: 300;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--container-pad);
}

.quote .attribution {
  display: block;
  font-style: normal;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 32px;
  font-weight: 500;
}

/* ═══ BREADCRUMBS ═══ */

.breadcrumbs {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.breadcrumbs a { color: var(--cream-muted); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .sep { color: var(--gold); }
.breadcrumbs .current { color: var(--gold); }

/* ═══ FORMS ═══ */

.form-stack { display: flex; flex-direction: column; gap: 22px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 14px 16px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group textarea { resize: vertical; min-height: 130px; font-family: var(--sans); }

/* ═══ FOOTER ═══ */

.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand-block .brand { margin-bottom: 18px; }
.footer-brand-block .brand-mark { width: 215px; height: auto; }
.footer-brand-block p { font-size: 14px; max-width: 320px; line-height: 1.7; margin-top: 6px; }

.footer-col h4 {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  font-weight: 500;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: var(--cream-muted);
  font-size: 13.5px;
  font-family: var(--sans);
}
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 11px;
  color: var(--cream-dim);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ═══ DECORATIVE: ORNAMENT DIVIDER ═══ */

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 48px auto;
  max-width: 200px;
  color: var(--gold);
}

.ornament .line {
  flex: 1;
  height: 1px;
  background: var(--border-strong);
}

.ornament .dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

/* ═══ RESPONSIVE FINE-TUNES ═══ */

@media (max-width: 880px) {
  .hero { min-height: 60vh; padding: 80px 0 64px; }
  .hero p.lede { font-size: 16px; margin-top: 24px; }
  .marquee-row { margin-top: 32px; }
}

/* ════════════════════════════════════════════════════
   FOOTER — social icons row
   ════════════════════════════════════════════════════ */

.social-icons {
  list-style: none;
  display: flex;
  gap: 14px;
  margin-top: 24px;
  padding: 0;
}

.social-icons li { margin: 0; }

.social-icons a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--cream-muted);
  transition: all 0.25s ease;
  border-radius: 50%;
}

.social-icons a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.social-icons svg {
  width: 16px;
  height: 16px;
  display: block;
}

@media (max-width: 520px) {
  .social-icons { gap: 10px; }
  .social-icons a { width: 36px; height: 36px; }
}

/* ════════════════════════════════════════════════════
   TESTIMONIALS — review cards + clients strip
   ════════════════════════════════════════════════════ */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 72px;
}

@media (max-width: 880px) {
  .testimonial-grid { grid-template-columns: 1fr; gap: 22px; margin-bottom: 56px; }
}

.testimonial-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 44px 32px 32px;
  position: relative;
  transition: all 0.3s ease;
}

section:nth-child(even) .testimonial-card { background: var(--bg); }

.testimonial-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.testimonial-card .quote-mark {
  position: absolute;
  top: 8px;
  left: 24px;
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 500;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--cream);
  font-weight: 300;
  margin: 0 0 28px;
  padding: 0;
  border: none;
  position: relative;
  z-index: 1;
}

.testimonial-meta {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.testimonial-meta .t-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 4px;
}

.testimonial-meta .t-role {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

/* Clients / engagements strip */
.clients-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px var(--container-pad);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.clients-strip .clients-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
}

.clients-strip ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 28px 36px;
  margin: 0;
  padding: 0;
  flex: 1;
}

.clients-strip li {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: var(--cream-muted);
  position: relative;
}

.clients-strip li:not(:last-child)::after {
  content: '·';
  color: var(--gold);
  margin-left: 36px;
  position: absolute;
  right: -22px;
  top: 0;
}

@media (max-width: 720px) {
  .clients-strip { gap: 18px; padding: 24px var(--container-pad); }
  .clients-strip ul { gap: 14px 22px; }
  .clients-strip li { font-size: 13.5px; }
  .clients-strip li:not(:last-child)::after { margin-left: 22px; right: -14px; }
}

/* ════════════════════════════════════════════════════
   PRICING CARDS — Identity / Launch / Partner
   ════════════════════════════════════════════════════ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

@media (max-width: 980px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 22px; max-width: 480px; margin: 0 auto; }
}

.pricing-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 44px 36px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

section:nth-child(even) .pricing-card { background: var(--bg); }

.pricing-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* Featured (Launch) variant */
.pricing-card-featured {
  border-color: var(--gold);
  background: var(--bg-3);
}

section:nth-child(even) .pricing-card-featured { background: var(--bg-2); }

.pricing-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 7px 18px;
  white-space: nowrap;
}

.pricing-head h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.pricing-tag {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--cream-muted);
  font-weight: 300;
  margin-bottom: 32px;
  min-height: 44px;
}

.pricing-price {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.pricing-price .amount {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -1.5px;
  display: block;
  margin-bottom: 10px;
}

.pricing-price .period {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 1.2px;
  color: var(--cream-muted);
  font-weight: 400;
  display: block;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--cream);
  font-weight: 300;
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  flex-shrink: 0;
  width: 14px;
}

.btn-block {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: auto;
}

@media (max-width: 980px) {
  .pricing-card { padding: 40px 28px 30px; }
  .pricing-price .amount { font-size: 48px; }
}
