/* ═══════════════════════════════════════
   RESET & TOKENS
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --coral:       #E8552A;
  --coral-dark:  #C43F1A;
  --coral-light: #FF7A50;
  --coral-pale:  #FFF0EB;
  --lime:        #C8F050;
  --lime-dark:   #A0C830;
  --off:         #FDFAF6;
  --ink:         #1C1410;
  --warm-dark:   #2A1810;
  --sand:        #EDE0D0;
  --sand-dark:   #D9C9B5;
  --stone:       #9E8E7E;
  --pale:        #F7F0E8;
  --border:      rgba(28,20,16,0.12);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--off);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }


/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--ink); height: 58px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.25rem;
  animation: navSlideDown 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes navSlideDown {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.55rem; letter-spacing: 0.06em; color: var(--off);
  text-decoration: none; display: flex; align-items: baseline;
}
.nav-logo-hq {
  background: var(--coral); color: var(--off);
  padding: 0.08em 0.25em 0.05em; border-radius: 3px;
  font-size: 0.9em; margin-left: 0.1em; line-height: 1;
}
.nav-right { display: flex; align-items: center; gap: 0.75rem; }
.nav-links {
  display: none; list-style: none;
  align-items: center; gap: 0.25rem;
}
.nav-links a {
  text-decoration: none; color: rgba(253,250,246,0.5);
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em;
  padding: 0.4rem 0.85rem; border-radius: 4px; transition: all 0.25s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; width: 0; height: 2px;
  background: var(--coral); border-radius: 1px; transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateX(-50%);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 60%; }
.nav-links a:hover,
.nav-links a.active { color: var(--off); background: rgba(255,255,255,0.06); }
.nav-cta {
  background: var(--coral); color: var(--off);
  padding: 0.55rem 1.1rem; border-radius: 5px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.03em;
  text-decoration: none; transition: all 0.25s; white-space: nowrap;
  position: relative; overflow: hidden;
}
.nav-cta::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
  transform: translateX(-100%); transition: none;
}
.nav-cta:hover { background: var(--coral-light); transform: scale(1.04); }
.nav-cta:hover::before { transform: translateX(100%); transition: transform 0.5s; }
.burger {
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; gap: 5px; padding: 5px;
}
.burger span {
  display: block; width: 22px; height: 2px;
  background: var(--off); border-radius: 2px; transition: all 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  display: none; position: fixed;
  top: 58px; left: 0; right: 0; z-index: 190;
  background: var(--ink); flex-direction: column;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}
.drawer.open { display: flex; animation: drawerSlide 0.3s cubic-bezier(0.22, 1, 0.36, 1); }
@keyframes drawerSlide {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.drawer a {
  text-decoration: none; color: rgba(253,250,246,0.65);
  padding: 1rem 1.25rem; font-size: 0.9rem; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06); transition: color 0.2s;
}
.drawer a:last-child { border-bottom: none; }
.drawer a:hover { color: var(--off); }


/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  padding-top: 58px;
  min-height: 100svh;
  display: flex; flex-direction: column;
}
.hero-text {
  flex: 1;
  padding: 3.5rem 1.25rem 3rem;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-text::before {
  content: '';
  position: absolute; top: 20%; right: -100px;
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(232,85,42,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-text::after {
  content: '';
  position: absolute; bottom: 0; left: -60px;
  width: 250px; height: 250px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(200,240,80,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--sand); border-radius: 4px;
  padding: 0.38rem 0.85rem; margin-bottom: 0.5rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--stone); width: fit-content;
  position: relative; z-index: 1;
  animation: badgeSlideIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}
.hero-badge:last-of-type { margin-bottom: 1.75rem; }
@keyframes badgeSlideIn {
  from { opacity: 0; transform: translateX(-30px) scale(0.9); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}
.badge-pip {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime-dark); flex-shrink: 0;
  animation: pip 2s ease infinite;
}
@keyframes pip { 0%,100%{opacity:1; transform: scale(1);} 50%{opacity:0.4; transform: scale(0.7);} }

.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 16vw, 8rem);
  line-height: 0.85; letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  position: relative; z-index: 1;
}
.hero-h1 > span {
  display: block;
  opacity: 0;
  transform: translateY(-80px) rotate(-8deg);
  animation: heroWordDrop 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-h1 > span:nth-child(1) { animation-delay: 0s; }
.hero-h1 > span:nth-child(2) { animation-delay: 0.18s; }
.hero-h1 > span:nth-child(3) { animation-delay: 0.36s; }
.hero-h1 > span:nth-child(4) { animation-delay: 0.54s; }

.hero-h1.replay > span {
  animation: heroWordDrop 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes heroWordDrop {
  0%   { opacity: 0; transform: translateY(-80px) rotate(-8deg); }
  30%  { opacity: 1; transform: translateY(8px) rotate(4deg); }
  50%  { transform: translateY(-4px) rotate(-3deg); }
  70%  { transform: translateY(3px) rotate(1.5deg); }
  85%  { transform: translateY(-1px) rotate(-0.5deg); }
  100% { opacity: 1; transform: translateY(0) rotate(0deg); }
}

.h1-solid  { color: var(--ink); }
.h1-outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--coral);
}
.h1-lime   { color: var(--lime-dark); }

.hero-desc {
  font-size: 1.05rem; line-height: 1.72; color: var(--stone);
  max-width: 500px; margin-bottom: 2.5rem;
  position: relative; z-index: 1;
}
.hero-ctas {
  display: flex; flex-direction: column; gap: 0.75rem;
  margin-bottom: 2.5rem; position: relative; z-index: 1;
}
.btn-coral {
  background: var(--coral); color: var(--off);
  padding: 1rem 1.75rem; border-radius: 6px;
  font-size: 0.92rem; font-weight: 600; text-decoration: none;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1); text-align: center; border: none; cursor: pointer;
  min-height: 50px; display: inline-flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.btn-coral::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
  transform: translateX(-100%); transition: none;
}
.btn-coral:hover::before { transform: translateX(100%); transition: transform 0.6s; }
.btn-coral:hover {
  background: var(--coral-dark); color: var(--off);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(232,85,42,0.35);
}
.btn-coral:active { transform: translateY(0) scale(0.98); box-shadow: 0 4px 12px rgba(232,85,42,0.2); }
.btn-ghost-dark {
  background: transparent; color: var(--ink);
  padding: 1rem 1.75rem; border-radius: 6px;
  border: 2px solid var(--sand-dark);
  font-size: 0.92rem; font-weight: 600; text-decoration: none;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1); text-align: center;
  min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.btn-ghost-dark:hover {
  border-color: var(--ink); color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(28,20,16,0.08);
}
.btn-ghost-dark:active { transform: translateY(0); }

.hero-proof {
  display: flex; align-items: center; gap: 0.85rem;
  flex-wrap: wrap; position: relative; z-index: 1;
}
.avatar-row { display: flex; }
.ava {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--off); margin-left: -8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.58rem; font-weight: 700; color: var(--off);
  animation: avaPopIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.ava:nth-child(1) { animation-delay: 0.6s; }
.ava:nth-child(2) { animation-delay: 0.7s; }
.ava:nth-child(3) { animation-delay: 0.8s; }
.ava:nth-child(4) { animation-delay: 0.9s; }
@keyframes avaPopIn {
  from { opacity: 0; transform: scale(0) rotate(-20deg); }
  to   { opacity: 1; transform: scale(1) rotate(0); }
}
.ava:first-child { margin-left: 0; }
.ava-1 { background: var(--coral); }
.ava-2 { background: #4A90D9; }
.ava-3 { background: #7CB36A; }
.ava-4 { background: #9B59B6; }
.proof-text { font-size: 0.8rem; color: var(--stone); line-height: 1.4; }
.proof-text strong { color: var(--ink); font-weight: 600; }

/* Hero visual / video panel */
.hero-visual {
  background: var(--pale);
  padding: 2.5rem 1.25rem;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: start;
}
.hero-visual::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120%; height: 120%;
  background:
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(232,85,42,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 35% 35% at 50% 50%, rgba(255,220,180,0.5) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.hero-visual::after {
  content: '';
  position: absolute; top: -20%; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 70%;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,245,230,0.7) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-video {
  width: 100%; max-width: 500px; border-radius: 10px;
  position: relative; z-index: 1;
  animation: heroVideoIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}
@keyframes heroVideoIn {
  from { opacity: 0; transform: scale(0.9) translateY(30px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.hero-video-placeholder {
  width: 100%; max-width: 500px; aspect-ratio: 16/9;
  background: rgba(28,20,16,0.05);
  border: 1px solid rgba(28,20,16,0.1);
  border-radius: 10px; position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  color: rgba(28,20,16,0.15); font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem; letter-spacing: 0.05em;
  animation: heroVideoIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both, heroFloat 4s ease-in-out 1.3s infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* Savings calculator */
.savings-calc {
  width: 100%; max-width: 500px;
  background: var(--off);
  border: 1px solid var(--sand);
  border-radius: 12px;
  padding: 1.75rem 1.5rem 1.25rem;
  margin-top: 2rem;
  position: relative; z-index: 1;
  box-shadow: 0 4px 24px rgba(28,20,16,0.06);
}
.savings-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem; letter-spacing: 0.03em;
  color: var(--ink); margin-bottom: 1.25rem;
}
.savings-slider-row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 0.4rem;
}
.savings-slider-label {
  font-size: 0.78rem; font-weight: 600; color: var(--stone);
  letter-spacing: 0.02em;
}
.savings-slider-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem; color: var(--coral);
  letter-spacing: 0.02em; line-height: 1;
}
.savings-range {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px; border-radius: 3px;
  background: var(--sand);
  outline: none; margin-bottom: 1.5rem; cursor: pointer;
}
.savings-range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--coral); border: 3px solid var(--off);
  box-shadow: 0 2px 8px rgba(232,85,42,0.3);
  cursor: pointer; transition: transform 0.2s;
}
.savings-range::-webkit-slider-thumb:hover { transform: scale(1.15); }
.savings-range::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--coral); border: 3px solid var(--off);
  box-shadow: 0 2px 8px rgba(232,85,42,0.3);
  cursor: pointer;
}
.savings-result {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 0.5rem;
  margin-bottom: 1rem;
}
.savings-col {
  text-align: center; padding: 0.75rem 0.5rem;
  border-radius: 8px; background: var(--pale);
}
.savings-col-highlight {
  background: var(--ink); color: var(--off);
}
.savings-col-label {
  display: block; font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--stone); margin-bottom: 0.3rem;
}
.savings-col-highlight .savings-col-label { color: var(--sand); }
.savings-col-amount {
  display: block; font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; letter-spacing: 0.02em; line-height: 1.1;
}
.savings-col-other { color: var(--coral); }
.savings-col-hq { color: var(--lime-dark); }
.savings-col-stripe { color: var(--stone); }
.savings-col-save { color: var(--lime); }
.savings-col-sublabel {
  display: block; font-size: 0.6rem; color: var(--stone);
  margin-top: 0.1rem;
}
.savings-col-highlight .savings-col-sublabel { color: var(--sand-dark); }
.savings-disclaimer {
  font-size: 0.62rem; color: var(--stone); line-height: 1.5;
  opacity: 0.7;
}


