/* --- 🎨 Core Design Tokens & System --- */
:root {
  --color-primary: #62b6cb;
  --color-primary-rgb: 98, 182, 203;
  --color-primary-soft: rgba(98, 182, 203, 0.08);
  --color-primary-ring: rgba(98, 182, 203, 0.15);
  
  --color-dark: #cae9ff;
  --color-dark-slate: #bee9e8;
  --color-ink: #cae9ff;
  --color-ink-muted: #bee9e8;
  --color-surface: #1b4965;
  --color-surface-soft: #113043;
  
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- 🧹 Reset & Typography --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-surface-soft);
  color: var(--color-ink);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* --- ✨ Glowing Backdrops & Ambient Accents --- */
/* --- ✨ Ambient Glow Floating Mesh Animations --- */
@keyframes float-orb-1 {
  0% { transform: translate(0px, 0px) scale(1); }
  50% { transform: translate(40px, -60px) scale(1.1); }
  100% { transform: translate(0px, 0px) scale(1); }
}

@keyframes float-orb-2 {
  0% { transform: translate(0px, 0px) scale(1); }
  50% { transform: translate(-50px, 50px) scale(1.15); }
  100% { transform: translate(0px, 0px) scale(1); }
}

.ambient-glow {
  position: absolute;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  opacity: 0.08;
  pointer-events: none;
}

.glow-1 {
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
  top: -10vw;
  right: -10vw;
  animation: float-orb-1 12s ease-in-out infinite;
}

.glow-2 {
  background: radial-gradient(circle, #62b6cb 0%, transparent 70%);
  bottom: 10vw;
  left: -20vw;
  animation: float-orb-2 15s ease-in-out infinite;
}

/* --- 📱 Header Navigation --- */
.app-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 128px; /* Taller header for the 108px logo */
  background-color: rgba(27, 73, 101, 0.95); /* Deep dark blue background #1b4965 */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Shrunk header state triggered on scroll */
.app-header.scrolled {
  height: 96px;
  background-color: rgba(27, 73, 101, 0.98);
  box-shadow: 0 10px 30px rgba(27, 73, 101, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.nav-container {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 16px; /* Rule of 8 */
  position: relative;
}

.brand-logo {
  height: 108px; /* scaled up 50% from 72px */
  width: 108px;
  filter: drop-shadow(0 4px 10px rgba(255, 255, 255, 0.1));
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Scaled down logo in scrolled header */
.app-header.scrolled .brand-logo {
  height: 80px;
  width: 80px;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 16px; /* Slightly tighter for elegant alignment */
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 700; /* Bold weight */
  font-size: 16px; /* Bigger size */
  color: rgba(255, 255, 255, 0.85); /* Highly readable white text on dark blue */
  text-decoration: none;
  padding: 8px 16px; /* Rule of 8 spacing */
  border-radius: 24px; /* Premium pill background */
  background-color: transparent;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
  color: #ffffff; /* Pure white highlight */
  background-color: rgba(255, 255, 255, 0.1); /* Subtle capsule overlay */
}

.nav-btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  background-color: #ffffff; /* Crisp white button to contrast on blue */
  color: var(--color-primary); /* Blue text #0984e3 */
  padding: 10px 20px; /* Rule of 8 padding */
  border-radius: 24px; /* Perfectly matching round capsule */
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-btn:hover {
  transform: translateY(-2px);
  background-color: #ffffff;
  color: var(--color-primary);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.35);
}

.nav-icon-link {
  font-size: 24px !important;
  padding: 6px !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-icon-link:hover {
  transform: scale(1.18);
  background: none !important;
  box-shadow: none !important;
}

/* --- 🚀 Hero Grid Section --- */
.hero-section {
  padding-top: 192px; /* Offset for the taller 128px header */
  padding-bottom: 80px;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.hero-text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary);
  background-color: var(--color-primary-soft);
  padding: 8px 16px; /* Rule of 8 padding */
  border-radius: 8px; /* Rule of 8 border-radius */
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 52px;
  line-height: 1.15;
  color: var(--color-dark);
  letter-spacing: -1.5px;
}

.accent-text {
  color: var(--color-primary);
}

.hero-description {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-ink-muted);
  line-height: 1.7;
}

.hero-badges {
  display: flex;
  gap: 16px; /* Rule of 8 gap */
  margin-top: 16px; /* Rule of 8 margin */
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px; /* Rule of 8 gap */
  background-color: var(--color-surface);
  border: 1px solid rgba(9, 132, 227, 0.08);
  padding: 8px 16px; /* Rule of 8 padding */
  border-radius: 16px; /* Rule of 8 border-radius */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.01);
}

.badge-icon {
  font-size: 18px;
}

.badge-text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-ink);
}

