/* ── Craving Landing Web App Design Tokens ── */
:root {
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Nunito', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-handwriting: 'Sacramento', cursive;

  --color-pink-primary: #EC4899;
  --color-pink-light: #F472B6;
  --color-pink-soft: #FFF0F5;
  --color-purple-primary: #A855F7;
  --color-purple-soft: #FDF4FF;
  --color-amber-primary: #F59E0B;
  --color-amber-soft: #FEF3C7;
  --color-teal-primary: #10B981;
  --color-dark-plum: #2D152B;
  --color-text-body: #475569;
  --color-text-muted: #94A3B8;

  --glass-bg: rgba(255, 255, 255, 0.88);
  --glass-border: rgba(255, 255, 255, 0.82);
  --glass-shadow: 0 20px 40px rgba(236, 72, 153, 0.08);

  --radius-full: 9999px;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
}

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

html, body {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
  position: relative;
}

body {
  font-family: var(--font-body);
  background-color: #FFF9FA;
  color: var(--color-text-body);
  line-height: 1.6;
}

/* Mesh Aura Lights Container (Clips Horizontal Overflow) */
.mesh-aura-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100vw;
  overflow: hidden !important;
  pointer-events: none;
  z-index: -1;
}

.mesh-aura {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.55;
}

.mesh-aura-1 {
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #F472B6 0%, #FFF0F5 70%);
}

.mesh-aura-2 {
  top: 600px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #C084FC 0%, #FDF4FF 70%);
}

.mesh-aura-3 {
  top: 1500px;
  left: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #FDE047 0%, #FEF3C7 70%);
}

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

/* Navbar Header */
.navbar {
  position: sticky;
  top: 16px;
  z-index: 1000;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 24px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-full);
  padding: 10px 24px;
  box-shadow: 0 10px 30px rgba(236, 72, 153, 0.08);
}

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

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.25);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--color-dark-plum);
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: var(--color-pink-primary);
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-dark-plum);
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

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

.nav-actions-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-toggle-pill {
  display: flex;
  align-items: center;
  background: rgba(236, 72, 153, 0.08);
  border: 1.5px solid rgba(236, 72, 153, 0.2);
  border-radius: var(--radius-full);
  padding: 3px;
  gap: 2px;
  flex-shrink: 0;
}

.lang-btn-site {
  border: none;
  background: transparent;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--color-dark-plum);
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-btn-site.active, .lang-btn-site:hover {
  background: #EC4899;
  color: #FFFFFF;
  box-shadow: 0 4px 10px rgba(236, 72, 153, 0.25);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #EC4899 0%, #F472B6 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(236, 72, 153, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 28px rgba(236, 72, 153, 0.45);
}

/* Hero Section */
.hero {
  padding: 70px 0 50px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(236, 72, 153, 0.08);
  border: 1px solid rgba(236, 72, 153, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-pink-primary);
  margin-bottom: 20px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-pink-primary);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--color-dark-plum);
  margin-bottom: 20px;
  word-break: break-word;
}

.gradient-text {
  background: linear-gradient(135deg, #EC4899 0%, #A855F7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--color-text-body);
  margin-bottom: 32px;
  max-width: 520px;
}

/* Vibrant Store Badges */
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  color: #FFFFFF;
  border-radius: 20px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.apple-badge-vibrant {
  background: linear-gradient(135deg, #EC4899 0%, #F472B6 100%);
  box-shadow: 0 10px 24px rgba(236, 72, 153, 0.3);
}

.apple-badge-vibrant:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 30px rgba(236, 72, 153, 0.45);
}

.google-badge-vibrant {
  background: linear-gradient(135deg, #A855F7 0%, #C084FC 100%);
  box-shadow: 0 10px 24px rgba(168, 85, 247, 0.3);
}

.google-badge-vibrant:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 30px rgba(168, 85, 247, 0.45);
}

.badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.badge-text .small-text {
  font-size: 0.7rem;
  opacity: 0.9;
  font-weight: 700;
}

.badge-text .big-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
}

