:root {
  --navy: #1a3260;
  --navy-deep: #0d1b33;
  --blue: #3a6db5;
  --blue-light: #6eb8e6;
  --blue-pale: #b8ddf0;
  --sky: #87ceeb;
  --aqua: #00c9b7;
  --aqua-light: #5eeadb;
  --teal: #2a9d8f;
  --sand: #f7edd0;
  --sand-light: #fdf8ee;
  --sand-warm: #f0deb0;
  --sand-dark: #d4b978;
  --sunset: #ff7e5f;
  --sunset-deep: #e85d3a;
  --sunset-light: #ffa07a;
  --coral: #ff6b6b;
  --palm: #2d8a4e;
  --seafoam: #e0f5f0;
  --white: #ffffff;
  --bg: var(--sand-light);
  --bg-sand: var(--sand-light);
  --bg-card: var(--white);
  --text: #1a2a3a;
  --text-muted: #4d6070;
  --text-dim: #8a9aaa;
  --border: rgba(26, 50, 96, 0.08);
  --border-light: rgba(26, 50, 96, 0.05);
  --gradient-ocean: linear-gradient(135deg, #0077b6, #00b4d8, #00c9b7);
  --gradient-sunset: linear-gradient(135deg, #ff7e5f, #feb47b);
  --gradient-sky: linear-gradient(180deg, #0077b6 0%, #00b4d8 40%, #48cae4 70%, #87ceeb 100%);
  --gradient-hero: linear-gradient(180deg, #0077b6 0%, #0096c7 30%, #48cae4 60%, #87ceeb 85%, #b8ddf0 100%);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 8px 32px rgba(0, 77, 120, 0.1);
  --shadow-lg: 0 16px 64px rgba(0, 77, 120, 0.12);
  --shadow-card: 0 2px 16px rgba(0, 77, 120, 0.06);
  --shadow-warm: 0 8px 32px rgba(255, 126, 95, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 77, 120, 0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 42px;
  width: auto;
  transition: all 0.4s ease;
}
.nav-logo-color {
  display: none;
}
.nav.scrolled .nav-logo-white {
  display: none;
}
.nav.scrolled .nav-logo-color {
  display: block;
  height: 38px;
}
.nav-cta {
  background: var(--gradient-sunset);
  color: white;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  border: none;
  box-shadow: var(--shadow-warm);
  text-transform: uppercase;
}
.nav-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px rgba(255, 126, 95, 0.35);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 160px;
  overflow: hidden;
  background: var(--gradient-hero);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 30% 20%, rgba(255, 255, 255, 0.08), transparent),
    radial-gradient(ellipse 50% 40% at 80% 60%, rgba(255, 180, 123, 0.1), transparent),
    radial-gradient(ellipse 80% 30% at 50% 100%, rgba(255, 255, 255, 0.15), transparent);
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: float-particle linear infinite;
}
@keyframes float-particle {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  20% { opacity: 0.4; }
  80% { opacity: 0.4; }
  100% { transform: translateY(-100vh) scale(0.5); opacity: 0; }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 32px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--sunset);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  line-height: 1.0;
  margin-bottom: 16px;
  color: white;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.title-line {
  display: block;
  font-size: clamp(2rem, 6vw, 4rem);
}
.title-accent {
  font-family: 'Permanent Marker', cursive;
  text-transform: none;
  color: var(--sand);
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  -webkit-text-fill-color: var(--sand);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}
.hero-tagline {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: var(--sunset-light);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
  font-weight: 400;
}
.hero-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}
.hero-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
}
.hero-detail svg { color: var(--sand); }
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.btn-primary {
  background: var(--gradient-sunset);
  color: white;
  box-shadow: var(--shadow-warm);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(255, 126, 95, 0.4);
}
.btn-glow {
  box-shadow: 0 0 40px rgba(255, 126, 95, 0.25), var(--shadow-warm);
}
.btn-outline {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* COUNTDOWN */
.hero-countdown { margin-top: 8px; }
.countdown-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  font-weight: 600;
}
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.countdown-block {
  text-align: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 12px 16px;
  min-width: 72px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.countdown-number {
  display: block;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: white;
  -webkit-text-fill-color: white;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}
.countdown-unit {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}
.countdown-sep {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
  padding-bottom: 16px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scroll-pulse 2s ease infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* HERO WAVE */
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}
.hero-wave svg {
  width: 100%;
  height: 100px;
}

/* WAVE DIVIDERS */
.wave-divider {
  line-height: 0;
  margin-top: -1px;
}
.wave-divider svg {
  width: 100%;
  height: 60px;
  display: block;
}
.wave-flip {
  transform: scaleY(-1);
  margin-top: 0;
  margin-bottom: -1px;
}

/* CRISIS BANNER */
.crisis-banner {
  background: var(--bg);
  padding: 80px 0;
}
.crisis-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.crisis-stat {
  text-align: center;
  background: var(--white);
  padding: 32px 36px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  min-width: 220px;
}
.crisis-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--navy);
}
.crisis-symbol {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--teal);
}
.crisis-symbol.crisis-down { color: var(--coral); }
.crisis-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 500;
}
.crisis-tag {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 100px;
  margin-top: 10px;
  font-weight: 700;
}
.crisis-tag-up { background: rgba(42, 157, 143, 0.1); color: var(--teal); }
.crisis-tag-down { background: rgba(255, 107, 107, 0.1); color: var(--coral); }
.crisis-tag-gap { background: rgba(255, 126, 95, 0.1); color: var(--sunset); }
.crisis-divider {
  display: none;
}
.crisis-quote {
  text-align: center;
  font-style: italic;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

/* SECTIONS */
.section {
  padding: 100px 0;
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sunset);
  font-weight: 700;
  margin-bottom: 16px;
}
.section-tag-light { color: var(--sunset); }
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.section-title em {
  font-style: normal;
  font-family: 'Permanent Marker', cursive;
  color: var(--sunset);
  font-weight: 400;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 400;
}

