/* ============================================
   CONTENT KITCHEN - STYLES
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #fafafa;
  --fg: #0a0a0a;
  --accent: #ce064e;
  --accent-dark: #a8053f;
  --accent-light: #fce4ec;
  --grey-50: #f7f7f7;
  --grey-100: #eeeeee;
  --grey-200: #e0e0e0;
  --grey-300: #c8c8c8;
  --grey-400: #999999;
  --grey-500: #6e6e6e;
  --grey-600: #4a4a4a;
  --grey-700: #333333;
  --grey-800: #1a1a1a;
  --grey-900: #0a0a0a;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Outfit', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

::selection {
  background: var(--accent);
  color: white;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(206,6,78,0.25); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(206,6,78,0.5); }

a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input { font-family: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.font-display {
  font-family: 'DM Serif Display', Georgia, serif;
}

/* --- Grain Overlay --- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

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

@media (min-width: 1024px) {
  .container { padding: 0 40px; }
}

/* --- 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);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scroll-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);
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Animations --- */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -50px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(40px, 10px) scale(1.02); }
}

@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.italic { font-style: italic; }
.text-accent { color: var(--accent); }

.text-gradient {
  background: linear-gradient(135deg, #ce064e 0%, #ff4081 50%, #ce064e 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease-in-out infinite;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 0 rgba(0,0,0,0.04);
}

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

@media (min-width: 1024px) {
  .navbar-inner { height: 80px; }
}

.nav-logo {
  position: relative;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s;
}

.nav-logo:hover { transform: scale(1.05); }

.nav-logo img {
  height: 32px;
  width: auto;
}

@media (min-width: 640px) {
  .nav-logo img { height: 36px; }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 40px;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-link {
  position: relative;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--grey-500);
  transition: color 0.3s;
}

.nav-link:hover { color: var(--fg); }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width 0.3s;
}

.nav-link:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--fg);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.nav-cta:hover {
  box-shadow: 0 4px 20px rgba(10,10,10,0.2);
}

.nav-cta .cta-bg {
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateY(100%);
  transition: transform 0.3s;
}

.nav-cta:hover .cta-bg { transform: translateY(0); }

.nav-cta span,
.nav-cta svg { position: relative; z-index: 1; }

.nav-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.nav-cta:hover svg { transform: translateX(2px); }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  position: relative;
  z-index: 60;
}

@media (min-width: 768px) {
  .hamburger { display: none; }
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--fg);
  transition: all 0.3s;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: white;
  z-index: 55;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.mobile-menu.open { display: flex; }

@media (min-width: 768px) {
  .mobile-menu { display: none !important; }
}

.mobile-menu a {
  font-family: 'DM Serif Display', serif;
  font-size: 1.875rem;
  color: var(--fg);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s;
}

.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.3s; }

.mobile-menu .mobile-cta {
  display: inline-block;
  padding: 12px 32px;
  background: var(--accent);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9999px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s 0.35s;
}

.mobile-menu.open .mobile-cta { opacity: 1; transform: translateY(0); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: white;
}

.hero-blob-1 {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: rgba(206,6,78,0.06);
  filter: blur(100px);
  animation: blob-float 12s ease-in-out infinite;
}

.hero-blob-2 {
  position: absolute;
  bottom: -200px;
  left: -150px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(206,6,78,0.04);
  filter: blur(80px);
  animation: blob-float 15s ease-in-out infinite;
  animation-delay: -5s;
}

.hero-blob-3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: rgba(238,238,238,0.5);
  filter: blur(120px);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
}

.hero-content {
  position: relative;
  padding: 128px 0 120px;
  max-width: 900px;
}

