@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Lora:wght@500;600;700&display=swap");

/* ==========================================
   HotelSocial.app Landing Page
   Design System from globals.css
   Mobile-first responsive
   ========================================== */

/* ---------- CSS Variables ---------- */
:root {
  --color-sand: #E7D8C9;
  --color-cream: #F4EFE8;
  --color-beige: #E2CFC0;
  --color-deep-taupe: #4E443D;
  --color-warm-gray: #A0948A;
  --color-terracotta: #C27A5C;
  --color-olive-green: #6F7D61;
  --color-muted-sage: #A4B494;
  --color-success: #7FAF8F;
  --color-warning: #D1A054;
  --color-error: #B65C4B;
  --color-info: #7C9AA6;
  --color-white: #FFFFFF;

  --rgb-sand: 231 216 201;
  --rgb-cream: 244 239 232;
  --rgb-beige: 226 207 192;
  --rgb-deep-taupe: 78 68 61;
  --rgb-warm-gray: 160 148 138;
  --rgb-terracotta: 194 122 92;
  --rgb-olive-green: 111 125 97;
  --rgb-muted-sage: 164 180 148;
  --rgb-success: 127 175 143;
  --rgb-warning: 209 160 84;
  --rgb-error: 182 92 75;
  --rgb-info: 124 154 166;
  --rgb-white: 255 255 255;

  --color-bg-primary: var(--color-sand);
  --color-bg-secondary: var(--color-cream);
  --color-bg-tertiary: var(--color-beige);
  --color-text-primary: var(--color-deep-taupe);
  --color-text-secondary: var(--color-warm-gray);
  --color-action-primary: var(--color-terracotta);
  --color-action-secondary: var(--color-olive-green);
  --color-action-hover: var(--color-muted-sage);
  --color-border-subtle: rgb(var(--rgb-warm-gray) / 0.3);
  --color-border-strong: rgb(var(--rgb-warm-gray) / 0.46);

  --bg: var(--color-bg-primary);
  --bg-alt: var(--color-bg-secondary);
  --bg-soft: var(--color-bg-secondary);
  --bg-warm: var(--color-bg-secondary);
  --bg-contrast: var(--color-bg-tertiary);
  --text: var(--color-text-primary);
  --text-strong: var(--color-text-primary);
  --text-body: var(--color-text-primary);
  --text-muted: var(--color-text-secondary);
  --primary: var(--color-action-secondary);
  --accent: var(--color-action-primary);
  --accent-hover: var(--color-action-hover);
  --secondary: var(--color-bg-tertiary);
  --border: var(--color-border-subtle);
  --white: var(--color-white);
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgb(var(--rgb-deep-taupe) / 0.06);
  --shadow-md: 0 4px 12px rgb(var(--rgb-deep-taupe) / 0.08);
  --shadow-lg: 0 8px 30px rgb(var(--rgb-deep-taupe) / 0.1);
  --font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-display: "Lora", Georgia, serif;
  --max-width: 1120px;
  --section-title-gap: 24px;
  --section-intro-gap: 56px;
  --section-pad: 80px;
  --section-pad-mobile: 48px;
}

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

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

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* ---------- Container ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text);
  line-height: 1.25;
  font-weight: 600;
}

h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.18;
  text-align: center;
  margin-bottom: var(--section-title-gap);
  text-wrap: balance;
}

h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.section-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--section-intro-gap);
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-closing {
  text-align: center;
  margin-top: 40px;
  font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  padding: 12px 28px;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--primary);
  color: var(--white);
  padding: 12px 28px;
}

.btn-secondary:hover {
  background: var(--accent-hover);
  color: var(--white);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.875rem;
}

/* ---------- Sticky Mobile CTA ---------- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  text-align: center;
  box-shadow: 0 -2px 10px rgb(var(--rgb-deep-taupe) / 0.08);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta .btn {
  width: 100%;
  max-width: 360px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(var(--rgb-cream) / 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo img {
  border-radius: 8px;
}

.logo-text {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
}

.logo-dot {
  color: var(--accent);
}

.header-nav {
  display: none;
  gap: 28px;
}

.header-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.header-nav a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  background: rgb(var(--rgb-white) / 0.72);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.lang-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: rgb(var(--rgb-white) / 0);
  color: inherit;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  opacity: 0.65;
}

.lang-flag:hover {
  transform: translateY(-1px);
  opacity: 1;
}

.lang-flag.is-active {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  opacity: 1;
}

.lang-flag[hidden] {
  display: none;
}

.lang-flag:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  opacity: 1;
}

.header-cta {
  display: none;
}

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

@media (max-width: 767px) {
  .logo-text {
    display: none;
  }

  .header-inner {
    gap: 10px;
  }

  .header-actions {
    margin-left: auto;
  }
}

/* ==========================================
   SECTION 1: HERO
   ========================================== */
.hero {
  padding: var(--section-pad-mobile) 0;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgb(var(--rgb-terracotta) / 0.06) 0%, rgb(var(--rgb-white) / 0) 70%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgb(var(--rgb-deep-taupe) / 0.04) 0%, rgb(var(--rgb-white) / 0) 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  gap: 40px;
  align-items: center;
}