/* ═══════════════════════════════════════
   MARQUEE
═══════════════════════════════════════ */
.marquee {
  background: var(--coral);
  border-top: 2px solid var(--coral-dark);
  border-bottom: 2px solid var(--coral-dark);
  padding: 0.7rem 0; overflow: hidden;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track {
  display: flex; gap: 3rem; white-space: nowrap;
  animation: marquee 24s linear infinite;
}
.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem; letter-spacing: 0.1em; color: var(--off);
  flex-shrink: 0; display: flex; align-items: center; gap: 2.5rem;
}
.marquee-item::after { content: '\2726'; font-size: 0.42rem; color: rgba(253,250,246,0.45); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }


/* ═══════════════════════════════════════
   SECTIONS (shared)
═══════════════════════════════════════ */
.sec-eyebrow {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--coral); margin-bottom: 0.75rem;
  display: inline-block; position: relative;
}
.sec-eyebrow::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--coral); border-radius: 1px;
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}
.sec-eyebrow.visible::after { width: 100%; }
.sec-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.75rem, 9vw, 5.5rem);
  line-height: 0.88; letter-spacing: 0.02em; margin-bottom: 1rem;
}
.sec-h2 .c { color: var(--coral); }
.sec-intro {
  font-size: 0.95rem; line-height: 1.72; color: var(--stone);
  max-width: 580px; margin-bottom: 2.5rem;
}


/* ═══════════════════════════════════════
   FEATURES
═══════════════════════════════════════ */
.features { padding: 3.5rem 1.25rem; }
.feat-grid {
  border: 2px solid var(--ink);
  display: grid; grid-template-columns: 1fr;
}
.feat-cell {
  padding: 1.5rem 1.25rem;
  border-bottom: 2px solid var(--ink);
  display: flex; gap: 1rem; align-items: flex-start;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1); cursor: default;
  position: relative;
}
.feat-cell::before {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px;
  background: var(--coral); transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.feat-cell:last-child { border-bottom: none; }
.feat-cell:hover { background: var(--pale); transform: translateX(6px); }
.feat-cell:hover::before { width: 100%; }
.feat-cell:hover .feat-num { color: var(--coral); transform: scale(1.2); }
.feat-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem;
  color: rgba(28,20,16,0.18); flex-shrink: 0; width: 26px; line-height: 1.1;
  transition: all 0.3s;
}
.feat-content { flex: 1; }
.feat-content h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.3rem; }
.feat-content p  { font-size: 0.82rem; color: var(--stone); line-height: 1.55; }


/* ═══════════════════════════════════════
   CALLOUT / TESTIMONIAL
═══════════════════════════════════════ */
.callout {
  margin: 3.5rem 1.25rem;
  background: var(--ink); color: var(--off);
  padding: 2.75rem 2rem; border-radius: 12px;
  position: relative; overflow: hidden;
}
.callout::before {
  content: '\201C';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16rem; line-height: 0.7;
  color: rgba(232,85,42,0.12);
  position: absolute; top: -1rem; left: 1rem;
  pointer-events: none; user-select: none;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.callout:hover::before { transform: scale(1.15) rotate(-5deg); }
.callout-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(253,250,246,0.4); margin-bottom: 1.25rem;
  position: relative; z-index: 1;
}
.callout-quote {
  font-size: clamp(1.1rem, 3.5vw, 1.6rem);
  font-weight: 500; line-height: 1.5; margin-bottom: 1.5rem;
  position: relative; z-index: 1;
}
.callout-attr {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--coral);
  position: relative; z-index: 1;
}


/* ═══════════════════════════════════════
   PRICING
═══════════════════════════════════════ */
.pricing { padding: 3.5rem 1.25rem; background: var(--pale); }
.pricing-cards {
  display: grid; grid-template-columns: 1fr;
  gap: 1.5rem; margin-top: 2.5rem;
}
.p-card {
  background: var(--off); border: 2px solid var(--sand-dark);
  border-radius: 12px; padding: 2.25rem; transition: border-color 0.4s, box-shadow 0.4s;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.p-card::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255,255,255,0.4) 45%,
    rgba(255,255,255,0.6) 50%,
    rgba(255,255,255,0.4) 55%,
    transparent 80%
  );
  transition: none;
  pointer-events: none;
}
.p-card:hover::after {
  animation: cardShine 0.8s ease forwards;
}
.p-card:hover {
  border-color: var(--coral);
  box-shadow: 0 12px 36px rgba(232,85,42,0.12);
}
@keyframes cardShine {
  from { left: -100%; }
  to   { left: 140%; }
}
.p-card.featured {
  background: var(--ink); border-color: var(--ink);
  box-shadow: 0 0 0 3px var(--coral);
}
.p-card.featured::after {
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255,255,255,0.08) 45%,
    rgba(255,255,255,0.15) 50%,
    rgba(255,255,255,0.08) 55%,
    transparent 80%
  );
}
.p-tier {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--stone); display: block; margin-bottom: 0.75rem;
}
.p-card.featured .p-tier { color: rgba(253,250,246,0.4); }
.p-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem; line-height: 1; letter-spacing: 0.02em;
  color: var(--ink); margin-bottom: 0.2rem;
}
.p-card.featured .p-price { color: var(--off); }
.p-period {
  font-size: 0.82rem; color: var(--stone);
  display: block; margin-bottom: 1.5rem;
}
.p-card.featured .p-period { color: rgba(253,250,246,0.4); }
.p-aimed-at {
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.p-card.featured .p-aimed-at { color: rgba(253,250,246,0.8); }
.p-features { list-style: none; margin-bottom: 1.75rem; flex-grow: 1; }
.p-features li {
  font-size: 0.88rem; padding: 0.5rem 0;
  border-bottom: 1px solid var(--sand);
  display: flex; align-items: center; gap: 0.5rem; color: #555;
}
.p-card.featured .p-features li {
  color: rgba(253,250,246,0.72);
  border-bottom-color: rgba(255,255,255,0.08);
}
.p-features li::before { content: '\2713'; color: var(--coral); font-size: 0.75rem; flex-shrink: 0; }
.p-btn {
  display: block; text-align: center; padding: 0.9rem;
  border-radius: 8px; font-size: 0.88rem; font-weight: 600;
  text-decoration: none; background: var(--sand-dark); color: var(--ink);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1); border: 2px solid transparent;
  position: relative; overflow: hidden; margin-top: auto;
}
.p-btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  transform: translateX(-100%); transition: none;
}
.p-btn:hover { background: var(--coral); color: var(--off); transform: translateY(-2px); }
.p-btn:hover::before { transform: translateX(100%); transition: transform 0.5s; }
.p-card.featured .p-btn {
  background: var(--coral); color: var(--off); border-color: transparent;
}
.p-card.featured .p-btn:hover { background: var(--coral-light); }

