/* --- CSS Reset & Core Variables --- */
:root {
  --orange: #FF8A00;
  --orange-light: #FF9F1A;
  --orange-dark: #E07300;
  
  --dark-deep: #070a10;
  --dark-bg: #0c101c;
  --dark-card: rgba(22, 28, 45, 0.6);
  --dark-border: rgba(255, 255, 255, 0.06);
  
  --light-bg: #ffffff;
  --light-section: #fcfcfd;
  --light-card: #ffffff;
  --light-border: rgba(0, 0, 0, 0.05);
  
  --text-dark-primary: #f3f4f6;
  --text-dark-secondary: #9ca3af;
  --text-light-primary: #111827;
  --text-light-secondary: #4b5563;
  
  --font-display: 'Outfit', sans-serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.03), 0 1px 3px rgba(0,0,0,0.02);
  --shadow-lg: 0 30px 60px rgba(0,0,0,0.06), 0 15px 30px rgba(0,0,0,0.03);
  --shadow-orange: 0 10px 30px rgba(255, 138, 0, 0.15);
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--light-bg);
  color: var(--text-light-primary);
  line-height: 1.5;
  overflow-x: hidden;
}

/* --- Section Containers --- */
.section-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.dark-section {
  background-color: var(--dark-bg);
  color: var(--text-dark-primary);
  position: relative;
  overflow: hidden;
}

.light-section {
  background-color: var(--light-section);
  color: var(--text-light-primary);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
}

@media (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}

p {
  color: var(--text-light-secondary);
}

.dark-section p {
  color: var(--text-dark-secondary);
}

/* --- Navigation Header --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--light-border);
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  background: rgba(255, 255, 255, 0.9);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text-light-primary);
  text-decoration: none;
}

.header-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.btn-signin {
  border: 2px solid var(--orange);
  color: var(--orange);
  background: transparent;
  padding: 8px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-sizing: border-box;
}

.btn-signin:hover {
  background-color: var(--orange);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(255, 138, 0, 0.2);
  transform: translateY(-1px);
}

.nav-links a {
  text-decoration: none;
  color: var(--text-light-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* Button UI Components */
.btn-text {
  background: none;
  border: none;
  font-family: var(--font-sans);
  color: var(--text-light-primary);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-text:hover {
  color: var(--orange);
}

.btn-primary-sm {
  background-color: var(--orange);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition-spring);
}

.btn-primary-sm:hover {
  background-color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 138, 0, 0.2);
}

.btn-primary {
  background-color: var(--orange);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-spring);
}

.btn-primary:hover {
  background-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 138, 0, 0.3);
}

.btn-secondary {
  background-color: rgba(0, 0, 0, 0.04);
  color: var(--text-light-primary);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background-color: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.15);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  width: 24px;
  height: 24px;
}

.mobile-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--text-light-primary);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

