/* ===== LOOK N LOOK - Global Styles ===== */
/* Color Scheme: Black & Orange (#FA8117) */

/* --- CSS Variables --- */
:root {
  --primary: #FA8117;
  --primary-dark: #E07010;
  --primary-light: #FFa040;
  --secondary: #FF6B00;
  --secondary-dark: #D45A00;
  --accent: #FFB347;
  --accent-dark: #E09530;
  --dark: #0A0A0A;
  --dark-soft: #111111;
  --dark-card: #141414;
  --gray-900: #1A1A1A;
  --gray-800: #252525;
  --gray-700: #333333;
  --gray-600: #555555;
  --gray-500: #888888;
  --gray-400: #AAAAAA;
  --gray-300: #CCCCCC;
  --gray-200: #E0E0E0;
  --gray-100: #F0F0F0;
  --white: #FFFFFF;
  --gradient-primary: linear-gradient(135deg, #FA8117 0%, #FF6B00 100%);
  --gradient-hero: linear-gradient(160deg, #0A0A0A 0%, #111111 40%, #1A1208 100%);
  --gradient-card: linear-gradient(145deg, rgba(250, 129, 23, 0.08) 0%, rgba(255, 107, 0, 0.08) 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(250, 129, 23, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-main);
  background-color: var(--dark);
  color: var(--gray-200);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: var(--font-main);
}

/* --- Utility Classes --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(250, 129, 23, 0.12);
  border: 1px solid rgba(250, 129, 23, 0.3);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-400);
  max-width: 600px;
  line-height: 1.8;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-center {
  text-align: center;
}

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

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

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(250, 129, 23, 0.12);
  padding: 10px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-400);
  position: relative;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: var(--transition);
}

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

.nav-cta {
  background: var(--gradient-primary);
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  box-shadow: 0 4px 20px rgba(250, 129, 23, 0.35);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(250, 129, 23, 0.5);
}

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

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

.mobile-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(250, 129, 23, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 10s ease-in-out infinite reverse;
}

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

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

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(250, 129, 23, 0.1);
  border: 1px solid rgba(250, 129, 23, 0.3);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 52px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stat h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}

.hero-stat p {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 4px;
}

/* Hero Phone Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fadeInUp 1s ease 0.3s both;
}

.phone-mockup {
  width: 280px;
  height: 580px;
  background: var(--gray-900);
  border-radius: 40px;
  border: 3px solid var(--gray-700);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    var(--shadow-lg),
    0 0 80px rgba(250, 129, 23, 0.15);
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: var(--dark);
  border-radius: 0 0 18px 18px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #141210 0%, #0a0a0a 100%);
  padding: 40px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px 12px;
}

.phone-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
}

.phone-location svg {
  color: var(--primary);
}

.phone-search {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-video-card {
  flex: 1;
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
}

.phone-video-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 60%);
}

.phone-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-video-info {
  position: relative;
  z-index: 2;
}

.phone-video-info h4 {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
}

.phone-video-info p {
  color: var(--gray-300);
  font-size: 0.65rem;
  margin-top: 2px;
}

.phone-video-meta {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.phone-video-meta span {
  color: var(--gray-300);
  font-size: 0.6rem;
  display: flex;
  align-items: center;
  gap: 3px;
}

.phone-bottom-nav {
  display: flex;
  justify-content: space-around;
  padding: 10px 0 4px;
}

.phone-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--gray-500);
  font-size: 0.55rem;
}

.phone-nav-item.active {
  color: var(--primary);
}

.phone-nav-item.camera-btn {
  margin-top: -20px;
}

.phone-nav-item.camera-btn .nav-icon-circle {
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(250, 129, 23, 0.5);
}

/* Floating elements around phone */
.floating-element {
  position: absolute;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 6s ease-in-out infinite;
  font-size: 0.8rem;
  color: var(--white);
}

.floating-element.fe-1 {
  top: 8%;
  right: 0%;
  animation-delay: 0s;
}

.floating-element.fe-2 {
  bottom: 20%;
  left: -10%;
  animation-delay: 2s;
}

.floating-element.fe-3 {
  top: 35%;
  left: -5%;
  animation-delay: 4s;
}

.floating-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.fi-orange { background: rgba(250, 129, 23, 0.25); color: var(--primary); }
.fi-amber { background: rgba(255, 179, 71, 0.25); color: var(--accent); }
.fi-deep { background: rgba(255, 107, 0, 0.25); color: var(--secondary); }

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

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 25px rgba(250, 129, 23, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(250, 129, 23, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* --- Features Section --- */
.features {
  background: var(--dark);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(250, 129, 23, 0.3), transparent);
}

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

.feature-card {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: rgba(250, 129, 23, 0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.fi-location { background: linear-gradient(135deg, rgba(250, 129, 23, 0.2), rgba(250, 129, 23, 0.05)); color: var(--primary); }
.fi-camera { background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), rgba(255, 107, 0, 0.05)); color: var(--secondary); }
.fi-edit { background: linear-gradient(135deg, rgba(255, 179, 71, 0.2), rgba(255, 179, 71, 0.05)); color: var(--accent); }
.fi-social { background: linear-gradient(135deg, rgba(250, 129, 23, 0.15), rgba(250, 129, 23, 0.05)); color: var(--primary-light); }
.fi-audio { background: linear-gradient(135deg, rgba(255, 150, 0, 0.2), rgba(255, 150, 0, 0.05)); color: #FF9600; }
.fi-discover { background: linear-gradient(135deg, rgba(224, 112, 16, 0.2), rgba(224, 112, 16, 0.05)); color: var(--primary-dark); }

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

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

/* --- How It Works --- */
.how-it-works {
  background: var(--dark-soft);
}

.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
  position: relative;
}

.steps-wrapper::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent), var(--primary));
  opacity: 0.3;
}

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

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--dark);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.step-card:hover .step-number {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

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

.step-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* --- Discover Section --- */
.discover {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

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

.discover-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.discover-card {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}

.discover-card:hover {
  border-color: rgba(250, 129, 23, 0.2);
  transform: translateY(-4px);
}

.discover-card .emoji {
  font-size: 2rem;
  margin-bottom: 12px;
}

.discover-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.discover-card p {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* --- Download CTA Section --- */
.download-cta {
  padding: 120px 0;
  background: var(--dark-soft);
  position: relative;
  overflow: hidden;
}

.download-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(250, 129, 23, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-box {
  background: linear-gradient(135deg, rgba(250, 129, 23, 0.1) 0%, rgba(255, 107, 0, 0.06) 100%);
  border: 1px solid rgba(250, 129, 23, 0.2);
  border-radius: var(--radius-xl);
  padding: 64px;
  text-align: center;
  position: relative;
  z-index: 2;
}

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

.cta-box p {
  font-size: 1.1rem;
  color: var(--gray-400);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.store-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 14px 28px;
  transition: var(--transition);
}

.store-btn:hover {
  border-color: var(--primary);
  background: rgba(250, 129, 23, 0.08);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.store-btn svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.store-btn-text {
  text-align: left;
}

.store-btn-text small {
  font-size: 0.7rem;
  color: var(--gray-500);
  display: block;
}

.store-btn-text span {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

/* --- Footer --- */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 0 30px;
}

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

.footer-brand p {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.7;
  max-width: 300px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

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

.footer-col a {
  display: block;
  color: var(--gray-500);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--primary);
  padding-left: 6px;
}

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

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--gray-600);
}

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

.footer-bottom-links a {
  font-size: 0.85rem;
  color: var(--gray-600);
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* ==============================
   LEGAL PAGES (Terms, Privacy, Delete)
   ============================== */

.legal-page {
  padding-top: 100px;
  min-height: 100vh;
}

.legal-hero {
  padding: 60px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.legal-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(250, 129, 23, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.legal-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
}

.legal-hero .last-updated {
  font-size: 0.9rem;
  color: var(--gray-500);
  position: relative;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px 100px;
}

.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(250, 129, 23, 0.2);
}

.legal-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gray-200);
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-content p {
  font-size: 0.95rem;
  color: var(--gray-400);
  line-height: 1.85;
  margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content ul {
  list-style: disc;
}

.legal-content ol {
  list-style: decimal;
}

.legal-content li {
  font-size: 0.95rem;
  color: var(--gray-400);
  line-height: 1.85;
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content a:hover {
  color: var(--primary-light);
}

.legal-content strong {
  color: var(--gray-200);
  font-weight: 600;
}

.legal-content .highlight-box {
  background: rgba(250, 129, 23, 0.06);
  border: 1px solid rgba(250, 129, 23, 0.2);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 24px 0;
}

.legal-content .highlight-box p {
  margin-bottom: 0;
}

.legal-content .warning-box {
  background: rgba(255, 107, 0, 0.06);
  border: 1px solid rgba(255, 107, 0, 0.25);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 24px 0;
}

.legal-content .warning-box p {
  margin-bottom: 0;
}

/* Delete Account Page Specific */
.delete-steps {
  counter-reset: step;
  margin: 32px 0;
}

.delete-step {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  transition: var(--transition);
}

.delete-step:hover {
  border-color: rgba(250, 129, 23, 0.2);
}

.delete-step-num {
  counter-increment: step;
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}

.delete-step-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.delete-step-content p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 0;
}

.email-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 40px 0;
  padding: 40px;
  background: linear-gradient(135deg, rgba(250, 129, 23, 0.08) 0%, rgba(255, 107, 0, 0.05) 100%);
  border: 1px solid rgba(250, 129, 23, 0.2);
  border-radius: var(--radius-lg);
  text-align: center;
}

.email-cta h3 {
  margin-top: 0;
  color: var(--white);
  font-size: 1.3rem;
}

.email-cta .email-link {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  padding: 12px 28px;
  background: rgba(250, 129, 23, 0.12);
  border: 1px solid rgba(250, 129, 23, 0.3);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.email-cta .email-link:hover {
  background: var(--primary);
  color: var(--white);
}

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

  .hero-content {
    max-width: 100%;
  }

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

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

  .hero-visual {
    margin-top: 20px;
  }

  .floating-element {
    display: none;
  }

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

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

  .steps-wrapper::before {
    display: none;
  }

  .discover .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.3rem;
  }

  .mobile-toggle {
    display: flex;
    z-index: 1001;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

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

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

  .hero-stats {
    gap: 24px;
  }

  .hero-stat h3 {
    font-size: 1.4rem;
  }

  .cta-box {
    padding: 40px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .phone-mockup {
    width: 240px;
    height: 500px;
  }

  .discover-cards {
    grid-template-columns: 1fr 1fr;
  }

  .legal-content h2 {
    font-size: 1.3rem;
  }

  .delete-step {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .store-buttons {
    flex-direction: column;
    align-items: center;
  }

  .discover-cards {
    grid-template-columns: 1fr;
  }
}

/* --- Animations on Scroll --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-700);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-600);
}