.pre-headline {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.hero h1 {
  margin-bottom: 16px;
}

.subheadline {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.support-line {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* Hero Waitlist Form */
.waitlist-form {
  max-width: 480px;
}

.waitlist-input-group {
  display: flex;
  gap: 8px;
}

.waitlist-input-group input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s;
}

.waitlist-input-group input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgb(var(--rgb-terracotta) / 0.15);
}

.waitlist-input-group input[type="email"]::placeholder {
  color: var(--text-muted);
}

.waitlist-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.waitlist-success {
  background: rgb(var(--rgb-success) / 0.14);
  border: 1px solid rgb(var(--rgb-success) / 0.28);
  border-radius: var(--radius);
  padding: 16px;
  margin-top: 12px;
}

.waitlist-success p {
  color: var(--text);
  font-size: 0.9rem;
}

.waitlist-urgency {
  font-weight: 600;
  margin-top: 4px;
}

.waitlist-error {
  background: rgb(var(--rgb-error) / 0.12);
  border: 1px solid rgb(var(--rgb-error) / 0.24);
  border-radius: var(--radius);
  padding: 16px;
  margin-top: 12px;
}

.waitlist-error p {
  color: var(--text);
  font-size: 0.9rem;
}

/* Hero Dashboard Mockup */
.hero-visual {
  display: none;
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgb(var(--rgb-terracotta) / 0.12) 0%, rgb(var(--rgb-white) / 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-visual::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgb(var(--rgb-terracotta) / 0.08) 0%, rgb(var(--rgb-white) / 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.dashboard-mockup {
  background:
    linear-gradient(180deg, rgb(var(--rgb-white) / 0.96), rgb(var(--rgb-cream) / 0.96));
  border-radius: 24px;
  border: 1px solid rgb(var(--rgb-beige) / 0.95);
  box-shadow:
    0 22px 50px rgb(var(--rgb-deep-taupe) / 0.14),
    0 0 0 1px rgb(var(--rgb-terracotta) / 0.08);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.dashboard-mockup::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgb(var(--rgb-terracotta) / 0.14), rgb(var(--rgb-white) / 0) 32%),
    linear-gradient(180deg, rgb(var(--rgb-white) / 0.18), rgb(var(--rgb-white) / 0) 25%);
  pointer-events: none;
}

.mockup-shell {
  display: flex;
  min-height: 420px;
}

.mockup-sidebar {
  width: 148px;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--secondary) 100%);
  border-right: 1px solid rgb(var(--rgb-beige) / 0.95);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mockup-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mockup-brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  box-shadow: 0 8px 18px rgb(var(--rgb-terracotta) / 0.28);
  flex-shrink: 0;
}

.mockup-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.mockup-brand-line {
  height: 6px;
  border-radius: 999px;
  background: rgb(var(--rgb-deep-taupe) / 0.26);
}

.mockup-brand-line.short {
  width: 66%;
}

.mockup-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup-nav-item {
  min-height: 40px;
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  background: rgb(var(--rgb-white) / 0);
}

.mockup-nav-icon {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: rgb(var(--rgb-deep-taupe) / 0.24);
  flex-shrink: 0;
}

.mockup-nav-label {
  font-size: 0.75rem;
  font-weight: 600;
}

.mockup-nav-item.active {
  background: rgb(var(--rgb-deep-taupe) / 0.12);
  color: var(--text);
}

.mockup-nav-item.active .mockup-nav-icon {
  background: var(--accent);
  box-shadow: 0 4px 10px rgb(var(--rgb-terracotta) / 0.22);
}

.mockup-main {
  flex: 1;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background:
    linear-gradient(180deg, rgb(var(--rgb-white) / 0.72), rgb(var(--rgb-cream) / 0.36));
}

.mockup-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgb(var(--rgb-beige) / 0.85);
  padding: 0 4px 12px;
}

.mockup-topbar-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mockup-eyebrow {
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  font-weight: 700;
}

.mockup-topbar-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.mockup-topbar-badge,
.mockup-chip,
.mockup-status-pill,
.mockup-platform-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1px solid rgb(var(--rgb-white) / 0);
}

.mockup-topbar-badge {
  background: rgb(var(--rgb-deep-taupe) / 0.08);
  border-color: rgb(var(--rgb-deep-taupe) / 0.12);
  color: var(--text);
}

.mockup-focus-card,
.mockup-kpi-card,
.mockup-planner-card,
.mockup-post-card {
  border: 1px solid rgb(var(--rgb-beige) / 0.92);
  box-shadow: 0 10px 26px rgb(var(--rgb-deep-taupe) / 0.05);
}

.mockup-focus-card {
  background: linear-gradient(135deg, rgb(var(--rgb-cream) / 0.98), rgb(var(--rgb-cream) / 0.7));
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-focus-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mockup-chip {
  background: rgb(var(--rgb-white) / 0.72);
  border-color: rgb(var(--rgb-deep-taupe) / 0.12);
  color: var(--text);
}

.mockup-chip-accent {
  background: rgb(var(--rgb-terracotta) / 0.14);
  border-color: rgb(var(--rgb-terracotta) / 0.24);
  color: var(--text);
}

.mockup-focus-title {
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 700;
  color: var(--text);
}

.mockup-focus-copy {
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 34ch;
}

.mockup-focus-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.mockup-button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgb(var(--rgb-deep-taupe) / 0.18);
}

.mockup-text-link {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--text-muted);
}