@media (max-width: 768px) {
  .nav-links, .nav-actions {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
}

/* --- SECTION 1: HERO --- */
.hero-section {
  position: relative;
  background-color: var(--light-bg);
  padding-top: 8rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-visual {
    justify-content: center;
  }
  .hero-image-wrapper {
    margin: 0 auto;
  }
}

.hero-badge {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  background-color: rgba(255, 138, 0, 0.08);
  padding: 6px 14px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-size: 3.8rem;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

@media (max-width: 500px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-light-secondary);
  margin-bottom: 2rem;
  max-width: 540px;
}

@media (max-width: 900px) {
  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-bottom: 2.5rem;
  font-weight: 600;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .hero-benefits {
    justify-content: center;
  }
}

.check-icon {
  color: var(--orange);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

@media (max-width: 900px) {
  .hero-actions {
    justify-content: center;
  }
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 0 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-mockup {
  width: 100%;
  display: block;
}

.floating-badge {
  position: absolute;
  background: white;
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-1 {
  bottom: 30px;
  left: -20px;
  animation: float-badge 3s ease-in-out infinite alternate;
}

.badge-2 {
  top: 40px;
  right: -30px;
  animation: float-badge 3s ease-in-out infinite alternate-reverse;
}

@media (max-width: 500px) {
  .floating-badge {
    display: none;
  }
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10b981;
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: inherit;
  border-radius: inherit;
  animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}

@keyframes float-badge {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

/* --- SECTION 2: AREA DINERS ANALYTICS --- */
.growth-section {
  background-color: var(--light-section);
  position: relative;
  padding: 1.5rem 0 5rem 0;
  overflow: visible;
}

.growth-section .growth-content h2 {
  color: var(--text-light-primary) !important;
  text-shadow: none !important;
}

.growth-section .growth-content .section-lead {
  color: var(--text-light-secondary) !important;
  font-weight: 400 !important;
  text-shadow: none !important;
}

.growth-section .benefit-list strong,
.growth-section .benefit-list Strong {
  color: var(--text-light-primary) !important;
  font-weight: 600 !important;
  text-shadow: none !important;
}

.growth-section .section-tag {
  color: var(--orange) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  text-shadow: none !important;
}

.growth-section .icon-wrap {
  background-color: rgba(255, 138, 0, 0.22);
  border: 1.5px solid rgba(255, 138, 0, 0.65);
  color: #FF8A00;
}



.growth-container {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  align-items: center;
  gap: 4rem;
}

@media (max-width: 950px) {
  .growth-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.growth-content {
  display: flex;
  flex-direction: column;
}

.growth-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--text-light-primary);
}

.growth-content .section-lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-light-secondary);
  margin-bottom: 2rem;
}

/* Dashboard Animation Stage Layout */
.growth-visual {
  width: 100%;
  align-self: start;
}

.dashboard-stage {
  position: relative;
  width: 100%;
  max-width: 560px; /* Wider stage to support wider insights slideshow */
  margin: 0 40px 0 auto; /* Align to the right with 40px right margin matching the phone */
  display: flex;
  flex-direction: column; /* Stack main stats card and slideshow card vertically */
  align-items: flex-end;  /* Align children to the right edge so stats card aligns with phone mockup */
  gap: 1.5rem;            /* Clean vertical gap of 24px between them */
  justify-content: center;
  padding: 180px 0px 10px 0px; /* padding top matches phone overhang + space */
}

.dashboard-glow {
  position: absolute;
  bottom: 30px;
  left: 20%;
  width: 60%;
  height: 60%;
  border-radius: 40px;
  background: radial-gradient(circle, rgba(255, 138, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(20px);
}

/* Fall zone for diner cards */
.drop-zone {
  position: absolute;
  bottom: 205px; /* sit precisely on top edge of stats card */
  left: 0;
  width: 320px;
  height: 230px;
  z-index: 5;
  pointer-events: none;
}

.trail-paths {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.6;
}

.falling-diners-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Main Statistics Card */
.stats-card {
  width: 320px;
  background-color: #ffffff;
  border: 1.5px solid rgba(255, 138, 0, 0.12);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 15px 40px rgba(255, 138, 0, 0.04), 
              0 2px 4px rgba(0, 0, 0, 0.01);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  z-index: 10;
  transform-origin: center bottom;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.stats-card.bounce {
  animation: stats-card-bounce 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.stats-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.stats-icon-wrap {
  width: 40px;
  height: 40px;
  background-color: var(--orange);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-card-title-block h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

.stats-card-title-block p {
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 500;
}

.live-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: #ecfdf5;
  border: 1px solid #d1fae5;
  color: #065f46;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: auto;
  align-self: flex-start;
}

.live-pulse-dot {
  width: 6px;
  height: 6px;
  background-color: #10b981;
  border-radius: 50%;
  animation: live-pulse-glow 1.5s infinite;
}

.counter-display {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 0.5rem;
}

.counter-val-large {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
  transition: transform 0.25s var(--transition-spring);
  display: inline-block;
}

.counter-val-large.pulse {
  transform: scale(1.1);
  color: var(--orange);
}

.counter-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.05em;
}

.stats-trend {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #10b981;
  font-weight: 700;
  font-size: 0.82rem;
  margin-top: 2px;
  transition: var(--transition-smooth);
}

.stats-trend.pulse {
  animation: green-trend-flash 0.5s ease-out;
}

.trend-arrow {
  font-weight: 800;
  font-size: 0.95rem;
}

.stats-card-footer {
  width: 100%;
  overflow: visible;
  margin-top: 0.5rem;
}

.chart-wave {
  width: 100%;
  height: 55px;
  display: block;
  overflow: visible;
}

/* Recent Signups Live Feed Panel */
.recent-signups-panel {
  width: 210px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  align-self: flex-end;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
  height: 250px;
}

@media (max-width: 600px) {
  .recent-signups-panel {
    width: 320px;
    height: 180px;
    align-self: center;
  }
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  padding-bottom: 8px;
}

.panel-header h5 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f172a;
}

.live-activity-indicator {
  font-size: 0.65rem;
  color: #10b981;
  font-weight: 700;
  animation: live-pulse-opacity 1.5s infinite;
}

.live-feed-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  height: 100%;
  position: relative;
}

.panel-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background-color: #fafafb;
  border: 1px solid rgba(0,0,0,0.03);
  border-radius: 10px;
  font-size: 0.75rem;
  animation: panel-item-enter 0.5s cubic-bezier(0.19, 1, 0.22, 1) both;
}

.panel-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: rgba(255, 138, 0, 0.08);
  color: var(--orange);
  font-weight: 700;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.panel-name {
  font-weight: 700;
  color: #1f2937;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Falling Diner Signup Cards */
.diner-signup-card {
  position: absolute;
  left: 35px; /* exactly centered horizontally in the 320px zone: (320 - 250)/2 = 35 */
  background-color: #ffffff;
  border: 1.5px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07), 
              0 2px 4px rgba(0, 0, 0, 0.02);
  width: 250px;
  z-index: 100;
  transform-origin: center center;
  transition: border-color 0.3s;
}

.diner-signup-card.glow {
  border-color: rgba(255, 138, 0, 0.5) !important;
  box-shadow: 0 15px 35px rgba(255, 138, 0, 0.08), 
              0 0 16px rgba(255, 138, 0, 0.15);
}

.diner-info-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.diner-name-lbl {
  font-size: 0.92rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}

.diner-status-lbl {
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 500;
}

.diner-group-icon {
  margin-left: auto;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.diner-signup-card.glow .diner-group-icon {
  color: var(--orange);
}

/* Animations configurations for paths */
.diner-signup-card.path-1 {
  animation: fall-path-left 2.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.diner-signup-card.path-2 {
  animation: fall-path-right 2.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.diner-signup-card.path-3 {
  animation: fall-path-center 2.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* --- Animation Keyframes --- */

@keyframes fall-path-left {
  0% { transform: translate(-80px, -20px) scale(0.85); opacity: 0; }
  12% { opacity: 1; }
  75% { transform: translate(-10px, 145px) scale(1) rotate(-4deg); opacity: 1; }
  100% { transform: translate(0px, 195px) scale(0.75); opacity: 0; }
}

@keyframes fall-path-right {
  0% { transform: translate(80px, -20px) scale(0.85); opacity: 0; }
  12% { opacity: 1; }
  75% { transform: translate(10px, 145px) scale(1) rotate(4deg); opacity: 1; }
  100% { transform: translate(0px, 195px) scale(0.75); opacity: 0; }
}

@keyframes fall-path-center {
  0% { transform: translate(0px, -40px) scale(0.85); opacity: 0; }
  12% { opacity: 1; }
  75% { transform: translate(0px, 145px) scale(1); opacity: 1; }
  100% { transform: translate(0px, 195px) scale(0.75); opacity: 0; }
}

@keyframes stats-card-bounce {
  0% { transform: scale(1); }
  25% { transform: scale(0.96) translateY(5px); border-color: rgba(255, 138, 0, 0.4); box-shadow: 0 5px 15px rgba(255, 138, 0, 0.08); }
  60% { transform: scale(1.02) translateY(-2px); }
  100% { transform: scale(1); }
}

@keyframes green-trend-flash {
  0% { transform: scale(1); opacity: 1; }
  40% { transform: scale(1.12); color: #059669; }
  100% { transform: scale(1); }
}

@keyframes panel-item-enter {
  0% { transform: translateY(-15px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes live-pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

@keyframes live-pulse-opacity {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@keyframes pulse-opacity {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* --- SECTION 2: THIS IS HOW DINEEZ WORKS (Features & Phone Mockup) --- */
.dineez-works-section {
  background-image: linear-gradient(to right, rgba(7, 10, 16, 0.72) 0%, rgba(7, 10, 16, 0.45) 45%, rgba(7, 10, 16, 0.15) 75%, rgba(7, 10, 16, 0.05) 100%), url('assets/family_dining.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 3rem 0 0 0; /* Reduced top padding to make image height smaller */
  overflow: visible; /* allow falling cards to exit the bottom container border */
  z-index: 10; /* Render on top of Section 3's light background */
}

.dineez-works-section .works-container {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.works-container {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 4rem;
}

@media (max-width: 950px) {
  .works-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.works-section-heading {
  font-size: 3.8rem !important;
  font-weight: 800 !important;
  line-height: 1.05 !important;
  margin-bottom: 1rem !important;
  color: #ffffff !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9) !important;
}

.works-section-lead {
  font-size: 1.15rem !important;
  line-height: 1.5 !important;
  color: rgba(255, 255, 255, 0.8) !important;
  margin-bottom: 2.2rem !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.75) !important;
  max-width: 90% !important;
}

.works-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  border: 1px solid transparent;
  background-color: rgba(255, 255, 255, 0.01);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.checklist-item:hover {
  background-color: rgba(255, 255, 255, 0.04);
  transform: translateX(4px);
}

.checklist-item.active {
  background-color: rgba(255, 138, 0, 0.08);
  border-color: rgba(255, 138, 0, 0.25);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.chk-icon-wrap {
  color: var(--orange);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.chk-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.chk-title {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  transition: all 0.3s;
}

.chk-desc {
  color: #9ca3af;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.35;
  transition: all 0.3s;
}

.checklist-item.active .chk-title {
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.checklist-item.active .chk-desc {
  color: #e5e7eb;
}

/* Phone Mockup Styling - Light Theme */
.works-visual {
  display: flex;
  justify-content: flex-end; /* Align phone mockup to the right */
  align-items: flex-end;
  width: 100%;
  align-self: end;
  padding-right: 40px; /* 40px padding from the right edge matching stats card */
}

.phone-mockup-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: -188px; /* Overhang exactly 1/3 of the phone into Section 3 */
}

@media (max-width: 950px) {
  .phone-mockup-stage {
    margin-bottom: 2rem !important; /* stack nicely on mobile without overlapping text */
  }
  .dashboard-stage {
    padding-top: 20px !important; /* normal top padding on mobile */
    margin: 0 auto !important; /* center stats card on mobile */
    align-items: center !important; /* center stack elements on mobile */
    width: 100% !important;
    max-width: 560px !important;
  }
  .works-visual {
    justify-content: center !important; /* center phone on mobile */
    padding-right: 0 !important;
  }
}

.phone-frame {
  width: 270px;
  height: 540px;
  background-color: #000000;
  border: 11px solid #111827;
  border-radius: 36px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6), inset 0 0 8px rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.phone-camera {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 11px;
  height: 11px;
  background-color: #0a0f1d;
  border-radius: 50%;
  z-index: 10;
  border: 1px solid #1e293b;
}

.phone-speaker {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background-color: #1e293b;
  border-radius: 4px;
  z-index: 10;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  overflow: hidden;
  font-family: var(--font-sans);
  color: #1e293b;
}

.app-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.4s ease-in-out, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
}

.app-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}

/* App Header - Light Mode */
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 14px 8px 14px;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.72rem;
  font-weight: 600;
  color: #475569;
  user-select: none;
}

.app-brand {
  color: #0f172a;
  font-family: var(--font-display);
  font-weight: 700;
}

.app-brand span {
  color: var(--orange);
}

.app-content {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  font-size: 0.75rem;
}

/* Slide 0: Welcome - Light Mode */
.welcome-screen {
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 15px;
  height: 100%;
  padding-bottom: 30px;
}

.welcome-logo {
  width: 170px;
  height: 64px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 8px 12px;
  box-sizing: border-box;
}

.welcome-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.welcome-screen h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: -5px;
  color: #0f172a;
}

.welcome-screen p {
  color: #64748b;
  font-size: 0.72rem;
  line-height: 1.4;
  max-width: 90%;
}

.mock-store-btn {
  background: var(--orange);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.7rem;
  margin-top: 10px;
  width: 100%;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(255, 138, 0, 0.15);
}

.mock-free-badge {
  font-size: 0.65rem;
  color: #10b981;
  font-weight: 700;
  background: rgba(16, 185, 129, 0.1);
  padding: 3px 8px;
  border-radius: 100px;
}

/* Slide 1: Menu - Light Mode */
.menu-category {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.menu-item-card {
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.menu-item-info h5 {
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 2px;
  font-size: 0.75rem;
}

.menu-item-info p {
  font-size: 0.62rem;
  color: #64748b;
  line-height: 1.3;
  margin-bottom: 4px;
}

.menu-item-price {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.72rem;
}

.menu-item-action {
  display: flex;
  align-items: center;
  gap: 6px;
}

.qty-btn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  background: #e2e8f0;
  color: #0f172a;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.72rem;
  transition: all 0.2s;
}

.qty-btn.active {
  background: var(--orange);
  color: white;
}

.qty-val {
  font-size: 0.72rem;
  font-weight: 700;
  min-width: 10px;
  text-align: center;
  color: #0f172a;
}

.cart-summary {
  margin-top: auto;
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #0f172a;
}

.btn-checkout {
  background: var(--orange);
  border: none;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.68rem;
  cursor: pointer;
}

/* Slide 2: Waiter - Light Mode */
.waiter-status-box {
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  margin-bottom: 15px;
  margin-top: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.bell-glow {
  font-size: 2.2rem;
  margin-bottom: 8px;
  animation: bell-ring 2.5s infinite ease-in-out;
  display: inline-block;
}

.waiter-status-box h4 {
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 4px;
}

.waiter-status-box p {
  font-size: 0.65rem;
  color: #64748b;
  line-height: 1.4;
}

.service-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-service-call {
  background: var(--orange);
  border: none;
  color: white;
  padding: 10px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.72rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(255, 138, 0, 0.15);
}

.btn-service-bill {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  padding: 9px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.72rem;
  cursor: pointer;
}

.service-toast {
  margin-top: auto;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.15);
  color: #10b981;
  padding: 6px;
  border-radius: 6px;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
}

/* Slide 3: Promos - Light Mode */
.promo-banner {
  border-radius: 12px;
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}

.promo-banner.birthday {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.06), rgba(99, 102, 241, 0.06));
  border-color: rgba(236, 72, 153, 0.15);
}

.promo-banner.event {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.06), rgba(16, 185, 129, 0.06));
  border-color: rgba(59, 130, 246, 0.15);
}

.promo-tag {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ff8a00;
}

.promo-banner h4 {
  color: #0f172a;
  font-weight: 700;
  font-size: 0.8rem;
}

.promo-banner p {
  font-size: 0.62rem;
  color: #4b5563;
  line-height: 1.3;
}

.promo-code {
  background: #ffffff;
  border: 1px dashed rgba(0, 0, 0, 0.15);
  padding: 5px;
  border-radius: 6px;
  text-align: center;
  font-family: monospace;
  font-weight: 700;
  font-size: 0.72rem;
  color: #0f172a;
  margin-top: 4px;
}

.btn-promo-rsvp {
  background: #3b82f6;
  border: none;
  color: white;
  padding: 6px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.62rem;
  cursor: pointer;
  margin-top: 4px;
}

/* Slide 4: Bill Split - Light Mode */
.bill-total-card {
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.bill-total-card span {
  font-size: 0.62rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bill-total-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0f172a;
}

.split-bill-section h5 {
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 0.72rem;
}

.split-slider-wrap span {
  color: #64748b;
  font-size: 0.65rem;
  display: block;
  margin-bottom: 6px;
}

.split-shares {
  display: flex;
  gap: 6px;
}

.share-box {
  flex: 1;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 8px;
  padding: 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.share-box.active {
  background: rgba(255, 138, 0, 0.06);
  border-color: rgba(255, 138, 0, 0.2);
}

.share-name {
  font-size: 0.55rem;
  color: #64748b;
}

.share-box.active .share-name {
  color: var(--orange);
  font-weight: 600;
}

.share-amt {
  font-size: 0.68rem;
  font-weight: 700;
  color: #0f172a;
}

.btn-pay-share {
  margin-top: auto;
  background: var(--orange);
  border: none;
  color: white;
  padding: 8px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.7rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(255, 138, 0, 0.15);
}

/* Slide 5: Rewards - Light Mode */
.loyalty-card {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.card-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-weight: 700;
  font-size: 0.72rem;
}

.card-header-inner span {
  color: #ff9f43;
  font-size: 0.55rem;
  background: rgba(255, 159, 67, 0.15);
  padding: 2px 6px;
  border-radius: 100px;
}

.loyalty-stamps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin: 4px 0;
}

.stamp-slot {
  height: 28px;
  border-radius: 6px;
  border: 1px dashed rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}

.stamp-slot.stamped {
  background: rgba(255, 138, 0, 0.2);
  border: 1px solid rgba(255,138,0,0.4);
  color: #ff9f43;
  font-size: 0.8rem;
  font-weight: 700;
}

.stamp-status {
  font-size: 0.58rem;
  color: #94a3b8;
  text-align: center;
  margin: 0;
}

.rewards-progress {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reward-progress-lbl {
  font-size: 0.62rem;
  color: #64748b;
}

.progress-bar-container {
  height: 5px;
  background: #f1f5f9;
  border-radius: 100px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--orange);
  border-radius: 100px;
}

/* Slide 6: Pickup - Light Mode */
.pickup-status-card {
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  margin-bottom: 12px;
}

.pickup-timer {
  font-size: 0.8rem;
  font-weight: 800;
  color: #10b981;
  margin-bottom: 4px;
  background: rgba(16, 185, 129, 0.1);
  display: inline-block;
  padding: 2px 8px;
  border-radius: 100px;
}

.pickup-status-card h4 {
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 0.75rem;
}

.pickup-status-card p {
  font-size: 0.62rem;
  color: #64748b;
}

.pickup-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 10px;
  position: relative;
}

.pickup-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  color: #94a3b8;
}

.pickup-step.completed {
  color: #475569;
}

.pickup-step.active {
  color: #0f172a;
  font-weight: 600;
}

.step-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid #cbd5e1;
  background: #ffffff;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
}

.pickup-step.completed .step-dot {
  background: #10b981;
  border-color: #10b981;
  color: white;
}

.pickup-step.active .step-dot {
  border-color: var(--orange);
  background: var(--orange);
}

.step-dot.pulse {
  animation: live-pulse-opacity 1.5s infinite;
}

/* Slide 7: Favorites - Light Mode */
.fav-restaurant-card {
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.fav-heart {
  font-size: 0.85rem;
}

.fav-info {
  flex: 1;
}

.fav-info h5 {
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 0.72rem;
}

.fav-info p {
  font-size: 0.6rem;
  color: #64748b;
}

.fav-rating {
  font-size: 0.65rem;
  color: #ff9f43;
  font-weight: 700;
}

/* Slide dots - Light Mode */
.phone-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 15px;
  z-index: 5;
}

.phone-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.phone-dot.active {
  background: var(--orange);
  width: 14px;
  border-radius: 100px;
}

@keyframes bell-ring {
  0%, 100% { transform: rotate(0); }
  10%, 30%, 50%, 70%, 90% { transform: rotate(8deg); }
  20%, 40%, 60%, 80% { transform: rotate(-8deg); }
}


/* --- SECTION 3: QR ORDERING --- */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
}

.split-layout.reverse {
  direction: ltr;
}

.split-layout.reverse > *:first-child {
  order: 2;
}

@media (max-width: 900px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .split-layout.reverse > *:first-child {
    order: 0;
  }
}

.device-mockup-wrapper {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
}

.phone-mockup {
  width: 100%;
  border-radius: 40px;
  box-shadow: var(--shadow-lg), 0 0 50px rgba(0,0,0,0.06);
  display: block;
}

.floating-alert {
  position: absolute;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.floating-alert.success {
  background-color: #ecfdf5;
  border: 1px solid #10b981;
  color: #065f46;
  bottom: 50px;
  right: -50px;
  animation: float-badge 3.2s ease-in-out infinite alternate;
}

.floating-alert.info {
  background-color: #eff6ff;
  border: 1px solid #3b82f6;
  color: #1e3a8a;
  top: 100px;
  left: -50px;
  animation: float-badge 2.8s ease-in-out infinite alternate-reverse;
}

@media (max-width: 500px) {
  .floating-alert {
    display: none;
  }
}

.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.benefit-list li {
  display: flex;
  gap: 1.25rem;
}

.icon-wrap {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background-color: rgba(255, 138, 0, 0.08);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-list Strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-light-primary);
  margin-bottom: 2px;
}

.benefit-list span {
  font-size: 0.88rem;
  color: var(--text-light-secondary);
}

/* --- SECTION 4: ORDER & COLLECT --- */
.mockup-frame {
  position: relative;
  max-width: 440px;
  margin: 0 auto;
}

.takeout-mockup {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  display: block;
}

.pickup-overlay-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: rgba(12, 16, 28, 0.85);
  border: 1px solid var(--dark-border);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
}

.active-pulse {
  width: 6px;
  height: 6px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
}

.perks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 1.5rem;
  margin-top: 2.5rem;
}

@media (max-width: 500px) {
  .perks-grid {
    grid-template-columns: 1fr;
  }
}

.perk-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.perk-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 138, 0, 0.08);
  border-radius: 8px;
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

.perk-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.perk-card p {
  font-size: 0.85rem;
  color: var(--text-dark-secondary);
  line-height: 1.5;
}

/* --- SECTION 5: FREE TARGETED ADVERTISING --- */
/* --- 3D CSS SALES FUNNEL --- */
.sales-funnel-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 380px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.funnel-arrows-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.arrow-path {
  stroke-dasharray: 8, 6;
  animation: flow-dash 2s linear infinite;
}

.green-arrow {
  animation-duration: 2.5s;
}

.orange-arrow {
  animation-duration: 1.8s;
}

@keyframes flow-dash {
  to {
    stroke-dashoffset: -28;
  }
}

.sales-funnel-container {
  position: relative;
  z-index: 2;
  perspective: 1000px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.sales-funnel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 420px;
  transform: rotateX(24deg) rotateY(-8deg);
  transform-style: preserve-3d;
}

.funnel-level {
  position: relative;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px 0 28px;
  color: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12), inset 0 2px 3px rgba(255, 255, 255, 0.25);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  transform-style: preserve-3d;
  cursor: pointer;
  border-radius: 12px 12px 24px 24px / 12px 12px 24px 24px;
}

.funnel-level::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.22) 0%, rgba(255, 255, 255, 0.12) 50%, rgba(0, 0, 0, 0.32) 100%);
  pointer-events: none;
}

