/* ============================================
   QIRAAT LANDING PAGE - GLOBAL STYLES
   ============================================ */

/* CSS Variables */
:root {
  --bg-primary: #121212;
  --bg-secondary: #282828;
  --bg-nav: #191414;
  --teal: #14B8A6;
  --teal-dark: #0D9488;
  --teal-light: #5EEAD4;
  --gold: #B8A45C;
  --text-primary: #FFFFFF;
  --text-secondary: #A0A0A0;
  --text-muted: #6B7280;
  --glass-bg: rgba(40, 40, 40, 0.4);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: rgba(0, 0, 0, 0.3);
  --gradient-splash-1: #0D1B2A;
  --gradient-splash-2: #121212;
  --gradient-splash-3: #0A1A1A;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
  color: var(--teal-light);
}

img {
  max-width: 100%;
  height: auto;
}

/* ============================================
   PARTICLE BACKGROUND
   ============================================ */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ============================================
   AMBIENT GLOW EFFECTS
   ============================================ */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.ambient-glow--teal {
  width: 600px;
  height: 600px;
  background: var(--teal);
  top: -200px;
  right: -200px;
  animation: glowFloat 8s ease-in-out infinite;
}

.ambient-glow--teal-bottom {
  width: 500px;
  height: 500px;
  background: var(--teal-dark);
  bottom: -200px;
  left: -150px;
  animation: glowFloat 10s ease-in-out infinite reverse;
}

.ambient-glow--gold {
  width: 400px;
  height: 400px;
  background: var(--gold);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.06;
  animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, 20px); }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.06; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.1; transform: translate(-50%, -50%) scale(1.1); }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(25, 20, 20, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: none;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(25, 20, 20, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar__logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
}

.navbar__name {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.navbar__links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.3s ease;
}

.navbar__links a:hover {
  color: var(--text-primary);
}

.navbar__links a:hover::after {
  width: 100%;
}

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

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

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

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

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

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

.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--gradient-splash-1) 0%, var(--gradient-splash-2) 30%, var(--gradient-splash-3) 70%, var(--gradient-splash-2) 100%);
  z-index: 0;
}

.hero__container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__content {
  max-width: 560px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.2);
  font-size: 0.85rem;
  color: var(--teal-light);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease forwards;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s ease-in-out infinite;
}

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

.hero__title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 8px;
  animation: fadeInUp 0.8s ease 0.1s forwards;
  opacity: 0;
}

.hero__title .gradient-text {
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal) 50%, var(--teal-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__tagline {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero__description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(20, 184, 166, 0.3);
  -webkit-text-fill-color: #FFFFFF;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(20, 184, 166, 0.4);
  color: #FFFFFF;
  -webkit-text-fill-color: #FFFFFF;
}

.btn--secondary {
  background: var(--glass-bg);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn--secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
}

.btn__icon {
  font-size: 1.3rem;
}

.btn__icon-svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Phone Mockup */
.hero__mockup {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 1s ease 0.5s forwards;
  opacity: 0;
}

.phone-mockup {
  position: relative;
  width: 280px;
  height: 560px;
  background: linear-gradient(145deg, #1a1a2e 0%, #0D1B2A 50%, #0A1A1A 100%);
  border-radius: 40px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 25px 60px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(20, 184, 166, 0.15),
    inset 0 0 60px rgba(20, 184, 166, 0.03);
  overflow: hidden;
  animation: phoneFloat 6s ease-in-out infinite;
}

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

.phone-mockup__notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #000;
  border-radius: 20px;
  z-index: 2;
}

.phone-mockup__screen {
  position: absolute;
  inset: 8px;
  border-radius: 34px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #0D1B2A 0%, #121212 40%, #0A1A1A 100%);
}

.phone-mockup__app-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  margin-bottom: 16px;
  box-shadow: 0 8px 30px rgba(20, 184, 166, 0.3);
}

