/* Fonts loaded via <link> in HTML head */

/* ==================== RESET ==================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1DB954;
  --primary-dark: #17a348;
  --primary-light: #23e066;
  --bg: #0A0A0A;
  --surface: #141414;
  --card: #1A1A1A;
  --border: #222;
  --text: #f0f0f0;
  --muted: #888;
  --dim: #666;
  --radius: 16px;
  --radius-sm: 10px;
  --pill: 9999px;
}

html {
  scroll-behavior: smooth;
}

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

body.font-ar { font-family: 'Noto Sans Arabic', sans-serif; }
body.font-ur { font-family: 'Noto Nastaliq Urdu', sans-serif; }
body.font-bn { font-family: 'Noto Sans Bengali', sans-serif; }
body.font-hi { font-family: 'Noto Sans Devanagari', sans-serif; }
body.font-ja { font-family: 'Noto Sans JP', sans-serif; }
body.font-km { font-family: 'Noto Sans Khmer', sans-serif; }

::selection {
  background: rgba(29, 185, 84, 0.3);
  color: #fff;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 640px) {
  .container {
    padding: 0 32px;
  }
}

/* ==================== TYPOGRAPHY ==================== */
.gradient-text {
  background: linear-gradient(135deg, #1DB954 0%, #1ed760 50%, #4ade80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--dim);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border-radius: var(--pill);
  transition: all 0.2s;
}

.btn-primary {
  background: var(--primary);
  color: #000;
  padding: 10px 24px;
  font-size: 0.875rem;
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: scale(0.96);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.8125rem;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ==================== GLASS & CARDS ==================== */
.glass-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(29, 185, 84, 0.2);
  transform: translateY(-4px);
}

.glow-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(29, 185, 84, 0.15), transparent);
  margin: 0 auto;
  max-width: 80%;
}

/* ==================== ANIMATIONS ==================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.4, 0.25, 1),
              transform 0.7s cubic-bezier(0.25, 0.4, 0.25, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 16px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled,
.navbar.menu-open {
  padding: 8px 0;
  background: rgba(10, 10, 10, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.navbar-logo img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

/* Desktop nav links - hidden on mobile */
.navbar-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.navbar-links a {
  font-size: 0.8125rem;
  color: var(--muted);
  transition: color 0.2s;
  white-space: nowrap;
}

.navbar-links a:hover {
  color: #fff;
}

/* Desktop right section - hidden on mobile */
.navbar-right {
  display: none;
  align-items: center;
  gap: 1rem;
}

/* Show desktop nav on lg screens */
@media (min-width: 1024px) {
  .navbar-links {
    display: flex;
  }

  .navbar-right {
    display: flex;
  }

  .navbar-hamburger {
    display: none !important;
  }
}

/* Mobile right group */
.navbar-mobile-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 1024px) {
  .navbar-mobile-right {
    display: none !important;
  }
}

.lang-switcher-mobile .lang-switcher-btn {
  padding: 6px 8px;
}

.lang-switcher-mobile .lang-dropdown {
  right: 0;
  min-width: 160px;
}

/* Hamburger */
.navbar-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.navbar-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

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

.navbar-hamburger.active span:nth-child(2) {
  opacity: 0;
}

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

/* Language Switcher */
.lang-switcher {
  position: relative;
}

.lang-switcher-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--pill);
  font-size: 0.75rem;
  color: var(--muted);
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.lang-switcher-btn:hover {
  border-color: rgba(29, 185, 84, 0.3);
  color: #fff;
}

.lang-switcher.open .lang-switcher-btn svg:last-child {
  transform: rotate(180deg);
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px;
  min-width: 180px;
  max-height: 320px;
  overflow-y: auto;
  z-index: 100;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.lang-switcher.open .lang-dropdown {
  display: block;
}

.lang-option {
  display: block;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.8125rem;
  color: var(--muted);
  transition: all 0.15s;
}

.lang-option:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.lang-option.active {
  color: var(--primary);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  padding: 2rem 1.5rem;
  overflow-y: auto;
  z-index: 49;
  flex-direction: column;
  gap: 1.5rem;
}

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

.mobile-menu-links {
  display: flex;
  flex-direction: column;
}

.mobile-menu-links a {
  font-size: 1.125rem;
  padding: 0.75rem 0;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.mobile-menu-links a:hover {
  color: #fff;
}

.mobile-menu-langs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem 0;
}

.mobile-menu-langs .lang-option {
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: var(--pill);
  font-size: 0.75rem;
}

.mobile-menu-langs .lang-option.active {
  border-color: var(--primary);
  color: var(--primary);
}

/* ==================== HERO ==================== */
.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 60px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.7;
}