/* --- 📥 Download CTA & Premium Smartphone Mockup --- */
.download-cta-block {
  width: 100%;
  max-width: 440px;
  margin-top: 16px;
  margin-bottom: 24px;
}

.download-button {
  width: 100%;
  text-decoration: none;
  background-color: var(--color-primary);
  color: var(--color-surface);
  border-radius: 16px; /* Rule of 8 */
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 8px 24px rgba(98, 182, 203, 0.25);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.download-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(98, 182, 203, 0.4);
}

.btn-icon {
  font-size: 24px;
}

.btn-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.btn-subtext {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.btn-maintext {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
}

.download-helper {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--color-ink-muted);
  margin-top: 8px;
}

/* --- 📱 CSS-only High-Fidelity Smartphone Mockup --- */
.phone-mockup {
  position: relative;
  width: 320px;
  height: 640px;
  perspective: 1000px;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.phone-mockup:hover {
  transform: translateY(-8px) rotateY(-5deg) rotateX(5deg);
}

.phone-chassis {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #1b4965;
  border: 12px solid #245c7e;
  border-radius: 40px;
  box-shadow: 0 32px 64px rgba(27, 73, 101, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 24px;
  background-color: #245c7e;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  z-index: 100;
}

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

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #f8fafc;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.phone-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Status Bar */
.phone-status-bar {
  height: 32px;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(27, 73, 101, 0.95);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 50;
  padding-top: 4px;
}

.status-icons {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Mock App Body */
.mock-app-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #f1f5f9;
}

/* Mock Header */
.mock-app-header {
  background-color: rgba(27, 73, 101, 0.95);
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  box-shadow: 0 8px 16px rgba(27, 73, 101, 0.1);
}

.mock-app-logo {
  height: 32px;
  width: auto;
}

.mock-user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #62b6cb;
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

/* Mock Wallet Card */
.mock-wallet-card {
  background: linear-gradient(135deg, #1b4965 0%, #62b6cb 100%);
  margin: -16px 16px 16px 16px;
  padding: 16px;
  border-radius: 16px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 24px rgba(27, 73, 101, 0.2);
  z-index: 10;
}

.mock-wallet-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.85;
}

.mock-wallet-balance {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  margin: 4px 0;
}

.mock-wallet-badge {
  font-size: 9px;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 4px 8px;
  border-radius: 8px;
  align-self: flex-start;
  font-weight: 600;
}

/* Menu Grid */
.mock-menu-section {
  flex: 1;
  padding: 0 16px 16px 16px;
  overflow-y: auto;
}

.mock-section-title {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: #1e293b;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mock-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mock-item-card {
  background-color: #ffffff;
  border: 1px solid rgba(9, 132, 227, 0.05);
  border-radius: 12px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.mock-item-emoji {
  font-size: 20px;
  margin-bottom: 4px;
}

.mock-item-name {
  font-weight: 600;
  font-size: 11px;
  color: #1e293b;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-item-category {
  font-size: 8px;
  font-weight: 700;
  padding: 2px 4px;
  border-radius: 4px;
  align-self: flex-start;
  margin-bottom: 8px;
}

.mock-item-category.drink {
  background-color: rgba(98, 182, 203, 0.15);
  color: #62b6cb;
}

.mock-item-category.snack {
  background-color: rgba(230, 126, 34, 0.1);
  color: #e67e22;
}

.mock-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.mock-item-price {
  font-size: 10px;
  font-weight: 700;
  color: #0f172a;
}

/* Counters */
.mock-counter {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: #f1f5f9;
  padding: 2px 6px;
  border-radius: 6px;
}

.counter-btn {
  font-size: 8px;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
}

.counter-val {
  font-size: 9px;
  font-weight: 700;
  color: #0f172a;
}

/* Checkout drawer bar */
.mock-checkout-bar {
  background-color: #ffffff;
  border-top: 1px solid #e2e8f0;
  padding: 8px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
}

.mock-basket-info {
  display: flex;
  flex-direction: column;
}

.basket-count {
  font-size: 9px;
  color: #64748b;
  font-weight: 500;
}

.basket-total {
  font-size: 11px;
  font-weight: 700;
  color: #0f172a;
}

.mock-checkout-btn {
  background-color: #2ecc71;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 4px 8px rgba(46, 204, 113, 0.2);
}

/* --- 🤝 Service Values Grid --- */
.values-section {
  background-color: var(--color-surface);
  padding: 96px 24px; /* Rule of 8 padding */
  border-top: 1px solid rgba(9, 132, 227, 0.08);
}

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

.section-header {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 38px;
  color: var(--color-dark);
  letter-spacing: -1px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  background-color: var(--color-surface-soft);
  border: 1px solid rgba(9, 132, 227, 0.04);
  border-radius: 24px; /* Rule of 8 border-radius */
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition-normal);
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(9, 132, 227, 0.12);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.02);
}

.value-icon-wrapper {
  font-size: 32px;
  background-color: var(--color-surface);
  padding: 16px; /* Rule of 8 padding */
  border-radius: 16px; /* Rule of 8 border-radius */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.01);
}