@media (min-width: 1024px) {
  .hero-content { padding: 160px 0 128px; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(206,6,78,0.2);
  background: rgba(206,6,78,0.06);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  animation: fadeInUp 0.6s forwards;
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-badge .ping-container {
  position: relative;
  display: flex;
  width: 8px;
  height: 8px;
}

.hero-badge .ping {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.75;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.hero-badge .ping-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.hero h1 {
  margin-top: 32px;
  font-family: 'DM Serif Display', serif;
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.8s 0.15s forwards;
}

@media (min-width: 640px) { .hero h1 { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 5.25rem; } }

.hero h1 .accent-text {
  font-style: italic;
}

.hero-tagline {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.7s 0.3s forwards;
}

.hero-tagline .line {
  height: 1px;
  width: 40px;
  background: var(--accent);
}

.hero-tagline p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.hero-subline {
  margin-top: 24px;
  font-size: 1.125rem;
  color: var(--grey-500);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.7s 0.4s forwards;
}

@media (min-width: 640px) { .hero-subline { font-size: 1.25rem; } }

.hero-subline .lighter { color: var(--grey-400); }

.hero-pricing-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  background: rgba(206,6,78,0.08);
  padding: 10px 20px;
  border-radius: 40px;
  border: 1px solid rgba(206,6,78,0.15);
  transition: all 0.25s ease;
}

.hero-pricing-link:hover {
  background: rgba(206,6,78,0.14);
  gap: 10px;
}

.hero-pricing-link svg {
  animation: gentle-bounce 2s ease-in-out infinite;
}

@keyframes gentle-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

.hero-form-wrapper {
  margin-top: 48px;
  max-width: 560px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.7s 0.55s forwards;
}

.hero-form-label {
  font-size: 0.75rem;
  color: var(--grey-400);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeInUp 0.7s 1.5s forwards;
}

@media (min-width: 768px) {
  .scroll-indicator { bottom: 32px; }
}

.scroll-indicator span {
  font-size: 0.65rem;
  color: var(--grey-400);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
}

.scroll-indicator .scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--grey-300), transparent);
  animation: float 2s ease-in-out infinite;
}

/* ============================================
   LEAD FORM
   ============================================ */
.lead-form { display: flex; flex-direction: column; gap: 12px; }

.lead-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 640px) {
  .lead-form .form-row { flex-direction: row; }
}

.lead-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 0.875rem;
  outline: none;
  transition: all 0.3s;
}

.lead-form.hero-form input {
  background: white;
  border: 1px solid var(--grey-200);
  color: var(--fg);
}

.lead-form.hero-form input::placeholder { color: var(--grey-400); }
.lead-form.hero-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(206,6,78,0.08);
}

.lead-form.footer-form input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
}

.lead-form.footer-form input::placeholder { color: rgba(255,255,255,0.4); }
.lead-form.footer-form input:focus {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.12);
}

.lead-form .submit-btn {
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
  white-space: nowrap;
}

.lead-form.hero-form .submit-btn {
  background: var(--accent);
  color: white;
}

.lead-form.hero-form .submit-btn:hover {
  box-shadow: 0 10px 30px -8px rgba(206,6,78,0.4);
}

.lead-form.footer-form .submit-btn {
  background: white;
  color: var(--accent);
}

.lead-form.footer-form .submit-btn:hover {
  box-shadow: 0 10px 30px -8px rgba(255,255,255,0.2);
}

.lead-form .submit-btn:disabled { opacity: 0.5; }

.lead-form .submit-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.lead-form .submit-btn:hover svg { transform: translateX(2px); }

.form-error {
  font-size: 0.875rem;
  color: #ef4444;
  margin-top: 4px;
}

.form-success {
  padding: 32px;
  border-radius: 16px;
  text-align: center;
}

.form-success.hero-variant {
  background: white;
  border: 1px solid var(--grey-100);
  box-shadow: 0 8px 30px -10px rgba(0,0,0,0.06);
}

.form-success.footer-variant {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
}

.form-success .success-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(206,6,78,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.form-success .success-icon svg { width: 28px; height: 28px; color: var(--accent); }

.form-success h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.125rem;
}

.form-success p {
  font-size: 0.875rem;
  margin-top: 8px;
}

.submit-btn .btn-text,
.submit-btn .btn-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.spinner {
  width: 16px;
  height: 16px;
  animation: spin 1s linear infinite;
}

/* Global section label */
.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  display: block;
}

.section-heading {
  margin-top: 24px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--fg);
}

