/* ═══════════════════════════════════════════════
   NextMyTurn — style.css
   ═══════════════════════════════════════════════ */

/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Clash+Display:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --orange: #FF6B35;
  --orange-dark: #e5541f;
  --orange-pale: #fff3ee;
  --dark: #0f0f0f;
  --dark-2: #1a1a1a;
  --dark-3: #262626;
  --white: #ffffff;
  --cream: #fdf8f4;
  --grey-50: #fafafa;
  --grey-100: #f4f4f5;
  --grey-200: #e4e4e7;
  --grey-300: #d4d4d8;
  --grey-400: #a1a1aa;
  --grey-500: #71717a;
  --grey-600: #52525b;
  --font-display: 'Clash Display', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.14);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.18);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, select, textarea, button { font-family: var(--font-body); }

/* ── SCROLL PROGRESS ── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--orange); z-index: 9999;
  width: 0%; transition: width 0.1s linear;
}

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; }
.display-lg { font-size: clamp(2.5rem, 5vw, 4rem); }
.display-md { font-size: clamp(2rem, 3.5vw, 2.8rem); }
.display-sm { font-size: clamp(1.1rem, 2vw, 1.35rem); }
.body-xl { font-size: 1.2rem; line-height: 1.7; }
.body-md { font-size: 1rem; line-height: 1.65; }
.body-sm { font-size: 0.9rem; line-height: 1.65; }
.label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.text-grey { color: var(--grey-500); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

/* ── SPACING ── */
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.w-full { width: 100%; }

/* ── BADGE ── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em;
}
.badge-orange { background: var(--orange-pale); color: var(--orange); border: 1px solid rgba(255,107,53,0.2); }
.eyebrow { margin-bottom: 16px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius-lg);
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  cursor: pointer; border: none; transition: var(--transition);
  text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: var(--orange); color: white;
  box-shadow: 0 4px 20px rgba(255,107,53,0.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 8px 30px rgba(255,107,53,0.45);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent; color: var(--dark);
  border: 1.5px solid var(--grey-200);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-pale); }
.btn-ghost {
  background: rgba(255,255,255,0.15); color: white;
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.25); }
.btn-dark { background: var(--dark); color: white; }
.btn-dark:hover { background: var(--dark-2); transform: translateY(-1px); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0; background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--grey-100);
  transition: var(--transition);
}
#navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex; align-items: center; gap: 32px;
  max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 70px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.25rem; color: var(--dark); text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  display: flex; align-items: center; justify-content: center;
}
.logo-icon img { 
  width: 120px; height: auto; object-fit: contain;
  mix-blend-mode: multiply;
}
.nav-links {
  display: flex; gap: 4px; align-items: center; flex: 1;
}
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--grey-600);
  padding: 8px 14px; border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--dark); background: var(--grey-100);
}
.nav-links a.active { color: var(--orange); background: var(--orange-pale); }
.nav-cta { display: flex; gap: 10px; flex-shrink: 0; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--dark); border-radius: 2px; transition: var(--transition);
}

/* ── MOBILE NAV ── */
.nav-mobile {
  position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
  background: var(--white); z-index: 2000; padding: 40px 32px;
  display: flex; flex-direction: column; gap: 8px;
  box-shadow: var(--shadow-xl); transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
}
.nav-mobile.open { right: 0; }
.nav-mobile a {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  color: var(--dark); padding: 14px 0; border-bottom: 1px solid var(--grey-100);
  transition: var(--transition);
}
.nav-mobile a:hover { color: var(--orange); padding-left: 8px; }
.nav-mobile-close {
  position: absolute; top: 20px; right: 20px;
  background: var(--grey-100); border: none; border-radius: 50%;
  width: 36px; height: 36px; cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.nav-mobile-close:hover { background: var(--orange); color: white; }
.nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 1999; opacity: 0; pointer-events: none; transition: var(--transition);
}
.nav-overlay.active { opacity: 1; pointer-events: all; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 70px;
}
.hero-bg { position: absolute; inset: 0; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--grey-100) 1px, transparent 1px),
    linear-gradient(90deg, var(--grey-100) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.35;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #FF6B35, #ff9a76);
  top: -200px; right: -150px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #ffd6c8, #ffe8e0);
  bottom: -100px; left: -100px;
}
.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4; pointer-events: none;
}
.hero-content {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  padding: 80px 0; position: relative; z-index: 2;
}
.hero-eyebrow { margin-bottom: 20px; }
.hero-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(3rem, 6vw, 5.5rem); line-height: 1.08;
  color: var(--dark); margin-bottom: 20px;
}
.accent { color: var(--orange); }
.underline-accent {
  position: relative; display: inline-block;
}
.underline-accent::after {
  content: ''; position: absolute; bottom: 4px; left: 0; right: 0;
  height: 6px; background: var(--orange); opacity: 0.25; border-radius: 3px;
}
.hero-desc { color: var(--grey-500); font-size: 1.15rem; line-height: 1.75; margin-bottom: 32px; max-width: 500px; }