.stat-pink { color: #EC4899; }
.stat-purple { color: #A855F7; }
.stat-amber { color: #F59E0B; }

.stat-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 700;
}

.stat-divider {
  width: 1.5px;
  height: 34px;
  background: rgba(236, 72, 153, 0.15);
}

/* Hero Visual Glass Card */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-glass-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 480px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--glass-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.hero-mascot-container {
  position: relative;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-mascot {
  width: 220px;
  height: 220px;
  object-fit: contain;
  animation: float-mascot 3.5s ease-in-out infinite;
  z-index: 2;
}

@keyframes float-mascot {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

.mascot-aura {
  position: absolute;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.35) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  animation: pulse-aura 3.5s ease-in-out infinite;
}

@keyframes pulse-aura {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.25); opacity: 0.9; }
}

.floating-bubble {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.95);
  border: 1.5px solid rgba(236, 72, 153, 0.25);
  border-radius: var(--radius-full);
  box-shadow: 0 10px 24px rgba(236, 72, 153, 0.12);
  font-weight: 900;
  font-size: 0.9rem;
  color: var(--color-dark-plum);
  z-index: 5;
}

.floating-bubble img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.bubble-1 {
  top: 36px;
  left: -20px;
  animation: float-bubble-1 4s ease-in-out infinite;
}

.bubble-2 {
  bottom: 100px;
  right: -20px;
  animation: float-bubble-2 4.5s ease-in-out infinite;
}

@keyframes float-bubble-1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes float-bubble-2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.mascot-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
}

.week-pill {
  padding: 4px 16px;
  background: linear-gradient(135deg, #EC4899 0%, #F472B6 100%);
  color: #FFFFFF;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 900;
}

.fruit-pill {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-dark-plum);
  text-align: center;
}

/* Global Sections */
.section {
  padding: 85px 0;
}

.section-header {
  margin-bottom: 44px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 900;
  color: var(--color-pink-primary);
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--color-dark-plum);
  line-height: 1.2;
  margin-bottom: 12px;
  word-break: break-word;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-body);
  max-width: 600px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

/* Glass Card Global */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--glass-shadow);
  padding: 32px;
}

/* Growth Simulator */
.growth-simulator-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-xl);
  box-shadow: var(--glass-shadow);
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.growth-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.growth-week-badge {
  padding: 8px 20px;
  background: linear-gradient(135deg, #EC4899 0%, #F472B6 100%);
  color: #FFFFFF;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.1rem;
}

.growth-fruit-badge {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--color-dark-plum);
  background: rgba(236, 72, 153, 0.08);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(236, 72, 153, 0.2);
}

.growth-slider-wrapper {
  margin-bottom: 36px;
}

.slider-label {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-dark-plum);
  margin-bottom: 12px;
}

.custom-slider {
  width: 100%;
  height: 10px;
  appearance: none;
  background: #FFE4E6;
  border-radius: 10px;
  outline: none;
}

.custom-slider::-webkit-slider-thumb {
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #EC4899;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4);
  border: 3px solid #FFFFFF;
  transition: transform 0.15s ease;
}

.custom-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.slider-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  font-weight: 700;
}

.growth-body-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
}

.growth-stats-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.growth-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #FFFFFF;
  border: 1.5px solid rgba(236, 72, 153, 0.18);
  border-radius: 20px;
  padding: 16px 20px;
}

.growth-stat img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.stat-title {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 700;
}

.stat-val {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--color-dark-plum);
}

.growth-letter-box {
  position: relative;
  background: linear-gradient(135deg, #FFF0F5 0%, #FDF4FF 100%);
  border: 1.5px solid rgba(236, 72, 153, 0.25);
  border-radius: 24px;
  padding: 24px 28px;
}

.letter-seal {
  position: absolute;
  top: -28px;
  right: 14px;
  width: 76px;
  height: 76px;
  filter: drop-shadow(0 10px 20px rgba(236, 72, 153, 0.3));
  animation: float-envelope 3.5s ease-in-out infinite;
  z-index: 5;
}

@keyframes float-envelope {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(3deg); }
}

.letter-seal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.letter-header {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--color-pink-primary);
  margin-bottom: 12px;
}

.letter-text {
  font-size: 1.05rem;
  color: var(--color-dark-plum);
  font-weight: 700;
  line-height: 1.6;
  min-height: 80px;
}

/* Radio & Walkie Talkie */
.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.radio-card {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 2.5px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--glass-shadow);
  padding: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.radio-card.active-radio-anim {
  border-color: #EC4899;
  box-shadow: 0 0 40px rgba(236, 72, 153, 0.4);
}

.radio-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--color-teal-primary);
  margin-bottom: 28px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--color-teal-primary);
  border-radius: 50%;
  animation: pulse-dot 1.2s infinite;
}