.phone-mockup__app-name {
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.phone-mockup__app-tagline {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.phone-mockup__wave {
  width: 80%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.phone-mockup__wave-bar {
  width: 3px;
  border-radius: 3px;
  background: var(--teal);
  animation: waveBar 1.2s ease-in-out infinite;
}

.phone-mockup__wave-bar:nth-child(1) { height: 12px; animation-delay: 0s; }
.phone-mockup__wave-bar:nth-child(2) { height: 20px; animation-delay: 0.1s; }
.phone-mockup__wave-bar:nth-child(3) { height: 28px; animation-delay: 0.2s; }
.phone-mockup__wave-bar:nth-child(4) { height: 36px; animation-delay: 0.3s; }
.phone-mockup__wave-bar:nth-child(5) { height: 28px; animation-delay: 0.4s; }
.phone-mockup__wave-bar:nth-child(6) { height: 20px; animation-delay: 0.5s; }
.phone-mockup__wave-bar:nth-child(7) { height: 32px; animation-delay: 0.6s; }
.phone-mockup__wave-bar:nth-child(8) { height: 24px; animation-delay: 0.7s; }
.phone-mockup__wave-bar:nth-child(9) { height: 16px; animation-delay: 0.8s; }
.phone-mockup__wave-bar:nth-child(10) { height: 28px; animation-delay: 0.9s; }
.phone-mockup__wave-bar:nth-child(11) { height: 20px; animation-delay: 1.0s; }
.phone-mockup__wave-bar:nth-child(12) { height: 12px; animation-delay: 1.1s; }

@keyframes waveBar {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(1.5); opacity: 1; }
}

/* ============================================
   SECTION BASE
   ============================================ */
.section {
  position: relative;
  z-index: 1;
  padding: 100px 24px;
}

.section__container {
  max-width: 1200px;
  margin: 0 auto;
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

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

.section__subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(10, 26, 26, 0.5) 50%, var(--bg-primary) 100%);
}

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

.feature-card {
  position: relative;
  padding: 36px 28px;
  border-radius: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(20, 184, 166, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(20, 184, 166, 0.08);
}

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

.feature-card__icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.feature-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.feature-card__description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--gradient-splash-1) 50%, var(--bg-primary) 100%);
}

.about__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about__text {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.about__highlight {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--teal-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.5;
  margin-bottom: 32px;
}

.about__stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 48px;
}

.about__stat {
  text-align: center;
}

.about__stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--teal);
  display: block;
}

.about__stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
  background: linear-gradient(180deg, var(--bg-primary) 0%, #0A1A1A 100%);
}

.cta__card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 64px 48px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.08), rgba(184, 164, 92, 0.05));
  border: 1px solid rgba(20, 184, 166, 0.15);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.cta__card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(20, 184, 166, 0.06), transparent 70%);
  animation: ctaGlow 8s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.cta__title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}

.cta__subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  position: relative;
}

.cta__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

.cta__platforms {
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
  position: relative;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--glass-border);
  background: var(--bg-nav);
  padding: 60px 24px 30px;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.footer__brand-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 16px;
  max-width: 300px;
}

.footer__column-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--teal-light);
}

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

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.footer__social-link:hover {
  background: rgba(20, 184, 166, 0.15);
  border-color: var(--teal);
  color: var(--teal-light);
}

.footer__bottom {
  padding-top: 30px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.footer__bottom-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer__bottom-links a:hover {
  color: var(--teal);
}

/* ============================================
   LEGAL/CONTENT PAGES
   ============================================ */
.page-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.page-content__header {
  margin-bottom: 48px;
}

.page-content__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-content__meta {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.page-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.page-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--teal-light);
}

.page-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

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

.page-content li {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 8px;
}

.page-content strong {
  color: var(--text-primary);
}

/* ============================================
   SUPPORT / CONTACT PAGE
   ============================================ */
.faq__item {
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq__item:hover {
  border-color: rgba(20, 184, 166, 0.2);
}

.faq__question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq__question:hover {
  color: var(--teal-light);
}

.faq__icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: var(--teal);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__item.active .faq__answer {
  max-height: 300px;
}

.faq__answer-content {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.contact-form {
  margin-top: 48px;
}

.contact-form__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--text-primary);
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 20px rgba(20, 184, 166, 0.1);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group select option {
  background: var(--bg-secondary);
}

/* ============================================
   DELETE ACCOUNT PAGE
   ============================================ */
.delete-account__warning {
  padding: 24px;
  border-radius: 14px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  margin-bottom: 32px;
}

.delete-account__warning-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #EF4444;
  margin-bottom: 8px;
}

.delete-account__warning-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.delete-account__steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}

.delete-account__steps li {
  counter-increment: step;
  padding: 16px 16px 16px 60px;
  position: relative;
  margin-bottom: 12px;
  border-radius: 12px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}

