/* ===== DESIGN TOKENS ===== */
:root {
  --bg: #0F0F13;
  --bg-2: #111217;
  --panel: #17171D;
  --panel-2: #22232B;
  --line: rgba(255, 255, 255, 0.11);
  --text: #FFFFFF;
  --muted: rgba(255, 255, 255, 0.62);
  --faint: rgba(255, 255, 255, 0.36);
  --orange: #FF6A00;
  --orange-2: #FF3D00;
  --green: #25D366;
  --danger: #FF3B5C;
  --orange-glow: rgba(255, 106, 0, 0.25);
  --orange-glow-soft: rgba(255, 106, 0, 0.08);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Outfit', 'Inter', sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 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;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  color: var(--orange);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #ff8533;
}

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

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

.text-gradient {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(255, 106, 0, 0.12);
  border: 1px solid rgba(255, 106, 0, 0.2);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse-dot 2s ease-in-out infinite;
}

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

/* ===== AMBIENT BACKGROUND ===== */
.ambient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}

.ambient-orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,106,0,0.3), transparent 70%);
  top: -200px;
  left: -100px;
  animation: float-orb 18s ease-in-out infinite;
}

.ambient-orb--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,61,0,0.2), transparent 70%);
  bottom: -150px;
  right: -100px;
  animation: float-orb 22s ease-in-out infinite reverse;
}

.ambient-orb--3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,122,24,0.15), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float-orb 15s ease-in-out infinite;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(15px, 35px) scale(1.03); }
}

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

.navbar.scrolled {
  background: rgba(15, 15, 19, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}

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

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

.navbar-logo {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 12px rgba(255,106,0,0.5));
  transition: transform 0.3s var(--ease-spring);
}

.navbar-brand:hover .navbar-logo {
  transform: scale(1.1) rotate(-5deg);
}

.navbar-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.navbar-links a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
  transition: width 0.3s var(--ease-out-expo);
}

.navbar-links a:hover {
  color: var(--text);
}

.navbar-links a:hover::after {
  width: 100%;
}

.navbar-cta {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #fff !important;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-spring);
  box-shadow: 0 4px 20px rgba(255,106,0,0.3);
}

.navbar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,106,0,0.4);
  color: #fff !important;
}

.navbar-cta::after {
  display: none !important;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

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

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: rgba(255,106,0,0.1);
  border: 1px solid rgba(255,106,0,0.2);
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fade-up 0.8s var(--ease-out-expo) both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: fade-up 0.8s var(--ease-out-expo) 0.1s both;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 40px;
  animation: fade-up 0.8s var(--ease-out-expo) 0.2s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fade-up 0.8s var(--ease-out-expo) 0.3s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-spring);
  box-shadow: 0 4px 24px rgba(255,106,0,0.35), inset 0 1px 0 rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(255,106,0,0.45), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--orange);
  background: rgba(255,106,0,0.08);
  color: var(--orange);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  animation: fade-up 0.8s var(--ease-out-expo) 0.4s both;
}

.hero-stat {
  text-align: left;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange), #FFB366);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--faint);
  margin-top: 2px;
}

/* Hero Phone Mockups */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fade-up 1s var(--ease-out-expo) 0.3s both;
}

.hero-phone-group {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
}

.hero-phone {
  position: absolute;
  width: 240px;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 40px rgba(255,106,0,0.1);
  overflow: hidden;
  transition: transform 0.5s var(--ease-out-expo);
}

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

.hero-phone--main {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 260px;
}

.hero-phone--left {
  top: 50%;
  left: 5%;
  transform: translateY(-50%) rotate(-8deg) scale(0.85);
  z-index: 2;
  opacity: 0.7;
}

.hero-phone--right {
  top: 50%;
  right: 5%;
  transform: translateY(-50%) rotate(8deg) scale(0.85);
  z-index: 1;
  opacity: 0.7;
}

.hero-phone-group:hover .hero-phone--main {
  transform: translate(-50%, -52%) scale(1.02);
}

.hero-phone-group:hover .hero-phone--left {
  transform: translateY(-50%) rotate(-12deg) scale(0.83) translateX(-10px);
}

.hero-phone-group:hover .hero-phone--right {
  transform: translateY(-50%) rotate(12deg) scale(0.83) translateX(10px);
}

.hero-phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,106,0,0.25), transparent 70%);
  filter: blur(60px);
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

/* ===== FEATURES SECTION ===== */
.features {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.features-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
}

.features-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.features-header p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.feature-card {
  background: rgba(23, 23, 29, 0.6);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,106,0,0.3);
  background: rgba(23, 23, 29, 0.8);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 30px rgba(255,106,0,0.08);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255,106,0,0.15), rgba(255,61,0,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: transform 0.3s var(--ease-spring);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.how-it-works-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
}

.how-it-works-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.how-it-works-header p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 16.6%;
  right: 16.6%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0.3;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 24px;
  box-shadow: 0 0 30px rgba(255,106,0,0.3);
  position: relative;
  z-index: 1;
}

.step-emoji {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 280px;
  margin: 0 auto;
}

