/* ============================================
   MUSLIM ADVERTISING - V2
   Garden family style: editorial, restrained,
   border-led. Syne. Cream / black / sage.
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

:root {
  --black:      #000000;
  --dark:       #1a1a1a;
  --dark-2:     #3d3d3d;
  --sage:       #7f8678;
  --cream:      #f2f1ed;
  --cream-dark: #e8e7e1;
  --gold:       #f5cc5a;   /* logo mark only */
  --nav-h:      68px;
  --max:        1180px;
  --border:     rgba(0,0,0,0.1);
  --border-mid: rgba(127,134,120,0.3);
}

body {
  font-family: 'Syne', sans-serif;
  background: var(--cream);
  color: var(--black);
  font-size: 16px;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* TYPOGRAPHY */
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; font-weight: 600; line-height: 1.3; }
h4 { font-size: 1rem; font-weight: 600; line-height: 1.4; }
p  { font-size: 1rem; line-height: 1.78; color: var(--dark-2); }

/* LAYOUT */
.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
section { padding: 96px 0; }

/* ---- NAV ---- */
nav {
  position: fixed;
  top: 0; width: 100%;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  color: var(--black);
}
.logo-img {
  height: 34px;
  width: auto;
  max-width: 34px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark-2);
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 1px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease-out;
}
.nav-links a:hover { color: var(--black); }
.nav-links a:hover::after { transform: scaleX(1); }
/* ---- NAV DROPDOWN ---- */
.nav-links li { position: relative; }
.nav-links li:hover .nav-dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 0 6px;
  min-width: 140px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 200;
}
.nav-dropdown a {
  display: block;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dark-2);
  white-space: nowrap;
}
.nav-dropdown a::after { display: none; }
.nav-dropdown a:hover { color: var(--black); background: rgba(0,0,0,0.04); }

/* ---- NAV LAUNCH BUTTON ---- */
.nav-launch {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black);
  border: 1.5px solid var(--black);
  padding: 7px 16px;
  border-radius: 6px;
  letter-spacing: -0.01em;
  transition: background 0.15s, color 0.15s;
  margin-left: 8px;
}
.nav-launch:hover { background: var(--black); color: var(--cream); }

/* ---- PRIMARY / SECONDARY BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--black);
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  letter-spacing: -0.01em;
  transition: opacity 0.15s;
}
.btn-primary:hover { opacity: 0.85; }
.btn-secondary {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
  position: relative;
}
.btn-secondary::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 1px;
  background: var(--black);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.2s ease-out;
}
.btn-secondary:hover::after { transform: scaleX(0); }


.nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
  position: relative;
  display: inline-block;
}
.nav-cta::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 1px;
  background: var(--black);
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 0.2s ease-out;
}
.nav-cta:hover::after { transform: scaleX(0); }
.page-body { padding-top: var(--nav-h); }

/* ---- HAMBURGER / MOBILE NAV ---- */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 8px 20px 28px;
  z-index: 99;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; }
.nav-mobile ul li a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
}
.nav-mobile .mobile-cta {
  display: inline-block;
  margin-top: 24px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---- TEXT LINK (Garden style CTA) ---- */
.text-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
  position: relative;
  display: inline-block;
}
.text-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 1px;
  background: var(--black);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.2s ease-out;
}
.text-link:hover::after { transform: scaleX(0); }
.text-link-sage { color: var(--sage); }
.text-link-sage::after { background: var(--sage); }

/* ---- EYEBROW ---- */
.eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 20px;
  display: block;
}

/* ---- HERO ---- */
.hero {
  background: var(--cream);
  padding: 96px 0 80px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero h1 { margin-bottom: 28px; }
.hero .subheadline {
  font-size: 1.05rem;
  color: var(--dark-2);
  max-width: 480px;
  margin-bottom: 16px;
  line-height: 1.72;
}
.hero .supporting {
  font-size: 0.82rem;
  color: var(--sage);
  margin-bottom: 44px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.6;
}
.hero-ctas { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; }
.hero-right {
  border: 1px solid var(--border);
  padding: 48px 40px;
  background: var(--cream-dark);
}
.hero-stat { margin-bottom: 36px; }
.hero-stat:last-child { margin-bottom: 0; }
.hero-stat-num {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--black);
}
.hero-stat-label { font-size: 0.82rem; color: var(--sage); line-height: 1.5; }
.hero-stat-divider { height: 1px; background: var(--border); margin: 24px 0; }

/* ---- TICKER / TAGLINE BAR ---- */
.tagline-bar {
  background: var(--black);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.tagline-bar p {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242,241,237,0.55);
  text-align: center;
}
.tagline-bar span { color: var(--cream); }