/* Hero Search */
.hero-search {
  display: flex; align-items: center; gap: 12px;
  background: white; border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-xl); padding: 8px 8px 8px 20px;
  box-shadow: var(--shadow-lg); margin-bottom: 24px; flex-wrap: wrap;
}
.hero-search input, .hero-search select {
  border: none; outline: none; font-size: 0.95rem;
  color: var(--dark); background: transparent; min-width: 120px; flex: 1;
}
.search-divider { width: 1px; height: 24px; background: var(--grey-200); }
.service-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.service-pill {
  padding: 7px 14px; background: var(--grey-100); border-radius: 100px;
  font-size: 0.82rem; font-weight: 500; cursor: pointer; transition: var(--transition);
  border: 1px solid transparent;
}
.service-pill:hover { background: var(--orange-pale); color: var(--orange); border-color: rgba(255,107,53,0.3); }
.hero-stats { display: flex; align-items: center; gap: 32px; }
.hero-stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--dark); }
.hero-stat-label { font-size: 0.8rem; color: var(--grey-500); font-weight: 500; }
.hero-stat-divider { width: 1px; height: 40px; background: var(--grey-200); }

/* Hero Visual */
.hero-visual { display: flex; justify-content: center; }
.hero-main-card {
  width: 320px; height: 380px;
  background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
  border-radius: var(--radius-2xl); display: flex; align-items: center;
  justify-content: center; position: relative; overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-main-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
  padding: 24px; border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
}
.salon-name { color: white; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.salon-meta { color: rgba(255,255,255,0.7); font-size: 0.8rem; margin-top: 4px; }
.hero-float {
  position: absolute; background: white; border-radius: var(--radius-lg);
  padding: 12px 16px; display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--grey-100);
  animation: float 3s ease-in-out infinite;
}
.f1 { top: -20px; left: -60px; animation-delay: 0s; }
.f2 { bottom: 60px; left: -70px; animation-delay: 1s; }
.f3 { top: 80px; right: -60px; animation-delay: 2s; }
.float-icon-wrap { font-size: 1.4rem; }
.float-label { font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; color: var(--dark); }
.float-sub { font-size: 0.72rem; color: var(--grey-400); }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── TRUST BAR ── */
.trust-bar { background: var(--dark); padding: 18px 0; }
.trust-bar-inner {
  display: flex; align-items: center; gap: 0; flex-wrap: wrap;
  justify-content: center;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.75); font-size: 0.85rem; font-weight: 500;
  padding: 8px 24px; border-right: 1px solid rgba(255,255,255,0.1);
}
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 1rem; }

/* ── MARQUEE ── */
.marquee-section { overflow: hidden; background: var(--orange); padding: 14px 0; }
.marquee-track {
  display: flex; gap: 0; align-items: center;
  animation: marquee 25s linear infinite; width: max-content;
}
.marquee-item {
  color: white; font-family: var(--font-display); font-weight: 600;
  font-size: 0.9rem; padding: 0 20px; white-space: nowrap;
}
.marquee-dot {
  display: inline-block; width: 5px; height: 5px;
  background: rgba(255,255,255,0.5); border-radius: 50;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTIONS ── */
.section { padding: 96px 0; }
.section-alt { background: var(--grey-50); }
.section-dark { background: var(--dark); color: white; }
.section-cream { background: var(--cream); }
.section-orange { background: var(--orange); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem); color: var(--dark); margin-bottom: 16px;
}
.section-title span { color: var(--orange); }
.section-desc { color: var(--grey-500); font-size: 1.05rem; max-width: 560px; margin: 0 auto; line-height: 1.75; }