.funnel-level:hover {
  transform: translateZ(20px) scale(1.04);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.22);
}

.funnel-level-1 {
  width: 100%;
  background: linear-gradient(135deg, #ef4444, #b91c1c); /* Red */
}

.funnel-level-2 {
  width: 85%;
  background: linear-gradient(135deg, #f97316, #c2410c); /* Orange */
}

.funnel-level-3 {
  width: 70%;
  background: linear-gradient(135deg, #f59e0b, #b45309); /* Yellow-orange */
}

.funnel-level-4 {
  width: 55%;
  background: linear-gradient(135deg, #10b981, #047857); /* Green */
}

.funnel-level-content {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}

.funnel-level-title {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.funnel-level-sub {
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.85;
}

.funnel-level-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.funnel-level-icon svg {
  width: 18px;
  height: 18px;
}

.icon-wrap.blue {
  background-color: rgba(59, 130, 246, 0.08);
  color: #3b82f6;
}

.tag-blue {
  background-color: rgba(59, 130, 246, 0.08);
  color: #3b82f6;
}

@media (max-width: 900px) {
  .sales-funnel-wrapper {
    height: 340px;
    margin-top: 2rem;
  }
  .sales-funnel {
    transform: rotateX(10deg) rotateY(0deg); /* Reduce rotation on mobile */
  }
}

.promo-interactive-box {
  display: grid;
  grid-template-columns: 280px 1fr;
  background-color: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .promo-interactive-box {
    grid-template-columns: 1fr;
  }
}

.promo-tabs {
  background-color: #fafafb;
  border-right: 1px solid var(--light-border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .promo-tabs {
    flex-direction: row;
    flex-wrap: wrap;
    border-right: none;
    border-bottom: 1px solid var(--light-border);
  }
}

.promo-tab {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  text-align: left;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--text-light-secondary);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.promo-tab:hover {
  background-color: rgba(0, 0, 0, 0.02);
  color: var(--text-light-primary);
}

.promo-tab.active {
  background-color: rgba(255, 138, 0, 0.08);
  color: var(--orange);
}

.promo-preview-content {
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 100% 100%, rgba(255, 138, 0, 0.03) 0%, transparent 60%);
}

@media (max-width: 500px) {
  .promo-preview-content {
    padding: 1.5rem;
  }
}

.ad-mock-card {
  width: 100%;
  max-width: 380px;
  background-color: #101524;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  color: #fff;
  transition: var(--transition-spring);
}

.ad-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-dark-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 8px;
  margin-bottom: 12px;
}

.ad-target-indicator {
  color: var(--orange);
}

.ad-card-body h3 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 6px;
}

.ad-card-body p {
  font-size: 0.8rem;
  color: var(--text-dark-secondary) !important;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.ad-audience-spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spec-tag {
  font-size: 0.7rem;
  font-weight: 700;
  background-color: rgba(255, 255, 255, 0.03);
  padding: 4px 10px;
  border-radius: 4px;
  align-self: flex-start;
  color: var(--text-dark-secondary);
}

.ad-card-footer {
  margin-top: 1.5rem;
}

.ad-card-footer button {
  width: 100%;
  background-color: var(--orange);
  color: white;
  border: none;
  padding: 10px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.ad-card-footer button:hover {
  background-color: var(--orange-dark);
}

/* --- SECTION 6: AUTO REWARDS --- */
.rewards-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

@media (max-width: 900px) {
  .rewards-cards-grid {
    grid-template-columns: 1fr;
  }
}

.reward-theme-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.reward-theme-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 138, 0, 0.25);
  box-shadow: 0 20px 40px rgba(255, 138, 0, 0.05);
}

.card-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 138, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.reward-icon-badge {
  width: 46px;
  height: 46px;
  background-color: rgba(255, 138, 0, 0.08);
  border-radius: 12px;
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.reward-theme-card h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.reward-theme-card p {
  font-size: 0.88rem;
  line-height: 1.6;
}

.reward-preview-metric {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
}

.metric-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.metric-lbl {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark-secondary);
  margin-top: 4px;
}

/* --- SECTION 7: BUSINESS INTELLIGENCE --- */
.bi-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2.2rem;
}

.bi-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-light-secondary);
}

