/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #FF6B2C;
  --orange-dark: #e85718;
  --orange-light: #fff3ed;
  --green: #2DC653;
  --green-light: #e8f9ed;
  --yellow: #FFD60A;
  --purple: #7B2FBE;
  --dark: #1A1A2E;
  --dark-2: #16213E;
  --gray: #6B7280;
  --gray-light: #F3F4F6;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 40px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --transition: 0.3s ease;
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-fun: 'Nunito', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,107,44,0.4);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,107,44,0.5);
}
.btn-outline {
  border: 2px solid var(--orange);
  color: var(--orange);
  background: transparent;
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 15px 32px; font-size: 1.05rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 30px rgba(0,0,0,0.08);
  padding: 10px 0;
  backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand-logo {
  height: 48px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none;
  font-size: 1.5rem;
  color: var(--dark);
  padding: 4px 8px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  background: linear-gradient(135deg, #FFF8F4 0%, #FFF3ED 40%, #F0FFF4 100%);
  overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}
.shape-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--orange), transparent);
  top: -200px; right: -100px;
}
.shape-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--green), transparent);
  bottom: -100px; left: -100px;
}
.shape-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--yellow), transparent);
  top: 40%; left: 30%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 2px solid var(--orange-light);
  color: var(--orange);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(255,107,44,0.15);
}
h1 {
  font-family: var(--font-fun);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
}
.highlight {
  color: var(--orange);
  position: relative;
}
.highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 6px;
  background: var(--yellow);
  z-index: -1;
  border-radius: 3px;
  opacity: 0.5;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
}
.hero-image {
  position: relative;
}
.hero-image img {
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}
.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  animation: float 3s ease-in-out infinite;
}
.hero-float-card.card-1 { bottom: 40px; left: -30px; animation-delay: 0s; }
.hero-float-card.card-2 { top: 30px; right: -20px; animation-delay: 1.5s; }
.card-emoji { font-size: 2rem; }
.hero-float-card strong { display: block; font-size: 0.9rem; color: var(--dark); }
.hero-float-card small { font-size: 0.75rem; color: var(--gray); }

/* ===== STATS ===== */
.stats-bar {
  background: var(--dark);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item { color: var(--white); }
.stat-number {
  font-family: var(--font-fun);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--orange);
  display: inline;
}
.stat-suffix { font-size: 2rem; font-weight: 800; color: var(--orange); }
.stat-item p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-top: 4px; }

/* ===== SECTION COMMON ===== */
.section-pad { padding: 96px 0; }
.bg-light { background: var(--gray-light); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.section-tag {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-family: var(--font-fun);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-header p {
  color: var(--gray);
  font-size: 1.05rem;
}

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  border: 2px solid transparent;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
}
.step-card:hover {
  transform: translateY(-8px);
  border-color: var(--orange-light);
  box-shadow: var(--shadow);
}
.step-icon { font-size: 3rem; margin-bottom: 12px; }
.step-num {
  font-family: var(--font-fun);
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange-light);
  position: absolute;
  top: 12px; right: 16px;
  line-height: 1;
}
.step-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; }
.step-card p { font-size: 0.9rem; color: var(--gray); }

/* ===== WHY US ===== */
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.why-img-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why-img-wrapper img { border-radius: 24px; }
.why-badge {
  position: absolute;
  background: var(--white);
  border-radius: 50px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow);
}
.badge-1 { top: 20px; left: 20px; color: var(--green); }
.badge-2 { bottom: 20px; right: 20px; color: var(--purple); }
.why-content .section-tag { display: inline-block; margin-bottom: 16px; }
.why-content h2 { margin-bottom: 20px; font-family: var(--font-fun); font-size: clamp(1.8rem,4vw,2.4rem); font-weight: 800; }
.lead-text { font-size: 1.05rem; color: var(--gray); margin-bottom: 28px; }
.promise-list { list-style: none; margin-bottom: 36px; }
.promise-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.95rem;
}
.check {
  color: var(--orange);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ===== MENU ===== */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}
.tab-btn {
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid var(--gray-light);
  color: var(--gray);
  transition: var(--transition);
}
.tab-btn:hover, .tab-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: var(--transition);
  border: 2px solid transparent;
}
.menu-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange-light);
  box-shadow: var(--shadow);
}
.menu-emoji { font-size: 2.8rem; margin-bottom: 14px; }
.menu-card h4 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.menu-card p { font-size: 0.88rem; color: var(--gray); margin-bottom: 14px; }
.menu-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.menu-tags span {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--orange-light);
  color: var(--orange);
}

