/* Problem Section - Dark Theme */
.problem-section { 
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
  position: relative;
}
.problem-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,184,77,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.problem-section .muted-text {
  color: rgba(255,255,255,0.7);
}
.problem-head { 
  max-width: 860px; 
  text-align: center;
  margin: 0 auto 48px;
}
.problem-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
  max-width: 860px;
  margin: 0 auto 48px;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.problem-quote {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.problem-quote blockquote {
  font-size: 20px;
  font-style: italic;
  color: white;
  margin: 0 0 16px;
  line-height: 1.4;
}
.problem-quote cite {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-style: normal;
}

/* Typography & base */
:root {
  --bg: #f7f8fb;
  --card: #ffffff;
  --muted: #eef1f6;
  --text: #0b1220;
  --text-muted: #5b6578;
  --brand: #ffb84d; /* warm amber */
  --brand-ink: #3a2a12;
  --accent: #f3f6fb;
  --ok: #1f9d74;
  --danger: #d92d20;
  --shadow: 0 10px 30px rgba(16,24,40,.08);
  --radius: 14px;
  --radius-sm: 10px;
  --container: 1280px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 600px at 70% -10%, #e6ebf5 0%, transparent 60%), var(--bg);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 16px; }
.section { padding: 72px 0; }
.section.muted { background: var(--accent); }
.section.accent { background: var(--accent); }

/* Header */
.site-header { 
  position: sticky; 
  top: 0; 
  z-index: 100; 
  backdrop-filter: saturate(180%) blur(8px); 
  background: rgba(255,255,255,.8); 
  border-bottom: 1px solid rgba(16,24,40,.08); 
}
.header-grid { 
  display: grid; 
  grid-template-columns: auto 1fr auto auto; 
  align-items: center; 
  gap: 16px; 
  height: 64px; 
}
.brand { 
  display: inline-flex; 
  align-items: center; 
  gap: 10px; 
  font-weight: 700; 
}
.brand-mark { 
  font-size: 24px; 
}
.brand-name { 
  letter-spacing: .3px; 
}
.nav { 
  display: flex; 
  gap: 18px; 
  justify-content: center; 
}
.nav a { 
  color: var(--text-muted); 
  font-weight: 500; 
}
.nav a:hover { 
  color: var(--text); 
}

/* Mobile Navigation */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255,255,255,.95);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid rgba(16,24,40,.08);
  padding: 20px;
  flex-direction: column;
  gap: 16px;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-nav[aria-hidden="false"] {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav a {
  color: var(--text-muted);
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(16,24,40,.08);
}

.mobile-nav a:last-child {
  border-bottom: none;
  margin-top: 8px;
}

/* Buttons */
.btn { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  gap: 10px; 
  padding: 14px 18px; 
  border-radius: 999px; 
  border: 1px solid rgba(16,24,40,.08); 
  transition: transform .08s ease, background .2s ease, color .2s ease, box-shadow .2s ease; 
  font-weight: 600; 
  min-height: 44px; /* Better touch target */
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { 
  background: var(--brand); 
  color: var(--brand-ink); 
  box-shadow: 0 8px 20px rgba(255,184,77,.25); 
}
.btn-primary:hover { 
  box-shadow: 0 10px 24px rgba(255,184,77,.35); 
}
.btn-ghost { 
  background: transparent; 
  color: var(--text); 
}
.btn-small { 
  padding: 10px 14px; 
  font-size: 14px; 
  min-height: 36px;
}

/* Hero */
.hero { 
  padding: 80px 0; 
  min-height: calc(100vh - 64px); 
  display: grid; 
  align-items: center; 
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255,184,77,0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(59,130,246,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid { 
  display: grid; 
  grid-template-columns: 1.2fr 1fr; 
  gap: 48px; 
  align-items: center; 
}
.hero-badge {
  display: inline-block;
  background: rgba(255,184,77,0.15);
  color: var(--brand-ink);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255,184,77,0.3);
}
.hero h1 { 
  font-size: clamp(36px, 6vw, 64px); 
  line-height: 1.1; 
  margin: 0 0 24px; 
  letter-spacing: -0.02em; 
  font-weight: 800;
}
.lead { 
  font-size: clamp(16px, 2.5vw, 18px); 
  color: var(--text-muted); 
  margin-bottom: 26px; 
  line-height: 1.5;
}
.cta-row { 
  display: flex; 
  align-items: center;
  gap: 20px; 
  flex-wrap: wrap; 
  margin-bottom: 20px;
}
.trust-indicators {
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-text {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}
.hero-features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-top: 8px;
}
.feature-pill {
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(16,24,40,0.1);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.avatars { 
  display: inline-flex; 
}
.avatar { 
  width: 34px; 
  height: 34px; 
  display: grid; 
  place-items: center; 
  border-radius: 50%; 
  margin-left: -6px; 
  background: var(--card); 
  border: 1px solid rgba(16,24,40,.08); 
  box-shadow: var(--shadow); 
}
.tiny { 
  font-size: 12px; 
}

.hero-art { 
  position: relative; 
  order: 1; /* Show image on right side on desktop */
}
.hero-visual {
  position: relative;
}
.hero-photo { 
  width: 100%; 
  height: auto; 
  border-radius: var(--radius); 
  box-shadow: var(--shadow); 
  object-fit: cover; 
  max-height: 400px; /* Prevent image from being too tall on mobile */
}
.floating-card {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  border-radius: var(--radius-sm);
  padding: 16px;
  box-shadow: 0 20px 40px rgba(16,24,40,0.15);
  border: 1px solid rgba(16,24,40,0.08);
  max-width: 200px;
  animation: slideInFromRight 0.6s ease-out;
  transform-origin: top right;
}

/* Notification indicator */
.notification-indicator {
  width: 8px;
  height: 8px;
  background: var(--ok);
  border-radius: 50%;
  margin-left: auto;
  animation: pulse 2s infinite;
}

/* Animations */
@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(100%) scale(0.8);
  }
  50% {
    opacity: 0.8;
    transform: translateX(-10%) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}

@keyframes slideOutToLeft {
  0% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translateX(10%) scale(0.95);
  }
  100% {
    opacity: 0;
    transform: translateX(-100%) scale(0.8);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

/* Animation classes */
.floating-card.entering {
  animation: slideInFromRight 0.6s ease-out;
}

.floating-card.exiting {
  animation: slideOutToLeft 0.4s ease-in;
}

.booking-item.updating {
  animation: fadeInUp 0.5s ease-out;
}

.floating-card.new-booking {
  animation: bounce 0.8s ease-out;
}
.card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  position: relative;
}
.card-icon {
  font-size: 16px;
}
.card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.booking-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.booking-item strong {
  font-size: 14px;
  color: var(--text);
}
.booking-item span {
  font-size: 12px;
  color: var(--text-muted);
}

/* Solution Section */
.solution-section {
  background: white;
  position: relative;
}
.solution-header {
  text-align: center;
  margin-bottom: 64px;
}
.solution-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 64px;
}
.flow-step {
  text-align: center;
  position: relative;
}
.flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 24px;
  right: -24px;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), rgba(255,184,77,0.3));
}
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--brand-ink);
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 20px;
}
.step-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--text);
}
.step-content p {
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
.key-benefits {
  background: var(--accent);
  border-radius: var(--radius);
  padding: 40px;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: rgba(255,255,255,0.8);
  border-radius: var(--radius);
  border: 1px solid rgba(16,24,40,0.06);
  transition: all 0.2s ease;
}
.benefit-item:hover {
  background: rgba(255,255,255,0.95);
  border-color: rgba(16,24,40,0.1);
  transform: translateY(-2px);
}
.benefit-icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: rgba(255,184,77,0.1);
  border-radius: 50%;
  border: 1px solid rgba(255,184,77,0.2);
}
.benefit-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--text);
}
.benefit-content p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Emphasis for headline segment like "not weeks" reference */
.headline-highlight { position: relative; display: inline-block; padding: 4px 10px; background: #e7e3df; color: #2b1a07; border-radius: 6px; box-shadow: 0 2px 0 rgba(43,26,7,.15); }

/* Problem */
.two-col { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: start; }
.check-list { list-style: none; padding: 0; margin: 12px 0 0; }
.check-list li { position: relative; padding-left: 28px; margin: 12px 0; }
.check-list li:before { content: '✔'; position: absolute; left: 0; top: 0; color: var(--ok); }

.subheading { margin: 6px 0 8px; color: var(--text); }
.x-list { list-style: none; padding: 0; margin: 10px 0 0; }
.x-list li { position: relative; padding-left: 28px; margin: 12px 0; }
.x-list li:before { content: '✖'; position: absolute; left: 0; top: 0; color: #ef4444; }

.card { background: var(--card); border: 1px solid rgba(16,24,40,.08); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.card.accent { background: linear-gradient(180deg, #ffffff, #f6f9ff); }

.mini-list { list-style: none; padding: 0; margin: 10px 0 0; color: var(--text-muted); }
.mini-list li { margin: 8px 0; }

.three-cards { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 18px; 
  margin-top: 12px; 
}
.step-card { 
  padding-top: 16px; 
}
.step-head { 
  display: grid; 
  grid-template-columns: 36px 1fr; 
  gap: 10px; 
  align-items: center; 
  margin-bottom: 6px; 
}
.step-head h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

/* Features - now using step-card structure */
.features-head { margin-bottom: 10px; text-align: left; }

/* Pricing */
.pricing-section { position: relative; background: var(--bg); }
.pricing-head { 
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  text-align: center;
}
.pricing-head > div:first-child {
  text-align: center;
}
.kicker { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.billing-toggle { 
  display: inline-flex; 
  background: #ffffff; 
  border: 1px solid rgba(16,24,40,.08); 
  border-radius: 999px; 
  padding: 4px; 
  box-shadow: var(--shadow); 
  width: fit-content;
}
.toggle-btn { 
  border: 0; 
  background: transparent; 
  padding: 8px 14px; 
  border-radius: 999px; 
  cursor: pointer; 
  color: var(--text-muted); 
  font-weight: 600; 
  white-space: nowrap;
  flex-shrink: 0;
  width: auto;
  display: inline-flex;
  align-items: center;
}
.toggle-btn.active { 
  background: var(--brand); 
  color: var(--brand-ink); 
}
.save-badge { 
  color: #1f9d74; 
  font-weight: 600; 
  margin-left: 4px; 
}

.pricing { display: grid; grid-template-columns: 1fr; }
.pricing-2col { display: grid; grid-template-columns: 1.1fr .9fr; gap: 20px; align-items: start; }
.plan { margin: 0; background: linear-gradient(180deg, #ffffff, #f7fbff); border: 1px solid rgba(16,24,40,.08); border-radius: var(--radius); padding: 28px; text-align: left; box-shadow: var(--shadow); transition: transform .12s ease, box-shadow .2s ease; }
.plan:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(16,24,40,.12); }
.plan-header { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 4px; }
.plan-header h3 { margin: 0; }
.badge { background: #fff4e0; color: #7a4b00; border: 1px solid rgba(122,75,0,.15); padding: 6px 10px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.plan-sep { border: 0; border-top: 1px solid rgba(16,24,40,.08); margin: 12px 0; }
.plan-cta { display: block; width: 100%; text-align: center; margin-top: 14px; }
.plan-aside { padding: 22px; }
.plan-aside h3 { margin: 6px 0 6px; }
.guarantee { display: grid; grid-template-columns: 28px 1fr; gap: 10px; align-items: start; margin-top: 10px; }

.rich-aside { background: linear-gradient(180deg, #ffffff, #f8fbff); }
.benefits-list { 
  list-style: none; 
  padding: 0; 
  margin: 0; 
  display: grid; 
  gap: 16px; 
}
.benefit-item { 
  display: flex; 
  align-items: center; 
  gap: 16px; 
  padding: 16px;
  background: rgba(255,255,255,.8);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(16,24,40,.06);
  transition: all 0.2s ease;
}
.benefit-item:hover {
  background: rgba(255,255,255,.95);
  border-color: rgba(16,24,40,.1);
  transform: translateY(-1px);
}
.benefit-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.benefit-content strong {
  font-weight: 600;
  color: var(--text);
  font-size: 15px;
}
.benefit-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}
.plan-benefits {
  display: grid;
  gap: 16px;
}
.plan-benefit {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(16,24,40,0.06);
}
.plan-benefit:last-child {
  border-bottom: none;
}
.plan-benefit strong {
  font-weight: 600;
  color: var(--text);
  font-size: 15px;
}
.perks-list {
  display: grid;
  gap: 16px;
}
.perk-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--accent);
  border: 1px solid rgba(16,24,40,0.08);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}
.perk-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,0.9);
}
.perk-icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: rgba(255,184,77,0.1);
  border-radius: 50%;
  border: 1px solid rgba(255,184,77,0.2);
}
.perk-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.perk-content strong {
  font-weight: 600;
  color: var(--text);
  font-size: 15px;
}
.perk-content span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}
.icon-circle { 
  width: 32px; 
  height: 32px; 
  border-radius: 50%; 
  background: #eef1f6; 
  display: grid; 
  place-items: center; 
  font-size: 16px; 
  flex-shrink: 0;
  min-width: 32px;
  min-height: 32px;
}
.quote { margin-top: 6px; background: #f6f9ff; border: 1px solid rgba(16,24,40,.08); border-radius: 12px; padding: 12px; }
.quote p { margin: 0 0 4px; font-weight: 600; }
.quote-avatars { display: inline-flex; gap: 4px; margin-bottom: 6px; }
.quote-avatars span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: #ffffff; border: 1px solid rgba(16,24,40,.08); }
.price { font-size: 16px; color: var(--text-muted); margin: 10px 0; }
.amount { font-size: 42px; color: var(--text); font-weight: 800; letter-spacing: -0.02em; }
.period { color: var(--text-muted); }
.sub { color: var(--text-muted); margin: 6px 0 14px; }

/* Early Bird Pricing */
.early-bird-pricing {
  background: linear-gradient(135deg, rgba(255,184,77,0.1), rgba(255,184,77,0.05));
  border: 1px solid rgba(255,184,77,0.2);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin: 16px 0;
  text-align: center;
}
.early-bird-badge {
  background: var(--brand);
  color: var(--brand-ink);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 12px;
}
.early-bird-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.original-price {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 16px;
}
.discounted-price {
  color: var(--ok);
  font-size: 24px;
  font-weight: 800;
}
.discount-text {
  background: var(--ok);
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}
.early-bird-note {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

/* Waitlist */
.waitlist-section { 
  background: linear-gradient(180deg, #f3f6fb, #f7f8fb); 
  position: relative;
  overflow: hidden;
}
.waitlist-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16,24,40,.1), transparent);
}
.waitlist-content { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 48px; 
  align-items: start; 
  margin-top: 48px;
}
.waitlist-header {
  margin-bottom: 0;
  text-align: center;
}
.waitlist-description { 
  margin: 16px 0 0; 
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
}
.waitlist-benefits {
  background: rgba(255,255,255,.6);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(16,24,40,.08);
  backdrop-filter: blur(10px);
}
.benefits-title {
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
}
.embed-card { 
  background: #ffffff; 
  border: 1px solid rgba(16,24,40,.08); 
  border-radius: var(--radius); 
  box-shadow: var(--shadow); 
  overflow: hidden; 
  min-height: 400px;
  padding: 0;
}
.embed-card > div {
  height: 400px !important;
  min-height: 400px !important;
}
.form-card { 
  display: grid; 
  gap: 14px; 
}
.field { 
  display: grid; 
  gap: 8px; 
}
.field > span { 
  color: var(--text-muted); 
  font-size: 14px; 
}
input, select, textarea { 
  width: 100%; 
  padding: 14px 14px; 
  border-radius: 12px; 
  border: 1px solid rgba(16,24,40,.12); 
  background: #ffffff; 
  color: var(--text); 
  outline: none; 
  transition: border .2s ease, box-shadow .2s ease; 
  font-size: 16px; /* Prevent zoom on iOS */
}
input:focus, select:focus, textarea:focus { 
  border-color: var(--brand); 
  box-shadow: 0 0 0 4px rgba(255,184,77,.25); 
}
.muted-text { color: var(--text-muted); }

/* FAQ */
.faq h2 { text-align: center; margin-bottom: 32px; }
.faq details { background: var(--card); border: 1px solid rgba(16,24,40,.08); border-radius: var(--radius-sm); padding: 12px 16px; margin: 12px 0; }
.faq summary { cursor: pointer; font-weight: 600; }
.faq p { color: var(--text-muted); margin: 8px 0 0; }

/* Footer */
.site-footer { 
  border-top: 1px solid rgba(16,24,40,.08); 
  padding: 32px 0; 
  background: var(--bg);
}
.footer-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
}
.footer-brand .brand-mark {
  font-size: 20px;
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.footer-copyright {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
}
.footer-email {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-email:hover {
  color: var(--text);
}

/* Utilities */
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Responsive */
@media (max-width: 1000px) {
  .hero-grid { 
    grid-template-columns: 1fr; 
    gap: 32px;
    text-align: center;
  }
  .hero-art { 
    order: -1; /* Show image first on mobile */
    max-width: 500px;
    margin: 0 auto;
  }
  .two-col { grid-template-columns: 1fr; }
  .waitlist-content { grid-template-columns: 1fr; }
  .pricing-2col { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .features-head { padding-left: 0; }
  .three-cards { grid-template-columns: 1fr; }
  .solution-flow { grid-template-columns: 1fr; gap: 32px; }
  .flow-step:not(:last-child)::after { display: none; }
  .benefit-grid { grid-template-columns: 1fr; gap: 24px; }
  .problem-stats { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .header-grid { grid-template-columns: auto 1fr auto; }
  
  .section { padding: 48px 0; }
  .hero { padding: 32px 0; min-height: auto; }
  .hero-grid { gap: 24px; }
  .hero h1 { font-size: clamp(28px, 8vw, 48px); }
  .lead { font-size: 16px; }
  
  .container { padding: 0 20px; }
  
  .hero-features { 
    gap: 10px; 
    justify-content: center;
  }
  .feature-pill { 
    padding: 7px 11px; 
    font-size: 12px;
    flex: 1;
    min-width: 0;
    text-align: center;
  }
  
  .three-cards { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .solution-flow { gap: 24px; }
  .step-number { width: 40px; height: 40px; font-size: 18px; }
  .step-content h3 { font-size: 18px; }
  .benefit-grid { gap: 20px; }
  .benefit-item { padding: 20px; gap: 12px; }
  .benefit-icon { width: 36px; height: 36px; font-size: 20px; }
  .problem-stats { gap: 20px; }
  .stat-number { font-size: 36px; }
  .floating-card { 
    max-width: 160px; 
    padding: 12px; 
    top: 16px;
    right: 16px;
  }
  .card-header {
    gap: 6px;
    margin-bottom: 8px;
  }
  .card-icon {
    font-size: 14px;
  }
  .card-title {
    font-size: 12px;
  }
  .booking-item strong {
    font-size: 12px;
  }
  .booking-item span {
    font-size: 10px;
  }
  .step-head { gap: 8px; margin-bottom: 4px; }
  .step-head .icon-circle { 
    width: 32px; 
    height: 32px; 
    font-size: 16px; 
    min-width: 32px;
    min-height: 32px;
  }
  .step-head h4 { font-size: 15px; }
  .footer-content { gap: 16px; }
  .footer-info { gap: 6px; }
  
  .pricing-head { 
    grid-template-columns: 1fr; 
    gap: 20px; 
    text-align: center; 
  }
  
  .billing-toggle {
    width: fit-content;
    margin: 0 auto;
  }
  
  .toggle-btn {
    padding: 6px 12px;
    font-size: 14px;
  }
  
  .waitlist-content { gap: 32px; margin-top: 32px; }
  .waitlist-header { margin-bottom: 0; }
  .waitlist-benefits { 
    padding: 20px; 
    text-align: left; /* Keep benefits left-aligned on mobile */
  }
  .benefit-item { 
    padding: 14px; 
    gap: 12px; 
    align-items: center;
  }
  .benefit-item .icon-circle {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    font-size: 14px;
  }
  .perk-item {
    padding: 12px;
    gap: 10px;
  }
  .perk-icon {
    width: 28px;
    height: 28px;
    font-size: 18px;
  }
  
  .problem-grid { gap: 16px; }
  .problem-card { padding: 16px; }
}

@media (max-width: 520px) {
  .container { padding: 0 16px; }
  
  .three-cards { grid-template-columns: 1fr; gap: 14px; }
  .solution-flow { gap: 20px; }
  .step-number { width: 36px; height: 36px; font-size: 16px; }
  .step-content h3 { font-size: 16px; }
  .benefit-grid { gap: 16px; }
  .benefit-item { padding: 16px; gap: 10px; }
  .benefit-icon { width: 32px; height: 32px; font-size: 18px; }
  .problem-stats { gap: 16px; }
  .stat-number { font-size: 32px; }
  .floating-card { 
    max-width: 140px; 
    padding: 10px; 
    top: 12px;
    right: 12px;
  }
  .card-header {
    gap: 4px;
    margin-bottom: 6px;
  }
  .card-icon {
    font-size: 12px;
  }
  .card-title {
    font-size: 11px;
  }
  .booking-item strong {
    font-size: 11px;
  }
  .booking-item span {
    font-size: 9px;
  }
  .hero-features { 
    gap: 8px; 
    flex-direction: column;
    align-items: center;
  }
  .feature-pill { 
    padding: 6px 10px; 
    font-size: 12px;
    width: fit-content;
  }
  .step-head { gap: 6px; margin-bottom: 4px; }
  .step-head .icon-circle { 
    width: 28px; 
    height: 28px; 
    font-size: 14px; 
    min-width: 28px;
    min-height: 28px;
  }
  .step-head h4 { font-size: 14px; }
  .hero-grid { gap: 20px; }
  .hero h1 { font-size: clamp(24px, 10vw, 36px); }
  .lead { font-size: 15px; }
  
  .footer-content { gap: 12px; }
  .footer-brand { font-size: 15px; }
  .footer-brand .brand-mark { font-size: 18px; }
  
  .btn { padding: 12px 16px; font-size: 14px; }
  .btn-small { padding: 8px 12px; font-size: 13px; }
  
  .cta-row { 
    flex-direction: column; 
    gap: 16px; 
    text-align: center; 
  }
  
  .avatars { justify-content: center; }
  
  .problem-card { padding: 14px; }
  .feature { padding: 16px; }
  .card { padding: 16px; }
  
  .pricing-2col { gap: 16px; }
  .plan { padding: 20px; }
  .plan-aside { padding: 16px; }
  .early-bird-pricing { padding: 12px; margin: 12px 0; }
  .early-bird-price { gap: 6px; }
  .discounted-price { font-size: 20px; }
  
  .waitlist-content { gap: 24px; margin-top: 24px; }
  .waitlist-benefits { 
    padding: 16px; 
    text-align: left; /* Keep benefits left-aligned on mobile */
  }
  .benefit-item { 
    padding: 12px; 
    gap: 10px; 
    align-items: center;
  }
  .benefit-item .icon-circle {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    font-size: 12px;
  }
  .perk-item {
    padding: 10px;
    gap: 8px;
  }
  .perk-icon {
    width: 24px;
    height: 24px;
    font-size: 16px;
  }
  .embed-card { padding: 16px; }
  
  .mobile-nav { padding: 16px; }
  
  .billing-toggle {
    width: fit-content;
    margin: 0 auto;
  }
  
  .toggle-btn {
    padding: 5px 10px;
    font-size: 13px;
  }
  
  /* Improve touch targets on mobile */
  .mobile-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  
  /* Better spacing for mobile */
  .hero-photo {
    max-height: 300px;
  }
  
  /* Improve form embed on mobile */
  .embed-card {
    min-height: 350px;
  }
}

/* Additional mobile optimizations */
@media (max-width: 480px) {
  .hero h1 { 
    font-size: clamp(22px, 12vw, 32px); 
    line-height: 1.2;
  }
  
  .lead { 
    font-size: 14px; 
    line-height: 1.4;
  }
  
  .section { 
    padding: 32px 0; 
  }
  
  .hero { 
    padding: 24px 0; 
  }
  
  .container { 
    padding: 0 12px; 
  }
  
  .btn { 
    padding: 12px 16px; 
    font-size: 14px; 
    min-height: 48px;
  }
  
  .btn-small { 
    padding: 10px 14px; 
    font-size: 13px; 
    min-height: 40px;
  }
  
  .hero-photo {
    max-height: 250px;
  }
  
  .embed-card {
    min-height: 300px;
  }
  
  .billing-toggle {
    width: fit-content;
    margin: 0 auto;
  }
  
  .toggle-btn {
    padding: 4px 8px;
    font-size: 12px;
  }
  
  .floating-card { 
    max-width: 120px; 
    padding: 8px; 
    top: 8px;
    right: 8px;
  }
  .card-header {
    gap: 3px;
    margin-bottom: 4px;
  }
  .card-icon {
    font-size: 10px;
  }
  .card-title {
    font-size: 10px;
  }
  .booking-item strong {
    font-size: 10px;
  }
  .booking-item span {
    font-size: 8px;
  }
}

/* Restaurant Theme Overrides */
body[data-industry="restaurants"] {
  --bg: #f7fbf8;            /* softer, fresher background */
  --card: #ffffff;
  --muted: #eef6f0;
  --text: #0a1a12;
  --text-muted: #55665b;
  --brand: #16a34a;         /* emerald */
  --brand-ink: #052e16;     /* deep green for contrast */
  --accent: #f0f9f4;        /* light green wash */
}

/* Hero accents: swap amber/blue hints to green-forward for restaurants */
body[data-industry="restaurants"] .hero::before {
  background: radial-gradient(circle at 20% 80%, rgba(22,163,74,0.12) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(5,46,22,0.08) 0%, transparent 50%);
}

/* Badge tint */
body[data-industry="restaurants"] .hero-badge {
  background: rgba(22,163,74,0.12);
  color: var(--brand-ink);
  border: 1px solid rgba(22,163,74,0.28);
}

/* Problem section gradient tuned toward deep green slates */
body[data-industry="restaurants"] .problem-section {
  background: linear-gradient(135deg, #0f172a 0%, #0b3a2b 100%);
}
body[data-industry="restaurants"] .problem-section::before {
  background: radial-gradient(circle at 30% 20%, rgba(22,163,74,0.14) 0%, transparent 50%);
}

/* Icons and small circular accents use brand tint */
body[data-industry="restaurants"] .benefit-icon,
body[data-industry="restaurants"] .perk-icon {
  background: rgba(22,163,74,0.10);
  border-color: rgba(22,163,74,0.20);
}

/* Steps connector gradient uses brand */
body[data-industry="restaurants"] .flow-step:not(:last-child)::after {
  background: linear-gradient(90deg, var(--brand), rgba(22,163,74,0.30));
}

/* All text on green backgrounds should be white */
body[data-industry="restaurants"] .btn-primary {
  box-shadow: 0 8px 20px rgba(22,163,74,.22);
  color: white !important;
}
body[data-industry="restaurants"] .btn-primary:hover {
  box-shadow: 0 10px 24px rgba(22,163,74,.32);
  color: white !important;
}

/* Step numbers with white text */
body[data-industry="restaurants"] .step-number {
  color: white !important;
}

/* Early bird badge with white text */
body[data-industry="restaurants"] .early-bird-badge {
  color: white !important;
}

/* Toggle button active state with white text */
body[data-industry="restaurants"] .toggle-btn.active {
  color: white !important;
}

/* Pricing subtle backgrounds */
body[data-industry="restaurants"] .plan { 
  background: linear-gradient(180deg, #ffffff, #f3faf6);
}
body[data-industry="restaurants"] .rich-aside { 
  background: linear-gradient(180deg, #ffffff, #f0f9f4);
}

/* Early bird panel hue */
body[data-industry="restaurants"] .early-bird-pricing {
  background: linear-gradient(135deg, rgba(22,163,74,0.10), rgba(22,163,74,0.05));
  border-color: rgba(22,163,74,0.20);
}

/* Ensure the "save $60" badge has sufficient contrast when the yearly billing
   toggle is active for the restaurants theme (green active background). */
body[data-industry="restaurants"] .billing-toggle .toggle-btn.active .save-badge {
  color: #ffffff !important;
  opacity: 0.98;
}