.bullet-dot {
  width: 6px;
  height: 6px;
  background-color: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

.bi-item strong {
  color: var(--text-light-primary);
}

.bi-dashboard-panel {
  width: 100%;
  max-width: 500px;
  background-color: #0b0f19;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  box-shadow: var(--shadow-lg), 0 30px 60px rgba(0,0,0,0.15);
  color: #fff;
  overflow: hidden;
  margin: 0 auto;
}

.db-header {
  background-color: #0e1320;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.db-dot-group {
  display: flex;
  gap: 6px;
}

.db-dot-group span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.15);
}

.db-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-dark-secondary);
  text-transform: uppercase;
}

.db-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 1.25rem;
}

.db-metric-card {
  background-color: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
}

.card-tag {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-dark-secondary);
  text-transform: uppercase;
}

.card-val {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 2px;
}

.text-green {
  color: #10b981;
}

.db-charts-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 10px;
  padding: 0 1.25rem 1.25rem 1.25rem;
}

@media (max-width: 500px) {
  .db-charts-row {
    grid-template-columns: 1fr;
  }
}

.db-subcard {
  background-color: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 12px;
}

.db-subcard h5 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark-secondary);
  margin-bottom: 8px;
}

.item-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.food-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
}

.funnel-stats-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
}

.stat-line strong {
  color: var(--orange);
}