/* Pricing comparison table */
.pricing-compare { margin-top: 3rem; overflow-x: auto; }
.pricing-compare table {
  width: 100%; border-collapse: collapse; font-size: 0.82rem;
}
.pricing-compare th, .pricing-compare td {
  padding: 0.65rem 1rem; text-align: left;
  border-bottom: 1px solid var(--sand);
}
.pricing-compare th { font-weight: 600; color: var(--ink); }
.pricing-compare td { color: var(--stone); }
.pricing-compare .check { color: var(--coral); font-weight: 700; }

/* FAQ accordion */
.faq { padding: 3rem 0; }
.faq-item { border-bottom: 1px solid var(--sand); }
.faq-q {
  width: 100%; background: none; border: none;
  padding: 1.25rem 0; font-size: 0.95rem; font-weight: 600;
  text-align: left; cursor: pointer; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Outfit', sans-serif;
}
.faq-q::after { content: '+'; font-size: 1.2rem; color: var(--coral); transition: transform 0.3s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  font-size: 0.88rem; line-height: 1.7; color: var(--stone);
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-item { transition: background 0.3s; }
.faq-item.open { background: rgba(232,85,42,0.02); }
.faq-a-inner { padding-bottom: 1.25rem; }


/* ═══════════════════════════════════════
   CTA BAND
═══════════════════════════════════════ */
.cta-band {
  background: var(--coral); padding: 4rem 1.25rem;
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: 'OVATION';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12rem; line-height: 0.8;
  color: rgba(255,255,255,0.06);
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap; pointer-events: none; letter-spacing: 0.05em;
  animation: ctaBgDrift 8s ease-in-out infinite;
}
@keyframes ctaBgDrift {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%      { transform: translate(-50%, -52%) scale(1.05); }
}
.cta-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.75rem, 10vw, 6rem);
  line-height: 0.88; letter-spacing: 0.02em;
  color: var(--off); margin-bottom: 1.25rem;
  position: relative; z-index: 1;
}
.cta-sub {
  font-size: 1rem; color: rgba(253,250,246,0.78);
  max-width: 460px; margin: 0 auto 2.5rem;
  line-height: 1.7; position: relative; z-index: 1;
}
.btn-lime {
  background: var(--lime); color: var(--ink);
  padding: 1rem 2.25rem; border-radius: 6px;
  font-size: 0.95rem; font-weight: 700; text-decoration: none;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1); display: inline-flex; align-items: center; gap: 0.4rem;
  position: relative; z-index: 1; min-height: 52px; border: none; cursor: pointer;
  overflow: hidden;
  animation: ctaPulse 3s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,240,80,0.4); }
  50%      { box-shadow: 0 0 0 12px rgba(200,240,80,0); }
}
.btn-lime::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
  transform: translateX(-100%); transition: none;
}
.btn-lime:hover {
  background: var(--lime-dark); transform: translateY(-3px) scale(1.04); color: var(--ink);
  box-shadow: 0 12px 32px rgba(200,240,80,0.3);
  animation: none;
}
.btn-lime:hover::before { transform: translateX(100%); transition: transform 0.5s; }
.btn-lime:active { transform: translateY(0) scale(0.98); }
.cta-micro {
  margin-top: 1.25rem; font-size: 0.75rem;
  color: rgba(253,250,246,0.55);
  display: flex; justify-content: center; align-items: center;
  gap: 1.5rem; flex-wrap: wrap; position: relative; z-index: 1;
}
.cta-micro span::before { content: '\2713  '; }


/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--ink); padding: 1.5rem 1.25rem;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.6rem; text-align: center;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem; letter-spacing: 0.06em; color: var(--off);
  transition: transform 0.3s;
}
.footer-logo:hover { transform: scale(1.05); }
.footer-logo-hq {
  background: var(--coral); color: var(--off);
  padding: 0.05em 0.22em; border-radius: 3px; margin-left: 0.08em;
  transition: background 0.3s;
}
.footer-logo:hover .footer-logo-hq { background: var(--coral-light); }
.footer-social {
  display: flex; gap: 1rem; align-items: center;
}
.footer-social a {
  color: rgba(253,250,246,0.4); transition: color 0.2s;
  display: flex; align-items: center;
}
.footer-social a:hover { color: var(--coral); }
footer p { font-size: 0.68rem; color: rgba(253,250,246,0.3); }


/* ═══════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════ */
.about-hero {
  padding: 6rem 1.25rem 0.5rem;
  text-align: center;
}
.about-hero .sec-h2 { max-width: 700px; margin: 0 auto 0.75rem; }
.about-mission {
  padding: 1rem 1.25rem 2rem;
  max-width: 700px; margin: 0 auto;
}
.about-mission p {
  font-size: 1.1rem; line-height: 1.7; color: var(--stone); margin-bottom: 1rem;
  text-align: justify;
}
.about-values {
  padding: 2.5rem 1.25rem;
  background: var(--pale);
}
.values-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
  margin-top: 2rem;
}
.value-card {
  padding: 1.5rem; border-left: 3px solid var(--coral);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.value-card:hover {
  transform: translateX(8px);
  border-left-width: 6px;
  background: rgba(232,85,42,0.03);
}
.value-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.88rem; color: var(--stone); line-height: 1.6; }


/* ═══════════════════════════════════════
   THEATRES SHOWCASE
═══════════════════════════════════════ */
.theatres-page { padding: 8rem 1.25rem 4rem; }
.theatre-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1.5rem; margin-top: 2rem;
}
.theatre-card {
  background: var(--off); border: 2px solid var(--sand);
  border-radius: 10px; overflow: hidden; transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.theatre-card:hover {
  border-color: var(--coral);
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: 0 16px 40px rgba(232,85,42,0.12);
}
.theatre-card:hover .theatre-card-img img { transform: scale(1.08); }
.theatre-card-img img { transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
.theatre-card-img {
  height: 120px; background: var(--sand);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.theatre-card-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.theatre-card-body { padding: 1.25rem; }
.theatre-card-body h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.theatre-card-body .location {
  font-size: 0.78rem; color: var(--stone); margin-bottom: 0.75rem;
}
.theatre-website-link {
  display: inline-block; font-size: 0.78rem; color: var(--coral);
  text-decoration: none; font-weight: 600; margin-bottom: 0.75rem;
  transition: color 0.2s;
}
.theatre-website-link:hover { color: var(--ink); text-decoration: underline; }
.theatre-card-body blockquote {
  font-size: 0.82rem; font-style: italic; color: var(--stone);
  line-height: 1.55; border-left: 2px solid var(--coral);
  padding-left: 0.75rem; margin: 0;
}
.theatre-card-body cite {
  display: block; font-size: 0.72rem; font-style: normal;
  font-weight: 600; color: var(--ink); margin-top: 0.5rem;
}


/* ═══════════════════════════════════════
   INTEGRATIONS PAGE
═══════════════════════════════════════ */
.integrations-page { padding: 8rem 1.25rem 4rem; }

.int-filters {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin: 0 0 2.5rem;
}
.int-filter {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--off); color: var(--ink);
  border: 2px solid var(--sand);
  padding: 0.55rem 1.1rem; border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.int-filter:hover { border-color: var(--ink); transform: translateY(-1px); }
.int-filter.active {
  background: var(--ink); color: var(--off); border-color: var(--ink);
}

.int-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1.25rem; margin-top: 1rem;
}

.int-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--off);
  border: 2px solid var(--sand);
  border-radius: 12px;
  padding: 1.75rem 1.5rem 1.5rem;
  text-decoration: none; color: inherit;
  transition: border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}
a.int-card:hover {
  border-color: var(--coral);
  transform: translateY(-6px) rotate(-0.4deg);
  box-shadow: 0 16px 40px rgba(232,85,42,0.12);
}
.int-card.is-soon {
  background: var(--pale);
  border-style: dashed;
  border-color: var(--sand-dark);
}

.int-soon-tag {
  position: absolute; top: 0.85rem; right: 0.85rem;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--ink); color: var(--off);
  padding: 0.3rem 0.55rem; border-radius: 4px;
}