/* PROBLEM */
.section-problem {
  background: var(--bg);
}
.problem-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.problem-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-ocean);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.problem-card:hover::after {
  opacity: 1;
}
.problem-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 119, 182, 0.08), rgba(0, 201, 183, 0.08));
  border-radius: 14px;
  color: #0096c7;
  margin-bottom: 20px;
}
.problem-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy);
}
.problem-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* VIDEO */
.section-video {
  background: var(--white);
}
.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* SOLUTION */
.section-solution { background: var(--bg); }
.solution-content { max-width: 800px; margin: 0 auto; }
.solution-content .section-desc {
  margin-bottom: 48px;
}
.solution-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 48px;
}
.pillar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.pillar:first-child::before {
  background: var(--gradient-ocean);
}
.pillar:last-child::before {
  background: var(--gradient-sunset);
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.pillar-number {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--sunset);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.pillar h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy);
}
.pillar p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
.solution-quote blockquote {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-style: italic;
  text-align: center;
  color: var(--text-muted);
  border-left: none;
  padding: 36px;
  background: linear-gradient(135deg, rgba(0, 119, 182, 0.04), rgba(0, 201, 183, 0.04));
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-weight: 500;
}
.solution-quote strong {
  color: var(--navy);
  font-weight: 800;
}

/* CAPTURE / FLIP */
.section-capture {
  background: var(--white);
}
.flip-comparison {
  display: flex;
  align-items: stretch;
  gap: 24px;
  margin-bottom: 48px;
}
.flip-card {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.flip-old {
  background: #f9f3ec;
}
.flip-new {
  background: linear-gradient(180deg, rgba(0, 201, 183, 0.04), rgba(0, 119, 182, 0.04));
  border-color: rgba(0, 201, 183, 0.2);
  box-shadow: 0 4px 24px rgba(0, 201, 183, 0.08);
}
.flip-header { padding: 20px 28px; }
.flip-badge {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 100px;
  font-weight: 700;
}
.flip-badge-old { background: rgba(255, 107, 107, 0.1); color: var(--coral); }
.flip-badge-new { background: rgba(42, 157, 143, 0.1); color: var(--teal); }
.flip-body { padding: 0 28px 28px; }
.flip-rate { margin-bottom: 24px; }
.flip-rate-number {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--navy);
}
.flip-new .flip-rate-number {
  background: var(--gradient-ocean);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.flip-rate-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.flip-list {
  list-style: none;
  margin-bottom: 24px;
}
.flip-list li {
  padding: 10px 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.flip-list li:last-child { border-bottom: none; }
.flip-annual {
  padding: 18px;
  border-radius: var(--radius-sm);
  background: rgba(26, 50, 96, 0.03);
  text-align: center;
}
.flip-annual-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 4px;
  font-weight: 700;
}
.flip-annual-number {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--navy);
}
.flip-new .flip-annual-number {
  color: var(--teal);
}
.flip-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.flip-vs span {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-sunset);
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.8rem;
  color: white;
  box-shadow: var(--shadow-warm);
}
.capture-gap {
  text-align: center;
}
.gap-inner {
  display: inline-block;
  background: var(--gradient-ocean);
  border-radius: var(--radius-lg);
  padding: 52px 72px;
  box-shadow: 0 16px 48px rgba(0, 119, 182, 0.2);
  position: relative;
  overflow: hidden;
}
.gap-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}
.gap-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
  font-weight: 700;
  position: relative;
}
.gap-number {
  display: block;
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  color: white;
  letter-spacing: 0.02em;
  position: relative;
}
.gap-sub {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-top: 12px;
  max-width: 480px;
  position: relative;
  font-weight: 400;
}