/* ---- TIER CARDS ---- */
.tiers { background: var(--cream); }
.tiers-header { margin-bottom: 52px; }
.tiers-header h2 { max-width: 560px; margin-bottom: 14px; }
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}
.tier-card {
  padding: 44px 36px;
  border-right: 1px solid var(--border);
}
.tier-card:last-child { border-right: none; }
.tier-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 20px;
}
.tier-card h3 { margin-bottom: 16px; }
.tier-card p { font-size: 0.9rem; margin-bottom: 28px; }

/* ---- CALENDAR VISUAL ---- */
.cal-visual {
  background: var(--cream-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cal-visual-intro {
  font-size: 1rem;
  max-width: 640px;
  margin-bottom: 52px;
}
.cal-month-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 6px;
  align-items: end;
  height: 180px;
}
.cal-month {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
}
.cal-m-name {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--sage);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.cal-bar {
  width: 100%;
  height: 110px;
  background: rgba(127,134,120,0.1);
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: flex-end;
}
.cal-fill { width: 100%; background: rgba(127,134,120,0.3); }
.peak-fill  { background: var(--black); }
.high-fill  { background: rgba(0,0,0,0.45); }
.med-fill   { background: rgba(0,0,0,0.22); }
.cal-intensity {
  font-size: 0.6rem;
  color: var(--sage);
  margin-top: 7px;
  text-align: center;
  line-height: 1.3;
}
.cal-month.peak .cal-intensity { color: var(--black); font-weight: 700; }
.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.leg-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  color: var(--sage);
}
.leg-dot { width: 10px; height: 10px; flex-shrink: 0; background: rgba(127,134,120,0.3); }
.peak-dot { background: var(--black); }
.high-dot { background: rgba(0,0,0,0.45); }
.med-dot  { background: rgba(0,0,0,0.22); }
.cal-note {
  font-size: 0.7rem;
  color: var(--sage);
  margin-top: 14px;
  font-style: italic;
  max-width: 680px;
  line-height: 1.6;
}
.cal-cta { margin-top: 36px; }

/* ---- PROBLEM ---- */
.problem { background: var(--cream); }
.problem-intro { max-width: 700px; margin-bottom: 56px; }
.problem-intro h2 { margin-bottom: 20px; }
.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--border);
}
.problem-card {
  padding: 44px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problem-card:nth-child(even) { border-right: none; }
.problem-card:nth-last-child(-n+2) { border-bottom: none; }
.problem-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--sage);
  margin-bottom: 18px;
}
.problem-card h4 { margin-bottom: 12px; }
.problem-card p { font-size: 0.9rem; }

/* ---- FEATURES ---- */
.features { background: var(--cream-dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.features-intro { margin-bottom: 52px; }
.features-intro h2 { margin-bottom: 14px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}
.feature {
  padding: 40px 34px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.feature:nth-child(3n) { border-right: none; }
.feature:nth-last-child(-n+3) { border-bottom: none; }
.feature-line {
  width: 24px;
  height: 1px;
  background: var(--sage);
  margin-bottom: 26px;
}
.feature h4 { margin-bottom: 12px; }
.feature p { font-size: 0.875rem; }

/* ---- HOW IT WORKS ---- */
.how { background: var(--cream); }
.how h2 { margin-bottom: 10px; }
.how-sub { font-size: 1rem; color: var(--sage); margin-bottom: 56px; max-width: 480px; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}
.step {
  padding: 40px 34px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.step:nth-child(3n) { border-right: none; }
.step:nth-last-child(-n+3) { border-bottom: none; }
.step-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--sage);
  margin-bottom: 20px;
}
.step h4 { margin-bottom: 12px; }
.step p { font-size: 0.875rem; }

/* ---- PLATFORMS ---- */
.platforms { background: var(--cream-dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.platform-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--border);
  margin-top: 48px;
}
.platform-group {
  padding: 40px;
  border-right: 1px solid var(--border);
}
.platform-group:last-child { border-right: none; }
.platform-group-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 20px;
}
.platform-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ptag {
  padding: 7px 16px;
  border: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dark-2);
  background: var(--cream);
}

