/* ===================================
   CSS Variables & Reset
=================================== */
:root {
  --orange-darkest: #1E0D03;
  --orange-dark: #3D1A06;
  --orange-primary: #7D3D10;
  --orange-mid: #A85415;
  --orange-accent: #C96B1A;
  --orange-bright: #E07D28;
  --orange-light: #EDA060;
  --orange-pale: #FFDAB8;
  --orange-lightest: #FEF6ED;
  --white: #ffffff;
  --text-dark: #111827;
  --text-mid: #374151;
  --text-gray: #6b7280;
  --text-light: #9ca3af;
  --border: #e5e7eb;
  --border-light: #f3f4f6;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.06);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.08);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.16), 0 8px 24px rgba(0,0,0,0.10);
  --shadow-orange: 0 8px 32px rgba(201,107,26,0.32);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 36px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition-fast: all 0.18s ease;
  --transition: all 0.30s ease;
  --transition-slow: all 0.50s cubic-bezier(0.16,1,0.3,1);
  --nav-height: 72px;
}

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

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
ul { list-style: none; }

/* ===================================
   Typography
=================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; }

p { color: var(--text-gray); line-height: 1.75; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-accent);
  background: var(--orange-lightest);
  border: 1px solid var(--orange-pale);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 16px;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 580px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-orange { color: var(--orange-accent) !important; }
.text-dark { color: var(--text-dark) !important; }

/* ===================================
   Layout Utilities
=================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 120px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { flex-direction: column; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* ===================================
   Buttons
=================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s ease;
}

.btn:hover::after { background: rgba(255,255,255,0.08); }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--orange-bright);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(224,125,40,0.38);
}

.btn-primary:hover {
  background: var(--orange-accent);
  box-shadow: 0 6px 20px rgba(201,107,26,0.48);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--orange-bright);
  border: 2px solid var(--orange-bright);
}

.btn-outline:hover {
  background: var(--orange-lightest);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--orange-primary);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: var(--orange-lightest);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.20);
  transform: translateY(-1px);
}

.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* App Store Badges */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  background: var(--text-dark);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
}

.store-badge:hover {
  background: #1f2937;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.store-badge svg { flex-shrink: 0; }
.store-badge-sub { font-size: 0.65rem; font-weight: 400; opacity: 0.8; display: block; }
.store-badge-title { font-size: 0.95rem; font-weight: 700; line-height: 1.1; }

.store-badges { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===================================
   Animations
=================================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideLeft {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.88); }
  to { opacity: 1; transform: scale(1); }
}

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

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

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

@keyframes shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-6px); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(201,107,26,0.3); }
  50% { box-shadow: 0 0 40px rgba(201,107,26,0.6); }
}

/* Scroll reveal base states */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1);
}

[data-reveal="up"] { transform: translateY(40px); }
[data-reveal="left"] { transform: translateX(50px); }
[data-reveal="right"] { transform: translateX(-50px); }
[data-reveal="scale"] { transform: scale(0.88); }
[data-reveal="fade"] { transform: none; }

[data-reveal].revealed { opacity: 1; transform: none; }

[data-delay="100"] { transition-delay: 0.10s; }
[data-delay="200"] { transition-delay: 0.20s; }
[data-delay="300"] { transition-delay: 0.30s; }
[data-delay="400"] { transition-delay: 0.40s; }
[data-delay="500"] { transition-delay: 0.50s; }
[data-delay="600"] { transition-delay: 0.60s; }