/* --- SECTION 8: EVERYTHING INCLUDED --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
}

.bento-box {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 20px;
  padding: 2.2rem;
  transition: var(--transition-smooth);
}

.bento-box:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background-color: rgba(22, 28, 45, 0.8);
}

.bento-icon {
  width: 42px;
  height: 42px;
  background-color: rgba(255, 138, 0, 0.08);
  border-radius: 10px;
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.bento-box h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.bento-box p {
  font-size: 0.85rem;
  line-height: 1.5;
}

/* --- SECTION 9: PRICING --- */
.billing-toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.toggle-lbl {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-light-secondary);
}

.discount-badge {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--orange);
  background-color: rgba(255,138,0,0.08);
  padding: 3px 8px;
  border-radius: 100px;
  margin-left: 4px;
}

.billing-switch {
  width: 50px;
  height: 28px;
  border-radius: 100px;
  background-color: rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.billing-switch.active {
  background-color: var(--orange);
  border-color: var(--orange-dark);
}

.switch-handle {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  transition: var(--transition-spring);
}

.billing-switch.active .switch-handle {
  left: 25px;
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  align-items: stretch;
}

@media (max-width: 900px) {
  .pricing-cards-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
}

.pricing-card-box {
  background-color: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: 24px;
  padding: 3rem 2.2rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

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

.pricing-card-box.recommended {
  border: 2px solid var(--orange);
  box-shadow: 0 20px 40px rgba(255, 138, 0, 0.08);
}

.popular-ribbon {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  background-color: var(--orange);
  padding: 4px 10px;
  border-radius: 100px;
}

.pricing-card-header h4 {
  font-size: 1.25rem;
  color: var(--text-light-primary);
  margin-bottom: 0.5rem;
}

.pricing-card-header p {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-light-secondary);
  margin-bottom: 1.5rem;
}

.price-block {
  display: flex;
  align-items: baseline;
  margin-bottom: 1.5rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light-primary);
  align-self: flex-start;
  margin-top: 4px;
}