/* STEPS */
.section-steps { background: var(--bg); }
.steps-grid {
  max-width: 700px;
  margin: 0 auto;
}
.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.step-number {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-ocean);
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.3rem;
  color: white;
  box-shadow: 0 6px 20px rgba(0, 119, 182, 0.2);
}
.step-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 6px;
  color: var(--navy);
}
.step-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.step-connector {
  width: 3px;
  height: 28px;
  background: linear-gradient(to bottom, rgba(0, 119, 182, 0.2), rgba(0, 201, 183, 0.1));
  margin-left: 29px;
  border-radius: 2px;
}

/* HOSPITALITY */
.section-hospitality {
  background: var(--navy);
  color: white;
  position: relative;
  overflow: hidden;
}
.section-hospitality::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 30% 80%, rgba(0, 201, 183, 0.08), transparent),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(255, 180, 123, 0.06), transparent);
}
.section-hospitality .container { position: relative; z-index: 1; }
.section-hospitality .section-tag { color: var(--sunset-light); }
.section-hospitality .section-title { color: white; }
.section-hospitality .section-title em {
  color: var(--sand);
}
.section-hospitality .section-desc { color: var(--blue-pale); }
.hospitality-layout {
  max-width: 900px;
  margin: 0 auto;
}
.hospitality-content {
  margin-bottom: 48px;
}
.hospitality-content .section-desc {
  margin-bottom: 16px;
}
.hospitality-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.hosp-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}
.hosp-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
}
.hosp-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 126, 95, 0.15);
  border-radius: 14px;
  color: var(--sunset-light);
  margin-bottom: 16px;
}
.hosp-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
}
.hosp-card p {
  color: var(--blue-pale);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* AGENDA */
.section-agenda { background: var(--bg); }
.agenda-timeline {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
}
.agenda-timeline::before {
  content: '';
  position: absolute;
  left: 72px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #0096c7, #00c9b7, #0096c7);
  opacity: 0.2;
  border-radius: 2px;
}
.agenda-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 28px;
  position: relative;
}
.agenda-time {
  width: 56px;
  flex-shrink: 0;
  text-align: right;
  padding-top: 4px;
}
.agenda-duration {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dim);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.agenda-dot {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background: var(--gradient-ocean);
  border-radius: 50%;
  margin-top: 5px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px var(--bg), 0 0 0 5px rgba(0, 150, 199, 0.15);
}
.agenda-break .agenda-dot {
  background: var(--sand-warm);
  box-shadow: 0 0 0 4px var(--bg), 0 0 0 5px rgba(0, 0, 0, 0.05);
}
.agenda-content {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
}
.agenda-content:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
}
.agenda-break .agenda-content {
  background: var(--sand);
  border: 1px dashed var(--sand-dark);
  box-shadow: none;
}
.agenda-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}
.agenda-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* TAKEAWAYS */
.section-takeaways {
  background: var(--white);
}
.takeaways-grid {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.takeaway {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--sand-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}
.takeaway:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-card);
}
.takeaway-check {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 201, 183, 0.12), rgba(42, 157, 143, 0.12));
  color: var(--teal);
  border-radius: 12px;
}
.takeaway h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--navy);
}
.takeaway p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* VENUE */
.section-venue { background: var(--bg); }
.venue-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.venue-info .section-title {
  text-align: left;
  font-size: 2rem;
}
.venue-location {
  font-size: 1.1rem;
  color: var(--sunset);
  font-weight: 600;
  margin-bottom: 16px;
}
.venue-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.venue-perks {
  display: grid;
  gap: 12px;
}
.venue-perk {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}
.venue-perk svg { color: var(--teal); flex-shrink: 0; }
.venue-map {
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--sand);
  box-shadow: var(--shadow);
}
.venue-map iframe { border-radius: var(--radius-lg); }