/* ===================================
   Navbar
=================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: var(--transition);
}

.navbar.transparent { background: transparent; }

.navbar.scrolled {
  background: rgba(30, 13, 3, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.07), 0 4px 24px rgba(0,0,0,0.25);
}

.navbar.light-page {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.navbar.light-page .nav-link { color: var(--text-mid); }
.navbar.light-page .nav-link:hover { color: var(--orange-accent); }
.navbar.light-page .hamburger span { background: var(--text-dark); }
.navbar.light-page .logo-text { color: var(--text-dark); }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

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

.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 8px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--orange-accent), var(--orange-mid));
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: inline-block;
  padding: 8px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  cursor: pointer;
}

.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-link.active { color: var(--orange-light); }

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-height);
  right: 0;
  bottom: 0;
  width: min(320px, 100vw);
  background: var(--orange-darkest);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
  box-shadow: -8px 0 32px rgba(0,0,0,0.35);
  border-left: 1px solid rgba(201,107,26,0.2);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu .nav-link {
  display: block;
  padding: 14px 16px;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-md);
}

.mobile-menu .nav-link:hover { background: rgba(201,107,26,0.15); color: var(--white); }
.mobile-menu .btn { width: 100%; margin-top: 16px; justify-content: center; }

.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  backdrop-filter: blur(4px);
}

.menu-overlay.open { display: block; animation: fadeIn 0.25s ease; }

/* ===================================
   Hero Section
=================================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--orange-darkest) 0%, var(--orange-primary) 50%, var(--orange-mid) 100%);
  background-size: 200% 200%;
  animation: gradientShift 10s ease infinite;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C96B1A' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,107,26,0.18) 0%, transparent 70%);
  top: -150px;
  right: -150px;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(201,107,26,0.14) 0%, transparent 70%);
}

.hero-blob-1 { width: 450px; height: 450px; bottom: -100px; left: -100px; }
.hero-blob-2 { width: 280px; height: 280px; top: 30%; left: 40%; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.hero-content { color: var(--white); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(201,107,26,0.18);
  border: 1px solid rgba(201,107,26,0.35);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--orange-light);
  margin-bottom: 24px;
  animation: slideDown 0.6s ease 0.2s both;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--orange-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(224,125,40,0.4);
  animation: pulse-ring 1.5s ease infinite;
  flex-shrink: 0;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  animation: slideUp 0.65s ease 0.3s both;
}

.hero h1 span {
  background: linear-gradient(90deg, var(--orange-light), #FFDAB8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 480px;
  animation: slideUp 0.65s ease 0.45s both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
  animation: slideUp 0.65s ease 0.55s both;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: slideUp 0.65s ease 0.65s both;
}

.proof-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}

.proof-stat strong { color: var(--white); font-weight: 700; }

.proof-stars {
  color: #fbbf24;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.proof-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.2);
}

/* Phone Mockups */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: -20px;
  position: relative;
  animation: fadeIn 0.8s ease 0.5s both;
}

.phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: -30px;
}

.phone-mockup {
  width: 200px;
  height: 400px;
  background: var(--orange-darkest);
  border-radius: 36px;
  border: 8px solid rgba(255,255,255,0.15);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.07), inset 0 1px 0 rgba(255,255,255,0.1);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: rgba(255,255,255,0.1);
  border-radius: 0 0 16px 16px;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #2A1005 0%, #7D3D10 40%, #C96B1A 100%);
  display: flex;
  flex-direction: column;
  padding: 28px 14px 14px;
  overflow: hidden;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.55rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

.phone-ui-logo {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.phone-ui-card {
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
}

.phone-ui-card-title {
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.phone-ui-card-sub {
  font-size: 0.5rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.4;
}

.phone-ui-chip {
  display: inline-block;
  padding: 3px 8px;
  background: var(--orange-bright);
  border-radius: 100px;
  font-size: 0.45rem;
  font-weight: 700;
  color: white;
  margin-top: 5px;
}

.phone-mockup-primary {
  z-index: 2;
  animation: float 4.5s ease-in-out infinite;
}

.phone-mockup-secondary {
  z-index: 1;
  transform: rotate(4deg) translateX(-30px) translateY(20px);
  animation: float2 5s ease-in-out infinite 0.5s;
  opacity: 0.85;
}

/* ===================================
   Social Proof Bar
=================================== */
.social-proof-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.proof-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-gray);
}

.proof-item strong { color: var(--text-dark); font-weight: 700; }

.proof-item-stars { color: #f59e0b; font-size: 0.85rem; }

.proof-bar-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

.ai-powered-badges {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ai-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--white);
  transition: var(--transition-fast);
  cursor: default;
}

.ai-badge:hover { border-color: var(--orange-accent); color: var(--orange-primary); }

.ai-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.ai-badge-dot.gemini { background: linear-gradient(135deg, #4285f4, #ea4335); }
.ai-badge-dot.openai { background: #10a37f; }

/* ===================================
   Features Section
=================================== */
.features { background: var(--orange-lightest); }

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

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: default;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(201,107,26,0.14), 0 4px 12px rgba(0,0,0,0.08);
  border-color: var(--orange-pale);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--orange-lightest);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--orange-pale);
  transform: scale(1.08);
}

.feature-icon svg { width: 26px; height: 26px; color: var(--orange-accent); }

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.65;
}

/* ===================================
   How It Works Section
=================================== */
.how-it-works { background: var(--white); }

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(16.67% + 26px);
  right: calc(16.67% + 26px);
  height: 2px;
  background-image: repeating-linear-gradient(90deg, var(--orange-accent) 0, var(--orange-accent) 8px, transparent 8px, transparent 16px);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--orange-primary), var(--orange-bright));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(201,107,26,0.38);
  flex-shrink: 0;
}