.radio-avatars {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 32px;
}

.avatar-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.avatar-ring {
  position: relative;
  padding: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, #EC4899 0%, #F472B6 100%);
  box-shadow: 0 8px 16px rgba(236, 72, 153, 0.25);
}

.dad-ring {
  background: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.25);
}

.avatar-ring img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 2.5px solid #FFFFFF;
  object-fit: cover;
  background: #FFFFFF;
}

.avatar-box span {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1rem;
  color: var(--color-dark-plum);
}

.avatar-box small {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  font-weight: 700;
}

.radio-waves-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.pulse-connection {
  width: 56px;
  height: 56px;
  object-fit: contain;
  animation: pulse-icon 2s infinite ease-in-out;
}

.wave-lines {
  display: flex;
  gap: 4px;
}

.wave-lines span {
  width: 4px;
  height: 20px;
  background: var(--color-pink-primary);
  border-radius: 4px;
  animation: wave-bar 1s ease-in-out infinite alternate;
}

.wave-lines span:nth-child(2) { animation-delay: 0.2s; }
.wave-lines span:nth-child(3) { animation-delay: 0.4s; }
.wave-lines span:nth-child(4) { animation-delay: 0.6s; }

.btn-radio-play {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #EC4899 0%, #A855F7 100%);
  color: #FFFFFF;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(168, 85, 247, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  z-index: 10;
}

.btn-radio-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(168, 85, 247, 0.45);
}

.radio-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}

.radio-particle {
  position: absolute;
  font-size: 1.4rem;
  animation: particle-fly 1.2s ease-out forwards;
}

@keyframes particle-fly {
  0% { transform: scale(0.5) translate(0, 0); opacity: 1; }
  100% { transform: scale(1.5) translate(var(--dx), var(--dy)); opacity: 0; }
}

.feature-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.feature-bullets li {
  font-size: 1.05rem;
  line-height: 1.5;
}

/* Realistic Smartphone Mockup */
.craving-interactive-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 2px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--glass-shadow);
  padding: 40px;
  max-width: 960px;
  margin: 0 auto;
}

.craving-grid {
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 36px;
  align-items: center;
}

.craving-menu h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--color-dark-plum);
  margin-bottom: 20px;
}

.craving-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.btn-craving {
  padding: 16px;
  background: #FFFFFF;
  border: 2px solid #FFE4E6;
  border-radius: 18px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--color-dark-plum);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.btn-craving.active, .btn-craving:hover {
  border-color: var(--color-pink-primary);
  background: var(--color-pink-soft);
  color: var(--color-pink-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(236, 72, 153, 0.15);
}

.craving-phone-preview {
  display: flex;
  justify-content: center;
}

.phone-frame-realistic {
  position: relative;
  width: 270px;
  height: 520px;
  background: #000000;
  border-radius: 42px;
  border: 9px solid #1E1B1E;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), inset 0 0 2px rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.phone-notch-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: #000000;
  border-radius: 14px;
  z-index: 10;
}

.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px 0;
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  z-index: 9;
}

.phone-screen {
  position: relative;
  flex: 1;
  background: linear-gradient(180deg, #180B1E 0%, #3B1238 50%, #150619 100%);
  padding: 24px 14px 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.phone-lock-clock {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  line-height: 1;
  margin-top: 30px;
}

.phone-lock-date {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  font-weight: 700;
  margin-bottom: 30px;
}

.phone-notification-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  animation: notif-pop 0.35s ease-out;
}

.notif-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.notif-header img {
  width: 20px;
  height: 20px;
  border-radius: 6px;
}

.notif-header span {
  font-size: 0.68rem;
  font-weight: 900;
  color: var(--color-pink-primary);
  letter-spacing: 0.5px;
}

.notif-header small {
  margin-left: auto;
  font-size: 0.65rem;
  color: var(--color-text-muted);
}

.notif-body strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  color: var(--color-dark-plum);
  margin-bottom: 4px;
}

.notif-body p {
  font-size: 0.76rem;
  color: var(--color-text-body);
  line-height: 1.35;
}

.notif-footer-pill {
  margin-top: 10px;
  padding: 4px 10px;
  background: rgba(245, 158, 11, 0.15);
  color: #D97706;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 900;
  display: inline-block;
}

.phone-home-indicator {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 4px;
}