.mockup-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.mockup-kpi-card {
  background: rgb(var(--rgb-cream) / 0.9);
  border-radius: 18px;
  padding: 12px 10px;
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mockup-kpi-label {
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  line-height: 1.25;
}

.mockup-kpi-card strong {
  font-size: 1.4rem;
  line-height: 1;
  color: var(--text);
}

.mockup-planner-card {
  background: rgb(var(--rgb-cream) / 0.92);
  border-radius: 20px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 0;
}

.mockup-planner-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mockup-planner-title {
  margin-top: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.mockup-post-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mockup-post-card {
  background: rgb(var(--rgb-white) / 0.86);
  border-radius: 16px;
  padding: 12px 13px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup-post-card.review {
  border-left: 4px solid var(--accent);
}

.mockup-post-card.scheduled {
  border-left: 4px solid var(--color-success);
}

.mockup-post-card.media {
  border-left: 4px solid var(--color-error);
}

.mockup-post-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.mockup-platform-chip {
  background: rgb(var(--rgb-terracotta) / 0.12);
  border-color: rgb(var(--rgb-terracotta) / 0.22);
  color: var(--text);
}

.mockup-status-pill.needs-review {
  background: rgb(var(--rgb-terracotta) / 0.14);
  border-color: rgb(var(--rgb-terracotta) / 0.22);
  color: var(--text);
}

.mockup-status-pill.scheduled {
  background: rgb(var(--rgb-success) / 0.14);
  border-color: rgb(var(--rgb-success) / 0.24);
  color: var(--text);
}

.mockup-status-pill.missing-media {
  background: rgb(var(--rgb-error) / 0.12);
  border-color: rgb(var(--rgb-error) / 0.22);
  color: var(--text);
}

.mockup-post-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}

.mockup-post-meta {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.45;
}

@media (max-width: 1100px) {
  .mockup-shell {
    min-height: 390px;
  }

  .mockup-sidebar {
    width: 132px;
    padding: 16px 12px;
  }

  .mockup-main {
    padding: 16px;
  }

  .mockup-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mockup-kpi-card {
    min-height: 90px;
  }

  .mockup-focus-title {
    font-size: 0.92rem;
  }
}

@media (min-width: 768px) {
  .hero {
    padding: var(--section-pad) 0;
  }
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  .hero-visual {
    display: block;
  }
}

/* ==========================================
   SECTION 2: PROBLEM
   ========================================== */
.problem {
  padding: var(--section-pad-mobile) 0;
  background: var(--bg);
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.pain-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at top right, rgb(var(--rgb-terracotta) / 0.06), rgb(var(--rgb-white) / 0) 70%);
  pointer-events: none;
}

.pain-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.pain-icon {
  color: var(--accent);
  margin-bottom: 14px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgb(var(--rgb-terracotta) / 0.1), rgb(var(--rgb-terracotta) / 0.04));
  border-radius: 12px;
}

.pain-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .problem {
    padding: var(--section-pad) 0;
  }
  .pain-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ==========================================
   SECTION 3: SOLUTION — Meet EMA
   ========================================== */
.solution {
  padding: var(--section-pad-mobile) 0;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.solution::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -100px;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgb(var(--rgb-terracotta) / 0.05), rgb(var(--rgb-white) / 0) 70%);
  pointer-events: none;
}

.solution-inner {
  display: grid;
  gap: 40px;
  align-items: center;
}

.solution h2 {
  text-align: left;
}

.solution-copy {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.solution-subline {
  font-size: 1.05rem;
}

/* EMA Portrait Frame */
.ema-portrait-frame {
  position: relative;
  max-width: 340px;
  margin: 0 auto;
}

.ema-portrait-frame img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px 4px 20px 4px;
  box-shadow:
    0 20px 60px rgb(var(--rgb-deep-taupe) / 0.15),
    0 8px 24px rgb(var(--rgb-deep-taupe) / 0.08);
  position: relative;
  z-index: 2;
}

.ema-portrait-accent {
  position: absolute;
  top: -12px;
  right: -12px;
  bottom: 12px;
  left: 12px;
  border: 2px solid var(--accent);
  border-radius: 20px 4px 20px 4px;
  opacity: 0.4;
  z-index: 1;
}

/* ==========================================
   SECTION 3b: EMA IN ACTION — Visual Story
   ========================================== */
.ema-story {
  padding: var(--section-pad-mobile) 0;
  background: var(--bg-alt);
  overflow: hidden;
}

.ema-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 8px;
  justify-items: center;
}

.ema-gallery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ema-gallery-wide {
  width: 100%;
  max-width: 920px;
}

/* Shared gallery frame styles */
.gallery-frame {
  position: relative;
  overflow: hidden;
}

.gallery-frame img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 2;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-frame:hover img {
  transform: scale(1.03);
}