.step-number::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed rgba(201,107,26,0.38);
  animation: spin 12s linear infinite;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.step p { font-size: 0.92rem; color: var(--text-gray); }

/* ===================================
   MannaChat Highlight Section
=================================== */
.mannachat-section {
  background: linear-gradient(150deg, #1A0A02 0%, #5C2D0A 50%, #8B3F0E 100%);
  position: relative;
  overflow: hidden;
}

.mannachat-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23C96B1A' fill-opacity='0.05'%3E%3Cpath d='M0 0h80v80H0z'/%3E%3Ccircle cx='40' cy='40' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.mannachat-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.chat-mockup {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius-xl);
  padding: 24px;
  backdrop-filter: blur(16px);
  max-width: 420px;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 20px;
}

.chat-avatar {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--orange-accent), var(--orange-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.chat-title { font-size: 0.92rem; font-weight: 700; color: var(--white); }
.chat-status { font-size: 0.72rem; color: var(--orange-light); }

.chat-messages { display: flex; flex-direction: column; gap: 14px; }

.chat-bubble {
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.88rem;
  line-height: 1.55;
  max-width: 88%;
}

.chat-bubble.user {
  background: rgba(201,107,26,0.22);
  border: 1px solid rgba(201,107,26,0.28);
  color: rgba(255,255,255,0.92);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-bubble.manna {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.9);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-bubble.manna .recipe-title {
  font-weight: 700;
  color: var(--orange-light);
  margin-bottom: 6px;
}

.chat-bubble.manna .recipe-meta {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  gap: 12px;
  margin: 6px 0 8px;
}

.chat-bubble.manna .recipe-cta {
  display: inline-block;
  padding: 5px 14px;
  background: var(--orange-accent);
  color: white;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 4px;
}

.typing-indicator {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.09);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  width: fit-content;
}

.typing-dot {
  width: 7px;
  height: 7px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  animation: typingDot 1.2s ease infinite;
}

.typing-dot:nth-child(2) { animation-delay: 0.15s; }
.typing-dot:nth-child(3) { animation-delay: 0.30s; }

.mannachat-content { color: var(--white); }

.mannachat-content .section-label {
  background: rgba(201,107,26,0.22);
  border-color: rgba(201,107,26,0.32);
  color: var(--orange-light);
}

.mannachat-content h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.mannachat-content p {
  color: rgba(255,255,255,0.72);
  margin-bottom: 28px;
}

.chat-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.chat-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.chat-feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(201,107,26,0.22);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-feature-icon svg { width: 18px; height: 18px; color: var(--orange-light); }

.chat-feature-text h4 { color: var(--white); font-size: 0.92rem; margin-bottom: 3px; }
.chat-feature-text p { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin: 0; }

/* ===================================
   Testimonials Section
=================================== */
.testimonials { background: var(--orange-lightest); }

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(201,107,26,0.12), 0 4px 12px rgba(0,0,0,0.07);
  border-color: var(--orange-pale);
}

.testimonial-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; }