/* ── GRIDS ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── CARDS ── */
.card {
  background: white; border-radius: var(--radius-xl);
  border: 1px solid var(--grey-100); overflow: hidden;
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card { padding: 32px; display: flex; flex-direction: column; gap: 12px; }
.service-icon { font-size: 2.2rem; }
.feature-card { padding: 36px 32px; position: relative; overflow: hidden; }
.feature-num {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--font-display); font-size: 3.5rem; font-weight: 900;
  color: var(--grey-100); line-height: 1;
}
.feature-emoji { font-size: 2rem; margin-bottom: 12px; }
.testimonial-card { padding: 36px; position: relative; }
.testimonial-quote {
  font-family: Georgia, serif; font-size: 5rem; color: var(--orange);
  line-height: 0.5; margin-bottom: 20px; opacity: 0.3;
}
.testimonial-text { color: var(--grey-600); line-height: 1.75; margin-bottom: 24px; font-size: 0.95rem; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { font-size: 2rem; }
.testimonial-name { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; }
.testimonial-role { font-size: 0.8rem; color: var(--grey-400); }
.stars { margin-left: auto; color: #FFB800; font-size: 0.85rem; }
.team-card { padding: 32px; text-align: center; }
.team-avatar { font-size: 3rem; margin-bottom: 12px; }
.team-name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; margin-bottom: 4px; }
.team-role { color: var(--orange); font-size: 0.82rem; font-weight: 600; margin-bottom: 10px; }
.team-bio { font-size: 0.82rem; color: var(--grey-500); line-height: 1.6; }

/* ── STATS ── */
.stat-card { text-align: center; padding: 40px 20px; }
.stat-number {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: 8px;
}
.stat-label { font-size: 0.85rem; font-weight: 500; }

/* ── STEPS ── */
.steps-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.steps-line {
  position: absolute; top: 50px; left: 12.5%; right: 12.5%;
  height: 2px; background: linear-gradient(90deg, var(--orange), var(--orange-pale));
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-bubble {
  width: 80px; height: 80px; background: var(--dark); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; color: white;
  font-size: 0.85rem; margin: 0 auto 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2); position: relative;
  transition: var(--transition);
}
.step:hover .step-bubble { background: var(--orange); transform: scale(1.1); }
.step-emoji {
  position: absolute; bottom: -8px; right: -4px;
  font-size: 1.2rem; background: white; width: 28px; height: 28px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}

/* ── CITIES ── */
.city-grid {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}
.city-tag {
  padding: 10px 20px; background: white; border: 1.5px solid var(--grey-200);
  border-radius: 100px; font-size: 0.88rem; font-weight: 500;
  cursor: pointer; transition: var(--transition);
}
.city-tag:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-pale); }

/* ── APP SECTION ── */
.app-section {
  background: var(--dark); color: white; position: relative; overflow: hidden;
}
.app-orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: 0.15;
}
.app-orb-1 { width: 500px; height: 500px; background: var(--orange); top: -200px; left: -100px; }
.app-orb-2 { width: 400px; height: 400px; background: #ff9a76; bottom: -150px; right: -100px; }
.app-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 2; }
.app-text h2 { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; color: white; margin-bottom: 20px; line-height: 1.15; }
.app-text h2 span { color: var(--orange); }
.app-text p { color: rgba(255,255,255,0.65); font-size: 1.05rem; line-height: 1.75; margin-bottom: 32px; }
.app-checklist { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.app-check { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.app-check-icon {
  width: 22px; height: 22px; background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: white; flex-shrink: 0;
}
.app-store-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.app-store-btn {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.15);
  padding: 12px 20px; border-radius: var(--radius-lg); cursor: pointer;
  transition: var(--transition); color: white;
}
.app-store-btn:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); transform: translateY(-2px); }
.store-icon { font-size: 1.5rem; }
.store-text { display: flex; flex-direction: column; }
.store-text small { font-size: 0.72rem; opacity: 0.7; }
.store-text strong { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; }