.price-val {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--text-light-primary);
  line-height: 1;
  transition: var(--transition-spring);
}

.duration {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light-secondary);
  margin-left: 2px;
}

.pricing-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 2rem;
}

.plan-features li {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-light-secondary);
}

.btn-secondary-plan {
  display: block;
  width: 100%;
  background-color: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.06);
  color: var(--text-light-primary);
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  margin-top: auto;
  transition: var(--transition-smooth);
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}

.btn-secondary-plan:hover {
  background-color: rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.1);
}

.btn-primary-plan {
  display: block;
  width: 100%;
  background-color: var(--orange);
  border: none;
  color: white;
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  margin-top: auto;
  transition: var(--transition-smooth);
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}

.btn-primary-plan:hover {
  background-color: var(--orange-dark);
  box-shadow: 0 4px 15px rgba(255,138,0,0.25);
}

.pricing-guarantee {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.85rem;
}

/* --- SECTION 10: FINAL CTA --- */
.final-cta-section {
  position: relative;
  padding: 6rem 0;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 138, 0, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.cta-container {
  padding: 0 1.5rem;
}

.cta-inner-card {
  max-width: 800px;
  margin: 0 auto;
  background: radial-gradient(circle at top, rgba(255,138,0,0.05) 0%, transparent 80%), var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 28px;
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1;
}

.cta-inner-card h2 {
  font-size: 2.8rem;
  color: white;
}

.cta-lead {
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto 2.5rem auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (max-width: 500px) {
  .cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
}

.btn-secondary-cta {
  background-color: rgba(255,255,255,0.04);
  border: 1px solid var(--dark-border);
  color: white;
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-secondary-cta:hover {
  background-color: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}

.cta-extra-badge {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark-secondary);
}

/* --- FOOTER --- */
.app-footer {
  background-color: var(--dark-deep);
  border-top: 1px solid var(--dark-border);
  color: var(--text-dark-secondary);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3.5rem;
  padding-bottom: 3.5rem;
}

@media (max-width: 800px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

.footer-col.brand p {
  font-size: 0.88rem;
  margin-top: 1rem;
  max-width: 250px;
  line-height: 1.6;
}

.footer-col.brand .logo {
  color: white;
}

.footer-col h5 {
  font-size: 0.88rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

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

.footer-col.links a {
  text-decoration: none;
  font-size: 0.88rem;
  color: var(--text-dark-secondary);
  transition: var(--transition-smooth);
}

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

.footer-col.contact p {
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.03);
  padding: 1.5rem 1.5rem;
  text-align: center;
  font-size: 0.78rem;
}

/* --- BOOK DEMO MODAL --- */
.demo-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  background-color: rgba(7, 10, 16, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  padding: 1rem;
}

.demo-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background-color: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: 24px;
  width: 100%;
  max-width: 460px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.demo-modal.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.7rem;
  border: none;
  background: none;
  color: var(--text-light-secondary);
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  color: var(--text-light-primary);
}

.modal-header h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.modal-header p {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-light-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--light-border);
  background-color: #fafafb;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,138,0,0.15);
  background-color: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  width: 100%;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

.spinner {
  animation: rotate 2s linear infinite;
  width: 100%;
  height: 100%;
  display: block;
}

.spinner .path {
  stroke: #ffffff;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

/* --- Insights Slideshow Card --- */
.insights-slideshow-card {
  width: 560px; /* Wider card than the 320px stats card */
  max-width: 100%; /* prevent overflow on mobile screens */
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02), 0 2px 4px rgba(0,0,0,0.01);
  overflow: hidden;
  position: relative;
  height: 185px; /* stable height for sliding content */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 10;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.insights-slideshow-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.insights-slides-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.insight-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(15px);
  border-radius: 20px;
}

.insight-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.insight-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.insight-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.insight-tag-lbl {
  font-size: 0.68rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: right;
}

.insight-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 6px 0;
  width: 100%;
}

.insight-num-large {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
  font-family: var(--font-display);
}

.insight-substats {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: right;
}

.insight-substats .substat {
  font-size: 0.7rem;
  font-weight: 600;
}

.insight-substats .substat.green {
  color: #10b981;
}

.insight-substats .substat.orange {
  color: #f97316;
}

.insight-footer {
  border-top: 1px solid #f1f5f9;
  padding-top: 10px;
  width: 100%;
  display: flex;
  align-items: center;
}

.insight-desc-lbl {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1e293b;
}

/* Dots Navigation */
.insight-dots {
  position: absolute;
  bottom: 15px;
  right: 20px;
  display: flex;
  gap: 6px;
  z-index: 20;
}

.insight-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s;
}

.insight-dot.active {
  background-color: var(--orange);
  transform: scale(1.2);
}

/* ==========================================================================
   SECTION 3.5 – MARKETING ENGINE FLOW DIAGRAM
   ========================================================================== */
.marketing-flow-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 7rem;
}

/* Background gradient glows */
.flow-bg-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 138, 0, 0.08) 0%, rgba(6, 182, 212, 0.05) 50%, rgba(0,0,0,0) 100%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.flow-canvas-container {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  min-height: 1000px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4.5rem; /* vertical spacing between levels */
}