.testimonial-quote {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testimonial-quote::before { content: '"'; }
.testimonial-quote::after { content: '"'; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.avatar-1 { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.avatar-2 { background: linear-gradient(135deg, #f59e0b, #d97706); }
.avatar-3 { background: linear-gradient(135deg, #3b82f6, #2563eb); }

.author-name { font-size: 0.92rem; font-weight: 700; color: var(--text-dark); }
.author-location { font-size: 0.82rem; color: var(--text-light); }

/* ===================================
   Download CTA Section
=================================== */
.download-cta {
  background: linear-gradient(145deg, var(--orange-darkest) 0%, var(--orange-primary) 55%, var(--orange-mid) 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,107,26,0.22) 0%, transparent 60%);
}

.download-cta-inner { position: relative; z-index: 1; }

.download-cta h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
  font-weight: 900;
}

.download-cta p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.download-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===================================
   Footer
=================================== */
.footer {
  background: var(--orange-darkest);
  padding: 64px 0 0;
  color: rgba(255,255,255,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo-text { color: var(--white); font-size: 1.3rem; margin-bottom: 12px; }
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.6; max-width: 240px; }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition-fast);
  font-size: 0.95rem;
  cursor: pointer;
}

.social-btn:hover {
  background: rgba(201,107,26,0.25);
  color: var(--orange-light);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

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

.footer-link {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition-fast);
}

.footer-link:hover { color: var(--orange-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright { font-size: 0.85rem; color: rgba(255,255,255,0.4); }

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

.footer-bottom-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  transition: var(--transition-fast);
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ===================================
   Pricing Page
=================================== */
.pricing-hero {
  background: var(--orange-lightest);
  padding: calc(var(--nav-height) + 56px) 0 64px;
  text-align: center;
}

.pricing-hero h1 { color: var(--text-dark); margin-bottom: 12px; }
.pricing-hero p { color: var(--text-gray); font-size: 1.1rem; }

/* Toggle */
.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px;
  margin: 28px 0;
  box-shadow: var(--shadow-sm);
}

.toggle-option {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--text-gray);
}

.toggle-option.active {
  background: var(--orange-primary);
  color: var(--white);
}

.toggle-badge {
  display: inline-block;
  padding: 3px 10px;
  background: linear-gradient(135deg, var(--orange-accent), var(--orange-mid));
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 100px;
  margin-left: 6px;
}

/* Pricing cards */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  padding: 48px 0 80px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  border: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: var(--transition);
}

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

.pricing-card.featured {
  border-color: var(--orange-accent);
  box-shadow: var(--shadow-orange);
  position: relative;
  transform: scale(1.02);
}

.pricing-card.featured:hover { transform: scale(1.02) translateY(-4px); }

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange-primary), var(--orange-accent));
  color: white;
  padding: 5px 20px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.plan-name {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange-primary);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.plan-price .currency { font-size: 1.2rem; font-weight: 700; color: var(--text-dark); line-height: 1; margin-top: 6px; }
.plan-price .amount { font-size: 2.8rem; font-weight: 900; color: var(--text-dark); line-height: 1; }
.plan-price .period { font-size: 0.9rem; color: var(--text-gray); }
.plan-price .yearly-note { font-size: 0.78rem; color: var(--orange-accent); font-weight: 600; }

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.plan-feature .check {
  width: 18px;
  height: 18px;
  background: var(--orange-lightest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-feature .check svg { width: 10px; height: 10px; color: var(--orange-accent); }

.plan-feature.dimmed { color: var(--text-light); }
.plan-feature.dimmed .check { background: var(--border-light); }
.plan-feature.dimmed .check svg { color: var(--text-light); }

.plan-divider {
  height: 1px;
  background: var(--border-light);
}

/* Payment note */
.payment-note {
  background: var(--orange-lightest);
  border: 1px solid var(--orange-pale);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 0 0 64px;
}

.payment-note-icon {
  width: 40px;
  height: 40px;
  background: var(--orange-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.payment-note-text h4 { font-size: 0.95rem; margin-bottom: 4px; color: var(--orange-primary); }
.payment-note-text p { font-size: 0.88rem; margin: 0; }

/* FAQ */
.faq-section { padding: 64px 0 96px; }

.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.open { border-color: var(--orange-pale); box-shadow: var(--shadow-sm); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-dark);
  gap: 16px;
  transition: var(--transition-fast);
}

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

.faq-chevron {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-chevron svg { width: 14px; height: 14px; color: var(--text-gray); transition: var(--transition); }
.faq-item.open .faq-chevron { background: var(--orange-lightest); }
.faq-item.open .faq-chevron svg { color: var(--orange-accent); transform: rotate(180deg); }

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

.faq-item.open .faq-answer { max-height: 200px; }

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.7;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

/* Comparison Table */
.comparison-section {
  background: var(--orange-lightest);
  padding: 64px 0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-table thead th {
  padding: 20px 24px;
  text-align: left;
  background: var(--orange-primary);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
}

.comparison-table thead th:first-child { border-radius: 0; }
.comparison-table thead th.featured-col { background: var(--orange-accent); }

.comparison-table tbody td {
  padding: 14px 24px;
  font-size: 0.9rem;
  color: var(--text-gray);
  border-bottom: 1px solid var(--border-light);
}

.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody td:first-child { font-weight: 600; color: var(--text-dark); }

.comparison-table tbody tr:hover td { background: var(--orange-lightest); }

.check-yes { color: var(--orange-accent); font-size: 1.1rem; }
.check-no { color: var(--text-light); }
.check-partial { color: #f59e0b; font-size: 0.85rem; font-weight: 600; }

/* ===================================
   About Page
=================================== */
.about-hero {
  min-height: 480px;
  background: linear-gradient(145deg, var(--orange-darkest) 0%, var(--orange-primary) 60%, var(--orange-mid) 100%);
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 56px) 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,107,26,0.18) 0%, transparent 65%);
}

.about-hero-inner { position: relative; z-index: 1; }

.about-hero h1 { color: var(--white); margin-bottom: 20px; }
.about-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 620px; margin: 0 auto; }

/* Mission */
.mission-section {
  background: var(--orange-primary);
  padding: 80px 0;
  text-align: center;
}

.mission-quote {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--white);
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.mission-quote span { color: var(--orange-light); }

/* Story */
.story-section {
  background: var(--white);
  padding: 96px 0;
}

.story-image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(145deg, var(--orange-lightest), var(--orange-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  padding: 40px;
}

.story-image-placeholder {
  text-align: center;
}

.story-image-placeholder .food-emoji { font-size: 4rem; margin-bottom: 16px; }
.story-image-placeholder p { font-size: 0.85rem; color: var(--orange-primary); font-weight: 600; }

.story-content h2 { margin-bottom: 20px; }
.story-content p { margin-bottom: 16px; font-size: 0.97rem; }

/* What Makes Different */
.different-section {
  background: var(--orange-lightest);
  padding: 80px 0;
}

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

.different-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: var(--transition);
  cursor: default;
}

.different-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange-pale);
}

.different-icon {
  width: 48px;
  height: 48px;
  background: var(--orange-lightest);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.different-icon svg { width: 24px; height: 24px; color: var(--orange-accent); }

.different-text h3 { font-size: 1rem; margin-bottom: 6px; }
.different-text p { font-size: 0.88rem; margin: 0; }

/* Tech Section */
.tech-section {
  background: var(--white);
  padding: 80px 0;
}

.tech-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tech-card {
  background: var(--orange-lightest);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  border: 1px solid var(--orange-pale);
  transition: var(--transition);
  cursor: default;
}

.tech-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.tech-card-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 14px;
  background: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  font-size: 1.4rem;
}

.tech-card h4 { font-size: 0.9rem; color: var(--text-dark); margin-bottom: 4px; }
.tech-card p { font-size: 0.8rem; margin: 0; }

/* Contact CTA */
.contact-cta {
  background: var(--orange-lightest);
  padding: 80px 0;
  text-align: center;
}

.contact-cta h2 { margin-bottom: 12px; }
.contact-cta p { font-size: 1.05rem; margin-bottom: 28px; }

.contact-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===================================
   Legal Pages (Privacy + Terms)
=================================== */
.legal-hero {
  background: var(--orange-lightest);
  padding: calc(var(--nav-height) + 48px) 0 48px;
  border-bottom: 1px solid var(--border);
}

.legal-hero h1 { color: var(--text-dark); margin-bottom: 10px; }
.legal-updated { font-size: 0.88rem; color: var(--text-light); }

.legal-content {
  padding: 64px 0 96px;
}

.legal-body {
  max-width: 800px;
  margin: 0 auto;
}

.legal-toc {
  background: var(--orange-lightest);
  border: 1px solid var(--orange-pale);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 48px;
}

.legal-toc h3 { font-size: 1rem; margin-bottom: 16px; color: var(--orange-primary); }

.legal-toc-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  counter-reset: toc;
}