/* REGISTER */
.section-register {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}
.section-register::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 100%, rgba(0, 201, 183, 0.08), transparent),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(255, 126, 95, 0.06), transparent);
}
.register-card {
  max-width: 680px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
  position: relative;
  z-index: 1;
}
.register-content { text-align: center; }
.register-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--blue-deep);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.register-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 32px;
  font-weight: 400;
}
.register-price {
  margin-bottom: 32px;
}
.price-amount {
  font-size: 4rem;
  font-weight: 900;
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}
.price-label {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: -4px;
  font-weight: 500;
}
.register-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
  text-align: left;
}
.register-include {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}
.register-include svg { color: var(--teal); flex-shrink: 0; }
.register-form { text-align: left; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.form-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: white;
  font-size: 0.95rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  transition: all 0.2s ease;
  outline: none;
}
.form-input:focus {
  border-color: var(--aqua-light);
  box-shadow: 0 0 0 3px rgba(0, 201, 183, 0.2);
  background: rgba(255, 255, 255, 0.12);
}
.form-input::placeholder { color: rgba(255,255,255,0.35); }
.register-form .btn { margin-top: 8px; }
.form-note {
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  margin-top: 16px;
  font-weight: 500;
}

/* FOOTER */
.footer {
  background: var(--navy-deep);
  padding: 64px 0 32px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
}
.footer-logo-img {
  height: 36px;
  width: auto;
  opacity: 0.85;
}
.footer-tagline {
  color: rgba(255,255,255,0.35);
  font-size: 0.9rem;
  margin-top: 12px;
  font-weight: 400;
}
.footer-links {
  display: flex;
  gap: 64px;
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 8px;
  transition: color 0.2s ease;
  font-weight: 500;
}
.footer-col a:hover { color: var(--aqua-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p {
  color: rgba(255,255,255,0.25);
  font-size: 0.8rem;
  font-weight: 500;
}

/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.modal.active {
  opacity: 1;
  visibility: visible;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 51, 0.8);
  backdrop-filter: blur(8px);
}
.modal-content {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 440px;
  text-align: center;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.modal.active .modal-content {
  transform: scale(1);
}
.modal-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(42, 157, 143, 0.1);
  border-radius: 50%;
  color: var(--teal);
}
.modal-content h3 {
  font-family: 'Permanent Marker', cursive;
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--navy);
  font-weight: 400;
}
.modal-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.register-coming-soon {
  text-align: center;
  padding: 32px 0;
}
.coming-soon-text {
  font-family: 'Permanent Marker', cursive;
  font-size: 1.6rem;
  color: var(--sand);
  margin-bottom: 12px;
}