@media (min-width: 640px) { .section-heading { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section-heading { font-size: 3rem; } }

/* ============================================
   STATS STRIP (MARQUEE)
   ============================================ */
.stats-strip {
  border-top: 1px solid var(--grey-100);
  border-bottom: 1px solid var(--grey-100);
  background: var(--fg);
  padding: 20px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  margin: 0 32px;
  flex-shrink: 0;
}

.marquee-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 16px;
  flex-shrink: 0;
}

.marquee-item span {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem {
  padding: 96px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) { .problem { padding: 144px 0; } }

.problem-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 96px;
  background: linear-gradient(to bottom, transparent, rgba(206,6,78,0.2), transparent);
}

.problem-grid {
  display: grid;
  gap: 64px;
  align-items: center;
}

@media (min-width: 1024px) {
  .problem-grid {
    grid-template-columns: 5fr 7fr;
    gap: 80px;
  }
}

.problem .section-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.problem h2 {
  margin-top: 24px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--fg);
}

@media (min-width: 640px) { .problem h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .problem h2 { font-size: 3rem; } }

.problem h2 .italic { font-style: italic; color: var(--accent); }
.problem h2 .light { color: var(--grey-500); }

.problem .body-text {
  margin-top: 32px;
  color: var(--grey-500);
  line-height: 1.8;
  font-size: 0.95rem;
}

.problem .body-text + .body-text { margin-top: 16px; }
.problem .body-text strong { color: var(--fg); font-weight: 500; }

/* Role cards */
.role-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.role-card {
  border-radius: 16px;
  border: 1px solid var(--grey-100);
  background: white;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
  cursor: default;
}

.role-card:hover {
  border-color: rgba(206,6,78,0.3);
  box-shadow: 0 8px 30px -10px rgba(206,6,78,0.12);
}

.role-card-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.role-card .num {
  font-size: 0.7rem;
  font-family: monospace;
  color: var(--grey-300);
  letter-spacing: 0.1em;
}

.role-card .role-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grey-700);
  transition: color 0.3s;
}

.role-card:hover .role-name { color: var(--fg); }

.role-card .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(251,191,36,0.6);
  transition: background 0.3s;
}

.role-card:hover .status-dot { background: var(--accent); }

.role-card-burnout {
  grid-column: 1 / -1;
  border: 2px solid rgba(206,6,78,0.2);
  background: rgba(206,6,78,0.04);
}

.role-card-burnout .num { color: rgba(206,6,78,0.5); }
.role-card-burnout .role-name { color: var(--accent); }
.role-card-burnout .status-dot {
  background: var(--accent);
  animation: ping 2s infinite;
}

/* ============================================
   OUTCOMES SECTION
   ============================================ */
.outcomes {
  padding: 96px 0;
  background: white;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) { .outcomes { padding: 144px 0; } }

.outcomes-bg-text {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  text-align: center;
  pointer-events: none;
  user-select: none;
  font-family: 'DM Serif Display', serif;
  font-size: 12rem;
  color: var(--grey-50);
  line-height: 1;
}

@media (min-width: 1024px) { .outcomes-bg-text { font-size: 18rem; } }

.outcomes .section-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.outcomes h2 {
  margin-top: 24px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--fg);
}

@media (min-width: 640px) { .outcomes h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .outcomes h2 { font-size: 3rem; } }

.outcomes h2 .italic { font-style: italic; color: var(--accent); }

.outcome-grid {
  margin-top: 64px;
  display: grid;
  gap: 20px;
}

@media (min-width: 640px) { .outcome-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .outcome-grid {
    margin-top: 80px;
    grid-template-columns: repeat(3, 1fr);
  }
}

.outcome-card {
  position: relative;
  border-radius: 24px;
  padding: 28px 28px 32px;
  transition: all 0.5s;
  cursor: default;
}

@media (min-width: 1024px) { .outcome-card { padding: 32px 32px 36px; } }

.outcome-card:hover { transform: translateY(-4px); }

.outcome-card-light {
  background: var(--grey-50);
  border: 1px solid var(--grey-100);
}

.outcome-card-light:hover {
  border-color: rgba(206,6,78,0.2);
  box-shadow: 0 20px 60px -15px rgba(206,6,78,0.08);
}