.legal-toc-links a {
  font-size: 0.9rem;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-fast);
}

.legal-toc-links a:hover { color: var(--orange-accent); }

.legal-section {
  margin-bottom: 48px;
}

.legal-section h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange-lightest);
  scroll-margin-top: 90px;
}

.legal-section h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 20px 0 10px;
}

.legal-section p {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 14px;
  line-height: 1.75;
}

.legal-section ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.legal-section ul li {
  list-style: disc;
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 8px;
  line-height: 1.65;
}

.legal-section a {
  color: var(--orange-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-section a:hover { color: var(--orange-primary); }

.legal-highlight {
  background: var(--orange-lightest);
  border-left: 4px solid var(--orange-accent);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 16px 0;
}

.legal-highlight p { margin: 0; font-weight: 500; color: var(--orange-primary); }

/* Page header for light pages */
.page-header {
  background: var(--orange-lightest);
  padding: calc(var(--nav-height) + 40px) 0 40px;
  border-bottom: 1px solid var(--border);
}

/* ===================================
   Responsive Design
=================================== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .tech-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .pricing-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .mannachat-inner { grid-template-columns: 1fr; gap: 40px; }
  .chat-mockup { max-width: 100%; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .section { padding: 72px 0; }
  .section-lg { padding: 80px 0; }

  .hamburger { display: flex; }
  .nav-links, .nav-actions .btn { display: none; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-cta { justify-content: center; }
  .hero-social-proof { justify-content: center; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-visual { margin-top: 0; }
  .phone-mockup-secondary { display: none; }
  .phone-mockup { width: 180px; height: 360px; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }

  .features-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .steps-container { grid-template-columns: 1fr; }
  .steps-container::before { display: none; }
  .step { flex-direction: row; text-align: left; gap: 20px; padding: 0; }
  .step-number { flex-shrink: 0; width: 48px; height: 48px; font-size: 1.1rem; }
  .step-number::after { display: none; }

  .proof-bar-inner { gap: 20px; }
  .proof-bar-divider { display: none; }

  .different-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .comparison-table { display: none; }

  .section-subtitle { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }

  .hero { min-height: auto; padding-top: calc(var(--nav-height) + 40px); }
  .hero-inner { padding: 40px 0 60px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .store-badges { flex-direction: column; }
  .store-badge { justify-content: center; }
  .download-badges { flex-direction: column; align-items: center; }

  .tech-cards { grid-template-columns: repeat(2, 1fr); }

  .container { padding: 0 16px; }
}

/* ===================================
   Reduced Motion
=================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===================================
   Advanced Motion — Page Loader
=================================== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--orange-darkest);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  animation: loaderEntrance 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.loader-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.loader-logo-img {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  animation: loaderLogoPulse 1.8s ease infinite;
}

.loader-logo-text {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
}

.loader-logo-text span {
  background: linear-gradient(90deg, var(--orange-light), var(--orange-pale));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loader-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

.loader-bar-track {
  width: 180px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orange-accent), var(--orange-light), #FFDAB8);
  border-radius: 100px;
  transition: width 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

@keyframes loaderEntrance {
  from { opacity: 0; transform: scale(0.88) translateY(24px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}

@keyframes loaderLogoPulse {
  0%,100% { box-shadow: 0 0 0 0   rgba(201,107,26,0.5), 0 0 0 0   rgba(201,107,26,0.25); }
  50%     { box-shadow: 0 0 0 10px rgba(201,107,26,0),   0 0 0 20px rgba(201,107,26,0); }
}

/* ===================================
   Advanced Motion — Hero States
=================================== */
.page-loader-active .hero-badge,
.page-loader-active .hero h1,
.page-loader-active .hero-sub,
.page-loader-active .hero-cta,
.page-loader-active .hero-social-proof,
.page-loader-active .hero-visual {
  opacity: 0 !important;
  animation: none !important;
}

.page-loaded .hero-badge {
  animation: slideDown 0.6s cubic-bezier(0.16,1,0.3,1) 0.1s both;
}

.page-loaded .hero h1 {
  animation: heroReveal 0.85s cubic-bezier(0.16,1,0.3,1) 0.22s both;
}

.page-loaded .hero-sub {
  animation: slideUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.38s both;
}

.page-loaded .hero-cta {
  animation: slideUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.50s both;
}

.page-loaded .hero-social-proof {
  animation: slideUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.62s both;
}

.page-loaded .hero-visual {
  animation: heroVisualReveal 1s cubic-bezier(0.16,1,0.3,1) 0.45s both;
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(32px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}

@keyframes heroVisualReveal {
  from { opacity: 0; transform: translateY(40px) scale(0.96); filter: blur(8px); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    filter: blur(0); }
}

/* ===================================
   Advanced Motion — Scroll Progress
=================================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--orange-accent), var(--orange-light), #FFDAB8);
  z-index: 10001;
  border-radius: 0 2px 2px 0;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ===================================
   Advanced Motion — Cursor Glow
=================================== */
.cursor-glow {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,107,26,0.055) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  will-change: left, top;
  transition: left 0.55s cubic-bezier(0.16,1,0.3,1),
              top  0.55s cubic-bezier(0.16,1,0.3,1);
}

/* ===================================
   Advanced Motion — Hero Particles
=================================== */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237,160,96,0.65) 0%, transparent 70%);
  animation: particleFloat var(--dur, 7s) ease-in-out var(--delay, 0s) infinite;
}