.int-card-logo {
  height: 56px;
  display: flex; align-items: center; justify-content: flex-start;
  margin-bottom: 1.25rem;
}
.int-card-logo img {
  max-height: 44px; max-width: 140px; object-fit: contain;
}
.int-card-initials {
  font-family: 'Bebas Neue', sans-serif;
  width: 52px; height: 52px;
  border-radius: 10px;
  background: var(--sand); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.35rem; letter-spacing: 0.06em;
}

.int-card-meta { margin-bottom: 0.4rem; }
.int-cat {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--coral);
}
.int-card-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.55rem; line-height: 1; letter-spacing: 0.02em;
  margin-bottom: 0.6rem;
}
.int-card-desc {
  font-size: 0.85rem; line-height: 1.6; color: var(--stone);
  flex: 1; margin-bottom: 1rem;
}
.int-card-link {
  font-size: 0.78rem; font-weight: 600; color: var(--coral);
  letter-spacing: 0.02em;
  display: inline-flex; align-items: center;
  transition: gap 0.25s ease;
}
a.int-card:hover .int-card-link { letter-spacing: 0.04em; }


/* ═══════════════════════════════════════
   LEGAL PAGES
═══════════════════════════════════════ */
.legal-page { padding: 8rem 1.25rem 5rem; }
.legal-inner { max-width: 720px; margin: 0 auto; }
.legal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1; letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.legal-updated {
  font-size: 0.85rem; color: var(--stone);
  margin-bottom: 2.5rem;
}
.legal-content { font-size: 0.98rem; line-height: 1.75; color: var(--ink); }
.legal-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.65rem; letter-spacing: 0.02em;
  margin: 2.25rem 0 0.75rem;
}
.legal-content h3 {
  font-size: 1.05rem; font-weight: 700;
  margin: 1.5rem 0 0.5rem;
}
.legal-content h4 {
  font-size: 0.95rem; font-weight: 700;
  margin: 1.25rem 0 0.4rem;
}
.legal-content p { margin-bottom: 1rem; }
.legal-content ul,
.legal-content ol { margin: 0 0 1rem 1.25rem; }
.legal-content li { margin-bottom: 0.4rem; }
.legal-content a { color: var(--coral); text-decoration: underline; text-underline-offset: 2px; }
.legal-content blockquote {
  border-left: 3px solid var(--coral);
  padding-left: 1rem; margin: 1.25rem 0; color: var(--stone); font-style: italic;
}
.legal-content table {
  width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 0.92rem;
}
.legal-content th,
.legal-content td {
  border: 1px solid var(--sand); padding: 0.5rem 0.75rem; text-align: left;
}
.legal-content th { background: var(--pale); font-weight: 600; }

.footer-legal {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.4rem 0.6rem;
  margin: 0.5rem 0 1rem;
  font-size: 0.78rem;
  color: var(--stone);
}
.footer-legal a {
  color: var(--stone); text-decoration: none;
  transition: color 0.2s ease;
}
.footer-legal a:hover { color: var(--coral); }
.footer-legal span { color: var(--stone); opacity: 0.5; }


/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */
.contact-page { padding: 8rem 1.25rem 4rem; }
.contact-layout {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  margin-top: 2rem;
}
.contact-form label {
  display: block; font-size: 0.8rem; font-weight: 600;
  margin-bottom: 0.3rem; color: var(--ink);
}
.contact-form input,
.contact-form textarea {
  width: 100%; padding: 0.75rem; border: 2px solid var(--sand);
  border-radius: 6px; font-size: 0.9rem; font-family: 'Outfit', sans-serif;
  background: var(--off); color: var(--ink); transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  margin-bottom: 1rem;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(232,85,42,0.1);
  transform: translateY(-2px);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .field-optional {
  font-size: 0.7rem; color: var(--stone); font-weight: 400;
}
.contact-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem; margin-bottom: 1rem;
}
.contact-info p {
  font-size: 0.9rem; color: var(--stone); line-height: 1.7; margin-bottom: 0.75rem;
}
.contact-success {
  background: rgba(74,222,128,0.1); border: 2px solid rgba(74,222,128,0.3);
  border-radius: 8px; padding: 2rem; text-align: center;
}
.contact-success h3 { color: #1A7A1A; margin-bottom: 0.5rem; }
.contact-success p { color: var(--stone); font-size: 0.9rem; }


/* ═══════════════════════════════════════
   TRIAL SIGNUP MODAL
═══════════════════════════════════════ */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(28,20,16,0.7); z-index: 300;
  align-items: center; justify-content: center;
  padding: 1rem;
}
.modal-overlay.open { display: flex; animation: modalFadeIn 0.3s ease; }
@keyframes modalFadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-box {
  background: var(--off); border-radius: 12px;
  width: 100%; max-width: 440px; padding: 2.5rem;
  position: relative; max-height: 90vh; overflow-y: auto;
  animation: modalBoxIn 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes modalBoxIn {
  from { opacity: 0; transform: scale(0.9) translateY(30px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; font-size: 1.5rem;
  color: var(--stone); cursor: pointer; line-height: 1;
}
.modal-close:hover { color: var(--ink); }
.modal-box h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; margin-bottom: 0.5rem;
}
.modal-box .modal-sub {
  font-size: 0.88rem; color: var(--stone); margin-bottom: 1.5rem; line-height: 1.5;
}
.modal-box label {
  display: block; font-size: 0.78rem; font-weight: 600;
  margin-bottom: 0.25rem; color: var(--ink);
}
.modal-box input[type="text"],
.modal-box input[type="email"],
.modal-box input[type="tel"] {
  width: 100%; padding: 0.7rem; border: 2px solid var(--sand);
  border-radius: 6px; font-size: 0.88rem; font-family: 'Outfit', sans-serif;
  margin-bottom: 0.85rem; transition: border-color 0.2s;
}
.modal-box input:focus { outline: none; border-color: var(--coral); }
.modal-consent {
  display: flex; align-items: flex-start; gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.modal-consent input[type="checkbox"] {
  margin-top: 0.25rem; accent-color: var(--coral);
}
.modal-consent label {
  font-size: 0.75rem; color: var(--stone); font-weight: 400; margin-bottom: 0;
}
.modal-success {
  text-align: center; padding: 1rem 0;
}
.modal-success h3 { color: #1A7A1A; margin-bottom: 0.5rem; font-size: 1.2rem; }
.modal-success p { color: var(--stone); font-size: 0.88rem; }


/* ═══════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1; transform: translateY(0) scale(1) rotate(0);
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* Reveal from left */
.reveal-left { transform: translateX(-40px); }
.reveal-left.visible { transform: translateX(0); }

/* Reveal from right */
.reveal-right { transform: translateX(40px); }
.reveal-right.visible { transform: translateX(0); }

/* Reveal with scale */
.reveal-scale { transform: scale(0.85); }
.reveal-scale.visible { transform: scale(1); }

/* Section headings get extra punch */
.sec-eyebrow.reveal { transform: translateX(-30px); }
.sec-eyebrow.visible { transform: translateX(0); }
.sec-h2.reveal { transform: translateY(50px) scale(0.95); }
.sec-h2.visible { transform: translateY(0) scale(1); }


/* ═══════════════════════════════════════
   HERO ANIMATIONS
═══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-text > * { animation: fadeUp 0.65s ease both; }
.hero-text > *:nth-child(1) { animation-delay: 0.08s; }
.hero-text > *:nth-child(2) { animation-delay: 0.18s; }
.hero-text > *:nth-child(3) { animation-delay: 0.3s; }
.hero-text > *:nth-child(4) { animation-delay: 0.42s; }
.hero-text > *:nth-child(5) { animation-delay: 0.54s; }


/* ═══════════════════════════════════════
   LANDING PAGES (SEO)
═══════════════════════════════════════ */
.lp-hero {
  padding: 6.5rem 1.25rem 2.5rem;
  background: var(--ink); color: var(--off);
  text-align: center;
}
.lp-hero-inner { max-width: 780px; margin: 0 auto; }
.lp-hero-ctas {
  display: flex; flex-direction: column; gap: 0.75rem;
  justify-content: center; align-items: center;
  margin-top: 2rem;
}
.btn-ghost-light {
  background: transparent; color: var(--off);
  padding: 1rem 1.75rem; border-radius: 6px;
  border: 2px solid rgba(253,250,246,0.25);
  font-size: 0.92rem; font-weight: 600; text-decoration: none;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1); text-align: center;
  min-height: 50px; display: inline-flex; align-items: center; justify-content: center;
}
.btn-ghost-light:hover {
  border-color: var(--off); color: var(--off);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(253,250,246,0.08);
}
.lp-section {
  padding: 4rem 1.25rem;
}
.lp-section-alt { background: var(--pale); }

/* Problem cards */
.lp-problems-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1.25rem; margin-top: 2rem;
}
.lp-problem-card {
  padding: 1.5rem;
  border-left: 3px solid var(--coral);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.lp-problem-card:hover {
  transform: translateX(8px);
  border-left-width: 6px;
  background: rgba(232,85,42,0.03);
}
.lp-problem-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem;
  color: rgba(28,20,16,0.18); margin-bottom: 0.5rem;
}
.lp-problem-card:hover .lp-problem-num { color: var(--coral); }
.lp-problem-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; }
.lp-problem-card p { font-size: 0.85rem; color: var(--stone); line-height: 1.6; }

/* Feature cards */
.lp-features-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1.25rem; margin-top: 2rem;
}
.lp-feature-card {
  background: var(--off); border: 2px solid var(--sand);
  border-radius: 12px; padding: 1.75rem;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.lp-feature-card:hover {
  border-color: var(--coral);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(232,85,42,0.08);
}
.lp-feature-icon {
  font-size: 1.5rem; margin-bottom: 0.75rem;
}
.lp-feature-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; }
.lp-feature-card p { font-size: 0.85rem; color: var(--stone); line-height: 1.6; }