.outcome-card-dark {
  background: var(--fg);
  color: white;
}

.outcome-card-dark:hover {
  box-shadow: 0 20px 60px -15px rgba(10,10,10,0.4);
}

.outcome-card .card-num {
  font-size: 0.75rem;
  font-family: monospace;
  letter-spacing: 0.1em;
}

.outcome-card-light .card-num { color: var(--grey-300); }
.outcome-card-dark .card-num { color: rgba(255,255,255,0.3); }

.outcome-card h3 {
  margin-top: 16px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  line-height: 1.3;
}

.outcome-card-dark h3 { color: white; }

.outcome-card .card-desc {
  margin-top: 12px;
  font-size: 0.875rem;
  line-height: 1.7;
}

.outcome-card-light .card-desc { color: var(--grey-500); }
.outcome-card-dark .card-desc { color: rgba(255,255,255,0.6); }

.outcome-card .card-accent-line {
  position: absolute;
  bottom: 0;
  left: 32px;
  right: 32px;
  height: 2px;
  border-radius: 1px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.5s;
}

.outcome-card:hover .card-accent-line { opacity: 1; }

/* ============================================
   PLATFORM SECTION
   ============================================ */
.platform {
  padding: 96px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) { .platform { padding: 144px 0; } }

.platform-blob {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(206,6,78,0.03);
  filter: blur(100px);
}

.platform-grid {
  display: grid;
  gap: 64px;
  align-items: start;
}

@media (min-width: 1024px) {
  .platform-grid {
    grid-template-columns: 5fr 7fr;
    gap: 80px;
  }
}

.platform .section-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.platform h2 {
  margin-top: 24px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--fg);
}

@media (min-width: 640px) { .platform h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .platform h2 { font-size: 3rem; } }

.platform h2 .italic { font-style: italic; color: var(--accent); }

.platform .body-text {
  margin-top: 24px;
  color: var(--grey-500);
  line-height: 1.8;
  font-size: 0.95rem;
}

@media (min-width: 1024px) {
  .platform-left {
    position: sticky;
    top: 128px;
  }
}

.platform-features {
  display: grid;
  gap: 16px;
}

@media (min-width: 640px) {
  .platform-features { grid-template-columns: repeat(2, 1fr); }
}

.feature-card {
  border-radius: 16px;
  background: white;
  border: 1px solid var(--grey-100);
  padding: 24px;
  transition: all 0.5s;
}

.feature-card:hover {
  border-color: rgba(206,6,78,0.2);
  box-shadow: 0 12px 40px -10px rgba(206,6,78,0.08);
}

.feature-card .feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(206,6,78,0.07);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.feature-card:hover .feature-icon {
  background: var(--accent);
  color: white;
}

.feature-card .feature-icon svg { width: 20px; height: 20px; }

.feature-card h3 {
  margin-top: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
}

.feature-card p {
  margin-top: 8px;
  font-size: 0.875rem;
  color: var(--grey-500);
  line-height: 1.6;
}