.gallery-frame-border {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

/* Landscape frame — editorial "window" */
.gallery-frame-landscape {
  border-radius: 4px 24px 4px 24px;
  box-shadow:
    0 24px 64px rgb(var(--rgb-deep-taupe) / 0.14),
    0 8px 20px rgb(var(--rgb-deep-taupe) / 0.06);
}

.gallery-frame-landscape img {
  border-radius: 4px 24px 4px 24px;
}

.gallery-frame-landscape .gallery-frame-border {
  border: 3px solid rgb(var(--rgb-terracotta) / 0.2);
  border-radius: 4px 24px 4px 24px;
}

/* Portrait frame — organic asymmetric */
.gallery-frame-portrait {
  max-width: 340px;
  border-radius: 24px 4px 24px 4px;
  box-shadow:
    0 24px 64px rgb(var(--rgb-deep-taupe) / 0.14),
    0 8px 20px rgb(var(--rgb-deep-taupe) / 0.06);
}

.gallery-frame-portrait img {
  border-radius: 24px 4px 24px 4px;
  max-height: 520px;
  object-fit: cover;
  object-position: top center;
}

.gallery-frame-portrait .gallery-frame-border {
  border: 3px solid rgb(var(--rgb-terracotta) / 0.2);
  border-radius: 24px 4px 24px 4px;
}

.gallery-caption {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 480px;
  line-height: 1.6;
  font-style: italic;
}

@media (min-width: 768px) {
  .ema-story {
    padding: var(--section-pad) 0;
  }

  .ema-gallery {
    gap: 40px;
  }

  .gallery-frame-portrait {
    max-width: 100%;
  }
}

@media (min-width: 1024px) {
  .ema-gallery {
    gap: 56px;
  }
}

@media (min-width: 768px) {
  .solution {
    padding: var(--section-pad) 0;
  }
  .solution-inner {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

/* ==========================================
   SECTION 4: HOW IT WORKS
   ========================================== */
.how-it-works {
  padding: var(--section-pad-mobile) 0;
  background: var(--bg-alt);
}

.how-it-works-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.how-it-works-content h2 {
  text-align: center;
}

.how-it-works-visual {
  position: relative;
  width: min(100%, 360px);
  margin: 0 auto;
}

.how-it-works-highlight {
  position: relative;
  margin: -48px 18px 0 auto;
  max-width: 260px;
  background: rgb(var(--rgb-cream) / 0.95);
  border: 1px solid rgb(var(--rgb-terracotta) / 0.2);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgb(var(--rgb-deep-taupe) / 0.12);
  padding: 18px 18px 16px;
  z-index: 4;
  backdrop-filter: blur(10px);
}

.how-it-works-highlight strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 0.98rem;
}

.how-it-works-highlight span {
  display: block;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.step {
  text-align: center;
  padding: 0 20px;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: var(--white);
  font-weight: 700;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgb(var(--rgb-terracotta) / 0.3);
  position: relative;
}

.step-number::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px dashed rgb(var(--rgb-terracotta) / 0.25);
}

.step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.step-connector {
  width: 2px;
  height: 40px;
  background: linear-gradient(180deg, var(--accent), var(--border));
  margin: 8px auto;
  border-radius: 1px;
}

.steps-support {
  text-align: center;
  margin-top: 40px;
  color: var(--text-muted);
  font-style: italic;
}

@media (min-width: 768px) {
  .how-it-works {
    padding: var(--section-pad) 0;
  }

  .how-it-works-showcase {
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 56px;
  }

  .how-it-works-content h2 {
    text-align: left;
  }

  .how-it-works-visual {
    margin: 0;
  }

  .how-it-works-highlight {
    margin-right: -36px;
  }

  .steps {
    flex-direction: row;
    align-items: flex-start;
    max-width: none;
    gap: 0;
  }
  .step {
    flex: 1;
  }
  .step-connector {
    width: 60px;
    height: 2px;
    margin: 28px 0 0;
    flex-shrink: 0;
    background: linear-gradient(90deg, var(--accent), var(--border));
    border-radius: 1px;
  }

  .steps-support {
    text-align: left;
  }
}

/* ==========================================
   SECTION 5: FEATURES
   ========================================== */
.features {
  padding: var(--section-pad-mobile) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgb(var(--rgb-white) / 0));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgb(var(--rgb-terracotta) / 0.3);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon {
  color: var(--accent);
  margin-bottom: 16px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgb(var(--rgb-terracotta) / 0.12), rgb(var(--rgb-terracotta) / 0.04));
  border-radius: 14px;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

@media (min-width: 768px) {
  .features {
    padding: var(--section-pad) 0;
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* ==========================================
   SECTION 6: DIFFERENTIATION
   ========================================== */
.differentiation {
  padding: var(--section-pad-mobile) 0;
  background: var(--bg-alt);
}

.hotel-types {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 32px 0;
}

.hotel-type-tag {
  padding: 10px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
  position: relative;
}

.hotel-type-tag:hover {
  background: linear-gradient(135deg, rgb(var(--rgb-terracotta) / 0.1), rgb(var(--rgb-terracotta) / 0.05));
  border-color: var(--accent);
  color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgb(var(--rgb-terracotta) / 0.15);
}

.diff-copy {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1rem;
}

.diff-copy em {
  font-style: normal;
  color: var(--primary);
  font-weight: 500;
}

@media (min-width: 768px) {
  .differentiation {
    padding: var(--section-pad) 0;
  }
}

/* ==========================================
   SECTION 7: PRICING
   ========================================== */
.pricing {
  padding: var(--section-pad-mobile) 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.recommended {
  border-color: var(--accent);
  border-width: 2px;
  box-shadow:
    var(--shadow-lg),
    0 0 0 4px rgb(var(--rgb-terracotta) / 0.08);
  transform: scale(1.015);
}

.pricing-card.recommended:hover {
  transform: scale(1.015) translateY(-4px);
  box-shadow:
    0 16px 48px rgb(var(--rgb-deep-taupe) / 0.14),
    0 0 0 4px rgb(var(--rgb-terracotta) / 0.12);
}

.pricing-badge {
  position: absolute;
  top: 0;
  right: 20px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 0 0 var(--radius) var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-card-header {
  padding: 28px 20px 18px;
  text-align: center;
  background: linear-gradient(180deg, rgb(var(--rgb-cream) / 0.4) 0%, rgb(var(--rgb-white) / 0) 100%);
}

.pricing-card.recommended .pricing-card-header {
  background: linear-gradient(180deg, rgb(var(--rgb-terracotta) / 0.08) 0%, rgb(var(--rgb-white) / 0) 100%);
}

.pricing-card-header h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.pricing-amount {
  font-size: 2.35rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
}

.pricing-unit {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-period {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.pricing-card-body {
  padding: 0 20px 18px;
  flex: 1;
}

.pricing-description {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  text-align: center;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-features li {
  font-size: 0.88rem;
  padding-left: 28px;
  position: relative;
}

.pricing-features li::before {
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 0.9rem;
}

.pricing-features li.included {
  color: var(--text);
}

.pricing-features li.included::before {
  content: "\2713";
  color: var(--accent);
  font-weight: 700;
}

.pricing-features li.excluded {
  color: var(--text-muted);
  opacity: 0.5;
}

.pricing-features li.excluded::before {
  content: "\2014";
  color: var(--text-muted);
}

.pricing-card-footer {
  padding: 14px 20px 20px;
  text-align: center;
}

.pricing-card-footer .btn {
  width: 100%;
  padding-inline: 20px;
}

@media (min-width: 768px) {
  .pricing {
    padding: var(--section-pad) 0;
  }
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .pricing-card {
    min-width: 0;
  }
}

/* ==========================================
   SECTION 8: FAQ
   ========================================== */
.faq {
  padding: var(--section-pad-mobile) 0;
  background: var(--bg-alt);
}

.faq-list {
  max-width: 700px;
  margin: 40px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 20px 0;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s ease;
}

.faq-item summary:hover {
  color: var(--accent-hover);
}

.faq-item summary::after {
  content: "+";
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 600;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  border-radius: 50%;
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item[open] summary::after {
  content: "\2212";
  transform: rotate(180deg);
  background: var(--accent-hover);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 0 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .faq {
    padding: var(--section-pad) 0;
  }
}

/* ==========================================
   SECTION 9: SOCIAL PROOF
   ========================================== */
.social-proof {
  padding: var(--section-pad-mobile) 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 24px;
}

.proof-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgb(var(--rgb-white) / 0);
  background-clip: text;
}

.proof-item {
  padding: 24px 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease;
}

.proof-item:hover {
  transform: translateY(-2px);
}

.proof-grid p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.proof-tagline {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .social-proof {
    padding: var(--section-pad) 0;
  }
}

/* ==========================================
   SECTION 10: FINAL CTA
   ========================================== */
.final-cta {
  padding: var(--section-pad-mobile) 0;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--secondary) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgb(var(--rgb-terracotta) / 0.08), rgb(var(--rgb-white) / 0) 70%);
  pointer-events: none;
}

.final-subheadline {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.waitlist-form-final {
  max-width: 500px;
  margin: 0 auto;
}

.waitlist-form-final .waitlist-input-group {
  flex-direction: column;
}

.waitlist-form-final .waitlist-input-group input[type="email"] {
  width: 100%;
}

.urgency-line {
  margin-top: 24px;
  font-size: 0.95rem;
  color: var(--primary);
}

@media (min-width: 768px) {
  .final-cta {
    padding: var(--section-pad) 0;
  }
  .waitlist-form-final .waitlist-input-group {
    flex-direction: row;
  }
}

/* ==========================================
   SECTION 11: FOOTER
   ========================================== */
.site-footer {
  padding: 48px 0 24px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  gap: 32px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-brand .logo-text {
  font-size: 1rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 48px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }
  .footer-bottom {
    grid-column: 1 / -1;
  }
}

/* ---------- Scroll Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Mobile Adjustments ---------- */
@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
  }
  .hero-ctas .btn {
    width: 100%;
    text-align: center;
  }
  .waitlist-input-group {
    flex-direction: column;
  }
  .sticky-cta {
    display: block;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .sticky-cta {
    display: block;
  }
}

/* ---------- 2026 Landing Refresh ---------- */
.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;
}

.hero-inner.hero-inner-centered {
  display: block;
}

.hero-content-centered {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero-content-centered h1 {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
}

.hero-kicker {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title-main {
  font-size: clamp(2.3rem, 6vw, 4.6rem);
  line-height: 1.14;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero-content-centered .subheadline {
  max-width: 760px;
  margin: 0 auto 30px;
}

.hero-content-centered .hero-ctas {
  justify-content: center;
  margin-bottom: 16px;
}

.hero-content-centered .support-line {
  max-width: 640px;
  margin: 0 auto;
  font-size: 0.95rem;
}

.problem-grid-three,
.pricing-grid-three {
  margin-top: 40px;
}

.pain-card h3,
.feature-card h3,
.step h3 {
  line-height: 1.35;
}

.pain-card p,
.feature-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.solution-inner.solution-inner-alt {
  gap: 44px;
}

.ema-image-note {
  max-width: 280px;
  margin: 18px auto 0;
  text-align: center;
  color: var(--primary);
  font-size: 0.95rem;
}

.how-it-works.how-it-works-simple {
  background: var(--bg);
}

.how-it-works-simple .how-it-works-showcase {
  display: block;
}

.how-it-works-simple .how-it-works-content h2 {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--section-title-gap);
}

.how-it-works-simple .steps-support {
  max-width: 760px;
  margin: 28px auto 0;
  text-align: center;
  font-style: normal;
}

.cta-strip {
  padding: var(--section-pad-mobile) 0;
}

.cta-panel {
  background: linear-gradient(135deg, var(--text) 0%, var(--text) 100%);
  border-radius: 28px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: 0 20px 48px rgb(var(--rgb-deep-taupe) / 0.16);
}

.cta-panel h2 {
  color: var(--white);
  margin-bottom: var(--section-title-gap);
}

.cta-panel p {
  max-width: 700px;
  margin: 0 auto 28px;
  color: rgb(var(--rgb-white) / 0.8);
  font-size: 1.02rem;
}

.pricing-grid.pricing-grid-three {
  max-width: 980px;
}

.pricing-note {
  max-width: 720px;
  margin: 24px auto 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.pricing-guarantee {
  max-width: 720px;
  margin: 14px auto 0;
  text-align: center;
  color: var(--text-strong);
  font-size: 0.95rem;
  line-height: 1.75;
}

.pricing-guarantee strong {
  font-weight: 600;
}

.waitlist-form-final {
  max-width: 560px;
}

.waitlist-form-final .waitlist-success,
.waitlist-form-final .waitlist-error {
  text-align: left;
}

@media (min-width: 768px) {
  .problem-grid-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps.steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-strip {
    padding: var(--section-pad) 0;
  }

  .how-it-works-media-section {
    padding: var(--section-pad) 0 0;
  }
}

@media (min-width: 960px) {
  .solution-inner.solution-inner-alt {
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 72px;
  }
}

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

  .pricing-grid.pricing-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ---------- Airy Layout Refresh ---------- */
:root {
  --section-pad: 116px;
  --section-pad-mobile: 72px;
}

body {
  color: var(--text-strong);
}

h1, h2, h3, h4 {
  color: var(--text-strong);
}

h2 {
  margin-bottom: var(--section-title-gap);
}

.section-intro,
.subheadline,
.solution-copy,
.steps-grid .step p,
.pain-card p,
.feature-card p,
.pricing-note,
.faq-item p,
.final-subheadline,
.footer-tagline,
.cta-panel p,
.support-line,
.ema-image-note,
.steps-support {
  color: var(--text-body);
}

.section-intro {
  font-size: 1.12rem;
  line-height: 1.8;
  max-width: 760px;
  margin-bottom: var(--section-intro-gap);
}

.how-it-works-media-section {
  padding: var(--section-pad-mobile) 0 0;
  background: var(--bg-soft);
}

.how-it-works-media-section .how-it-works-media {
  margin-bottom: 0;
}

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(7rem, 10vw, 9rem) 0;
  background:
    radial-gradient(circle at top right, rgb(var(--rgb-terracotta) / 0.12), rgb(var(--rgb-white) / 0) 34%),
    radial-gradient(circle at bottom left, rgb(var(--rgb-deep-taupe) / 0.08), rgb(var(--rgb-white) / 0) 28%),
    linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-alt) 100%);
}

.hero-content-centered {
  max-width: 920px;
}

.hero-content-centered .subheadline {
  max-width: 820px;
  font-size: 1.18rem;
  line-height: 1.85;
  margin-bottom: 36px;
}

.hero-content-centered .support-line {
  font-size: 1rem;
  line-height: 1.75;
}

.problem,
.how-it-works.how-it-works-simple,
.pricing {
  background: var(--bg-soft);
}

.solution,
.faq {
  background: var(--bg-warm);
}

.features {
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-alt) 100%);
}

.cta-strip {
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--secondary) 100%);
}

.final-cta {
  background: linear-gradient(180deg, var(--bg-contrast) 0%, var(--secondary) 100%);
}

.site-footer {
  background: var(--bg-alt);
}

.pain-card,
.feature-card,
.pricing-card {
  border-radius: 22px;
  box-shadow: 0 14px 34px rgb(var(--rgb-deep-taupe) / 0.08);
}

.pain-card,
.feature-card {
  padding: 34px 30px 30px;
}

.pain-card h3,
.feature-card h3 {
  font-size: 1.18rem;
  margin-bottom: 12px;
}

.pain-card p,
.feature-card p {
  font-size: 1rem;
  line-height: 1.78;
}

.solution-copy {
  font-size: 1.16rem;
  line-height: 1.9;
}

.pricing-card-header {
  padding: 34px 24px 22px;
}

.pricing-card-body {
  padding: 0 24px 24px;
}

.pricing-features li {
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-list {
  max-width: 820px;
  margin-top: 52px;
}

.faq-item summary {
  padding: 26px 0;
  font-size: 1.05rem;
}

.faq-item p {
  padding: 0 0 26px;
  font-size: 1rem;
}

.how-it-works-simple .how-it-works-content h2 {
  max-width: 820px;
}

.steps-support {
  margin-top: 40px;
  font-size: 1rem;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .hero-content-centered .hero-ctas {
    gap: 16px;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 100svh;
    padding-top: 7rem;
    padding-bottom: 5.5rem;
  }
}

/* ---------- Consistent Card System ---------- */
.pain-card,
.feature-card,
.pricing-card {
  background: linear-gradient(180deg, rgb(var(--rgb-white) / 0.98), rgb(var(--rgb-cream) / 0.98));
  border: 1px solid rgb(var(--rgb-beige) / 0.95);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgb(var(--rgb-deep-taupe) / 0.08);
  transform: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.pain-card::before,
.feature-card::after {
  opacity: 1;
}

.pain-card {
  border-left: 1px solid rgb(var(--rgb-beige) / 0.95);
}

.pain-card::before {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at top right, rgb(var(--rgb-terracotta) / 0.09), rgb(var(--rgb-white) / 0) 72%);
}

.feature-card::after {
  height: 4px;
  background: linear-gradient(90deg, var(--accent), rgb(var(--rgb-deep-taupe) / 0.16));
}

.pricing-card-header {
  background: linear-gradient(180deg, rgb(var(--rgb-white) / 0.98), rgb(var(--rgb-cream) / 0.98));
}

.pricing-card:hover,
.pain-card:hover,
.feature-card:hover {
  transform: none;
  box-shadow: 0 14px 34px rgb(var(--rgb-deep-taupe) / 0.08);
  border-color: rgb(var(--rgb-beige) / 0.95);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card:hover .feature-icon {
  transform: none;
}

/* ---------- Workflow Card Refresh ---------- */
.how-it-works-simple .how-it-works-content h2,
.cta-panel h2 {
  text-wrap: balance;
}

.how-it-works-media {
  position: relative;
  width: min(100%, 760px);
  margin: 0 auto 34px;
  padding: 0 0 18px;
}

.how-it-works-app-frame,
.how-it-works-instagram-frame {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgb(var(--rgb-beige) / 0.92);
  background: linear-gradient(180deg, rgb(var(--rgb-white) / 0.98), rgb(var(--rgb-cream) / 0.96));
  box-shadow:
    inset 0 1px 0 rgb(var(--rgb-white) / 0.92),
    0 16px 40px rgb(var(--rgb-deep-taupe) / 0.12);
}

.how-it-works-app-frame {
  width: min(100%, 680px);
  margin: 0 auto;
}

.how-it-works-instagram-frame {
  width: min(34vw, 210px);
  max-width: 210px;
  position: absolute;
  right: 20px;
  bottom: 0;
  border-radius: 30px;
  box-shadow:
    inset 0 1px 0 rgb(var(--rgb-white) / 0.94),
    0 20px 44px rgb(var(--rgb-deep-taupe) / 0.16);
}

.how-it-works-app-frame img,
.how-it-works-instagram-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.how-subtitle {
  max-width: 760px;
  margin: 0 auto var(--section-intro-gap);
  text-align: center;
  color: var(--text-body);
  font-size: 1.04rem;
  line-height: 1.82;
}

.steps.steps-grid {
  display: grid;
  list-style: none;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 0;
  margin-top: 32px;
  max-width: 1120px;
}

.steps.steps-grid::before {
  content: none;
}

.steps-grid .step {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: none;
  min-height: 100%;
  padding: 32px 30px 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgb(var(--rgb-white) / 0.96), rgb(var(--rgb-white) / 0) 34%),
    linear-gradient(180deg, rgb(var(--rgb-white) / 0.98), rgb(var(--rgb-cream) / 0.96));
  border: 1px solid rgb(var(--rgb-beige) / 0.96);
  border-radius: 28px;
  box-shadow:
    inset 0 1px 0 rgb(var(--rgb-white) / 0.95),
    0 1px 2px rgb(var(--rgb-deep-taupe) / 0.03),
    0 18px 42px rgb(var(--rgb-deep-taupe) / 0.08);
  text-align: left;
  transition: none;
}

.steps-grid .step::before {
  content: attr(data-step);
  position: absolute;
  top: 12px;
  right: 24px;
  font-size: clamp(3.8rem, 8vw, 5.8rem);
  line-height: 1;
  letter-spacing: -0.08em;
  font-weight: 700;
  color: rgb(var(--rgb-terracotta) / 0.34);
  pointer-events: none;
}

.steps-grid .step::after {
  content: "";
  position: absolute;
  inset: auto 20px 0 20px;
  height: 1px;
  background: linear-gradient(90deg, rgb(var(--rgb-terracotta) / 0), rgb(var(--rgb-terracotta) / 0.22), rgb(var(--rgb-terracotta) / 0));
  opacity: 0.8;
}

.steps-grid .step-number {
  display: none;
}

.steps-grid .step-number::after {
  content: none;
}

.steps-grid .step h3 {
  position: relative;
  z-index: 1;
  max-width: 16ch;
  margin-bottom: 14px;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.3;
  text-wrap: balance;
}

.steps-grid .step p {
  position: relative;
  z-index: 1;
  max-width: 40ch;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.76;
}

/* ---------- Problem / Solution Editorial Refresh ---------- */
.problem {
  background:
    radial-gradient(circle at top right, rgb(var(--rgb-terracotta) / 0.12), rgb(var(--rgb-white) / 0) 26%),
    linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-alt) 100%);
}

.problem-showcase {
  display: grid;
  gap: 28px;
  align-items: start;
}

.problem-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.problem-heading h2 {
  max-width: min(100%, 24ch);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-wrap: balance;
}

html[lang="es"] .problem-heading h2 {
  max-width: min(100%, 31ch);
}

.problem-intro.section-intro {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.problem-image-frame {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border: 1px solid rgb(var(--rgb-beige) / 0.92);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgb(var(--rgb-white) / 0.16), rgb(var(--rgb-white) / 0)),
    var(--secondary);
  box-shadow:
    inset 0 1px 0 rgb(var(--rgb-white) / 0.5),
    0 24px 60px rgb(var(--rgb-deep-taupe) / 0.16);
}

.problem-image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(var(--rgb-deep-taupe) / 0.06) 0%, rgb(var(--rgb-deep-taupe) / 0.3) 100%),
    radial-gradient(circle at top right, rgb(var(--rgb-white) / 0.32), rgb(var(--rgb-white) / 0) 28%);
  z-index: 1;
  pointer-events: none;
}