.value-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-dark);
}

.value-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-ink-muted);
  line-height: 1.6;
}

/* --- 🖥️ Footer --- */
.app-footer {
  background-color: #1b4965; /* Locked brand dark background for perfect cohesion */
  padding: 48px 24px;
  color: rgba(255, 255, 255, 0.6); /* High contrast light grey */
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.footer-copyright {
  font-family: var(--font-body);
  font-size: 14px;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  height: 36px;
  width: 36px;
}

.footer-brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: #ffffff; /* Locked bright white text */
  letter-spacing: 0.5px;
}

/* --- 📱 Responsive Media Queries --- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  
  .hero-text-block {
    align-items: center;
  }
  
  .download-cta-block {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-title {
    font-size: 42px;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none; /* In a production environment, add a hamburger toggle, but keeping it super lightweight */
  }
  
  .app-header {
    height: 96px;
  }
  
  .brand-logo {
    height: 80px;
    width: 80px;
  }
  
  .hero-section {
    padding-top: 160px;
  }
  
  .hero-title {
    font-size: 34px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
}

/* --- ✉️ Contact Us Section --- */
.contact-section {
  background-color: var(--color-surface-soft);
  padding: 96px 24px;
  border-top: 1px solid rgba(9, 132, 227, 0.08);
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form {
  background-color: var(--color-surface);
  border: 1px solid rgba(9, 132, 227, 0.08);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 16px 32px rgba(9, 132, 227, 0.03);
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.form-group-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .form-group-row {
    grid-template-columns: 1fr;
  }
}

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

.form-group label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--color-dark);
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  border: 1px solid rgba(9, 132, 227, 0.15);
  border-radius: 12px;
  background-color: var(--color-surface);
  color: var(--color-dark);
  transition: var(--transition-normal);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px var(--color-primary-ring);
}

.submit-btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  background-color: var(--color-primary);
  color: var(--color-surface);
  padding: 14px 28px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  box-shadow: 0 8px 24px rgba(9, 132, 227, 0.25);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(9, 132, 227, 0.4);
}

.submit-btn:disabled {
  background-color: #cbd5e1;
  color: #64748b;
  cursor: not-allowed;
  box-shadow: none;
}

.form-status {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
  display: none;
}

.form-status.success {
  display: block;
  color: #2ecc71;
}

.form-status.error {
  display: block;
  color: #e74c3c;
}

/* --- 🌗 1. Premium Dark Mode System --- */
body {
  transition: background-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.dark-theme {
  --color-surface: #1b4965;
  --color-surface-soft: #113043;
  --color-dark: #cae9ff;
  --color-dark-slate: #bee9e8;
  --color-ink: #cae9ff;
  --color-ink-muted: #bee9e8;
  --color-primary-soft: rgba(98, 182, 203, 0.18);
  --color-primary-ring: rgba(98, 182, 203, 0.3);
}

/* Update glow orbs in dark mode for dynamic contrast */
.dark-theme .glow-1 {
  background: radial-gradient(circle, rgba(98, 182, 203, 0.15) 0%, transparent 70%);
}

.dark-theme .glow-2 {
  background: radial-gradient(circle, rgba(95, 168, 211, 0.12) 0%, transparent 70%);
}

/* Themed inputs in dark mode */
.dark-theme .form-group input,
.dark-theme .form-group textarea {
  background-color: #113043;
  border-color: rgba(98, 182, 203, 0.25);
}

.dark-theme .form-group input:focus,
.dark-theme .form-group textarea:focus {
  background-color: #1b4965;
}

/* Theme Toggle Button styles */
.theme-toggle-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 16px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: #ffffff;
}