/* Services grid */
.services-grid {
  display: grid;
  gap: 16px;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.services-cta {
  display: inline-block;
  padding: 16px 48px;
  border-radius: 12px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(206,6,78,0.3);
  transition: all 0.3s;
}

.services-cta:hover {
  background: var(--accent-dark);
  box-shadow: 0 12px 40px rgba(206,6,78,0.4);
  transform: translateY(-2px);
}

/* Dashboard mock */
.dashboard-mock {
  margin-top: 20px;
  border-radius: 16px;
  border: 1px solid var(--grey-100);
  background: white;
  padding: 24px;
  overflow: hidden;
}

@media (min-width: 1024px) { .dashboard-mock { padding: 32px; } }

.dashboard-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.dashboard-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dashboard-dots .dot:first-child { background: rgba(206,6,78,0.2); }
.dashboard-dots .dot:nth-child(2),
.dashboard-dots .dot:nth-child(3) { background: var(--grey-200); }

.dashboard-dots .url {
  margin-left: 12px;
  font-size: 0.75rem;
  font-family: monospace;
  color: var(--grey-300);
}

.dashboard-body {
  border-radius: 12px;
  background: var(--grey-50);
  border: 1px solid var(--grey-100);
  padding: 24px;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-header .skeleton-title {
  height: 12px;
  width: 128px;
  border-radius: 4px;
  background: var(--grey-200);
}

.dashboard-header .skeleton-sub {
  height: 8px;
  width: 80px;
  border-radius: 4px;
  background: var(--grey-100);
  margin-top: 8px;
}

.dashboard-header .active-badge {
  padding: 8px 16px;
  border-radius: 8px;
  background: rgba(206,6,78,0.1);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.dashboard-stat {
  border-radius: 8px;
  background: white;
  border: 1px solid var(--grey-100);
  padding: 12px;
  text-align: center;
}

.dashboard-stat .stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 1.125rem;
  color: var(--fg);
}

.dashboard-stat .stat-label {
  font-size: 0.65rem;
  color: var(--grey-400);
  margin-top: 4px;
}

.dashboard-projects {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dashboard-project {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--grey-100);
  padding: 12px 16px;
}

.dashboard-project-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dashboard-project .project-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dashboard-project .project-name {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--grey-700);
}

.dashboard-project .project-status {
  font-size: 0.65rem;
  color: var(--grey-400);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: 96px 0;
  background: var(--bg);
}

@media (min-width: 1024px) { .how-it-works { padding: 144px 0; } }

.how-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 64px;
}

@media (min-width: 1024px) {
  .how-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 80px;
  }
}

.how-it-works .section-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.how-it-works h2 {
  margin-top: 24px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--fg);
}

@media (min-width: 640px) { .how-it-works h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .how-it-works h2 { font-size: 3rem; } }

.how-it-works h2 .italic { font-style: italic; color: var(--accent); }

.how-header-right {
  color: var(--grey-500);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 400px;
}

@media (min-width: 1024px) { .how-header-right { text-align: right; } }

.steps-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 640px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }

.step-card {
  border-radius: 24px;
  background: white;
  border: 1px solid var(--grey-100);
  padding: 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.5s;
}

@media (min-width: 1024px) { .step-card { padding: 32px; } }

.step-card:hover {
  box-shadow: 0 20px 60px -15px rgba(206,6,78,0.1);
  border-color: rgba(206,6,78,0.2);
}

.step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.25rem;
  color: var(--grey-100);
  transition: color 0.5s;
}

.step-card:hover .step-num { color: rgba(206,6,78,0.2); }

.step-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.step-arrow svg {
  width: 14px;
  height: 14px;
  color: var(--grey-300);
  transition: color 0.3s;
}

.step-card:hover .step-arrow {
  border-color: var(--accent);
  background: var(--accent);
}

.step-card:hover .step-arrow svg { color: white; }

.step-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--fg);
}

.step-subtitle {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.step-card .step-desc {
  margin-top: 16px;
  font-size: 0.875rem;
  color: var(--grey-500);
  line-height: 1.7;
  flex: 1;
}

/* ============================================
   SOCIAL PROOF
   ============================================ */
.social-proof {
  padding: 96px 0;
  background: var(--fg);
  color: white;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) { .social-proof { padding: 144px 0; } }

.social-proof-dots {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0);
  background-size: 80px 80px;
}

.social-proof-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(206,6,78,0.06);
  filter: blur(120px);
}

.social-proof .section-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.social-proof h2 {
  margin-top: 24px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.1;
}

@media (min-width: 640px) { .social-proof h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .social-proof h2 { font-size: 3rem; } }

.social-proof h2 .italic { font-style: italic; color: var(--accent); }

.metrics-grid {
  margin-top: 64px;
  display: grid;
  gap: 24px;
}

@media (min-width: 640px) {
  .metrics-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 80px;
  }
}

.metric-card {
  text-align: center;
  padding: 32px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
}

@media (min-width: 1024px) { .metric-card { padding: 40px; } }

.metric-card .metric-value {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: var(--accent);
}

@media (min-width: 1024px) { .metric-card .metric-value { font-size: 3.75rem; } }