/* RESPONSIVE */

/* Large tablets / small desktops */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }
  .section-header { margin-bottom: 48px; }
  .flip-comparison { gap: 16px; }
  .venue-layout { gap: 32px; }
  .register-card { padding: 48px 36px; }
  .gap-inner { padding: 44px 52px; }
  .hospitality-cards { grid-template-columns: 1fr 1fr; }
}

/* Tablets and below */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }
  .section-title { font-size: clamp(1.5rem, 5vw, 2.2rem); }
  .section-desc { font-size: 0.95rem; }

  .nav-inner { padding: 0 16px; }
  .nav-cta { padding: 10px 20px; font-size: 0.78rem; }

  /* HERO - MOBILE */
  .hero {
    min-height: auto;
    padding: 100px 20px 120px;
    align-items: flex-start;
    padding-top: 90px;
  }
  .hero-content { max-width: 100%; }
  .hero-badge { font-size: 0.68rem; padding: 8px 16px; margin-bottom: 20px; }
  .title-line { font-size: 1.8rem; }
  .title-accent { font-size: 3.5rem; }
  .hero-tagline { font-size: 1.1rem; margin-bottom: 12px; }
  .hero-subtitle { font-size: 0.9rem; margin-bottom: 24px; max-width: 100%; }
  .hero-details {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
  }
  .hero-detail { font-size: 0.82rem; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 32px;
  }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-wave svg { height: 60px; }
  .hero-scroll-indicator { display: none; }

  .countdown { gap: 4px; }
  .countdown-block { padding: 10px 14px; min-width: 64px; }
  .countdown-number { font-size: 1.5rem; }
  .countdown-sep { font-size: 1.1rem; padding-bottom: 14px; }
  .countdown-label { font-size: 0.7rem; margin-bottom: 10px; }

  .crisis-grid { flex-direction: column; gap: 12px; }
  .crisis-stat { min-width: unset; width: 100%; padding: 24px 20px; }
  .crisis-quote { font-size: 0.95rem; margin-top: 28px; }

  .problem-cards { grid-template-columns: 1fr; gap: 14px; }
  .problem-card { padding: 24px 20px; }

  .video-container { border-radius: var(--radius); }

  .solution-pillars { grid-template-columns: 1fr; gap: 14px; }
  .pillar { padding: 24px 20px; }
  .solution-quote blockquote { padding: 24px 20px; font-size: 1rem; }

  .flip-comparison { flex-direction: column; }
  .flip-vs { transform: rotate(90deg); }
  .flip-card { width: 100%; }
  .flip-rate-number { font-size: 2rem; }
  .gap-inner { padding: 32px 24px; }
  .gap-number { font-size: clamp(2rem, 7vw, 3.5rem); }
  .gap-sub { font-size: 0.85rem; }

  .steps-grid { max-width: 100%; }
  .step { gap: 16px; }
  .step-number { width: 48px; height: 48px; font-size: 1.1rem; }
  .step-connector { margin-left: 23px; height: 20px; }

  .hospitality-cards { grid-template-columns: 1fr; }
  .hosp-card { padding: 24px 20px; }
  .section-hospitality { padding: 64px 0; }

  .agenda-timeline::before { display: none; }
  .agenda-item { flex-direction: column; gap: 6px; margin-bottom: 16px; }
  .agenda-time { width: auto; text-align: left; padding-top: 0; }
  .agenda-dot { display: none; }
  .agenda-content { width: 100%; padding: 20px; }
  .agenda-content h3 { font-size: 0.95rem; }
  .agenda-content p { font-size: 0.85rem; }

  .takeaway { padding: 20px; gap: 14px; }
  .takeaway-check { width: 36px; height: 36px; }

  .venue-layout { grid-template-columns: 1fr; gap: 28px; }
  .venue-info .section-title { font-size: 1.6rem; }
  .venue-map { height: 260px; }

  .register-card { padding: 32px 20px; }
  .register-title { font-size: 1.5rem; }
  .register-includes { grid-template-columns: 1fr; gap: 8px; }
  .form-row { grid-template-columns: 1fr; }
  .price-amount { font-size: 3rem; }
  .section-register { padding: 72px 0; }

  .footer { padding: 48px 0 24px; }
  .footer-inner { flex-direction: column; gap: 28px; }
  .footer-links { gap: 32px; }

  .modal-content { padding: 32px 24px; margin: 0 16px; max-width: calc(100% - 32px); }
  .modal-content h3 { font-size: 1.4rem; }
}