@keyframes particleFloat {
  0%,100% { transform: translateY(0)    translateX(0)    scale(1);   opacity: 0.55; }
  33%     { transform: translateY(-28px) translateX(14px) scale(1.12); opacity: 0.75; }
  66%     { transform: translateY(-12px) translateX(-18px) scale(0.9); opacity: 0.45; }
}

/* ===================================
   Advanced Motion — 3D Tilt Cards
=================================== */
.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.45s ease !important;
}

/* ===================================
   Advanced Motion — Magnetic Buttons
=================================== */
.btn-magnetic {
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.35s ease,
              background 0.2s ease !important;
}

/* ===================================
   Advanced Motion — Enhanced Reveals
=================================== */
[data-reveal="blur"] {
  opacity: 0;
  filter: blur(14px);
  transform: scale(0.95);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1),
              filter  0.75s cubic-bezier(0.16,1,0.3,1),
              transform 0.75s cubic-bezier(0.16,1,0.3,1);
}

[data-reveal="blur"].revealed {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

[data-reveal="clip-up"] {
  opacity: 1;
  clip-path: inset(100% 0 0 0 round 4px);
  transition: clip-path 0.8s cubic-bezier(0.16,1,0.3,1),
              transform  0.8s cubic-bezier(0.16,1,0.3,1);
  transform: translateY(20px);
}

[data-reveal="clip-up"].revealed {
  clip-path: inset(0% 0 0 0 round 4px);
  transform: translateY(0);
}

/* ===================================
   Advanced Motion — Section Line
=================================== */
.section-accent-line {
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange-accent), var(--orange-light), transparent);
  border-radius: 2px;
  margin: 0 auto 52px;
  transition: width 0.9s cubic-bezier(0.16,1,0.3,1);
}