.problem-image-frame::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgb(var(--rgb-white) / 0.34);
  border-radius: 24px;
  z-index: 2;
  pointer-events: none;
}

.problem-image-frame img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
}

.problem .pain-grid {
  margin-top: 0;
}

.problem .pain-card {
  position: relative;
  padding: 30px 30px 28px;
  border-radius: 28px;
  border: 1px solid rgb(var(--rgb-beige) / 0.96);
  background:
    linear-gradient(180deg, rgb(var(--rgb-white) / 0.98), rgb(var(--rgb-cream) / 0.96));
  box-shadow:
    inset 0 1px 0 rgb(var(--rgb-white) / 0.92),
    0 18px 42px rgb(var(--rgb-deep-taupe) / 0.08);
}

.problem .pain-card h3 {
  max-width: 22ch;
  margin-bottom: 14px;
  text-wrap: balance;
}

.problem .pain-card p {
  max-width: 36ch;
}

.solution {
  background:
    radial-gradient(circle at top left, rgb(var(--rgb-terracotta) / 0.08), rgb(var(--rgb-white) / 0) 26%),
    linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-alt) 100%);
}

.solution-inner.solution-inner-alt {
  align-items: center;
}

.solution-content {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgb(var(--rgb-beige) / 0.92);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgb(var(--rgb-white) / 0.94), rgb(var(--rgb-white) / 0) 32%),
    linear-gradient(180deg, rgb(var(--rgb-white) / 0.98), rgb(var(--rgb-cream) / 0.96));
  box-shadow:
    inset 0 1px 0 rgb(var(--rgb-white) / 0.94),
    0 18px 44px rgb(var(--rgb-deep-taupe) / 0.08);
}