/* Comparison table */
.lp-compare-table-wrap { overflow-x: auto; margin-top: 2rem; }
.lp-compare-table {
  width: 100%; border-collapse: collapse; font-size: 0.85rem;
}
.lp-compare-table th,
.lp-compare-table td {
  padding: 0.85rem 1rem; text-align: left;
  border-bottom: 1px solid var(--sand);
}
.lp-compare-table th {
  font-weight: 700; color: var(--ink);
  font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.06em;
}
.lp-compare-table td { color: var(--stone); }
.lp-compare-table td:first-child { font-weight: 600; color: var(--ink); }
.lp-compare-highlight {
  background: rgba(232,85,42,0.04);
  color: var(--ink) !important; font-weight: 600;
}
.lp-compare-table th.lp-compare-highlight {
  background: var(--coral); color: var(--off) !important;
}

/* Internal link cards */
.lp-links-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1.25rem; margin-top: 2rem;
}
.lp-link-card {
  background: var(--off); border: 2px solid var(--sand);
  border-radius: 12px; padding: 1.75rem;
  text-decoration: none; color: inherit;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex; flex-direction: column;
}
.lp-link-card:hover {
  border-color: var(--coral);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(232,85,42,0.1);
}
.lp-link-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; }
.lp-link-card p { font-size: 0.85rem; color: var(--stone); line-height: 1.6; flex: 1; }
.lp-link-arrow {
  font-size: 0.82rem; font-weight: 600; color: var(--coral);
  margin-top: 0.75rem; display: inline-block;
  transition: letter-spacing 0.25s;
}
.lp-link-card:hover .lp-link-arrow { letter-spacing: 0.06em; }

/* Workflow steps */
.lp-workflow {
  display: grid; grid-template-columns: 1fr;
  gap: 0; margin-top: 2rem;
  counter-reset: step;
}
.lp-workflow-step {
  padding: 1.5rem;
  border-bottom: 2px solid var(--sand);
  display: flex; gap: 1.25rem; align-items: flex-start;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  counter-increment: step;
}
.lp-workflow-step:last-child { border-bottom: none; }
.lp-workflow-step:hover { background: rgba(232,85,42,0.02); transform: translateX(6px); }
.lp-step-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem;
  color: rgba(28,20,16,0.12); flex-shrink: 0; width: 40px;
  line-height: 1; transition: color 0.3s;
}
.lp-workflow-step:hover .lp-step-num { color: var(--coral); }
.lp-step-content { flex: 1; }
.lp-step-content h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.3rem; }
.lp-step-content p { font-size: 0.85rem; color: var(--stone); line-height: 1.6; }

/* Tick list */
.lp-tick-list { list-style: none; margin-top: 2rem; }
.lp-tick-list li {
  font-size: 0.92rem; padding: 0.65rem 0;
  border-bottom: 1px solid var(--sand);
  display: flex; align-items: flex-start; gap: 0.6rem; color: var(--ink);
  line-height: 1.55;
}
.lp-tick-list li::before {
  content: '\2713'; color: var(--coral); font-size: 0.85rem;
  flex-shrink: 0; font-weight: 700; margin-top: 0.05rem;
}

/* FAQ links (within FAQ text) */
.faq-a a { color: var(--coral); text-decoration: underline; text-underline-offset: 2px; }
.faq-a a:hover { color: var(--coral-dark); }

/* TL;DR box */
.lp-tldr {
  display: grid; grid-template-columns: 1fr;
  gap: 1.5rem; margin-top: 2rem;
}
.lp-tldr-col {
  padding: 1.5rem; border-radius: 12px;
}
.lp-tldr-col--hq { background: rgba(232,85,42,0.06); border: 2px solid var(--coral); }
.lp-tldr-col--other { background: var(--pale); border: 2px solid var(--sand); }
.lp-tldr-col h3 {
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 0.75rem;
}
.lp-tldr-col--hq h3 { color: var(--coral); }
.lp-tldr-col--other h3 { color: var(--stone); }
.lp-tldr-col ul {
  list-style: none; margin: 0; padding: 0;
}
.lp-tldr-col ul li {
  font-size: 0.88rem; line-height: 1.6; padding: 0.3rem 0;
  padding-left: 1.25rem; position: relative; color: var(--ink);
}
.lp-tldr-col--hq ul li::before {
  content: '\2713'; position: absolute; left: 0;
  color: var(--coral); font-weight: 700; font-size: 0.8rem;
}
.lp-tldr-col--other ul li::before {
  content: '\2713'; position: absolute; left: 0;
  color: var(--stone); font-weight: 700; font-size: 0.8rem;
}

/* Prose section */
.lp-prose {
  max-width: 720px; font-size: 0.95rem; line-height: 1.75; color: var(--ink);
  margin-top: 1.5rem;
}
.lp-prose p { margin-bottom: 1rem; }
.lp-prose a { color: var(--coral); text-decoration: underline; text-underline-offset: 2px; }
.lp-prose a:hover { color: var(--coral-dark); }
.lp-prose strong { font-weight: 600; }

/* Pricing scenario box */
.lp-scenario {
  background: var(--off); border: 2px solid var(--sand);
  border-radius: 12px; padding: 1.75rem; margin-top: 2rem;
}
.lp-scenario h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem; letter-spacing: 0.03em;
  margin-bottom: 1rem;
}
.lp-scenario-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1rem;
}
.lp-scenario-card {
  padding: 1.25rem; border-radius: 8px; text-align: center;
}
.lp-scenario-card--other { background: var(--pale); }
.lp-scenario-card--hq { background: rgba(232,85,42,0.06); border: 2px solid var(--coral); }
.lp-scenario-card label {
  display: block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone);
  margin-bottom: 0.4rem;
}
.lp-scenario-card--hq label { color: var(--coral); }
.lp-scenario-card .amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem; line-height: 1; letter-spacing: 0.02em;
}
.lp-scenario-card--other .amount { color: var(--ink); }
.lp-scenario-card--hq .amount { color: var(--coral); }
.lp-scenario-card .breakdown {
  font-size: 0.75rem; color: var(--stone); margin-top: 0.3rem; line-height: 1.5;
}
.lp-scenario-note {
  font-size: 0.72rem; color: var(--stone); margin-top: 1rem; line-height: 1.5;
}

/* Disclaimer */
.lp-disclaimer {
  padding: 1.5rem 1.25rem;
  font-size: 0.72rem; color: var(--stone); line-height: 1.6;
  text-align: center; border-top: 1px solid var(--sand);
}

/* Alternatives index grid */
.lp-alt-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
  margin-top: 2rem;
}
.lp-alt-card {
  background: var(--off); border: 2px solid var(--sand);
  border-radius: 12px; padding: 1.75rem;
  text-decoration: none; color: inherit;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.lp-alt-card:hover {
  border-color: var(--coral);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(232,85,42,0.1);
}
.lp-alt-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem; letter-spacing: 0.03em; margin-bottom: 0.4rem;
}
.lp-alt-card p { font-size: 0.85rem; color: var(--stone); line-height: 1.6; }
.lp-alt-card .lp-link-arrow {
  font-size: 0.82rem; font-weight: 600; color: var(--coral);
  margin-top: 0.75rem; display: inline-block;
}