.section-accent-line.line-visible {
  width: 64px;
}

/* ===================================
   Advanced Motion — Parallax Blobs
=================================== */
.hero-blob {
  will-change: transform;
  transition: transform 0.05s linear;
}

/* ===================================
   Advanced Motion — Chat Bubble Entrance
=================================== */
.chat-bubble-hidden {
  opacity: 0;
  transform: translateY(16px);
}

.chat-bubble-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: opacity 0.45s cubic-bezier(0.16,1,0.3,1),
              transform 0.45s cubic-bezier(0.16,1,0.3,1) !important;
}

/* ===================================
   Advanced Motion — Proof Bar
=================================== */
.social-proof-bar {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease 0.9s, transform 0.65s cubic-bezier(0.16,1,0.3,1) 0.9s;
}

.social-proof-bar.bar-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================
   Advanced Motion — Navbar Entrance
=================================== */
.navbar {
  animation: navbarSlideIn 0.6s cubic-bezier(0.16,1,0.3,1) 0.05s both;
}

@keyframes navbarSlideIn {
  from { opacity: 0; transform: translateY(-100%); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Pause navbar animation during loader */
.page-loader-active .navbar {
  animation: none !important;
  opacity: 0;
}

.page-loaded .navbar {
  animation: navbarSlideIn 0.5s cubic-bezier(0.16,1,0.3,1) both;
}

/* ===================================
   Advanced Motion — Shimmer on Hover Cards
=================================== */
.feature-card,
.testimonial-card,
.pricing-card,
.different-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before,
.testimonial-card::before,
.different-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255,255,255,0.45) 50%,
    transparent 60%
  );
  transform: skewX(-15deg);
  transition: left 0.6s ease;
  pointer-events: none;
  z-index: 1;
}

.feature-card:hover::before,
.testimonial-card:hover::before,
.different-card:hover::before {
  left: 130%;
}

/* ===================================
   Advanced Motion — Glow Ring on CTAs
=================================== */
.btn-primary::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--orange-bright), var(--orange-light), var(--orange-bright));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
  filter: blur(8px);
}

.btn-primary:hover::before {
  opacity: 0.7;
}

/* ===================================
   Advanced Motion — Step Number Reveal
=================================== */
.step-number {
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.4s ease;
}

.step:hover .step-number {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(201,107,26,0.55);
}

/* ===================================
   Advanced Motion — Feature Icon Morph
=================================== */
.feature-icon {
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1),
              background 0.3s ease,
              border-radius 0.4s ease;
}

.feature-card:hover .feature-icon {
  border-radius: 50%;
  transform: scale(1.1) rotate(8deg);
  background: linear-gradient(135deg, var(--orange-pale), var(--orange-lightest));
}

/* ===================================
   Advanced Motion — Footer Link Hover
=================================== */
.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0;
  position: relative;
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--orange-light);
  transition: width 0.25s ease;
}

.footer-link:hover::after {
  width: 100%;
}

/* ===================================
   Real Screenshot Phones
=================================== */
.phone-screen-real {
  background: #ffffff;
  padding: 0 !important;
  display: block !important;
  overflow: hidden;
}

.phone-screen-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ===================================
   MannaChat Real Phone Pair
=================================== */
.mannachat-phones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  gap: 0;
}

.mannachat-phones .phone-mockup {
  width: 195px;
  height: 390px;
}

.mannachat-phones .phone-mockup-secondary {
  transform: rotate(4deg) translateX(-28px) translateY(18px);
  opacity: 0.88;
  z-index: 1;
}

.mannachat-phones .phone-mockup-primary {
  z-index: 2;
}

/* ===================================
   App Screenshots Showcase
=================================== */
.screenshots-showcase {
  background: var(--orange-darkest);
  padding: 96px 0 80px;
  overflow: hidden;
  position: relative;
}

.screenshots-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,107,26,0.18) 0%, transparent 60%);
  pointer-events: none;
}

.screenshots-showcase .section-label {
  background: rgba(201,107,26,0.2);
  border-color: rgba(201,107,26,0.3);
  color: var(--orange-light);
}

.screenshots-showcase .section-title {
  color: var(--white);
}