/* ── PHONE MOCKUP ── */
.app-mockup { display: flex; justify-content: center; }
.phone-glow {
  position: absolute; width: 280px; height: 400px;
  background: var(--orange); border-radius: 50%; filter: blur(80px);
  opacity: 0.2; top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.phone-frame {
  width: 280px; height: 560px; background: #1a1a1a;
  border-radius: 40px; padding: 14px; border: 2px solid #333;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  position: relative;
}
.phone-screen {
  height: 100%; background: var(--white); border-radius: 28px;
  overflow: hidden; display: flex; flex-direction: column;
}
.phone-status {
  display: flex; justify-content: space-between; padding: 10px 16px 6px;
  font-size: 0.65rem; font-weight: 600; color: var(--dark); background: var(--white);
}
.phone-app-content { flex: 1; overflow: hidden; padding: 8px 12px 0; }
.phone-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.phone-greeting { font-size: 0.68rem; color: var(--grey-400); }
.phone-title { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: var(--dark); }
.phone-avatar {
  width: 32px; height: 32px; background: var(--grey-100);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 1rem;
}
.phone-search {
  background: var(--grey-100); border-radius: 10px; padding: 8px 12px;
  display: flex; align-items: center; gap: 6px;
  font-size: 0.72rem; color: var(--grey-400); margin-bottom: 10px;
}
.phone-cats { display: flex; gap: 6px; margin-bottom: 12px; overflow: hidden; }
.phone-cat {
  padding: 5px 10px; border-radius: 100px; font-size: 0.65rem; font-weight: 600;
}
.phone-cat.active { background: var(--dark); color: white; }
.phone-cat.inactive { background: var(--grey-100); color: var(--grey-500); }
.phone-section-title { font-family: var(--font-display); font-weight: 700; font-size: 0.78rem; margin-bottom: 8px; }
.phone-salon-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px; background: var(--grey-50); border-radius: 10px;
  margin-bottom: 6px; border: 1px solid var(--grey-100);
}
.phone-salon-thumb {
  width: 36px; height: 36px; background: var(--grey-200);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.phone-salon-name { font-family: var(--font-display); font-weight: 700; font-size: 0.72rem; }
.phone-salon-sub { font-size: 0.6rem; color: var(--grey-400); }
.phone-book-btn {
  margin-left: auto; background: var(--orange); color: white;
  padding: 5px 10px; border-radius: 8px; font-size: 0.62rem;
  font-weight: 700; flex-shrink: 0;
}
.phone-bottom-nav {
  display: flex; align-items: center; justify-content: space-around;
  padding: 10px 12px 12px; border-top: 1px solid var(--grey-100);
  margin-top: 8px; background: white;
}
.phone-nav-item { font-size: 1.1rem; cursor: pointer; }
.phone-nav-center {
  width: 36px; height: 36px; background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.2rem; font-weight: 700;
}

/* ── NEWSLETTER ── */
.newsletter-form {
  display: flex; gap: 8px; max-width: 480px; margin: 0 auto;
}
.newsletter-input {
  flex: 1; border: 1.5px solid var(--grey-200); border-radius: var(--radius-lg);
  padding: 13px 20px; font-size: 0.95rem; outline: none; transition: var(--transition);
}
.newsletter-input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,107,53,0.12); }

/* ── FOOTER ── */
footer {
  background: var(--dark); color: white; padding: 80px 0 32px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.7; margin: 16px 0 24px; max-width: 280px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px; background: rgba(255,255,255,0.08);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: var(--transition);
}
.social-link:hover { background: var(--orange); color: white; }
.footer-col h4 { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; margin-bottom: 20px; color: rgba(255,255,255,0.9); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--orange); padding-left: 4px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; flex-wrap: wrap; gap: 16px;
}
.footer-copy { color: rgba(255,255,255,0.35); font-size: 0.82rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.35); font-size: 0.82rem; transition: var(--transition); }
.footer-legal a:hover { color: var(--orange); }