/* Small phones (iPhone SE, etc) */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 52px 0; }

  .nav { padding: 10px 0; }
  .nav-inner { padding: 0 12px; }
  .nav-logo-img { height: 32px; }
  .nav.scrolled .nav-logo-color { height: 30px; }
  .nav-cta { padding: 8px 16px; font-size: 0.72rem; letter-spacing: 0.01em; }

  .hero { padding: 76px 16px 100px; }
  .hero-badge { font-size: 0.6rem; padding: 6px 12px; margin-bottom: 16px; letter-spacing: 0.05em; gap: 6px; }
  .badge-dot { width: 6px; height: 6px; }
  .title-line { font-size: 1.4rem; }
  .title-accent { font-size: 2.6rem; line-height: 1.15; }
  .hero-title { margin-bottom: 10px; }
  .hero-tagline { font-size: 0.95rem; margin-bottom: 10px; }
  .hero-subtitle { font-size: 0.82rem; line-height: 1.6; margin-bottom: 20px; }
  .hero-detail { font-size: 0.75rem; gap: 6px; }
  .hero-detail svg { width: 16px; height: 16px; }
  .hero-details { gap: 6px; margin-bottom: 20px; }
  .hero-actions { gap: 8px; margin-bottom: 24px; }
  .hero-actions .btn { padding: 13px 20px; font-size: 0.82rem; }
  .hero-wave svg { height: 45px; }

  .countdown { gap: 3px; }
  .countdown-block { padding: 8px 10px; min-width: 56px; border-radius: 10px; }
  .countdown-number { font-size: 1.25rem; }
  .countdown-unit { font-size: 0.55rem; letter-spacing: 0.08em; }
  .countdown-sep { font-size: 0.9rem; padding-bottom: 10px; }
  .countdown-label { font-size: 0.65rem; }

  .crisis-banner { padding: 56px 0; }
  .crisis-stat { padding: 20px 16px; }
  .crisis-number { font-size: 1.8rem; }
  .crisis-symbol { font-size: 1.4rem; }
  .crisis-quote { font-size: 0.88rem; }

  .section-title { font-size: 1.3rem; }
  .section-tag { font-size: 0.68rem; }
  .section-desc { font-size: 0.88rem; }

  .problem-card { padding: 20px 16px; }
  .problem-icon { width: 48px; height: 48px; border-radius: 12px; }
  .problem-icon svg { width: 24px; height: 24px; }
  .problem-card h3 { font-size: 1.02rem; }
  .problem-card p { font-size: 0.85rem; }

  .pillar { padding: 20px 16px; }
  .pillar h3 { font-size: 1.02rem; }
  .pillar p { font-size: 0.85rem; }
  .solution-quote blockquote { padding: 20px 16px; font-size: 0.9rem; }

  .flip-header { padding: 14px 16px; }
  .flip-body { padding: 0 16px 16px; }
  .flip-rate-number { font-size: 1.8rem; }
  .flip-list li { font-size: 0.82rem; padding: 8px 0; }
  .flip-annual { padding: 12px; }
  .flip-annual-number { font-size: 1.4rem; }
  .flip-vs span { width: 40px; height: 40px; font-size: 0.7rem; }
  .gap-inner { padding: 28px 20px; }
  .gap-label { font-size: 0.68rem; }
  .gap-number { font-size: 2rem; }
  .gap-sub { font-size: 0.78rem; }

  .step { gap: 12px; }
  .step-number { width: 42px; height: 42px; font-size: 1rem; }
  .step-connector { margin-left: 20px; height: 14px; }
  .step-content h3 { font-size: 0.98rem; margin-top: 4px; }
  .step-content p { font-size: 0.85rem; }

  .hosp-card { padding: 20px 16px; }
  .hosp-icon { width: 44px; height: 44px; border-radius: 12px; }
  .hosp-card h4 { font-size: 0.95rem; }
  .hosp-card p { font-size: 0.82rem; }

  .agenda-content { padding: 16px; }
  .agenda-content h3 { font-size: 0.9rem; }
  .agenda-content p { font-size: 0.8rem; }

  .takeaway { padding: 16px; gap: 12px; }
  .takeaway-check { width: 32px; height: 32px; border-radius: 10px; }
  .takeaway-check svg { width: 16px; height: 16px; }
  .takeaway h4 { font-size: 0.92rem; }
  .takeaway p { font-size: 0.82rem; }

  .venue-info .section-title { font-size: 1.35rem; }
  .venue-location { font-size: 0.95rem; }
  .venue-desc { font-size: 0.85rem; }
  .venue-perk { font-size: 0.85rem; }
  .venue-map { height: 220px; }

  .register-card { padding: 24px 16px; }
  .register-title { font-size: 1.3rem; }
  .register-subtitle { font-size: 0.85rem; }
  .price-amount { font-size: 2.5rem; }
  .register-include { font-size: 0.82rem; }
  .form-input { padding: 12px 14px; font-size: 0.88rem; }
  .form-note { font-size: 0.72rem; }
  .section-register { padding: 60px 0; }

  .footer { padding: 36px 0 20px; }
  .footer-logo-img { height: 28px; }
  .footer-tagline { font-size: 0.8rem; }
  .footer-links { flex-direction: column; gap: 20px; }
  .footer-col h4 { font-size: 0.72rem; }
  .footer-col a { font-size: 0.82rem; }
  .footer-bottom p { font-size: 0.72rem; }
}