/* ═══════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none; }
  .reveal { opacity: 1; transform: none; }
}


/* ═══════════════════════════════════════
   TABLET ≥ 640px
═══════════════════════════════════════ */
@media (min-width: 640px) {
  .hero-text { padding: 4rem 2.5rem 3.5rem; }
  .hero-visual { padding: 3rem 2.5rem; }
  .hero-ctas { flex-direction: row; }
  .btn-coral, .btn-ghost-dark { flex: none; }

  .features { padding: 4rem 2.5rem; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .feat-cell { border-bottom: 2px solid var(--ink); }
  .feat-cell:nth-child(odd) { border-right: 2px solid var(--ink); }
  .feat-cell:nth-last-child(-n+2) { border-bottom: none; }
  .feat-cell:last-child:nth-child(odd) { border-right: none; }

  .callout { margin: 4rem 2.5rem; padding: 3.5rem 3rem; }
  .pricing { padding: 4rem 2.5rem; }
  .pricing-cards { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 5rem 2.5rem; }
  footer { padding: 1.75rem 2.5rem; }

  .values-grid { grid-template-columns: 1fr 1fr; }
  .theatre-grid { grid-template-columns: 1fr 1fr; }
  .int-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .contact-layout { grid-template-columns: 1fr 1fr; }

  .theatres-page { padding: 8rem 2.5rem 4rem; }
  .contact-page { padding: 8rem 2.5rem 4rem; }
  .about-hero { padding: 6rem 2.5rem 0.5rem; }
  .about-mission { padding: 1rem 2.5rem 2rem; }
  .about-values { padding: 2.5rem 2.5rem; }

  /* Landing pages — tablet */
  .lp-hero { padding: 6.5rem 2.5rem 2.5rem; }
  .lp-hero-ctas { flex-direction: row; }
  .lp-section { padding: 4rem 2.5rem; }
  .lp-problems-grid { grid-template-columns: 1fr 1fr; }
  .lp-features-grid { grid-template-columns: 1fr 1fr; }
  .lp-links-grid { grid-template-columns: 1fr 1fr 1fr; }
  .lp-tldr { grid-template-columns: 1fr 1fr; }
  .lp-scenario-grid { grid-template-columns: 1fr 1fr; }
  .lp-alt-grid { grid-template-columns: 1fr 1fr; }
  .lp-disclaimer { padding: 1.5rem 2.5rem; }
}


/* ═══════════════════════════════════════
   DESKTOP ≥ 1024px
═══════════════════════════════════════ */
@media (min-width: 1024px) {
  .nav { padding: 0 3.5rem; height: 62px; }
  .burger { display: none; }
  .nav-links { display: flex; }

  .hero {
    flex-direction: row; padding-top: 0; min-height: 100vh;
  }
  .hero-text {
    flex: 0 0 40%;
    padding: 9rem 3rem 5rem 3.5rem;
  }
  .hero-visual {
    flex: 0 0 60%;
    padding: 5.9rem 4rem 4rem;
    border-left: none;
  }
  .hero-video, .hero-video-placeholder { max-width: none; width: 100%; }
  .savings-calc { max-width: none; }

  .features { padding: 6rem 3.5rem; }
  .sec-h2 { font-size: clamp(3rem, 4vw, 5.5rem); }
  .feat-grid { grid-template-columns: repeat(3, 1fr); }
  .feat-cell { border-right: none !important; border-bottom: 2px solid var(--ink) !important; }
  .feat-cell:nth-child(3n+1),
  .feat-cell:nth-child(3n+2) { border-right: 2px solid var(--ink) !important; }
  .feat-cell:nth-last-child(-n+3) { border-bottom: none !important; }

  .callout {
    margin: 0; border-radius: 0; padding: 5rem 3.5rem;
    display: flex; align-items: center; justify-content: space-between; gap: 4rem;
  }
  .callout-text { max-width: 60%; }

  .pricing { padding: 6rem 3.5rem; }
  .pricing-cards { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .cta-band { padding: 7rem 3.5rem; }
  footer {
    flex-direction: row; justify-content: space-between;
    padding: 2rem 3.5rem; text-align: left;
  }

  .values-grid { grid-template-columns: 1fr 1fr 1fr; }
  .theatre-grid { grid-template-columns: repeat(3, 1fr); }
  .int-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-layout { grid-template-columns: 1.2fr 0.8fr; }

  .theatres-page { padding: 8rem 3.5rem 4rem; }
  .contact-page { padding: 8rem 3.5rem 4rem; }
  .about-hero { padding: 7rem 3.5rem 0.5rem; }
  .about-values { padding: 3.5rem 3.5rem; }

  /* Landing pages — desktop */
  .lp-hero { padding: 7.5rem 3.5rem 3rem; }
  .lp-section { padding: 6rem 3.5rem; }
  .lp-problems-grid { grid-template-columns: 1fr 1fr 1fr; }
  .lp-features-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
  .lp-alt-grid { grid-template-columns: 1fr 1fr 1fr; }
  .lp-disclaimer { padding: 1.5rem 3.5rem; }
}


/* ═══════════════════════════════════════
   WIDE ≥ 1280px
═══════════════════════════════════════ */
@media (min-width: 1280px) {
  .hero-text { padding-left: max(3.5rem, calc((100vw - 1200px) / 2)); }
  .features, .pricing, .cta-band, footer,
  .theatres-page, .contact-page, .about-values,
  .integrations-page, .legal-page, .not-found,
  .lp-section, .lp-hero {
    padding-left: max(3.5rem, calc((100vw - 1200px) / 2));
    padding-right: max(3.5rem, calc((100vw - 1200px) / 2));
  }
  .callout {
    padding-left: max(3.5rem, calc((100vw - 1200px) / 2));
    padding-right: max(3.5rem, calc((100vw - 1200px) / 2));
  }
}

/* ═══════════════════════════════════════
   FEATURE PAGE
═══════════════════════════════════════ */
.feature-hero {
  padding: 8rem 1.5rem 3rem;
  background: var(--ink);
  color: var(--off);
  text-align: center;
}
.feature-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}
.feature-label {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--coral);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.feature-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 1rem;
}
.feature-desc {
  font-size: 1.1rem;
  color: rgba(253,250,246,0.6);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.feature-video {
  max-width: 720px;
  margin: 0 auto;
}
.feature-video video {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}
.feature-video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}
.feature-video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

/* Key Features Grid */
.feature-keys {
  padding: 4rem 1.5rem;
  background: var(--warm-dark);
  color: var(--off);
}
.feature-keys-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 2.5rem;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.feature-card {
  text-align: center;
  padding: 1.5rem 1rem;
}
.feature-card-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: rgba(232,85,42,0.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  overflow: hidden;
}
.feature-card-icon img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 0.88rem;
  color: rgba(253,250,246,0.5);
  line-height: 1.5;
}

/* Rich Content */
.feature-content {
  padding: 4rem 1.5rem;
  background: var(--ink);
  color: var(--off);
}
.feature-content-inner {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
}
.feature-content-inner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  margin: 2rem 0 1rem;
}
.feature-content-inner h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem;
}
.feature-content-inner p {
  margin-bottom: 1rem;
  color: rgba(253,250,246,0.7);
}
.feature-content-inner ul,
.feature-content-inner ol {
  margin: 0 0 1rem 1.25rem;
  color: rgba(253,250,246,0.7);
}
.feature-content-inner li {
  margin-bottom: 0.4rem;
}
.feature-content-inner a {
  color: var(--coral);
  text-decoration: underline;
}
.feature-content-inner blockquote {
  border-left: 3px solid var(--coral);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  background: rgba(232,85,42,0.05);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: rgba(253,250,246,0.6);
}
.feature-content-inner img {
  border-radius: 8px;
  margin: 1rem 0;
}
.feature-content-inner figure {
  margin: 1.5rem 0;
  text-align: center;
}
.feature-content-inner figure img {
  max-width: 100%;
  border-radius: 8px;
}
.feature-content-inner figcaption {
  font-size: 0.85rem;
  color: rgba(253,250,246,0.5);
  margin-top: 0.5rem;
}
.feature-content-inner .content-callout {
  background: rgba(255,193,7,0.08);
  border-left: 3px solid #ffc107;
  padding: 1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
}
.feature-content-inner .content-callout strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--off);
}
.feature-content-inner .content-callout p {
  margin: 0;
}
.feature-content-inner .content-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 1.5rem 0;
  border-radius: 8px;
}
.feature-content-inner .content-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.feature-content-inner .content-embed-caption {
  font-size: 0.85rem;
  color: rgba(253,250,246,0.5);
  text-align: center;
  margin-top: 0.5rem;
}
.feature-content-inner table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.feature-content-inner table th,
.feature-content-inner table td {
  border: 1px solid rgba(253,250,246,0.15);
  padding: 0.6rem 0.85rem;
  color: rgba(253,250,246,0.7);
}
.feature-content-inner table th {
  font-weight: 600;
  color: var(--off);
  background: rgba(253,250,246,0.05);
}
.feature-content-inner hr {
  border: none;
  border-top: 1px solid rgba(253,250,246,0.15);
  margin: 2rem 0;
}