/* ── BACK TO TOP ── */
#back-to-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 44px; height: 44px; background: var(--dark);
  color: white; border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer; transition: var(--transition);
  opacity: 0; pointer-events: none; z-index: 999;
  box-shadow: var(--shadow-lg);
}
#back-to-top.visible { opacity: 1; pointer-events: all; }
#back-to-top:hover { background: var(--orange); transform: translateY(-3px); }

/* ── TOAST ── */
.toast-container { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 9999; display: flex; flex-direction: column; gap: 8px; }
.toast {
  background: var(--dark); color: white; padding: 14px 24px;
  border-radius: var(--radius-lg); font-size: 0.9rem; font-weight: 500;
  box-shadow: var(--shadow-xl); animation: toastIn 0.3s ease;
  display: flex; align-items: center; gap: 10px;
  border-left: 4px solid var(--orange);
}
@keyframes toastIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ── PAGE HEADER ── */
.page-header {
  padding: 140px 0 80px; position: relative; overflow: hidden;
  background: var(--dark); color: white;
}
.page-header-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,107,53,0.25) 0%, transparent 70%);
}
.page-header-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-header .section-title { color: white; }
.page-header .section-desc { color: rgba(255,255,255,0.65); }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,0.3); font-size: 0.85rem; }

/* ── ABOUT - Story Split ── */
.story-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-visual {
  width: 100%; height: 380px; background: var(--orange-pale);
  border-radius: var(--radius-2xl); display: flex; align-items: center;
  justify-content: center; font-size: 8rem;
}
.story-stats { display: flex; align-items: center; gap: 32px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--grey-100); }
.story-stat-num { font-family: var(--font-display); font-weight: 800; font-size: 2.2rem; color: var(--dark); }
.story-stat-lbl { font-size: 0.78rem; color: var(--grey-500); font-weight: 500; margin-top: 4px; }
.story-stat-div { width: 1px; height: 40px; background: var(--grey-200); }
.mission-card {
  background: white; border-radius: var(--radius-xl);
  padding: 36px; border: 1px solid var(--grey-100);
  text-align: center; transition: var(--transition);
}
.mission-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.mission-icon { font-size: 2.5rem; margin-bottom: 16px; }
.mission-title { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; margin-bottom: 12px; color: var(--dark); }
.mission-text { color: var(--grey-500); font-size: 0.93rem; line-height: 1.75; }

/* ── TIMELINE ── */
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: grid; grid-template-columns: 40px 1fr;
  gap: 0 20px; align-items: start; position: relative;
  padding-bottom: 36px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ''; position: absolute; left: 19px; top: 40px; bottom: 0;
  width: 2px; background: var(--grey-100);
}
.timeline-item:last-child::before { display: none; }
.timeline-dot {
  width: 40px; height: 40px; background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 0.85rem; flex-shrink: 0;
  position: relative; z-index: 1;
}
.timeline-year { font-size: 0.75rem; color: var(--orange); font-weight: 600; letter-spacing: 0.05em; margin-bottom: 4px; margin-top: 10px; }
.timeline-title { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; margin-bottom: 6px; }
.timeline-desc { font-size: 0.88rem; color: var(--grey-500); line-height: 1.65; }
.numbers-panel {
  background: var(--dark); border-radius: var(--radius-xl); padding: 40px;
  border: 1px solid rgba(255,255,255,0.08);
}
.numbers-panel h3 { font-family: var(--font-display); color: white; font-size: 1.3rem; font-weight: 700; margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.number-row { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.number-row:last-child { border-bottom: none; }
.number-val { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--orange); }
.number-lbl { color: rgba(255,255,255,0.55); font-size: 0.85rem; text-align: right; max-width: 150px; }

/* ── HOW IT WORKS ── */
.how-step-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  overflow: hidden;
}
.how-step-number {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; color: white; font-size: 1.1rem;
}
.how-step-visual {
  width: 100%; height: 320px; border-radius: var(--radius-2xl);
  display: flex; align-items: center; justify-content: center;
  font-size: 7rem;
}
.how-step-bullet {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.92rem; color: var(--grey-600); line-height: 1.6;
}
.how-step-bullet span { color: var(--orange); font-weight: 700; flex-shrink: 0; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--grey-100); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 0; font-family: var(--font-display); font-weight: 700;
  font-size: 1rem; color: var(--dark); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: var(--transition);
}
.faq-question:hover { color: var(--orange); }
.faq-icon { font-size: 1.2rem; transition: var(--transition); flex-shrink: 0; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 0 20px; color: var(--grey-500); line-height: 1.75; font-size: 0.95rem; }