.metric-card .metric-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin-top: 12px;
}

.metric-card .metric-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

/* Testimonials */
.testimonials-grid {
  margin-top: 64px;
  display: grid;
  gap: 20px;
}

@media (min-width: 640px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  padding: 24px;
  position: relative;
}

.testimonial-card .quote-mark {
  font-family: 'DM Serif Display', serif;
  font-size: 2.25rem;
  color: rgba(206,6,78,0.3);
  line-height: 1;
  position: absolute;
  top: 16px;
  left: 24px;
}

.testimonial-card .quote-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  font-style: normal;
  line-height: 1.7;
  padding-top: 32px;
}

.testimonial-author {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(206,6,78,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
}

.testimonial-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

.testimonial-role {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: 96px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) { .pricing { padding: 144px 0; } }

.pricing .section-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.pricing .section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.pricing h2 {
  margin-top: 24px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--fg);
}

@media (min-width: 640px) { .pricing h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .pricing h2 { font-size: 3rem; } }

.pricing h2 .italic { font-style: italic; color: var(--accent); }

.pricing .section-sub {
  margin-top: 24px;
  color: var(--grey-500);
  font-size: 0.95rem;
}

.pricing-grid {
  margin-top: 64px;
  display: grid;
  gap: 20px;
}

@media (min-width: 640px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 80px;
  }
}

.plan-card {
  position: relative;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.5s;
}

@media (min-width: 1024px) { .plan-card { padding: 32px; } }

.plan-card:hover { transform: translateY(-4px); }

.plan-card-default {
  background: white;
  border: 1px solid var(--grey-100);
}

.plan-card-default:hover {
  border-color: rgba(206,6,78,0.2);
  box-shadow: 0 20px 60px -15px rgba(206,6,78,0.08);
}

.plan-card-highlighted {
  background: var(--accent);
  color: white;
  box-shadow: 0 25px 60px -15px rgba(206,6,78,0.3);
  z-index: 10;
}

@media (min-width: 1024px) {
  .plan-card-highlighted { transform: scale(1.05); }
  .plan-card-highlighted:hover { transform: scale(1.05) translateY(-4px); }
}

