/* ==========================================================================
   Booklify — Coming Soon Landing Page
   Design System & Styles
   ========================================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand */
  --orange-50: #FFF3E0;
  --orange-100: #FFE0B2;
  --orange-200: #FFCC80;
  --orange-300: #FFB74D;
  --orange-400: #FFA726;
  --orange-500: #F57C00;
  --orange-600: #EF6C00;
  --orange-700: #E65100;

  /* Neutrals */
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #EEEEEE;
  --gray-300: #E0E0E0;
  --gray-400: #BDBDBD;
  --gray-500: #9E9E9E;
  --gray-600: #757575;
  --gray-700: #616161;
  --gray-800: #424242;
  --gray-900: #1A1A2E;
  --dark-bg: #0F0F1A;
  --dark-card: #1A1A2E;

  /* Accent */
  --green-500: #4CAF50;
  --green-600: #388E3C;

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 120px 0;
  --container-max: 1200px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-xl: 0 30px 80px rgba(0,0,0,0.2);
  --shadow-glow: 0 0 60px rgba(245,124,0,0.3);

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Utility Classes ---------- */
.text-gradient {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge--orange {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: var(--white);
}

.badge--dark {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
  padding: 10px 0;
}

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

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--white);
  transition: color 0.4s var(--ease-out);
}

.navbar.scrolled .navbar__logo {
  color: var(--gray-900);
}

.navbar__logo-icon {
  width: 38px;
  height: 38px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--orange-500);
  box-shadow: var(--shadow-sm);
  transition: background 0.4s, color 0.4s;
}

.navbar.scrolled .navbar__logo-icon {
  background: var(--orange-500);
  color: var(--white);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__link {
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
}

.navbar.scrolled .navbar__link {
  color: var(--gray-700);
}

.navbar__link:hover {
  color: var(--white);
}

.navbar.scrolled .navbar__link:hover {
  color: var(--orange-500);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange-500);
  transition: width 0.3s var(--ease-out);
}

.navbar__link:hover::after {
  width: 100%;
}

.navbar__cta {
  padding: 10px 24px;
  background: var(--white);
  color: var(--orange-600);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  box-shadow: var(--shadow-sm);
}

.navbar.scrolled .navbar__cta {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: var(--white);
}

.navbar__cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.navbar__hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

.navbar.scrolled .navbar__hamburger span {
  background: var(--gray-900);
}

.navbar__hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.navbar__hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ---------- Mobile Menu ---------- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15,15,26,0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--orange-400);
}

/* ---------- HERO Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(160deg, var(--orange-600) 0%, var(--orange-500) 40%, var(--orange-700) 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.3) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(255,255,255,0.2) 0%, transparent 45%);
}

/* Floating particles */
.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  animation: floatParticle 8s infinite ease-in-out;
}

.hero__particle:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; animation-duration: 7s; }
.hero__particle:nth-child(2) { top: 25%; left: 85%; animation-delay: 1s; animation-duration: 9s; }
.hero__particle:nth-child(3) { top: 70%; left: 15%; animation-delay: 2s; animation-duration: 6s; }
.hero__particle:nth-child(4) { top: 60%; left: 75%; animation-delay: 3s; animation-duration: 8s; }
.hero__particle:nth-child(5) { top: 40%; left: 50%; animation-delay: 0.5s; animation-duration: 10s; }
.hero__particle:nth-child(6) { top: 80%; left: 60%; animation-delay: 1.5s; animation-duration: 7s; width: 4px; height: 4px; }
.hero__particle:nth-child(7) { top: 10%; left: 40%; animation-delay: 2.5s; animation-duration: 9s; width: 8px; height: 8px; }
.hero__particle:nth-child(8) { top: 50%; left: 90%; animation-delay: 4s; animation-duration: 11s; width: 5px; height: 5px; }

@keyframes floatParticle {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.2; }
  25% { transform: translateY(-30px) translateX(15px); opacity: 0.5; }
  50% { transform: translateY(-15px) translateX(-10px); opacity: 0.3; }
  75% { transform: translateY(-40px) translateX(20px); opacity: 0.6; }
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 80px);
}

.hero__text {
  color: var(--white);
}

.hero__badge {
  margin-bottom: 24px;
  animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
}

.hero__title span {
  display: block;
  color: var(--white);
}

.hero__title .hero__title-dark {
  color: rgba(0,0,0,0.7);
}

.hero__subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: 36px;
  max-width: 500px;
  animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
}

.hero__form {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s var(--ease-out) 0.8s both;
}

.hero__input {
  flex: 1;
  padding: 16px 24px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-body);
  outline: none;
  transition: all 0.3s var(--ease-out);
}

.hero__input::placeholder {
  color: rgba(255,255,255,0.6);
}

.hero__input:focus {
  border-color: var(--white);
  background: rgba(255,255,255,0.25);
}