/* ── PARTNER PAGE ── */
.partner-hero-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.partner-benefit {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 20px;
  display: flex; align-items: center; gap: 14px; color: white;
}
.partner-benefit-icon { font-size: 1.5rem; flex-shrink: 0; }
.partner-benefit-label { font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.8); }
.partner-benefit-val { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.pricing-card {
  background: white; border-radius: var(--radius-xl);
  border: 2px solid var(--grey-100); padding: 40px;
  text-align: center; position: relative; transition: var(--transition);
  display: flex; flex-direction: column;
}
.pricing-card.featured {
  border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,107,53,0.1);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: white; padding: 5px 16px;
  border-radius: 100px; font-size: 0.75rem; font-weight: 700;
}
.pricing-tier { font-size: 0.78rem; color: var(--grey-400); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; }
.pricing-price { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: var(--dark); line-height: 1; }
.pricing-price sub { font-size: 1rem; font-weight: 500; color: var(--grey-400); }
.pricing-period { color: var(--grey-400); font-size: 0.82rem; margin: 4px 0 24px; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--grey-600); }
.pricing-features li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.pricing-features li.na { color: var(--grey-300); }
.pricing-features li.na::before { content: '—'; color: var(--grey-300); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.contact-info-card {
  background: var(--dark); border-radius: var(--radius-2xl);
  padding: 48px; color: white; position: sticky; top: 100px;
}
.contact-info-card h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 8px; }
.contact-info-card p { color: rgba(255,255,255,0.6); margin-bottom: 36px; font-size: 0.93rem; }
.contact-methods { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contact-method {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px; background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.08);
}
.contact-method-icon {
  width: 40px; height: 40px; background: rgba(255,107,53,0.2);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.contact-method-label { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-bottom: 2px; }
.contact-method-val { font-weight: 600; font-size: 0.9rem; }
.contact-social { display: flex; gap: 10px; }
.contact-social-link {
  width: 38px; height: 38px; background: rgba(255,255,255,0.08);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 1rem; transition: var(--transition);
  color: rgba(255,255,255,0.6);
}
.contact-social-link:hover { background: var(--orange); color: white; }
.contact-form-card {
  background: white; border-radius: var(--radius-2xl);
  border: 1px solid var(--grey-100); padding: 48px;
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 8px; }
.contact-form-card p { color: var(--grey-500); margin-bottom: 32px; font-size: 0.93rem; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.form-input, .form-select, .form-textarea {
  width: 100%; border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-md); padding: 12px 16px;
  font-size: 0.95rem; color: var(--dark); outline: none;
  transition: var(--transition); background: white;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,107,53,0.12);
}
.form-textarea { resize: vertical; min-height: 130px; }