/* Feature page responsive */
@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .feature-hero {
    padding: 6rem 1.25rem 2rem;
  }
}
@media (max-width: 480px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Homepage feature links ── */
a.feat-cell {
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
a.feat-cell:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ═══════════════════════════════════════
   BLOG
═══════════════════════════════════════ */
.blog-listing {
  padding: 8rem 1.25rem 4rem;
  max-width: 1100px; margin: 0 auto;
}
.blog-header {
  display: flex; flex-direction: column; gap: 1.5rem;
  margin-bottom: 2rem;
}
.blog-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1; letter-spacing: 0.02em;
  color: var(--ink);
}
.blog-search {
  display: flex; gap: 0.5rem; max-width: 400px;
}
.blog-search input {
  flex: 1; padding: 0.6rem 1rem; border: 2px solid var(--sand);
  border-radius: 6px; font-size: 0.88rem; font-family: 'Outfit', sans-serif;
  background: var(--off); color: var(--ink); transition: border-color 0.3s;
}
.blog-search input:focus { outline: none; border-color: var(--coral); }
.blog-search button {
  padding: 0.6rem 1.25rem; background: var(--coral); color: var(--off);
  border: none; border-radius: 6px; font-size: 0.85rem; font-weight: 600;
  cursor: pointer; transition: background 0.3s;
}
.blog-search button:hover { background: var(--coral-dark); }
.blog-categories {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.blog-cat-pill {
  padding: 0.4rem 1rem; border-radius: 20px;
  font-size: 0.78rem; font-weight: 600; text-decoration: none;
  background: var(--sand); color: var(--ink);
  transition: all 0.3s;
}
.blog-cat-pill:hover { background: var(--coral); color: var(--off); }
.blog-cat-pill.active { background: var(--coral); color: var(--off); }
.blog-empty {
  text-align: center; color: var(--stone); padding: 4rem 0;
  font-size: 1.1rem;
}
.blog-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
}
.blog-card {
  background: var(--off); border: 2px solid var(--sand);
  border-radius: 12px; overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.blog-card:hover {
  border-color: var(--coral);
  box-shadow: 0 8px 24px rgba(232,85,42,0.08);
}
.blog-card-img { display: block; }
.blog-card-img img {
  width: 100%; height: 200px; object-fit: cover;
  display: block;
}
.blog-card-body { padding: 1.5rem; }
.blog-card-cat {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--coral); text-decoration: none; margin-bottom: 0.5rem;
}
.blog-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; line-height: 1.1; letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}
.blog-card-title a { color: var(--ink); text-decoration: none; }
.blog-card-title a:hover { color: var(--coral); }
.blog-card-excerpt {
  font-size: 0.88rem; color: var(--stone); line-height: 1.6;
  margin-bottom: 1rem;
}
.blog-card-meta {
  display: flex; gap: 1rem; font-size: 0.75rem; color: var(--stone);
  margin-bottom: 0.75rem;
}
.blog-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.blog-tag {
  padding: 0.2rem 0.6rem; border-radius: 4px;
  font-size: 0.7rem; font-weight: 600;
  background: var(--pale); color: var(--stone);
  text-decoration: none; transition: all 0.2s;
}
.blog-tag:hover { background: var(--coral); color: var(--off); }
.blog-pagination {
  display: flex; justify-content: center; align-items: center;
  gap: 1.5rem; margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid var(--sand);
}
.blog-pagination a {
  color: var(--coral); text-decoration: none; font-weight: 600;
  font-size: 0.9rem;
}
.blog-pagination a:hover { text-decoration: underline; }
.blog-pagination-info { font-size: 0.82rem; color: var(--stone); }

/* Single post */
.blog-post {
  padding: 8rem 1.25rem 4rem;
  max-width: 800px; margin: 0 auto;
}
.blog-back {
  display: inline-block; font-size: 0.82rem; color: var(--coral);
  text-decoration: none; margin-bottom: 1.5rem; font-weight: 600;
}
.blog-back:hover { text-decoration: underline; }
.blog-post-cat {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--coral); text-decoration: none; margin-bottom: 0.75rem;
}
.blog-post-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: 0.95; letter-spacing: 0.02em;
  color: var(--ink); margin-bottom: 1rem;
}
.blog-post-meta {
  display: flex; gap: 1.5rem; font-size: 0.85rem; color: var(--stone);
  margin-bottom: 2rem;
}
.blog-post-hero { margin-bottom: 2.5rem; }
.blog-post-hero img {
  width: 100%; border-radius: 12px; display: block;
}
.blog-post-content {
  font-size: 1.05rem; line-height: 1.8; color: var(--ink);
}
.blog-post-content h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; margin: 2rem 0 1rem; }
.blog-post-content h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; margin: 1.5rem 0 0.75rem; }
.blog-post-content p { margin-bottom: 1.25rem; }
.blog-post-content ul, .blog-post-content ol { margin-bottom: 1.25rem; padding-left: 1.5rem; }
.blog-post-content li { margin-bottom: 0.4rem; }
.blog-post-content blockquote {
  border-left: 4px solid var(--coral); padding: 1rem 1.5rem;
  margin: 1.5rem 0; background: var(--pale); border-radius: 0 8px 8px 0;
  font-style: italic; color: var(--stone);
}
.blog-post-content img { max-width: 100%; border-radius: 8px; margin: 1rem 0; }
.blog-post-content table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.blog-post-content th, .blog-post-content td { border: 1px solid var(--sand); padding: 0.6rem 1rem; text-align: left; }
.blog-post-content th { background: var(--pale); font-weight: 600; }
.blog-post-tags { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--sand); display: flex; flex-wrap: wrap; gap: 0.5rem; }