.solution-content h2 {
  max-width: 13ch;
  text-wrap: balance;
}

.solution-copy {
  max-width: 34ch;
}

.solution-subline {
  font-size: 1.08rem;
}

.ema-portrait-frame {
  max-width: 380px;
}

.ema-image-note {
  max-width: 320px;
}

@media (max-width: 767px) {
  .problem-heading h2 {
    max-width: 14ch;
  }

  html[lang="es"] .problem-heading h2 {
    max-width: 18ch;
  }

  .problem .pain-card h3,
  .problem .pain-card p,
  .solution-content h2,
  .solution-copy {
    max-width: none;
  }
}

@media (min-width: 960px) {
  .problem-showcase {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    grid-template-areas:
      "cards visual";
    column-gap: 48px;
    row-gap: 26px;
  }

  .problem-visual {
    grid-area: visual;
    position: sticky;
    top: 104px;
    align-self: start;
    order: 0;
  }

  .problem .pain-grid {
    grid-area: cards;
    grid-template-columns: 1fr;
  }
}

.how-it-works-simple .steps-support {
  max-width: 700px;
  margin-top: 32px;
}

.how-it-works.how-it-works-simple {
  padding-top: 32px;
}

.cta-panel {
  background: linear-gradient(135deg, var(--text) 0%, var(--text) 52%, var(--text-muted) 100%);
  border: 1px solid rgb(var(--rgb-white) / 0.08);
}