/* ===== LOGIN MODAL ===== */
.login-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.login-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.login-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.login-modal-overlay .login-card {
  position: relative;
  z-index: 1;
  max-width: 520px;
  width: 100%;
  margin: 0;
  background: rgba(23, 23, 29, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 0;
  text-align: center;
  overflow: hidden;
  backdrop-filter: blur(30px);
  max-height: 90vh;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s var(--ease-spring);
}



.login-modal-overlay.active .login-card {
  transform: scale(1) translateY(0);
}

.login-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  z-index: 2;
  line-height: 1;
}

.login-modal-close:hover {
  background: rgba(255, 106, 0, 0.15);
  border-color: rgba(255, 106, 0, 0.3);
  color: var(--orange);
  transform: rotate(90deg);
}

.login-modal-overlay .login-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 180deg, transparent, rgba(255,106,0,0.06), transparent, rgba(255,61,0,0.04), transparent);
  animation: spin-glow 8s linear infinite;
}


@keyframes spin-glow {
  100% { transform: rotate(360deg); }
}

.login-card-inner {
  position: relative;
  z-index: 1;
  padding: 56px 48px;
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.login-card-inner::-webkit-scrollbar {
  display: none;
}

.login-logo {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 0 20px rgba(255,106,0,0.5));
  animation: flame-float 3s ease-in-out infinite;
}

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

.login-card h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.login-card .tagline {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 36px;
}

.login-eyebrow {
  color: var(--faint);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Google Button */
.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  padding: 16px 24px;
  border-radius: var(--radius-full);
  background: #FFFFFF;
  color: #333;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-spring);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}

.google-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.google-btn:active {
  transform: translateY(0);
}

.google-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.google-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.login-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  color: var(--faint);
  font-size: 0.82rem;
}

.login-divider::before, .login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* Download Button */
.download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 24px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-spring);
  box-shadow: 0 4px 24px rgba(255,106,0,0.35);
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(255,106,0,0.45);
}

.download-btn svg {
  width: 22px;
  height: 22px;
}

/* Age confirmation */
.age-confirm {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  cursor: pointer;
  user-select: none;
}

.age-confirm input[type="checkbox"] {
  display: none;
}

.age-confirm .checkbox-visual {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid var(--faint);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.age-confirm input:checked + .checkbox-visual {
  background: var(--orange);
  border-color: var(--orange);
}

.age-confirm input:checked + .checkbox-visual::after {
  content: '✓';
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}

.age-confirm span {
  color: var(--muted);
  font-size: 0.88rem;
}

/* Terms */
.login-terms {
  margin-top: 24px;
  color: var(--faint);
  font-size: 0.78rem;
  line-height: 1.6;
}

.login-terms a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.login-help {
  margin-top: 16px;
  color: var(--faint);
  font-size: 0.82rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.login-help:hover {
  color: var(--orange);
}

/* Login error */
.login-error {
  margin-top: 16px;
  color: var(--danger);
  font-size: 0.85rem;
  background: rgba(255,59,92,0.1);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,59,92,0.2);
}

/* Loading spinner */
.spinner {
  width: 22px;
  height: 22px;
  border: 3px solid rgba(0,0,0,0.1);
  border-top-color: #333;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.testimonials-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
}

.testimonials-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.testimonials-header p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.testimonial-card {
  background: rgba(23, 23, 29, 0.6);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.4s var(--ease-out-expo);
  backdrop-filter: blur(20px);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,106,0,0.2);
}

.testimonial-stars {
  color: #FFB800;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.92rem;
}

.testimonial-location {
  color: var(--faint);
  font-size: 0.8rem;
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 0 30px;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 1;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

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

.footer-brand img {
  width: 32px;
  height: 32px;
}

.footer-brand span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
}

.footer-desc {
  color: var(--faint);
  font-size: 0.85rem;
  max-width: 280px;
  line-height: 1.6;
}

.footer-links-group h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-links-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-group a {
  color: var(--muted);
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer-links-group a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  color: var(--faint);
  font-size: 0.82rem;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: var(--faint);
  font-size: 0.82rem;
}

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

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

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

/* ===== EMBERS / PARTICLES ===== */
.ember {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}

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

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-phone-group {
    max-width: 400px;
    margin: 0 auto;
  }

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

  .steps {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .steps::before {
    display: none;
  }

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

@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

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

  .hero-phone {
    width: 180px;
    border-radius: 20px;
  }

  .hero-phone--main {
    width: 200px;
  }

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

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

  .login-card-inner {
    padding: 40px 28px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-desc {
    margin: 0 auto;
  }

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

  .hero-stats {
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-phone {
    width: 140px;
    border-radius: 16px;
  }

  .hero-phone--main {
    width: 160px;
  }

  .hero-phone-group {
    max-width: 320px;
  }
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 15, 19, 0.95);
  backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  color: var(--text);
  font-size: 1.4rem;
  font-weight: 600;
  font-family: var(--font-display);
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 2rem;
  cursor: pointer;
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 200;
  opacity: 0;
  transition: all 0.4s var(--ease-spring);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.toast.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast.success {
  border-color: rgba(37,211,102,0.3);
}

.toast.error {
  border-color: rgba(255,59,92,0.3);
}