.theme-toggle-btn:hover {
  transform: scale(1.08) rotate(15deg);
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
}

/* --- 📱 2. Screenshot Mockup Swapper styles --- */
.phone-mockup-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.phone-screen {
  position: relative;
  overflow: hidden;
}

.phone-screenshot {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  pointer-events: none;
}

.phone-screenshot.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

/* Mockup Tabs segment bar */
.mockup-tabs {
  display: inline-flex;
  background-color: var(--color-surface);
  border: 1px solid rgba(9, 132, 227, 0.08);
  padding: 6px;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(9, 132, 227, 0.03);
  transition: all 0.3s ease;
}

.dark-theme .mockup-tabs {
  background-color: #113043;
}

.mockup-tab {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 8px 20px;
  border-radius: 20px;
  color: var(--color-ink-muted);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mockup-tab:hover {
  color: var(--color-primary);
}

.mockup-tab.active {
  background-color: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(98, 182, 203, 0.25);
}

/* --- 🥤 3. Mouth-Watering Snack Carousel styles --- */
.snacks-section {
  padding: 96px 24px;
  background-color: var(--color-surface-soft);
  border-top: 1px solid rgba(9, 132, 227, 0.08);
}

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

.snacks-carousel-wrapper {
  overflow: hidden;
  margin-top: 48px;
  position: relative;
}

/* Scroll snap container */
.snacks-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 24px 8px;
  scrollbar-width: none; /* Hide scrollbars firefox */
}

.snacks-track::-webkit-scrollbar {
  display: none; /* Hide scrollbars chrome */
}

/* Item card layout */
.snack-card {
  flex: 0 0 282px;
  scroll-snap-align: start;
  background-color: var(--color-surface);
  border: 1px solid rgba(9, 132, 227, 0.06);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.015);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.dark-theme .snack-card {
  border-color: rgba(98, 182, 203, 0.12);
}

.snack-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(98, 182, 203, 0.08);
  border-color: rgba(98, 182, 203, 0.18);
}

/* Category tag */
.snack-tag {
  align-self: flex-start;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.snack-tag.drink {
  background-color: rgba(98, 182, 203, 0.15);
  color: #62b6cb;
}

.snack-tag.snack {
  background-color: rgba(230, 126, 34, 0.1);
  color: #e67e22;
}

/* Icon / Emoji */
.snack-emoji-wrapper {
  font-size: 40px;
  margin-bottom: 16px;
  background-color: var(--color-surface-soft);
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.01);
  transition: all 0.3s ease;
}

.dark-theme .snack-emoji-wrapper {
  background-color: #113043;
}

.snack-card:hover .snack-emoji-wrapper {
  transform: scale(1.08) rotate(-5deg);
}

.snack-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.snack-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-ink-muted);
  line-height: 1.5;
  margin-bottom: 24px;
}

.snack-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.snack-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--color-dark);
}

.snack-status {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  color: #2ecc71;
}

/* --- ❓ 4. Glassmorphic FAQ Accordion styles --- */
.faq-section {
  padding: 96px 24px;
  background-color: var(--color-surface);
  border-top: 1px solid rgba(9, 132, 227, 0.08);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-accordion {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--color-surface-soft);
  border: 1px solid rgba(9, 132, 227, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.dark-theme .faq-item {
  background-color: #113043;
  border-color: rgba(98, 182, 203, 0.1);
}

.faq-item.active {
  border-color: rgba(98, 182, 203, 0.15);
  box-shadow: 0 12px 24px rgba(98, 182, 203, 0.03);
  background-color: var(--color-surface);
}

.dark-theme .faq-item.active {
  background-color: #113043;
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-dark);
  transition: var(--transition-normal);
}

.faq-trigger:hover {
  color: var(--color-primary);
}

.faq-icon {
  font-size: 14px;
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-ink-muted);
  line-height: 1.6;
  padding: 0 24px 24px 24px;
}