.hero-glow-1 {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: min(800px, 100vw);
  height: 600px;
  background: radial-gradient(ellipse, rgba(29, 185, 84, 0.06) 0%, transparent 70%);
}

.hero-glow-2 {
  bottom: 5%;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(29, 185, 84, 0.03) 0%, transparent 70%);
}

/* Hero layout: column on mobile, row on desktop */
.hero-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .hero-grid {
    flex-direction: row;
    align-items: center;
    gap: 5rem;
  }
}

/* Hero text block */
.hero-text {
  flex: 1;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-text {
    text-align: left;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--pill);
  background: rgba(29, 185, 84, 0.08);
  border: 1px solid rgba(29, 185, 84, 0.15);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--dim);
  margin-bottom: 2rem;
  max-width: 480px;
  line-height: 1.7;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 1.125rem;
  }
}

@media (min-width: 1024px) {
  .hero-subtitle {
    margin-left: 0;
    margin-right: auto;
  }
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-cta {
    justify-content: flex-start;
  }
}

.hero-free {
  font-size: 0.875rem;
  color: var(--dim);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-stats {
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-stats {
    justify-content: flex-start;
  }
}

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

.hero-stat-number {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

@media (min-width: 640px) {
  .hero-stat-number {
    font-size: 1.5rem;
  }
}

.hero-stat-label {
  display: block;
  font-size: 0.6875rem;
  color: var(--dim);
  margin-top: 2px;
}

/* Hero carousel */
.hero-carousel-wrapper {
  flex-shrink: 0;
  width: 260px;
}

@media (min-width: 640px) {
  .hero-carousel-wrapper {
    width: 300px;
  }
}

.hero-carousel {
  position: relative;
  aspect-ratio: 1284 / 2778;
}

.hero-carousel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-carousel-img.active {
  opacity: 1;
  transform: scale(1);
}

.hero-carousel-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 1.5rem;
}

.hero-carousel-dot {
  width: 6px;
  height: 4px;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.4s;
  cursor: pointer;
}

.hero-carousel-dot.active {
  width: 24px;
  background: var(--primary);
}

.hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 128px;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
}

/* ==================== SECTIONS ==================== */
section {
  padding: 5rem 0;
  position: relative;
}

@media (min-width: 640px) {
  section {
    padding: 7rem 0;
  }
}

/* ==================== FEATURES ==================== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.features-grid .glass-card {
  padding: 2rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(29, 185, 84, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.8125rem;
  color: var(--dim);
  line-height: 1.6;
}

/* ==================== WIDGETS ==================== */
.widgets-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .widgets-layout {
    flex-direction: row;
    gap: 5rem;
  }
}

.widgets-screenshot {
  flex-shrink: 0;
  width: 260px;
}

@media (min-width: 640px) {
  .widgets-screenshot {
    width: 300px;
  }
}

.widgets-screenshot img {
  width: 100%;
  border-radius: 8px;
}

.widgets-content {
  flex: 1;
}

.widgets-subtitle {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.widgets-ios17 {
  font-size: 0.8125rem;
  color: var(--dim);
  margin-bottom: 1.5rem;
}

.widgets-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.widgets-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--muted);
}

.widgets-feature-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--primary);
}

/* ==================== EQUALIZER ==================== */
.equalizer-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .equalizer-layout {
    flex-direction: row-reverse;
    gap: 5rem;
  }
}

.equalizer-screenshot {
  flex-shrink: 0;
  width: 260px;
}

@media (min-width: 640px) {
  .equalizer-screenshot {
    width: 300px;
  }
}

.equalizer-screenshot img {
  width: 100%;
  border-radius: 8px;
}

.equalizer-content {
  flex: 1;
}

.equalizer-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .equalizer-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.eq-feature-item {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
}