.cta-panel p {
  color: var(--white);
}

/* ---------- FAQ / Final CTA Visual Integration ---------- */
.faq {
  background:
    radial-gradient(circle at top left, rgb(var(--rgb-terracotta) / 0.1), rgb(var(--rgb-white) / 0) 24%),
    linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-alt) 100%);
}

.faq-layout {
  display: grid;
  gap: 32px;
  align-items: start;
}

.faq-content h2 {
  text-align: left;
}

.faq-content .faq-list {
  margin: var(--section-title-gap) 0 0;
}

.faq-visual {
  position: relative;
}

.faq-visual::before {
  content: "";
  position: absolute;
  inset: auto 18px -22px auto;
  width: 140px;
  height: 140px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgb(var(--rgb-terracotta) / 0.22), rgb(var(--rgb-deep-taupe) / 0.08));
  filter: blur(4px);
  opacity: 0.9;
  pointer-events: none;
}

.faq-visual-frame {
  position: relative;
  overflow: hidden;
  width: min(100%, 380px);
  margin: 0 auto;
  border-radius: 30px;
  border: 1px solid rgb(var(--rgb-beige) / 0.92);
  background: linear-gradient(180deg, rgb(var(--rgb-white) / 0.98), rgb(var(--rgb-cream) / 0.96));
  box-shadow:
    inset 0 1px 0 rgb(var(--rgb-white) / 0.94),
    0 24px 54px rgb(var(--rgb-deep-taupe) / 0.14);
}