/* ── REVEAL ANIMATIONS ── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal { transform: translateY(32px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal.active, .reveal-left.active, .reveal-right.active {
  opacity: 1; transform: none;
}
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; text-align: center; padding: 60px 0; }
  .hero-visual { display: none; }
  .hero-stats { justify-content: center; }
  .hero-desc { margin: 0 auto 32px; }
  .steps-container { grid-template-columns: 1fr 1fr; }
  .steps-line { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .story-split { grid-template-columns: 1fr; gap: 40px; }
  .story-visual { height: 200px; font-size: 5rem; }
  .app-content { grid-template-columns: 1fr; }
  .app-mockup { display: none; }
  .how-step-row { grid-template-columns: 1fr; gap: 32px; }
  .how-step-visual { order: -1 !important; height: 200px; font-size: 5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .partner-hero-benefits { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero-search { flex-direction: column; align-items: stretch; }
  .search-divider { display: none; }
  .newsletter-form { flex-direction: column; }
  .trust-bar-inner { flex-direction: column; gap: 8px; }
  .trust-item { border-right: none; }
  .section { padding: 64px 0; }
  .pricing-card { margin-bottom: 24px; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .steps-container { grid-template-columns: 1fr; }
  .story-stats { flex-direction: column; gap: 16px; align-items: flex-start; }
  .hero-stats { flex-direction: column; gap: 16px; }
}
/* ── STORE BADGES ── */
a img[src*="badge-apple"],
a img[src*="badge-google"] {
  height: 110px !important;
  width: auto !important;
}

/* ── CARD POP ANIMATION ON CLICK ── */
.service-card {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.service-card:active {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(255,107,53,0.2);
}

.service-card.pop {
  animation: cardPop 0.35s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@keyframes cardPop {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.08); }
  60%  { transform: scale(0.96); }
  80%  { transform: scale(1.03); }
  100% { transform: scale(1); }
}

/* ── STEPS NEW STYLE ── */
.step-bubble-new {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, background 0.3s ease;
}

.step-bubble-new.active {
  background: #FF6B35;
  box-shadow: 0 8px 32px rgba(255,107,53,0.4);
}

.step-bubble-new:hover {
  transform: scale(1.1);
  background: #FF6B35;
  box-shadow: 0 8px 32px rgba(255,107,53,0.4);
}

.step-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

.step-content {
  text-align: center;
}

.step-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
}

/* ── CITY NEW CARDS ── */
.city-new-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #f0e8e4;
  border-radius: 14px;
  padding: 12px 18px;
  font-size: 1.4rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.city-new-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255,107,53,0.15);
  border-color: #FFD5C8;
}

.city-new-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: #111;
}

.city-new-soon {
  font-size: 0.72rem;
  color: #FF6B35;
  font-weight: 600;
}

/* ── INDIA MAP FIX ── */
.cities-section svg {
  opacity: 0.12;
  filter: drop-shadow(0 0 20px rgba(255,107,53,0.3));
}

/* Fix map black background */
.cities-section img[alt="India Map"] {
  mix-blend-mode: multiply;
  opacity: 0.2;
}
/* Prevent city cards from overflowing */
.cities-section .container {
  overflow: visible;
}

.cities-section [style*="position:absolute"] {
  white-space: nowrap;
}
/* Stop map overflow */
.cities-section > .container {
  overflow: hidden;
}

/* ── STEPS NEW STYLE ── */
.step-bubble-new {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, background 0.3s ease;
}

.step-bubble-new.active {
  background: #FF6B35;
  box-shadow: 0 8px 32px rgba(255,107,53,0.4);
}

.step-bubble-new:hover {
  transform: scale(1.1);
  background: #FF6B35;
  box-shadow: 0 8px 32px rgba(255,107,53,0.4);
}

.step-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

.step-content {
  text-align: center;
}

.step-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
}

/* ── STEPS FORCE FIX ── */
.steps-container .step-bubble-new {
  width: 80px !important;
  height: 80px !important;
  border-radius: 50% !important;
  background: #1a1a1a !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto !important;
  position: relative !important;
  z-index: 2 !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15) !important;
}

.steps-container .step-bubble-new.active {
  background: #FF6B35 !important;
  box-shadow: 0 8px 32px rgba(255,107,53,0.4) !important;
}

.steps-container .step-bubble-new:hover {
  transform: scale(1.1) !important;
  background: #FF6B35 !important;
}

.steps-container .step-num {
  font-family: var(--font-display) !important;
  font-size: 1.4rem !important;
  font-weight: 800 !important;
  color: #fff !important;
}

.steps-container .step-content {
  text-align: center !important;
  margin-top: 16px !important;
}
.support-channel-icon {
  display: flex;
  justify-content: center;
}