/* SVG connection pipes underlay */
.flow-pipes-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.flow-pipe-path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.04);
  stroke-width: 4;
  stroke-linecap: round;
}

.flow-pipe-path-active {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  filter: url(#neon-glow);
  opacity: 0.85;
}

/* Particles Overlay */
.flow-particles-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

.flow-particle {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.95);
  color: #070a10;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3), 0 0 8px currentColor;
  transform: translate3d(-50%, -50%, 0) scale(0.8);
  pointer-events: none;
  white-space: nowrap;
  z-index: 10;
  transition: opacity 0.2s ease;
}

.flow-particle-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* Flow Levels Layout */
.flow-level {
  display: flex;
  justify-content: center;
  width: 100%;
  z-index: 2;
}

/* Level 1: Phone Mockup */
.flow-phone-mockup {
  width: 160px;
  height: 75px;
  background: #0f172a;
  border: 3px solid rgba(255, 255, 255, 0.15);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 12px;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.flow-phone-mockup::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}

.phone-screen-content {
  text-align: center;
  position: relative;
  width: 100%;
}

.radar-ping {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: var(--orange);
  border-radius: 50%;
  animation: radar-pulse 2s infinite ease-out;
}

@keyframes radar-pulse {
  0% {
    transform: translateX(-50%) scale(0.8);
    opacity: 0.8;
  }
  100% {
    transform: translateX(-50%) scale(4);
    opacity: 0;
  }
}

.phone-app-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  display: block;
}

.phone-app-name span {
  color: var(--orange);
}

.phone-status-text {
  font-size: 0.55rem;
  color: var(--text-dark-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Glass Cards styling */
.flow-card.glass-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  z-index: 2;
  position: relative;
}

.flow-card.glass-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.flow-card.glass-card.pulse {
  animation: card-pulse-highlight 0.4s ease-out;
}

@keyframes card-pulse-highlight {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.flow-card-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flow-card-details h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  font-family: var(--font-display);
}

.flow-card-details p {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark-secondary);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
}

/* Card custom neon glow borders */
.card-glow-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  pointer-events: none;
  border: 1.5px solid transparent;
  transition: var(--transition-smooth);
}

.flow-card:hover .card-glow-border.red { border-color: rgba(239, 68, 68, 0.4); box-shadow: 0 0 15px rgba(239, 68, 68, 0.15); }
.flow-card:hover .card-glow-border.green { border-color: rgba(16, 185, 129, 0.4); box-shadow: 0 0 15px rgba(16, 185, 129, 0.15); }
.flow-card:hover .card-glow-border.gold { border-color: rgba(251, 191, 36, 0.4); box-shadow: 0 0 15px rgba(251, 191, 36, 0.15); }
.flow-card:hover .card-glow-border.pink { border-color: rgba(236, 72, 153, 0.4); box-shadow: 0 0 15px rgba(236, 72, 153, 0.15); }
.flow-card:hover .card-glow-border.blue { border-color: rgba(6, 182, 212, 0.4); box-shadow: 0 0 15px rgba(6, 182, 212, 0.15); }