.faq-visual-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgb(var(--rgb-white) / 0.34);
  border-radius: 22px;
  z-index: 1;
  pointer-events: none;
}

.faq-visual-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: center;
}

.final-cta {
  background:
    radial-gradient(circle at top right, rgb(var(--rgb-terracotta) / 0.14), rgb(var(--rgb-white) / 0) 24%),
    linear-gradient(180deg, var(--bg-contrast) 0%, var(--secondary) 100%);
}

.final-cta-panel {
  display: grid;
  gap: 28px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgb(var(--rgb-beige) / 0.8);
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgb(var(--rgb-white) / 0.92), rgb(var(--rgb-white) / 0) 32%),
    linear-gradient(135deg, rgb(var(--rgb-cream) / 0.98), rgb(var(--rgb-beige) / 0.96));
  box-shadow:
    inset 0 1px 0 rgb(var(--rgb-white) / 0.96),
    0 24px 60px rgb(var(--rgb-deep-taupe) / 0.12);
  align-items: center;
}

.final-cta-copy {
  text-align: left;
}

.final-cta-copy h2 {
  text-align: left;
  max-width: 12ch;
  text-wrap: balance;
}

.final-subheadline {
  max-width: 34rem;
  margin-bottom: 28px;
}

.final-cta-visual {
  position: relative;
}

.final-cta-visual::before {
  content: "";
  position: absolute;
  top: -18px;
  right: -10px;
  width: 120px;
  height: 120px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgb(var(--rgb-terracotta) / 0.24), rgb(var(--rgb-deep-taupe) / 0.08));
  pointer-events: none;
}

.final-cta-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgb(var(--rgb-beige) / 0.92);
  box-shadow:
    inset 0 1px 0 rgb(var(--rgb-white) / 0.94),
    0 22px 54px rgb(var(--rgb-deep-taupe) / 0.16);
}

.final-cta-image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(var(--rgb-deep-taupe) / 0.06), rgb(var(--rgb-deep-taupe) / 0.22)),
    radial-gradient(circle at top right, rgb(var(--rgb-white) / 0.24), rgb(var(--rgb-white) / 0) 28%);
  z-index: 1;
  pointer-events: none;
}

.final-cta-image-frame::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgb(var(--rgb-white) / 0.34);
  border-radius: 22px;
  z-index: 2;
  pointer-events: none;
}

.final-cta-image-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.waitlist-form-final {
  max-width: 560px;
  margin: 0;
}

@media (max-width: 767px) {
  .faq-content h2,
  .final-cta-copy,
  .final-cta-copy h2 {
    text-align: center;
  }

  .final-cta-copy h2 {
    margin-left: auto;
    margin-right: auto;
  }

  .final-subheadline {
    margin-left: auto;
    margin-right: auto;
  }

  .waitlist-form-final {
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  .faq-layout {
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 44px;
  }

  .faq-visual {
    position: sticky;
    top: 108px;
  }

  .final-cta-panel {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
    gap: 44px;
  }

  .how-it-works-media {
    margin-bottom: 38px;
    padding-bottom: 42px;
  }

  .how-it-works.how-it-works-simple {
    padding-top: 40px;
  }

  .how-it-works-instagram-frame {
    right: 8px;
    bottom: 0;
  }

  .steps.steps-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: stretch;
    max-width: 1040px;
  }

  .steps-grid .step {
    width: min(100%, 720px);
    min-height: 0;
    padding: 38px 34px 34px;
  }

  .steps-grid .step:nth-child(odd) {
    margin-right: auto;
    margin-left: 0;
  }

  .steps-grid .step:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
  }
}

@media (min-width: 1120px) {
  .how-it-works-media {
    width: min(100%, 820px);
  }

  .how-it-works-app-frame {
    width: min(100%, 720px);
  }

  .how-it-works-instagram-frame {
    max-width: 228px;
  }

  .steps.steps-grid {
    gap: 12px;
  }

  .steps-grid .step {
    width: min(100%, 760px);
  }
}

@media (max-width: 767px) {
  .how-it-works-media {
    width: min(100%, 560px);
    margin-bottom: 28px;
    padding-bottom: 0;
  }

  .how-it-works-instagram-frame {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(52vw, 220px);
    max-width: 220px;
    margin: 16px auto 0;
  }

  .how-subtitle {
    font-size: 1rem;
    line-height: 1.75;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .hotel-type-tag,
  .steps-grid .step {
    transition: none;
  }
}

body.landing-page h2 {
  font-size: var(--wp--preset--font-size--xx-large);
}

body.landing-page .btn-primary:hover,
body.landing-page .btn-primary:focus-visible {
  background: #AE684C;
  color: #FFFFFF;
}

body.landing-page .faq-item summary:hover,
body.landing-page .faq-item summary:focus-visible {
  color: #C27A5C;
}

body.landing-page .faq-item summary:hover::after,
body.landing-page .faq-item summary:focus-visible::after,
body.landing-page .faq-item[open] summary::after {
  background: #AE684C;
  color: #FFFFFF;
}