/* ---- PRICING ---- */
.pricing { background: var(--cream); }
.pricing-intro { margin-bottom: 56px; }
.pricing-intro h2 { margin-bottom: 12px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}
.price-card {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
}
.price-card:last-child { border-right: none; }
.price-card.featured { background: var(--black); }
.price-plan-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 20px;
}
.price-card.featured .price-plan-label { color: var(--cream); opacity: 0.5; }
.price-amount {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  color: var(--black);
}
.price-card.featured .price-amount { color: var(--cream); }
.price-sub { font-size: 0.82rem; color: var(--sage); margin-bottom: 28px; }
.price-card.featured .price-sub { color: rgba(242,241,237,0.45); }
.price-divider { height: 1px; background: var(--border); margin: 24px 0; }
.price-card.featured .price-divider { background: rgba(255,255,255,0.1); }
.price-value-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242,241,237,0.4);
  margin-bottom: 14px;
}
.price-rationale {
  font-size: 0.82rem;
  color: rgba(242,241,237,0.6);
  line-height: 1.65;
  margin-bottom: 20px;
}
.price-features { list-style: none; margin-bottom: 36px; }
.price-features li {
  font-size: 0.875rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--dark-2);
  position: relative;
  padding-left: 16px;
  line-height: 1.55;
}
.price-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 5px; height: 1px;
  background: var(--sage);
}
.price-card.featured .price-features li {
  color: rgba(242,241,237,0.7);
  border-color: rgba(255,255,255,0.08);
}
.price-card.featured .price-features li::before { background: rgba(242,241,237,0.3); }
.price-example {
  font-size: 0.78rem;
  color: rgba(242,241,237,0.45);
  font-style: italic;
  margin-bottom: 28px;
  line-height: 1.6;
}
.price-card.featured .text-link { color: var(--cream); }
.price-card.featured .text-link::after { background: var(--cream); }

/* ---- FAQ ---- */
.faq { background: var(--cream-dark); border-top: 1px solid var(--border); }
.faq-intro { margin-bottom: 52px; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--border); }
.faq-item {
  padding: 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.faq-item:nth-child(even) { border-right: none; }
.faq-q { font-size: 0.9rem; font-weight: 600; margin-bottom: 12px; line-height: 1.4; }
.faq-a { font-size: 0.86rem; }

/* ---- FOOTER CTA ---- */
.footer-cta {
  background: var(--black);
  color: var(--cream);
  text-align: center;
  padding: 96px 0;
}
.footer-cta h2 { color: var(--cream); margin-bottom: 16px; letter-spacing: -0.01em; }
.footer-cta p { color: rgba(242,241,237,0.55); max-width: 500px; margin: 0 auto 40px; }
.subscribe-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.12);
}
.subscribe-form input {
  flex: 1;
  padding: 14px 20px;
  font-size: 0.875rem;
  font-family: 'Syne', sans-serif;
  border: none;
  background: transparent;
  color: var(--cream);
  outline: none;
}
.subscribe-form input::placeholder { color: rgba(242,241,237,0.3); }
.subscribe-form button {
  background: var(--cream);
  color: var(--black);
  border: none;
  padding: 14px 24px;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.subscribe-form button:hover { opacity: 0.88; }

/* ---- SITE FOOTER ---- */
.site-footer {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 36px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-copy { font-size: 0.78rem; color: var(--sage); }
.footer-garden {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark-2);
  position: relative;
  display: inline-block;
}
.footer-garden::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 100%; height: 1px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease-out;
}
.footer-garden:hover { color: var(--black); }
.footer-garden:hover::after { transform: scaleX(1); }
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a {
  font-size: 0.78rem;
  color: var(--sage);
  position: relative;
  transition: color 0.2s;
}
.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 100%; height: 1px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease-out;
}
.footer-links a:hover { color: var(--black); }
.footer-links a:hover::after { transform: scaleX(1); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 80px 0 64px;
}
.page-hero h1 { margin-bottom: 20px; font-size: clamp(2rem, 4vw, 3rem); }
.page-hero .hero-intro { color: var(--dark-2); max-width: 640px; font-size: 1.05rem; line-height: 1.72; }

/* ---- CONTENT SECTIONS ---- */
.content-section { border-bottom: 1px solid var(--border); }
.content-section.light { background: var(--cream); }
.content-section.mid   { background: var(--cream-dark); }
.content-section h2 { margin-bottom: 24px; max-width: 720px; }
.content-section p  { max-width: 760px; margin-bottom: 20px; }

/* ---- LIST ---- */
.c-list { list-style: none; margin: 28px 0; max-width: 760px; border-top: 1px solid var(--border); }
.c-list li {
  padding: 14px 0 14px 22px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--dark-2);
  position: relative;
  line-height: 1.6;
}
.c-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 22px;
  width: 7px; height: 1px;
  background: var(--sage);
}

/* ---- DATA GRID ---- */
.data-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  margin: 40px 0;
}
.data-cell { padding: 32px; border-right: 1px solid var(--border); }
.data-cell:last-child { border-right: none; }
.data-cell .dc-num { font-size: 2rem; font-weight: 700; letter-spacing: -0.02em; color: var(--black); margin-bottom: 6px; }
.data-cell .dc-lbl { font-size: 0.75rem; color: var(--sage); font-weight: 600; text-transform: uppercase; letter-spacing: 0.09em; line-height: 1.45; }