/* Very small phones (iPhone SE, Galaxy S) */
@media (max-width: 360px) {
  .hero { padding: 72px 12px 90px; }
  .hero-badge { font-size: 0.55rem; padding: 5px 10px; }
  .title-line { font-size: 1.2rem; }
  .title-accent { font-size: 2.2rem; }
  .hero-tagline { font-size: 0.85rem; }
  .hero-subtitle { font-size: 0.78rem; }
  .hero-detail { font-size: 0.7rem; }
  .hero-actions .btn { padding: 12px 16px; font-size: 0.78rem; }
  .countdown-block { min-width: 50px; padding: 6px 8px; }
  .countdown-number { font-size: 1.1rem; }
  .countdown-unit { font-size: 0.5rem; }
  .countdown-sep { font-size: 0.8rem; }
  .nav-logo-img { height: 28px; }
  .nav-cta { padding: 7px 12px; font-size: 0.68rem; }
  .section-title { font-size: 1.15rem; }
}

/* Landscape phones */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 70px 24px 80px; }
  .hero-wave svg { height: 35px; }
  .hero-scroll-indicator { display: none; }
  .title-line { font-size: 1.5rem; }
  .title-accent { font-size: 2.5rem; }
  .hero-details { flex-direction: row; }
  .hero-actions { flex-direction: row; }
  .hero-actions .btn { width: auto; }
  .countdown-block { min-width: 50px; padding: 6px 8px; }
}

/* Extra-wide screens */
@media (min-width: 1440px) {
  .container { max-width: 1300px; }
  .hero-content { max-width: 1000px; }
}