/* ===== TESTIMONIALS ===== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: var(--transition);
  border: 2px solid transparent;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.testi-card.featured {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: scale(1.04);
}
.testi-card.featured .testi-author strong { color: var(--white); }
.testi-card.featured .testi-author small { color: rgba(255,255,255,0.8); }
.stars { font-size: 1.1rem; color: var(--yellow); margin-bottom: 16px; }
.testi-card.featured .stars { color: var(--yellow); }
.testi-card p { font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; }
.testi-card.featured p { color: rgba(255,255,255,0.92); }
.testi-author { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange-light);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testi-card.featured .avatar { background: rgba(255,255,255,0.25); color: var(--white); }
.testi-author strong { display: block; font-size: 0.95rem; font-weight: 800; }
.testi-author small { font-size: 0.78rem; color: var(--gray); display: block; }

/* ===== SUBSCRIBE ===== */
.subscribe-section {
  background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
}
.subscribe-card {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  color: var(--white);
}
.subscribe-emoji { font-size: 4rem; margin-bottom: 16px; }
.subscribe-card h2 {
  font-family: var(--font-fun);
  font-size: clamp(1.8rem,4vw,2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.subscribe-card p { color: rgba(255,255,255,0.7); margin-bottom: 36px; }
.subscribe-form {
  display: grid;
  gap: 14px;
}
.subscribe-form input {
  width: 100%;
  padding: 15px 20px;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.95rem;
  transition: var(--transition);
}
.subscribe-form input::placeholder { color: rgba(255,255,255,0.4); }
.subscribe-form input:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255,255,255,0.12);
}
.form-note { margin-top: 16px; font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* ===== FAQ ===== */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #E5E7EB; }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--orange); }
.faq-icon {
  font-size: 1.5rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--orange);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-a p { padding-bottom: 20px; color: var(--gray); font-size: 0.95rem; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding-top: 72px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  height: 52px;
  width: auto;
  border-radius: 8px;
  margin-bottom: 18px;
  object-fit: contain;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background var(--transition);
}
.social-links a:hover { background: var(--orange); }
.footer-col h4 {
  color: var(--white);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}
.animate-fade-up { animation: fadeUp 0.7s ease forwards; }
.animate-slide-right { animation: slideRight 0.8s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ===== INNER PAGE LAYOUT ===== */
.page-hero {
  background: linear-gradient(135deg, #FFF8F4 0%, #FFF3ED 100%);
  padding: 140px 0 60px;
  text-align: center;
}
.page-hero h1 { font-family: var(--font-fun); font-size: clamp(2rem,5vw,3rem); font-weight: 900; margin-bottom: 12px; }
.page-hero p { color: var(--gray); font-size: 1.05rem; }
.page-content { max-width: 800px; margin: 0 auto; padding: 64px 24px; }
.page-content h2 {
  font-family: var(--font-fun);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin: 36px 0 12px;
}
.page-content h2:first-child { margin-top: 0; }
.page-content p { color: var(--gray); font-size: 0.95rem; line-height: 1.8; margin-bottom: 16px; }
.page-content ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.page-content ul li { color: var(--gray); font-size: 0.95rem; line-height: 1.8; margin-bottom: 8px; }
.page-content a { color: var(--orange); font-weight: 600; }
.page-content a:hover { text-decoration: underline; }
.last-updated {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 36px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text { order: 1; }
  .hero-image { order: 2; max-width: 500px; margin: 0 auto; }
  .hero-sub { margin: 0 auto 32px; }
  .hero-actions, .hero-trust { justify-content: center; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .testi-card.featured { transform: scale(1); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: white; padding: 24px; gap: 16px; box-shadow: var(--shadow); z-index: 999; }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  .steps-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .menu-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  h1 { font-size: 2rem; }
}

/* ===== APP STORE BADGES ===== */
.hero-app-badges,
.app-store-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 12px;
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,0.08);
  text-decoration: none;
}
.app-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  background: #111;
}
.app-badge-ios { background: #1c1c1e; }
.store-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.badge-text { display: flex; flex-direction: column; line-height: 1.2; }
.badge-text small { font-size: 0.65rem; opacity: 0.75; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-text strong { font-size: 0.95rem; font-weight: 800; }

/* Override for hero (on light bg) */
.hero-app-badges .app-badge {
  background: var(--dark);
  color: var(--white);
}

/* ===== APP SECTION ===== */
.app-section { background: linear-gradient(135deg, #0f0c29, #1A1A2E, #16213E); }
.app-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.app-content .section-tag { margin-bottom: 16px; }
.app-content h2 {
  font-family: var(--font-fun);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.app-content > p { color: rgba(255,255,255,0.7); font-size: 1rem; margin-bottom: 24px; }
.app-features {
  list-style: none;
  margin-bottom: 32px;
}
.app-features li {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-weight: 500;
}
.app-section .app-badge {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
}
.app-section .app-badge:hover {
  background: rgba(255,255,255,0.18);
}

/* ===== PHONE MOCKUP ===== */
.app-mockup {
  display: flex;
  justify-content: center;
}
.phone-frame {
  width: 260px;
  background: #0a0a0a;
  border-radius: 36px;
  padding: 14px;
  box-shadow: 0 0 0 3px #333, 0 30px 80px rgba(0,0,0,0.6);
  animation: float 4s ease-in-out infinite;
  position: relative;
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 6px;
  background: #222;
  border-radius: 4px;
  z-index: 10;
}
.phone-screen {
  background: #fff;
  border-radius: 24px;
  padding: 32px 16px 16px;
  overflow: hidden;
}
.phone-top-bar {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gray);
  margin-bottom: 12px;
}
.phone-header {
  font-family: var(--font-fun);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 4px;
}
.phone-greeting {
  font-size: 0.78rem;
  color: var(--gray);
  margin-bottom: 14px;
}
.phone-menu-card {
  background: linear-gradient(135deg, #FFF3ED, #FFE8D9);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 14px;
  border-left: 4px solid var(--orange);
}
.pmenu-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 4px;
}
.pmenu-dish {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 2px;
}
.pmenu-sub {
  font-size: 0.7rem;
  color: var(--gray);
  margin-bottom: 8px;
}
.pmenu-status {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green);
  background: var(--green-light);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
}
.phone-quick-btns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.pq-btn {
  background: var(--gray-light);
  border-radius: 10px;
  padding: 10px 4px;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  transition: var(--transition);
}
.pq-btn:hover { background: var(--orange-light); color: var(--orange); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(255,107,44,0.5);
  cursor: pointer;
  border: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background 0.2s ease;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(255,107,44,0.6);
}
.back-to-top svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 992px) {
  .app-inner { grid-template-columns: 1fr; text-align: center; }
  .app-mockup { margin-top: 40px; }
  .app-features { text-align: left; }
  .app-store-badges, .hero-app-badges { justify-content: center; }
}
@media (max-width: 480px) {
  .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
  .phone-frame { width: 220px; }
}