/* ---- CTA BAND ---- */
.cta-band {
  background: var(--cream-dark);
  text-align: center;
  padding: 88px 0;
  border-top: 1px solid var(--border);
}
.cta-band h2 { margin-bottom: 16px; }
.cta-band p { color: var(--dark-2); max-width: 460px; margin: 0 auto 36px; }

/* ---- CALENDAR GUIDE SECTIONS ---- */
.cal-period { border-bottom: 1px solid var(--border); }
.cal-period.light { background: var(--cream); }
.cal-period.mid   { background: var(--cream-dark); }
.cal-header { display: flex; align-items: baseline; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; }
.cal-badge {
  border: 1px solid var(--black);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  white-space: nowrap;
}
.cal-warning {
  border-left: 2px solid var(--black);
  padding: 14px 20px;
  margin: 28px 0;
  max-width: 760px;
}
.cal-warning p { font-size: 0.875rem; color: var(--dark-2); margin: 0; }

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .tiers-grid { grid-template-columns: 1fr; }
  .tier-card { border-right: none; border-bottom: 1px solid var(--border); }
  .tier-card:last-child { border-bottom: none; }
  .problems-grid { grid-template-columns: 1fr; }
  .problem-card { border-right: none; }
  .problem-card:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .problem-card:last-child { border-bottom: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature:nth-child(3n) { border-right: 1px solid var(--border); }
  .feature:nth-child(2n) { border-right: none; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(3n) { border-right: 1px solid var(--border); }
  .step:nth-child(2n) { border-right: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { border-right: none; border-bottom: 1px solid var(--border); }
  .price-card.featured { border-color: rgba(255,255,255,0.08); }
  .price-card:last-child { border-bottom: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-item { border-right: none; }
  .platform-groups { grid-template-columns: 1fr; }
  .platform-group { border-right: none; border-bottom: 1px solid var(--border); }
  .platform-group:last-child { border-bottom: none; }
  .data-grid { grid-template-columns: repeat(2, 1fr); }
  .cal-month-row { grid-template-columns: repeat(6, 1fr); height: auto; }
  .cal-bar { height: 80px; }
}

@media (max-width: 600px) {
  section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  h1 { font-size: 2.2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .feature:nth-child(n) { border-right: none; }
  .steps { grid-template-columns: 1fr; }
  .step:nth-child(n) { border-right: none; }
  .data-grid { grid-template-columns: 1fr; }
  .data-cell { border-right: none; border-bottom: 1px solid var(--border); }
  .cal-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
  .cal-month-row { grid-template-columns: repeat(12, 48px); min-width: 600px; height: 130px; }
  .cal-bar { height: 70px; }
  .cal-legend { min-width: 600px; }
  .subscribe-form { flex-direction: column; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ---- TRUST BAND ---- */
.trust-band {
  background: var(--black);
  color: var(--cream);
  padding: 80px 0;
}
.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.trust-statement h3 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 20px;
  line-height: 1.3;
}
.trust-statement p {
  font-size: 0.9rem;
  color: rgba(242,241,237,0.7);
  line-height: 1.7;
  margin-bottom: 14px;
}
.trust-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}
.trust-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.trust-icon {
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.trust-point p {
  font-size: 0.88rem;
  color: rgba(242,241,237,0.85);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 768px) {
  .trust-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .trust-band { padding: 56px 0; }
  .trust-statement h3 { font-size: 1.25rem; }
}

/* Screen reader only - visually hidden but accessible */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* Social proof grid - 2x2 on desktop, 1 col on mobile */
.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.social-proof-card {
  padding: 36px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.social-proof-card:nth-child(2n) { border-right: none; }
.social-proof-card:nth-last-child(-n+2) { border-bottom: none; }
.social-proof-card .sp-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.social-proof-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--black);
}

@media (max-width: 600px) {
  .social-proof-grid { grid-template-columns: 1fr; }
  .social-proof-card { border-right: none; border-bottom: 1px solid var(--border); }
  .social-proof-card:last-child { border-bottom: none; }
}

/* Hero stats mobile */
@media (max-width: 600px) {
  .hero-right {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    text-align: center;
  }
  .hero-stat-divider { display: none; }
  .hero-stat-num { font-size: 1.6rem; }
  .hero-stat-label { font-size: 0.65rem; }
}

/* Tier card consistency */
.tier-card {
  display: flex;
  flex-direction: column;
}
.tier-card p { flex: 1; }

/* CTA band mobile */
@media (max-width: 600px) {
  .cta-band h2 { font-size: 1.3rem; }
  .cta-band p { font-size: 0.85rem; }
}