.delete-account__steps li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

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

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

/* AOS Custom Overrides */
[data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
  background: var(--teal-dark);
}

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

  .hero__content {
    max-width: 100%;
  }

  .hero__buttons {
    justify-content: center;
  }

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

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

@media (max-width: 768px) {
  .navbar__links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(25, 20, 20, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid var(--glass-border);
  }

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

  .navbar__mobile-toggle {
    display: flex;
  }

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

  .about__stats {
    flex-direction: column;
    gap: 32px;
  }

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

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

  .cta__card {
    padding: 40px 24px;
  }

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

  .hero {
    padding: 100px 24px 60px;
  }

  .section {
    padding: 60px 24px;
  }
}

@media (max-width: 480px) {
  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

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

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
/* Desktop lang switcher (outside ul) */
.navbar__container > .lang-switcher {
  display: flex;
}

/* Mobile lang switcher (inside ul) - hidden on desktop */
.navbar__links > .lang-switcher {
  display: none;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 2px;
  margin-left: 16px;
  list-style: none;
}

.lang-switcher__btn {
  padding: 5px 10px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s ease;
  line-height: 1;
}

.lang-switcher__btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
}

.lang-switcher__btn.active {
  background: var(--teal);
  color: #fff;
}

/* Language switcher in mobile menu */
@media (max-width: 768px) {
  /* Hide desktop switcher, show mobile one */
  .navbar__container > .lang-switcher {
    display: none;
  }

  .navbar__links > .lang-switcher {
    display: flex;
    margin-left: 0;
    margin-top: 8px;
    justify-content: center;
    width: fit-content;
    align-self: center;
  }
}

/* ============================================
   FLASH PREVENTION
   ============================================ */
html {
  opacity: 0;
  transition: opacity 0.15s ease;
}

/* ============================================
   RTL SUPPORT
   ============================================ */
[dir="rtl"] {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Tahoma, sans-serif;
}

[dir="rtl"] .navbar__brand {
  flex-direction: row-reverse;
}

[dir="rtl"] .navbar__links {
  flex-direction: row-reverse;
}

[dir="rtl"] .lang-switcher {
  margin-left: 0;
  margin-right: 16px;
}

[dir="rtl"] .hero__content {
  text-align: right;
}

[dir="rtl"] .hero__buttons {
  justify-content: flex-start;
}

[dir="rtl"] .btn {
  flex-direction: row-reverse;
}

[dir="rtl"] .feature-card {
  text-align: right;
}

[dir="rtl"] .about__content {
  text-align: center;
}

[dir="rtl"] .footer__brand-description {
  text-align: right;
}

[dir="rtl"] .footer__links {
  text-align: right;
}

[dir="rtl"] .footer__column-title {
  text-align: right;
}

[dir="rtl"] .footer__bottom {
  flex-direction: row-reverse;
}

[dir="rtl"] .footer__bottom-links {
  flex-direction: row-reverse;
}

[dir="rtl"] .footer__social {
  flex-direction: row-reverse;
}

[dir="rtl"] .faq__question {
  text-align: right;
  flex-direction: row-reverse;
}

[dir="rtl"] .faq__icon {
  margin-left: 0;
  margin-right: 16px;
}

[dir="rtl"] .faq__answer-content {
  text-align: right;
}

[dir="rtl"] .page-content {
  text-align: right;
}

[dir="rtl"] .page-content ul,
[dir="rtl"] .page-content ol {
  padding-left: 0;
  padding-right: 24px;
}

[dir="rtl"] .delete-account__steps li {
  padding: 16px 60px 16px 16px;
}

[dir="rtl"] .delete-account__steps li::before {
  left: auto;
  right: 16px;
}

[dir="rtl"] .hero__badge {
  flex-direction: row-reverse;
}

[dir="rtl"] .navbar__container {
  flex-direction: row-reverse;
}

@media (max-width: 1024px) {
  [dir="rtl"] .hero__content {
    text-align: center;
  }

  [dir="rtl"] .hero__buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  [dir="rtl"] .navbar__links {
    flex-direction: column;
  }

  [dir="rtl"] .navbar__container {
    flex-direction: row-reverse;
  }

  [dir="rtl"] .lang-switcher {
    margin-right: 0;
  }

  [dir="rtl"] .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  [dir="rtl"] .footer__bottom-links {
    flex-direction: row;
  }
}