.hero__btn {
  padding: 16px 32px;
  background: var(--white);
  color: var(--orange-600);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

.hero__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.hero__btn:active {
  transform: translateY(0);
}

.hero__stores {
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeInUp 0.8s var(--ease-out) 1s both;
}

.hero__store-badge {
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0.6;
  filter: grayscale(80%) brightness(2);
  transition: all 0.3s var(--ease-out);
  position: relative;
}

.hero__store-badge img {
  height: 100%;
  width: auto;
}

.hero__store-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* Hero phone mockups */
.hero__phones {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 600px;
  animation: fadeIn 1s var(--ease-out) 0.5s both;
}

.phone-mockup {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--gray-900);
  border: 6px solid var(--gray-800);
  transition: transform 0.6s var(--ease-out);
}

.phone-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-mockup--center {
  width: 260px;
  height: 530px;
  z-index: 3;
  transform: translateY(0);
}

.phone-mockup--left {
  width: 220px;
  height: 460px;
  position: absolute;
  left: -30px;
  z-index: 2;
  transform: rotate(-8deg) translateY(20px);
}

.phone-mockup--right {
  width: 220px;
  height: 460px;
  position: absolute;
  right: -30px;
  z-index: 2;
  transform: rotate(8deg) translateY(20px);
}

.hero__phones:hover .phone-mockup--left {
  transform: rotate(-12deg) translateY(10px) translateX(-10px);
}

.hero__phones:hover .phone-mockup--right {
  transform: rotate(12deg) translateY(10px) translateX(10px);
}

.hero__phones:hover .phone-mockup--center {
  transform: translateY(-10px);
}

/* No CSS notch — screenshots already include real device notch */

/* ---------- Scroll Indicator ---------- */
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  animation: fadeInUp 0.8s var(--ease-out) 1.2s both;
  z-index: 5;
}

.hero__scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  position: relative;
}

.hero__scroll-mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}

.hero__scroll-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

/* ---------- Section Headers ---------- */
.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header__badge {
  margin-bottom: 16px;
}

.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-header__title--white {
  color: var(--white);
}

.section-header__subtitle {
  font-size: 1.15rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header__subtitle--white {
  color: rgba(255,255,255,0.7);
}

/* ---------- FEATURES Section ---------- */
.features {
  padding: var(--section-padding);
  background: var(--gray-50);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange-200), transparent);
}

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

.feature-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  border: 1px solid var(--gray-200);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-400), var(--orange-600));
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange-100);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--orange-50), var(--orange-100));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: all 0.4s var(--ease-out);
}

.feature-card:hover .feature-card__icon {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  transform: scale(1.1) rotate(5deg);
}

.feature-card:hover .feature-card__icon span {
  filter: grayscale(100%) brightness(10);
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.feature-card__desc {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ---------- APP SHOWCASE Section ---------- */
.showcase {
  padding: var(--section-padding);
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.showcase__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,124,0,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.showcase__glow--left {
  top: -200px;
  left: -200px;
}

.showcase__glow--right {
  bottom: -200px;
  right: -200px;
}

.showcase__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
  position: relative;
  z-index: 2;
}

.showcase__item:last-child {
  margin-bottom: 0;
}

.showcase__item--reverse {
  direction: rtl;
}

.showcase__item--reverse > * {
  direction: ltr;
}

.showcase__phone {
  display: flex;
  justify-content: center;
}

.showcase__phone .phone-mockup {
  width: 280px;
  height: 570px;
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.showcase__info {
  color: var(--white);
}

.showcase__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange-400);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.showcase__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.showcase__desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 30px;
}

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

.showcase__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
}

.showcase__feature-check {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ---------- STATS Section ---------- */
.stats {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
  position: relative;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat {
  color: var(--white);
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.stat__label {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* ---------- HOW IT WORKS Section ---------- */
.how-it-works {
  padding: var(--section-padding);
  background: var(--white);
}

.how-it-works__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

/* Connection line between steps */
.how-it-works__steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 16.66%;
  right: 16.66%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange-200), var(--orange-500), var(--orange-200));
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-card__number {
  width: 100px;
  height: 100px;
  margin: 0 auto 28px;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(245,124,0,0.3);
  position: relative;
}

.step-card__number::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 3px solid var(--orange-200);
}

.step-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.step-card__desc {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.65;
  max-width: 300px;
  margin: 0 auto;
}

/* ---------- LANGUAGES Section ---------- */
.languages {
  padding: var(--section-padding);
  background: var(--gray-50);
}

.languages__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.language-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 16px 20px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all 0.3s var(--ease-out);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.language-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange-200);
}

.language-card__flag {
  width: 56px;
  height: 40px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.language-card__flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.language-card__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  white-space: nowrap;
}