/* 3D Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 32px 24px;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(236, 72, 153, 0.15);
}

.icon-3d-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-3d-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.feature-card:hover .img-3d-icon {
  transform: scale(1.15) rotate(3deg);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--color-dark-plum);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--color-text-body);
  line-height: 1.5;
}

/* Testimonials Carousel */
.carousel-container {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.carousel-track-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-card-v2 {
  flex: 0 0 340px;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--glass-shadow);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: #F59E0B;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.testimonial-card-v2 p {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-dark-plum);
  line-height: 1.5;
  margin-bottom: 20px;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-profile img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-pink-primary);
}

.user-details strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--color-dark-plum);
}

.user-details span {
  font-size: 0.75rem;
  color: var(--color-pink-primary);
  font-weight: 700;
}

.carousel-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid #FFE4E6;
  box-shadow: 0 6px 16px rgba(236, 72, 153, 0.15);
  font-size: 1.6rem;
  color: var(--color-pink-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  z-index: 10;
}

.carousel-arrow:hover {
  background: var(--color-pink-primary);
  color: #FFFFFF;
  transform: scale(1.1);
}

/* CTA Banner */
.cta-card {
  background: linear-gradient(135deg, #FFF0F5 0%, #FDF4FF 100%);
  border: 2px solid rgba(236, 72, 153, 0.3);
  padding: 60px 40px;
}

.cta-card h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-dark-plum);
  margin-bottom: 12px;
}

.cta-card p {
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.1rem;
}

/* Footer */
.footer {
  background: #FFFFFF;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 40px 0;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

.footer-brand-info strong {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--color-dark-plum);
}

.footer-brand-info p {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

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

.footer-links a {
  text-decoration: none;
  color: var(--color-text-body);
  font-size: 0.85rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-pink-primary);
}

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