.plan-card-dark {
  background: var(--fg);
  color: white;
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  padding: 4px 16px;
  background: white;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.plan-name {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.plan-card-default .plan-name { color: var(--grey-400); }
.plan-card-highlighted .plan-name,
.plan-card-dark .plan-name { color: rgba(255,255,255,0.6); }

.plan-price {
  margin-top: 16px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.plan-price .currency {
  font-size: 0.75rem;
  align-self: flex-start;
  margin-top: 4px;
}

.plan-price .amount {
  font-family: 'DM Serif Display', serif;
  font-size: 1.875rem;
}

@media (min-width: 1024px) { .plan-price .amount { font-size: 2.25rem; } }

.plan-price .period {
  font-size: 0.75rem;
  margin-left: 4px;
}

.plan-card-default .plan-price .period { color: var(--grey-400); }
.plan-card-highlighted .plan-price .period,
.plan-card-dark .plan-price .period { color: rgba(255,255,255,0.5); }

.plan-best-for {
  margin-top: 12px;
  font-size: 0.875rem;
  line-height: 1.6;
}

.plan-card-default .plan-best-for { color: var(--grey-500); }
.plan-card-highlighted .plan-best-for { color: rgba(255,255,255,0.7); }
.plan-card-dark .plan-best-for { color: rgba(255,255,255,0.5); }

.plan-divider {
  margin: 24px 0;
  height: 1px;
}

.plan-card-default .plan-divider { background: var(--grey-100); }
.plan-card-highlighted .plan-divider { background: rgba(255,255,255,0.2); }
.plan-card-dark .plan-divider { background: rgba(255,255,255,0.1); }

.plan-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.plan-feature svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-card-default .plan-feature svg { color: var(--accent); }
.plan-card-highlighted .plan-feature svg { color: rgba(255,255,255,0.7); }
.plan-card-dark .plan-feature svg { color: var(--accent); }

.plan-feature span { font-size: 0.875rem; }

.plan-card-default .plan-feature span { color: var(--grey-600); }
.plan-card-highlighted .plan-feature span { color: rgba(255,255,255,0.8); }
.plan-card-dark .plan-feature span { color: rgba(255,255,255,0.6); }

/* Shoot day add-on */
.shoot-day-addon {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px dashed var(--accent);
  background: rgba(206,6,78,0.05);
}

.plan-card-highlighted .shoot-day-addon {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.06);
}

.plan-card-dark .shoot-day-addon {
  border-color: rgba(206,6,78,0.4);
  background: rgba(206,6,78,0.08);
}

.shoot-day-addon-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.plan-card-default .shoot-day-addon-header { color: var(--accent); }
.plan-card-highlighted .shoot-day-addon-header { color: rgba(255,255,255,0.9); }
.plan-card-dark .shoot-day-addon-header { color: var(--accent); }

.plan-card-default .shoot-day-addon-header svg { color: var(--accent); }
.plan-card-highlighted .shoot-day-addon-header svg { color: rgba(255,255,255,0.7); }
.plan-card-dark .shoot-day-addon-header svg { color: var(--accent); }

.shoot-day-addon-price {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  margin: 0;
}

.plan-card-default .shoot-day-addon-price { color: var(--foreground); }
.plan-card-highlighted .shoot-day-addon-price,
.plan-card-dark .shoot-day-addon-price { color: #fff; }

.shoot-day-addon-price span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
}

.plan-card-default .shoot-day-addon-price span { color: var(--grey-400); }
.plan-card-highlighted .shoot-day-addon-price span { color: rgba(255,255,255,0.5); }
.plan-card-dark .shoot-day-addon-price span { color: rgba(255,255,255,0.5); }

.shoot-day-addon-extra {
  font-size: 0.75rem;
  margin: 4px 0 0;
}

.plan-card-default .shoot-day-addon-extra { color: var(--grey-400); }
.plan-card-highlighted .shoot-day-addon-extra { color: rgba(255,255,255,0.45); }
.plan-card-dark .shoot-day-addon-extra { color: rgba(255,255,255,0.4); }

/* Shoot day included (Studio) */
.shoot-day-included {
  border-style: solid;
  border-color: var(--accent);
  background: rgba(206,6,78,0.12);
}

.plan-card-dark .shoot-day-included {
  border-color: var(--accent);
  background: rgba(206,6,78,0.15);
}

.shoot-day-included .shoot-day-addon-header span {
  text-transform: uppercase;
}

.shoot-day-included .shoot-day-addon-extra {
  color: rgba(255,255,255,0.6);
}

.plan-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 32px;
  transition: all 0.3s;
}

.plan-card-default .plan-cta {
  background: var(--fg);
  color: white;
}

.plan-card-default .plan-cta:hover { background: var(--grey-800); }

.plan-card-highlighted .plan-cta {
  background: white;
  color: var(--accent);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.plan-card-highlighted .plan-cta:hover { background: var(--grey-100); }

.plan-card-dark .plan-cta {
  background: var(--accent);
  color: white;
}

.plan-card-dark .plan-cta:hover { background: var(--accent-dark); }

/* One-off pricing */
.oneoff-section {
  margin-top: 56px;
  text-align: center;
}

.oneoff-header {
  margin-bottom: 32px;
}

.oneoff-label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
}

.oneoff-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--fg);
  margin-top: 8px;
}

.oneoff-sub {
  font-size: 0.9375rem;
  color: var(--grey-400);
  margin-top: 8px;
  font-weight: 300;
}

.oneoff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .oneoff-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .oneoff-grid { grid-template-columns: repeat(3, 1fr); max-width: 1080px; }
}

.oneoff-card {
  background: var(--bg);
  border: 1px solid var(--grey-100);
  border-radius: 16px;
  padding: 32px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.oneoff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.oneoff-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(206,6,78,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.oneoff-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--fg);
}

.oneoff-desc {
  font-size: 0.875rem;
  color: var(--grey-400);
  margin-top: 4px;
  font-weight: 300;
}