/* ---------- TESTIMONIAL / QUOTE Section ---------- */
.quote-section {
  padding: var(--section-padding);
  background: var(--dark-bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-section__glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,124,0,0.1) 0%, transparent 70%);
  border-radius: 50%;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.quote-section__text {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

.quote-section__author {
  font-size: 1rem;
  color: var(--orange-400);
  font-weight: 500;
  position: relative;
  z-index: 2;
}

/* ---------- CTA Section ---------- */
.cta {
  padding: var(--section-padding);
  background: linear-gradient(160deg, var(--orange-600) 0%, var(--orange-500) 40%, var(--orange-700) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta__bg-shape {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
}

.cta__bg-shape--1 {
  width: 600px;
  height: 600px;
  top: -300px;
  right: -100px;
}

.cta__bg-shape--2 {
  width: 400px;
  height: 400px;
  bottom: -200px;
  left: -100px;
}

.cta__content {
  position: relative;
  z-index: 2;
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}

.cta__subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.cta__form {
  display: flex;
  gap: 12px;
  justify-content: center;
  max-width: 520px;
  margin: 0 auto 32px;
}

.cta__input {
  flex: 1;
  padding: 18px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-body);
  outline: none;
  transition: all 0.3s var(--ease-out);
}

.cta__input::placeholder {
  color: rgba(255,255,255,0.6);
}

.cta__input:focus {
  border-color: var(--white);
  background: rgba(255,255,255,0.25);
}

.cta__btn {
  padding: 18px 36px;
  background: var(--white);
  color: var(--orange-600);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

.cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.cta__stores {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.cta__store-img {
  height: 52px;
  border-radius: 10px;
  transition: transform 0.3s var(--ease-out);
  opacity: 0.85;
  cursor: pointer;
}

.cta__store-img:hover {
  transform: scale(1.05);
  opacity: 1;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--gray-900);
  padding: 60px 0 30px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand {
  color: var(--white);
}

.footer__logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer__logo-icon {
  width: 34px;
  height: 34px;
  background: var(--orange-500);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--white);
}

.footer__desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 320px;
}

.footer__col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

.footer__links a:hover {
  color: var(--orange-400);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

.footer__socials {
  display: flex;
  gap: 16px;
}

.footer__social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  transition: all 0.3s var(--ease-out);
}

.footer__social:hover {
  background: var(--orange-500);
  color: var(--white);
  transform: translateY(-3px);
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ---------- TOAST Notification ---------- */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--gray-900);
  color: var(--white);
  padding: 16px 28px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-lg);
  transform: translateX(120%);
  transition: transform 0.5s var(--ease-spring);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast.show {
  transform: translateX(0);
}

.toast__icon {
  font-size: 1.2rem;
}

/* ---------- Countdown ---------- */
.countdown {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 32px;
}

.countdown__item {
  text-align: center;
}

.countdown__number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.countdown__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__form {
    justify-content: center;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
  }

  .hero__stores {
    justify-content: center;
  }

  .hero__phones {
    height: 420px;
  }

  .phone-mockup--center {
    width: 220px;
    height: 440px;
  }

  .phone-mockup--left,
  .phone-mockup--right {
    width: 180px;
    height: 380px;
  }

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

  .showcase__item {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .showcase__item--reverse {
    direction: ltr;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .how-it-works__steps::before {
    display: none;
  }

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

@media (max-width: 768px) {
  :root {
    --section-padding: 80px 0;
  }

  .navbar__links {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .hero {
    padding-top: 100px;
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero__title {
    font-size: clamp(2.2rem, 7vw, 3rem);
  }

  .hero__form {
    flex-direction: column;
    max-width: 360px;
  }

  .hero__btn {
    width: 100%;
  }

  .hero__phones {
    height: 380px;
  }

  .phone-mockup--center {
    width: 190px;
    height: 390px;
  }

  .phone-mockup--left,
  .phone-mockup--right {
    width: 155px;
    height: 320px;
  }

  .phone-mockup--left {
    left: -10px;
  }

  .phone-mockup--right {
    right: -10px;
  }

  .hero__scroll {
    display: none;
  }

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

  .how-it-works__steps {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

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

  .cta__form {
    flex-direction: column;
    max-width: 360px;
  }

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

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

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .countdown {
    gap: 12px;
  }

  .countdown__number {
    width: 65px;
    height: 65px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero__phones {
    height: 320px;
  }

  .phone-mockup--center {
    width: 160px;
    height: 340px;
  }

  .phone-mockup--left,
  .phone-mockup--right {
    width: 130px;
    height: 270px;
  }

  .showcase__phone .phone-mockup {
    width: 230px;
    height: 470px;
  }

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

/* ---------- Coming Soon Store Badges ---------- */
.store-badge-coming {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: rgba(0,0,0,0.85);
  border-radius: 12px;
  color: var(--white);
  transition: all 0.3s var(--ease-out);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.store-badge-coming::before {
  content: 'COMING SOON';
  position: absolute;
  inset: 0;
  background: rgba(245,124,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}

.store-badge-coming:hover::before {
  opacity: 1;
}

.store-badge-coming__icon {
  font-size: 1.5rem;
}

.store-badge-coming__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.store-badge-coming__label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.7;
}

.store-badge-coming__store {
  font-size: 1rem;
  font-weight: 700;
}

/* ---------- Success animation for form ---------- */
.form-success {
  animation: successPulse 0.6s var(--ease-spring);
}

@keyframes successPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}