.screenshots-showcase .section-subtitle {
  color: rgba(255,255,255,0.65);
}

.screenshots-outer {
  position: relative;
  width: 100%;
  margin-top: 16px;
  overflow: hidden;
  /* Edge fade — frames dissolve into background at edges */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  cursor: grab;
}

.screenshots-outer.is-dragging {
  cursor: grabbing;
}

.screenshots-track {
  display: flex;
  gap: 28px;
  padding: 24px 0 32px;
  width: max-content;
  will-change: transform;
  /* JS drives the position via scrollLeft on the outer wrapper */
}

.screenshot-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.screenshot-phone {
  width: 185px;
  height: 390px;
  border-radius: 34px;
  border: 7px solid rgba(255,255,255,0.15);
  overflow: hidden;
  box-shadow:
    0 28px 60px rgba(0,0,0,0.5),
    0 8px 20px rgba(0,0,0,0.3),
    0 0 0 1px rgba(255,255,255,0.06),
    inset 0 1px 0 rgba(255,255,255,0.12);
  position: relative;
  background: #111;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.4s ease;
}

.screenshot-phone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 20px;
  background: rgba(0,0,0,0.5);
  border-radius: 0 0 14px 14px;
  z-index: 3;
}

.screenshot-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  pointer-events: none;
}

.screenshot-item:hover .screenshot-phone {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.6),
    0 12px 28px rgba(201,107,26,0.2),
    0 0 0 1px rgba(201,107,26,0.2);
}

.screenshot-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.screenshot-item:hover .screenshot-label {
  color: var(--orange-light);
  transition: color 0.3s ease;
}

/* Scroll dots */
.screenshots-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

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

.screenshots-dot.active {
  background: var(--orange-accent);
  width: 24px;
  border-radius: 3px;
}

@media (max-width: 768px) {
  .screenshots-outer {
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 6%,
      black 94%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 6%,
      black 94%,
      transparent 100%
    );
  }

  .screenshots-track {
    padding: 20px 0 28px;
    gap: 18px;
  }

  .screenshot-phone {
    width: 155px;
    height: 328px;
  }

  .mannachat-phones .phone-mockup {
    width: 170px;
    height: 340px;
  }
}

/* ===================================
   Screenshot Zoom Hint
=================================== */
.screenshot-phone {
  background: none;
  border: none;
  padding: 0;
  display: block;
  cursor: zoom-in;
  position: relative;
}

.screenshot-zoom-hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0);
  border-radius: 28px;
  transition: background 0.3s ease;
  pointer-events: none;
}

.screenshot-zoom-hint svg {
  width: 36px;
  height: 36px;
  color: #fff;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16,1,0.3,1);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.screenshot-phone:hover .screenshot-zoom-hint {
  background: rgba(0,0,0,0.25);
}

.screenshot-phone:hover .screenshot-zoom-hint svg {
  opacity: 1;
  transform: scale(1);
}

.screenshot-phone:focus-visible {
  outline: 3px solid var(--orange-accent);
  outline-offset: 4px;
  border-radius: 34px;
}

/* ===================================
   Screenshot Lightbox
=================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(10,4,1,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  padding: 24px;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transform: scale(0.88) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

.lightbox.open .lightbox-content {
  transform: scale(1) translateY(0);
}

.lightbox-phone {
  width: min(320px, 72vw);
  height: min(640px, 80vh);
  border-radius: 44px;
  border: 8px solid rgba(255,255,255,0.18);
  overflow: hidden;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.08),
    inset 0 1px 0 rgba(255,255,255,0.15);
  background: #111;
  position: relative;
}

.lightbox-phone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: rgba(0,0,0,0.6);
  border-radius: 0 0 16px 16px;
  z-index: 2;
}

.lightbox-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: opacity 0.25s ease;
}

.lightbox-phone img.switching {
  opacity: 0;
}

.lightbox-caption {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 1;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.1);
}

.lightbox-close svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

.lightbox-nav {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.25s ease;
  flex-shrink: 0;
}

.lightbox-nav:hover {
  background: rgba(201,107,26,0.35);
  border-color: rgba(201,107,26,0.4);
  transform: scale(1.08);
}

.lightbox-nav svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

@media (max-width: 480px) {
  .lightbox {
    gap: 12px;
    padding: 16px;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
  }

  .lightbox-phone {
    border-radius: 36px;
    border-width: 6px;
  }
}

/* ===================================
   Advanced Motion — Social Btn Glow
=================================== */
.social-btn {
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1),
              background 0.25s ease,
              box-shadow 0.25s ease;
}

.social-btn:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 20px rgba(201,107,26,0.3);
}