.icon-red { color: #ef4444; background: rgba(239, 68, 68, 0.1); }
.icon-green { color: #10b981; background: rgba(16, 185, 129, 0.1); }
.icon-gold { color: #f59e0b; background: rgba(245, 158, 11, 0.1); }
.icon-pink { color: #ec4899; background: rgba(236, 72, 153, 0.1); }

/* Level 3 Grid Layout */
.flow-grid-level {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
  z-index: 2;
}

/* Wide Cards */
.flow-card.wide-card {
  width: 100%;
  max-width: 520px;
  display: block;
}

/* Level 4: Auto Rewards retention card */
.engine-display {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.engine-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.engine-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: spin-gear 12s infinite linear;
}

@keyframes spin-gear {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.engine-header h4 {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 2px;
  font-family: var(--font-display);
}

.engine-header p {
  font-size: 0.75rem;
  color: var(--text-dark-secondary);
}

.engine-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.engine-tag {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 600;
  color: #06b6d4;
}

/* Level 5: Funnel Layout */
.flow-funnel-card {
  width: 100%;
  max-width: 480px;
  background: linear-gradient(180deg, rgba(22, 28, 45, 0.4) 0%, rgba(12, 16, 28, 0.6) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.funnel-container-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-align: center;
}

.flow-funnel-stages {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.funnel-stage {
  position: relative;
  border-radius: 12px;
  padding: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.funnel-stage:hover {
  transform: scale(1.02);
  border-color: rgba(255, 255, 255, 0.1);
}

.funnel-stage.pulse {
  animation: stage-pulse-highlight 0.5s ease-out;
}

@keyframes stage-pulse-highlight {
  0% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.03); filter: brightness(1.2); }
  100% { transform: scale(1); filter: brightness(1); }
}

/* Specials stage: 100% width */
.stage-specials {
  width: 100%;
  background: linear-gradient(90deg, rgba(239, 68, 68, 0.15), rgba(0,0,0,0));
  border-left: 3px solid #ef4444;
}

/* Events stage: 85% width */
.stage-events {
  width: 85%;
  margin: 0 auto;
  background: linear-gradient(90deg, rgba(6, 182, 212, 0.15), rgba(0,0,0,0));
  border-left: 3px solid #06b6d4;
}

/* Birthdays stage: 70% width */
.stage-birthdays {
  width: 70%;
  margin: 0 auto;
  background: linear-gradient(90deg, rgba(236, 72, 153, 0.15), rgba(0,0,0,0));
  border-left: 3px solid #ec4899;
}

.stage-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.stage-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  letter-spacing: 0.02em;
}

.stage-desc {
  font-size: 0.7rem;
  color: var(--text-dark-secondary);
}

/* Level 6: DineEZ Outcome Card */
.outcome-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: center;
}

.outcome-header-block h3 {
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.outcome-header-block p {
  font-size: 0.8rem;
  line-height: 1.4;
  margin: 0;
}

.outcome-badge {
  background: rgba(255, 138, 0, 0.1);
  color: var(--orange);
  font-size: 0.6rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.outcome-metrics {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-left: 1px solid var(--dark-border);
  padding-left: 1.5rem;
}

.outcome-metric {
  display: flex;
  flex-direction: column;
}

.metric-num-highlight {
  font-size: 1.8rem;
  font-weight: 800;
  color: #10b981;
  font-family: var(--font-display);
  line-height: 1.1;
}

.metric-lbl {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-dark-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Live feeding ticker styling */
.active-diners-ticker-wrap {
  border-top: 1px solid var(--dark-border);
  margin-top: 1.25rem;
  padding-top: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
}

.ticker-dot {
  width: 7px;
  height: 7px;
  background-color: #10b981;
  border-radius: 50%;
  display: inline-block;
  animation: radar-ping-effect 1.5s infinite ease-out;
  flex-shrink: 0;
}

@keyframes radar-ping-effect {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.ticker-names-scroll {
  overflow: hidden;
  height: 20px;
  position: relative;
  flex-grow: 1;
}

.ticker-name-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.4s ease, opacity 0.4s ease;
  color: var(--text-dark-primary);
  font-weight: 500;
}

.ticker-name-item.active {
  opacity: 1;
  transform: translateY(0);
}

.ticker-name-item.exit {
  opacity: 0;
  transform: translateY(-10px);
}

/* Responsive styles */
@media (max-width: 900px) {
  .flow-grid-level {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .flow-canvas-container {
    min-height: auto;
    gap: 3rem;
  }
  
  /* Hide SVG paths on mobile layout since positions rearrange significantly */
  .flow-pipes-svg {
    display: none;
  }
}

@media (max-width: 600px) {
  .flow-grid-level {
    grid-template-columns: 1fr;
  }
  
  .outcome-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .outcome-metrics {
    border-left: none;
    border-top: 1px solid var(--dark-border);
    padding-left: 0;
    padding-top: 1rem;
    flex-direction: row;
    justify-content: space-between;
  }
}

/* --- 2x2 Insights Grid --- */
.insights-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
  width: 100%;
}

.insight-card-item {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02), 0 2px 4px rgba(0,0,0,0.01);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 185px; /* stable height */
  text-align: left;
}

.insight-card-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

@media (max-width: 600px) {
  .insights-grid-2x2 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* --- Light Mode overrides for marketing engine flow section --- */
.marketing-flow-section.light-section .flow-card.glass-card {
  background: #0f172a;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.marketing-flow-section.light-section .flow-card-details h3 {
  color: #ffffff;
}

.marketing-flow-section.light-section .flow-card-details p {
  color: #94a3b8;
}

.marketing-flow-section.light-section .engine-header h4 {
  color: #ffffff;
}

.marketing-flow-section.light-section .engine-header p {
  color: #94a3b8;
}

.marketing-flow-section.light-section .engine-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #22d3ee;
}

.marketing-flow-section.light-section .outcome-header-block h3 {
  color: #ffffff;
}

.marketing-flow-section.light-section .outcome-header-block p {
  color: #94a3b8;
}

.marketing-flow-section.light-section .active-diners-ticker-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.marketing-flow-section.light-section .ticker-name-item {
  color: #e2e8f0;
}

.marketing-flow-section.light-section .flow-phone-mockup {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.06);
}

.marketing-flow-section.light-section .flow-pipe-path {
  stroke: rgba(0, 0, 0, 0.08);
}

.marketing-flow-section.light-section .flow-funnel-card {
  background: #0f172a;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.05);
}

.marketing-flow-section.light-section .stage-title {
  color: #ffffff;
}

.marketing-flow-section.light-section .stage-desc {
  color: #94a3b8;
}

.marketing-flow-section.light-section .flow-particle {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 0 8px currentColor;
}

/* --- Section Divider --- */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
  margin: 0;
  position: relative;
  z-index: 10;
}

/* Soft light slate background tint for marketing flow section */
.marketing-flow-section.light-section {
  background-color: #f8fafc;
}

/* --- Light Mode overrides for Order & Collect section --- */
.order-collect-section.light-section {
  background-color: #ffffff;
}

.order-collect-section.light-section .perk-card h4 {
  color: #0f172a;
}

.order-collect-section.light-section .perk-card p {
  color: var(--text-light-secondary);
}

.order-collect-section.light-section .pickup-overlay-tag {
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #0f172a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.order-collect-section.light-section .mockup-frame {
  max-width: 600px;
}

.order-collect-section.light-section .takeout-mockup {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

/* --- Business Type Selector Styling --- */
.business-type-selector-header {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light-secondary);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.business-type-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 850px;
  margin: 0 auto 3rem auto;
  padding: 0 1.5rem;
}

@media (max-width: 768px) {
  .business-type-selector {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.type-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}

.type-card:hover {
  transform: translateY(-2px);
  border-color: var(--orange);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.type-card.active {
  border-color: var(--orange);
  box-shadow: 0 12px 35px rgba(255, 138, 0, 0.06);
  background: #fff;
  outline: 2px solid var(--orange);
}

.type-icon-wrapper {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: #f1f5f9;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.type-card.active .type-icon-wrapper {
  background-color: rgba(255, 138, 0, 0.08);
  color: var(--orange);
}

.type-card-content {
  display: flex;
  flex-direction: column;
}

.type-card-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
}

.type-card-content p {
  font-size: 0.88rem;
  color: var(--text-light-secondary);
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.type-card-content .action-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 0.2s ease;
  margin-top: auto;
}

.type-card:hover .action-link {
  gap: 0.5rem;
}

/* Feature lists styles with included / not included */
.plan-features li.included {
  color: var(--text-light-primary);
}

.plan-features li.not-included-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  list-style: none;
}

.plan-features li.not-included {
  color: #94a3b8;
  opacity: 0.75;
}

.plan-type-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 138, 0, 0.06);
  color: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

/* --- Footer Custom Styling overrides --- */
.footer-logo-container {
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-dark-secondary);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.contact-item svg {
  color: var(--orange);
  flex-shrink: 0;
}

a.contact-item:hover {
  color: var(--orange);
}

.contact-item.no-link {
  cursor: default;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom-tag {
  color: var(--text-dark-secondary);
  opacity: 0.8;
}

@media (max-width: 600px) {
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
}

/* --- SIGN IN MODAL SPECIFICS --- */
.signin-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.signin-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.signin-content {
  background: #ffffff;
  padding: 3rem;
  border-radius: 24px;
  width: 100%;
  max-width: 460px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.signin-modal.active .signin-content {
  transform: translateY(0);
}

.signin-logo-wrapper {
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0,0,0,0.05);
}

.signin-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.password-input-wrapper input {
  transition: border-color var(--transition-smooth);
}

.password-input-wrapper input:focus {
  border-color: var(--orange);
  outline: none;
}

.slide-full-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Video Modal CSS --- */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-modal.active {
  opacity: 1;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-modal.active .video-modal-content {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(15, 23, 42, 0.6);
  border: none;
  color: #fff;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.1);
  line-height: 1;
}

.video-modal-close:hover {
  background: var(--orange);
  transform: scale(1.1);
}

.video-wrapper {
  width: 100%;
  height: 100%;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Ensure controls are fully styled on mobile */
@media (max-width: 768px) {
  .video-modal-content {
    width: 95%;
    border-radius: 8px;
  }
  .video-modal-close {
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
}