@media (min-width: 640px) {
  .blog-listing { padding: 8rem 2.5rem 4rem; }
  .blog-header { flex-direction: row; justify-content: space-between; align-items: flex-end; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-post { padding: 8rem 2.5rem 4rem; }
}
@media (min-width: 1024px) {
  .blog-listing { padding: 8rem 3.5rem 4rem; }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-post { padding: 8rem 3.5rem 4rem; }
}


/* ═══════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════ */
.cookie-overlay {
    position: fixed; inset: 0;
    z-index: 175;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    pointer-events: none;
    animation: cookieFadeIn 0.5s ease forwards;
}
@keyframes cookieFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.cookie-banner {
    position: fixed; left: 0; right: 0; bottom: 0;
    z-index: 180;
    background: var(--ink); color: var(--off);
    border-top: 4px solid var(--coral);
    box-shadow: 0 -16px 48px rgba(0,0,0,0.4);
    animation: cookieSlideUp 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes cookieSlideUp {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
}
.cookie-banner-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 1.75rem 1.5rem;
    display: flex; flex-wrap: wrap; align-items: center;
    gap: 1.5rem 2rem;
}
.cookie-banner-text {
    flex: 1 1 360px;
}
.cookie-banner-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem; line-height: 1; letter-spacing: 0.04em;
    color: var(--off);
    margin: 0 0 0.5rem;
}
.cookie-banner-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(253,250,246,0.88);
}
.cookie-banner-text strong { color: var(--off); font-weight: 600; }
.cookie-banner-text a {
    color: var(--coral-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cookie-banner-text a:hover { color: var(--off); }

.cookie-banner-actions {
    display: flex; align-items: center; gap: 0.6rem;
    flex-wrap: wrap;
}
.cookie-btn {
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem; font-weight: 600; letter-spacing: 0.01em;
    padding: 0.85rem 1.6rem; border-radius: 6px;
    cursor: pointer; border: 2px solid transparent;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.cookie-btn-reject {
    background: transparent; color: var(--off);
    border-color: rgba(253,250,246,0.35);
}
.cookie-btn-reject:hover {
    border-color: var(--off); background: rgba(253,250,246,0.08);
}
.cookie-btn-accept {
    background: var(--coral); color: var(--off);
    border-color: var(--coral);
    box-shadow: 0 4px 14px rgba(232,85,42,0.35);
}
.cookie-btn-accept:hover {
    background: var(--coral-light); border-color: var(--coral-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(232,85,42,0.5);
}
.cookie-banner-close {
    background: transparent; border: none; color: rgba(253,250,246,0.55);
    font-size: 1.6rem; line-height: 1; padding: 0.3rem 0.55rem;
    cursor: pointer; transition: color 0.2s;
}
.cookie-banner-close:hover { color: var(--off); }

@media (max-width: 640px) {
    .cookie-banner-inner { flex-direction: column; align-items: stretch; gap: 0.85rem; }
    .cookie-banner-actions { justify-content: space-between; }
    .cookie-btn { flex: 1; }
    .cookie-banner-close { flex: 0 0 auto; }
}


/* ═══════════════════════════════════════
   404 / NOT FOUND
═══════════════════════════════════════ */
.not-found {
    padding: 8rem 1.25rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.not-found-spotlight {
    position: absolute;
    top: 30%; left: 50%;
    width: 720px; height: 720px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center, rgba(232,85,42,0.18) 0%, rgba(232,85,42,0.05) 35%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.not-found > *:not(.not-found-spotlight) { position: relative; z-index: 1; }

.not-found .sec-eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
}
.not-found-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 9vw, 6rem);
    line-height: 0.9;
    letter-spacing: 0.02em;
    color: var(--ink);
    margin-bottom: 1rem;
}
.not-found-heading .c {
    color: var(--coral);
    display: inline-block;
    transform-origin: 50% 0;
    animation: notFoundDrop 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}
@keyframes notFoundDrop {
    0%   { opacity: 0; transform: translateY(-110%) rotate(-14deg); }
    35%  { opacity: 1; transform: translateY(18%) rotate(9deg); }
    55%  { transform: translateY(-6%) rotate(-5deg); }
    72%  { transform: translateY(3%) rotate(2deg); }
    87%  { transform: translateY(-1%) rotate(-1deg); }
    100% { opacity: 1; transform: translateY(0) rotate(0); }
}

/* Orchestrated entrance: lines fade up before .c drops, lede + cards follow */
.nf-fade {
    display: inline-block;
    opacity: 0;
    animation: nfFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.nf-fade-1 { animation-delay: 0s; }
.nf-fade-2 { animation-delay: 0.18s; }
@keyframes nfFadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}
.not-found-lede {
    opacity: 0;
    animation: nfFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 1.15s both;
}
.nf-card {
    opacity: 0;
    animation: nfFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.nf-card:nth-child(1) { animation-delay: 1.30s; }
.nf-card:nth-child(2) { animation-delay: 1.40s; }
.nf-card:nth-child(3) { animation-delay: 1.50s; }
.nf-card:nth-child(4) { animation-delay: 1.60s; }

@media (prefers-reduced-motion: reduce) {
    .not-found-heading .c,
    .nf-fade,
    .not-found-lede,
    .nf-card { animation: none; opacity: 1; }
}

.not-found-lede {
    max-width: 540px;
    margin: 0 auto 2.5rem;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--stone);
}

.not-found-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 720px;
    margin: 0 auto;
}
.nf-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 1.25rem 1.4rem;
    background: var(--off);
    border: 2px solid var(--sand);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.nf-card:hover {
    border-color: var(--coral);
    transform: translateY(-4px) rotate(-0.4deg);
    box-shadow: 0 12px 28px rgba(232,85,42,0.12);
}
.nf-card-eyebrow {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 0.4rem;
}
.nf-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.45rem;
    letter-spacing: 0.02em;
    color: var(--ink);
}


/* ═══════════════════════════════════════
   DEMO POPUP
═══════════════════════════════════════ */
.demo-overlay {
    position: fixed; inset: 0; z-index: 250;
    background: rgba(0,0,0,0.65);
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    animation: demoFadeIn 0.3s ease;
}
@keyframes demoFadeIn { from { opacity: 0; } to { opacity: 1; } }

.demo-modal {
    background: var(--off); border-radius: 16px;
    width: 94vw; max-width: 440px;
    max-height: 90vh; overflow-y: auto;
    position: relative;
    box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}
.demo-close {
    position: absolute; top: 0.75rem; right: 0.85rem;
    background: none; border: none;
    font-size: 1.6rem; line-height: 1;
    cursor: pointer; z-index: 2;
    color: var(--stone);
    transition: color 0.2s;
}
.demo-close:hover { color: var(--ink); }

/* Step 1: Hook (dark background) */
#demoStep1 {
    background: var(--ink); color: var(--off);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
}
#demoStep1 .demo-close { color: rgba(253,250,246,0.5); }
#demoStep1 .demo-close:hover { color: var(--off); }
.demo-quote {
    font-style: italic; font-size: 1.3rem;
    line-height: 1.4; margin-bottom: 0.25rem;
    color: rgba(253,250,246,0.9);
}
.demo-attribution {
    font-size: 0.78rem; color: var(--stone);
    margin-bottom: 1.75rem;
}
.demo-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem; letter-spacing: 0.04em;
    color: var(--coral); margin-bottom: 0.5rem;
}
.demo-body {
    font-size: 0.92rem; line-height: 1.55;
    color: rgba(253,250,246,0.8);
    margin-bottom: 1.5rem;
}

/* Steps 2-5: Light background */
#demoStep2, #demoStep3, #demoStep4, #demoStep5 {
    padding: 2rem;
}
.demo-step-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem; letter-spacing: 0.03em;
    margin-bottom: 1rem;
}
.demo-tz { font-size: 0.75rem; color: var(--stone); text-align: center; margin-top: 0.5rem; }

.demo-cta {
    display: block; width: 100%;
    background: var(--coral); color: var(--off);
    border: none; border-radius: 8px;
    padding: 0.85rem; font-size: 0.95rem;
    font-weight: 600; cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: background 0.2s;
}
.demo-cta:hover { background: var(--coral-light); }

.demo-back {
    display: inline-block; margin-top: 1rem;
    font-size: 0.82rem; color: var(--stone);
    text-decoration: none;
}
.demo-back:hover { color: var(--ink); }

/* Mini calendar */
.demo-calendar { user-select: none; }
.demo-cal-nav {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 0.75rem;
}
.demo-cal-nav button {
    background: none; border: none; cursor: pointer;
    font-size: 1.2rem; color: var(--stone); padding: 0.25rem 0.5rem;
    transition: color 0.2s;
}
.demo-cal-nav button:hover { color: var(--ink); }
.demo-cal-nav button:disabled { opacity: 0.3; cursor: default; }
.demo-cal-month {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem; letter-spacing: 0.04em;
}
.demo-cal-grid {
    display: grid; grid-template-columns: repeat(7, 1fr);
    gap: 4px; text-align: center;
}
.demo-cal-header {
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--stone);
    padding: 0.3rem 0;
}
.demo-cal-day {
    aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
    font-size: 0.82rem; border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.15s;
}
.demo-cal-day.available {
    cursor: pointer; border-color: var(--sand);
    font-weight: 600;
}
.demo-cal-day.available:hover {
    border-color: var(--coral); background: var(--coral-pale);
}
.demo-cal-day.unavailable { color: var(--stone); opacity: 0.4; }
.demo-cal-day.today { box-shadow: inset 0 0 0 2px var(--coral); }
.demo-cal-day.selected {
    background: var(--coral); color: var(--off);
    border-color: var(--coral);
}

/* Time slots */
.demo-slots {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
    margin: 1rem 0;
}
.demo-slot-btn {
    padding: 0.55rem 1rem; border-radius: 999px;
    border: 2px solid var(--sand);
    background: var(--off); color: var(--ink);
    font-size: 0.85rem; font-weight: 600;
    cursor: pointer; font-family: 'Outfit', sans-serif;
    transition: all 0.15s;
}
.demo-slot-btn:hover {
    border-color: var(--coral); background: var(--coral-pale);
}
.demo-slot-btn.selected {
    background: var(--coral); color: var(--off); border-color: var(--coral);
}

.demo-selected-date {
    font-size: 0.85rem; color: var(--stone); margin-bottom: 0.5rem;
}
.demo-confirm-line {
    font-size: 0.92rem; font-weight: 600; margin-bottom: 1rem;
    color: var(--ink);
}

/* Step 4: Form */
#demoForm label {
    display: block; font-size: 0.78rem; font-weight: 600;
    margin: 0.75rem 0 0.25rem; color: var(--ink);
}
#demoForm input[type="text"],
#demoForm input[type="email"],
#demoForm input[type="tel"],
#demoForm textarea {
    width: 100%; padding: 0.65rem 0.85rem;
    border: 2px solid var(--sand); border-radius: 6px;
    font-size: 0.88rem; font-family: 'Outfit', sans-serif;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
#demoForm input:focus,
#demoForm textarea:focus {
    outline: none; border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(232,85,42,0.1);
}
#demoForm .demo-cta { margin-top: 1rem; }
.demo-error {
    margin-top: 0.75rem; padding: 0.6rem; border-radius: 6px;
    background: rgba(220,53,69,0.08); color: #c0392b;
    font-size: 0.82rem;
}

/* Step 5: Success */
.demo-success-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(74,222,128,0.15); color: #1A7A1A;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; font-weight: 700;
    margin: 0 auto 1rem;
}

@media (max-width: 480px) {
    .demo-modal { border-radius: 12px 12px 0 0; align-self: flex-end; max-height: 95vh; }
    #demoStep1 { border-radius: 12px 12px 0 0; padding: 2rem 1.5rem; }
}