.oneoff-price {
  margin-top: 20px;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.oneoff-price .currency {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--fg);
}

.oneoff-price .amount {
  font-size: 1.75rem;
  color: var(--fg);
}

.oneoff-price .period {
  font-size: 0.875rem;
  color: var(--grey-400);
  margin-left: 4px;
}

.oneoff-includes {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--grey-100);
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.oneoff-includes li {
  font-size: 0.8125rem;
  color: var(--grey-500);
  padding-left: 20px;
  position: relative;
}

.oneoff-includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4;
}

.pricing-footer {
  margin-top: 40px;
  text-align: center;
  font-size: 0.875rem;
  color: var(--grey-400);
  line-height: 1.8;
}

.pricing-footer .custom-note {
  color: var(--grey-500);
  margin-top: 4px;
  display: inline-block;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 96px 0;
  background: var(--bg);
}

@media (min-width: 1024px) { .faq { padding: 144px 0; } }

.faq-container {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1024px) { .faq-container { padding: 0 40px; } }

.faq .section-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.faq h2 {
  margin-top: 24px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--fg);
}

@media (min-width: 640px) { .faq h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .faq h2 { font-size: 3rem; } }

.faq h2 .italic { font-style: italic; color: var(--accent); }

.faq-list { margin-top: 56px; }

.faq-item {
  border-bottom: 1px solid rgba(224,224,224,0.6);
  transition: all 0.3s;
}

.faq-item.open {
  background: white;
  border-radius: 16px;
  border-color: transparent;
  box-shadow: 0 4px 20px -4px rgba(0,0,0,0.04);
  padding: 0 24px;
  margin-bottom: 8px;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  text-align: left;
}

.faq-question-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.faq-num {
  font-size: 0.75rem;
  font-family: monospace;
  color: var(--grey-300);
  display: none;
}

@media (min-width: 640px) { .faq-num { display: block; } }

.faq-question-text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg);
  transition: color 0.3s;
}

.faq-item.open .faq-question-text,
.faq-question:hover .faq-question-text { color: var(--accent); }

.faq-toggle {
  flex-shrink: 0;
  margin-left: 16px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grey-100);
  color: var(--grey-400);
  transition: all 0.3s;
}

.faq-item.open .faq-toggle {
  background: var(--accent);
  color: white;
  transform: rotate(135deg);
}

.faq-toggle svg { width: 14px; height: 14px; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s;
  opacity: 0;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  opacity: 1;
}

.faq-answer p {
  padding-bottom: 24px;
  font-size: 0.92rem;
  color: var(--grey-500);
  line-height: 1.8;
}

@media (min-width: 640px) { .faq-answer p { padding-left: 40px; } }

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: 96px 0;
  background: var(--accent);
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) { .final-cta { padding: 144px 0; } }

.final-cta-bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}

.final-cta-bg-text span {
  font-family: 'DM Serif Display', serif;
  font-size: 10rem;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  white-space: nowrap;
}

@media (min-width: 640px) { .final-cta-bg-text span { font-size: 16rem; } }
@media (min-width: 1024px) { .final-cta-bg-text span { font-size: 22rem; } }

.final-cta-content {
  position: relative;
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}

.final-cta h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.15;
  color: white;
}

@media (min-width: 640px) { .final-cta h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .final-cta h2 { font-size: 3rem; } }

.final-cta h2 .light { color: rgba(255,255,255,0.7); font-style: italic; }

.final-cta .cta-sub {
  margin-top: 24px;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.final-cta .form-wrapper {
  margin-top: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--fg);
  color: white;
  padding: 64px 0 32px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) { .footer { padding: 80px 0 32px; } }

.footer-accent-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(206,6,78,0.4), transparent);
}

.footer-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 4fr 2fr 3fr 3fr; gap: 32px; } }

.footer-brand img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  max-width: 280px;
}

.footer-heading {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,0.2);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.footer-links {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-links span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--accent); }

.footer-socials {
  margin-top: 32px;
  display: flex;
  gap: 8px;
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  transition: all 0.3s;
}

.footer-social:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.footer-bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
}

.footer-bottom .tagline {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
}