.eq-feature-icon {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.eq-feature-icon svg {
  width: 20px;
  height: 20px;
}

.eq-feature-label {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.eq-feature-desc {
  font-size: 0.75rem;
  color: var(--dim);
}

/* ==================== IMPORT ==================== */
.import-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .import-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.import-step-card {
  padding: 2rem;
  text-align: center;
}

.import-step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(29, 185, 84, 0.1);
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  margin: 0 auto 1rem;
}

.import-step-title {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.import-step-desc {
  font-size: 0.8125rem;
  color: var(--dim);
}

.import-formats {
  text-align: center;
  margin-top: 2rem;
}

.import-formats-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--muted);
}

.import-format-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.format-badge-audio {
  padding: 6px 14px;
  border-radius: var(--pill);
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.format-badge-video {
  padding: 6px 14px;
  border-radius: var(--pill);
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(29, 185, 84, 0.05);
  border: 1px solid rgba(29, 185, 84, 0.2);
  color: var(--primary);
}

.import-video-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--dim);
  margin-top: 1rem;
}

/* ==================== EXTRA FEATURES ==================== */
.extra-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .extra-features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .extra-features-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.extra-feature-card {
  padding: 1.25rem;
  text-align: center;
}

.extra-feature-card svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  margin: 0 auto 0.5rem;
}

.extra-feature-card span {
  font-size: 0.75rem;
  color: var(--muted);
  display: block;
}

/* ==================== SCREENSHOTS ==================== */
.screenshots-carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.screenshots-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 1rem 20px;
}

.screenshots-carousel::-webkit-scrollbar {
  display: none;
}

.screenshot-card {
  scroll-snap-align: center;
  flex-shrink: 0;
  text-align: center;
}

.screenshot-card img {
  width: 220px;
  border-radius: 8px;
  transition: transform 0.3s;
}

@media (min-width: 640px) {
  .screenshot-card img {
    width: 260px;
  }
}

.screenshot-card:hover img {
  transform: scale(1.03);
}

.screenshot-label {
  font-size: 0.6875rem;
  color: var(--dim);
  margin-top: 0.75rem;
  font-weight: 500;
}

.screenshots-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.05);
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.2s;
  z-index: 2;
}

.screenshots-arrow:hover {
  color: #fff;
  border-color: rgba(29, 185, 84, 0.3);
}

.screenshots-arrow-left {
  left: 16px;
}

.screenshots-arrow-right {
  right: 16px;
}

@media (min-width: 640px) {
  .screenshots-arrow {
    display: flex;
  }
}

/* ==================== FAQ ==================== */
.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.faq-tab {
  padding: 8px 18px;
  border-radius: var(--pill);
  font-size: 0.8125rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.2s;
  cursor: pointer;
}

.faq-tab:hover {
  border-color: rgba(29, 185, 84, 0.2);
  color: #fff;
}

.faq-tab.active {
  background: rgba(29, 185, 84, 0.1);
  border-color: rgba(29, 185, 84, 0.3);
  color: var(--primary);
}

.faq-category {
  display: none;
}

.faq-category.active {
  display: block;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 0;
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-toggle {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: var(--dim);
}

.faq-item.open .faq-toggle {
  background: rgba(29, 185, 84, 0.1);
  color: var(--primary);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: 0.875rem;
  color: var(--dim);
  line-height: 1.7;
}

/* ==================== CTA ==================== */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(29, 185, 84, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  margin: 0 auto 2rem;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-desc {
  color: var(--dim);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.cta-free {
  font-size: 0.875rem;
  color: var(--dim);
  margin-top: 1rem;
  display: block;
}

/* ==================== FOOTER ==================== */
.footer {
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-brand {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.8125rem;
  color: var(--dim);
  transition: color 0.2s;
}

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

.footer-copyright {
  font-size: 0.75rem;
  color: var(--dim);
}

/* ==================== RTL ==================== */
[dir="rtl"] {
  text-align: right;
}

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

@media (min-width: 1024px) {
  [dir="rtl"] .hero-text {
    text-align: right;
  }
}

[dir="rtl"] .hero-subtitle {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  [dir="rtl"] .hero-subtitle {
    margin-right: 0;
    margin-left: auto;
  }
}

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

[dir="rtl"] .lang-dropdown {
  right: auto;
  left: 0;
}

/* ==================== TOUCH & A11Y ==================== */
@media (hover: none) {
  .glass-card:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.05);
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}