/* ─────────────────────────────────────────────────────────────
   📱 SENIOR RESPONSIVE MOBILE & TABLET STYLES (@media max-width: 768px)
   ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Navbar */
  .navbar {
    top: 8px;
    padding: 0 10px;
  }
  
  .nav-container {
    padding: 6px 14px;
    gap: 8px;
  }
  
  .brand-logo {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }
  
  .brand-title {
    font-size: 1rem;
  }
  
  .brand-subtitle {
    display: none; /* Hide subtitle on mobile to keep navbar sleek */
  }

  .nav-links {
    display: none; /* Mobile navigation links hidden */
  }

  .nav-actions-right {
    gap: 6px;
  }

  .lang-toggle-pill {
    padding: 2px;
  }

  .lang-btn-site {
    padding: 4px 8px;
    font-size: 0.72rem;
  }

  .nav-cta {
    padding: 8px 12px;
    font-size: 0.78rem;
    border-radius: var(--radius-full);
  }

  /* Hero Section */
  .hero {
    padding: 24px 0 40px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-badge {
    font-size: 0.76rem;
    padding: 6px 12px;
    margin-bottom: 14px;
  }

  .hero-title {
    font-size: clamp(1.75rem, 7.5vw, 2.4rem);
    line-height: 1.2;
    margin-bottom: 14px;
  }

  .hero-description {
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-bottom: 28px;
  }

  .store-badge {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    padding: 12px 8px;
    border-radius: 20px;
    border: 1px solid rgba(236, 72, 153, 0.18);
    text-align: center;
  }

  .stat-divider {
    display: none;
  }

  .stat-num {
    font-size: 1.2rem;
  }

  .stat-label {
    font-size: 0.65rem;
    line-height: 1.2;
  }

  .hero-glass-card {
    height: 380px;
    padding: 16px;
  }

  .hero-mascot-container {
    width: 180px;
    height: 180px;
  }

  .main-mascot {
    width: 170px;
    height: 170px;
  }

  .floating-bubble {
    padding: 6px 12px;
    font-size: 0.78rem;
  }

  .floating-bubble img {
    width: 22px;
    height: 22px;
  }

  .bubble-1 {
    top: 20px;
    left: 4px;
  }

  .bubble-2 {
    bottom: 70px;
    right: 4px;
  }

  /* Section Spacing & Titles */
  .section {
    padding: 44px 0;
  }

  .section-header {
    margin-bottom: 28px;
  }

  .section-tag {
    font-size: 0.75rem;
  }

  .section-title {
    font-size: clamp(1.45rem, 6vw, 1.9rem);
  }

  .section-subtitle {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  /* Cards & Simulators */
  .glass-card {
    padding: 20px 16px;
    border-radius: 24px;
  }

  .growth-simulator-card, .craving-interactive-card {
    padding: 20px 14px;
    border-radius: 24px;
  }

  .growth-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
  }

  .growth-week-badge, .growth-fruit-badge {
    font-size: 0.85rem;
    padding: 6px 14px;
  }

  .growth-body-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .growth-letter-box {
    padding: 20px 14px;
  }

  .letter-seal {
    width: 56px;
    height: 56px;
    top: -20px;
    right: 10px;
  }

  .letter-text {
    font-size: 0.95rem;
    min-height: 70px;
  }

  /* Radio Card */
  .grid-2-col {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .radio-card {
    padding: 24px 14px;
  }

  .avatar-ring img {
    width: 60px;
    height: 60px;
  }

  .avatar-box span {
    font-size: 0.88rem;
  }

  .pulse-connection {
    width: 44px;
    height: 44px;
  }

  .btn-radio-play {
    padding: 14px;
    font-size: 0.92rem;
  }

  .feature-bullets li {
    font-size: 0.92rem;
  }

  /* Phone Mockup */
  .craving-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .craving-options {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .btn-craving {
    padding: 12px 10px;
    font-size: 0.82rem;
    border-radius: 14px;
  }

  .phone-frame-realistic {
    width: 240px;
    height: 460px;
    border-radius: 36px;
    border-width: 7px;
  }

  .phone-lock-clock {
    font-size: 2.5rem;
    margin-top: 16px;
  }

  .phone-lock-date {
    margin-bottom: 16px;
    font-size: 0.75rem;
  }

  .phone-notification-card {
    padding: 12px;
  }

  .notif-body strong {
    font-size: 0.85rem;
  }

  .notif-body p {
    font-size: 0.72rem;
  }

  /* Features Grid */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 24px 16px;
  }

  /* Testimonials Carousel Mobile Native Touch Swipe */
  .carousel-container {
    padding: 0 10px;
  }

  .carousel-track-wrapper {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 12px 0 24px;
    scrollbar-width: none;
  }

  .carousel-track-wrapper::-webkit-scrollbar {
    display: none;
  }

  .carousel-track {
    transform: none !important;
    gap: 16px;
  }

  .carousel-arrow {
    display: none;
  }

  .testimonial-card-v2 {
    flex: 0 0 84vw;
    max-width: 320px;
    padding: 20px;
    scroll-snap-align: center;
  }

  .testimonial-card-v2 p {
    font-size: 0.88rem;
  }

  /* CTA Banner */
  .cta-card {
    padding: 36px 16px;
    border-radius: 24px;
  }

  .cta-card h2 {
    font-size: 1.7rem;
  }

  .cta-card p {
    font-size: 0.95rem;
  }

  .btn-large {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.98rem;
  }

  /* Footer */
  .footer {
    padding: 30px 0;
  }

  .footer-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }

  /* ⚖️ LEGAL PAGES MOBILE SPECIFIC FIXES (Fixes Screenshot 1 & 2) */
  .legal-page {
    padding: 20px 0 60px;
  }

  .legal-card {
    padding: 20px 14px !important;
    border-radius: 20px !important;
  }

  .legal-header {
    padding-bottom: 16px !important;
    margin-bottom: 24px !important;
  }

  .legal-header h1 {
    font-size: clamp(1.25rem, 5.2vw, 1.75rem) !important;
    line-height: 1.3 !important;
    word-break: break-word !important;
    margin-bottom: 12px !important;
  }

  .legal-meta {
    font-size: 0.76rem !important;
    line-height: 1.4 !important;
  }

  .lang-switcher {
    width: 100%;
    justify-content: center;
    margin-top: 14px !important;
  }

  .lang-btn {
    padding: 6px 14px !important;
    font-size: 0.8rem !important;
  }

  .alert-medical, .alert-danger, .alert-info {
    padding: 14px 12px !important;
    font-size: 0.85rem !important;
    border-radius: 14px !important;
    margin: 16px 0 !important;
    line-height: 1.55 !important;
  }

  .legal-body h2 {
    font-size: 1.15rem !important;
    margin-bottom: 12px !important;
  }

  .legal-body p, .legal-body ul, .legal-body ol {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
  }

  .table-legal {
    display: block !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
  }
}
