/* ═══════════════════════════════════════════════════════════════════
   TODI LANDING PAGE – STYLES
   Cairo font · Mobile-first · Dark/Light · RTL/LTR · Gold accents
═══════════════════════════════════════════════════════════════════ */

/* ─── Google Font ─── */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900&display=swap');

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

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

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

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

ul {
  list-style: none;
}

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

/* ─── CSS Variables ─── */
:root {
  --gold: #D4AF37;
  --gold-light: #FFD700;
  --gold-dark: #B8962E;
  --gold-glow: rgba(212, 175, 55, .35);
  --gold-subtle: rgba(212, 175, 55, .12);

  /* Dark mode (default) */
  --bg: #050505;
  --bg-2: #0d0d0d;
  --bg-card: rgba(255, 255, 255, .04);
  --bg-card-hover: rgba(255, 255, 255, .07);
  --border: rgba(255, 255, 255, .08);
  --border-hover: rgba(212, 175, 55, .4);
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, .55);
  --text-subtle: rgba(255, 255, 255, .35);
  --navbar-bg: rgba(5, 5, 5, .85);
  --shadow: 0 8px 32px rgba(0, 0, 0, .4);

  --font: 'Cairo', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: .3s cubic-bezier(.4, 0, .2, 1);
  --section-pad: 100px 0;
}

[data-theme="light"] {
  --bg: #f8f7f4;
  --bg-2: #ffffff;
  --bg-card: rgba(0, 0, 0, .03);
  --bg-card-hover: rgba(0, 0, 0, .06);
  --border: rgba(0, 0, 0, .08);
  --border-hover: rgba(212, 175, 55, .5);
  --text: #111111;
  --text-muted: rgba(0, 0, 0, .55);
  --text-subtle: rgba(0, 0, 0, .35);
  --navbar-bg: rgba(248, 247, 244, .9);
  --shadow: 0 8px 32px rgba(0, 0, 0, .1);
}

/* ─── Base ─── */
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
  -webkit-font-smoothing: antialiased;
}

/* ─── Typography ─── */
h1 {
  font-size: clamp(32px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.15;
}

h2 {
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.25;
}

h3 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
  line-height: 1.4;
}

p {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 400;
  line-height: 1.7;
}

[lang="ar"] {
  letter-spacing: 0;
  word-spacing: .05em;
}

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

[dir="ltr"] {
  text-align: left;
}

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

.gold {
  color: var(--gold);
}

.muted-text {
  color: var(--text-muted);
  font-style: italic;
}

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

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.4, 0, .2, 1), transform .7s cubic-bezier(.4, 0, .2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: .08s;
}

.reveal-delay-2 {
  transition-delay: .16s;
}

.reveal-delay-3 {
  transition-delay: .24s;
}

.reveal-delay-4 {
  transition-delay: .32s;
}

.reveal-delay-5 {
  transition-delay: .42s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ─── Canvas ─── */
#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .45;
}

/* ══════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  z-index: 1000;
  background: var(--navbar-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(212, 175, 55, .08);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 4px;
}

.logo-text {
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -.5px;
}

.logo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-bottom: 8px;
}

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

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  background: var(--gold-subtle);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Language Toggle */
.lang-toggle {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  cursor: pointer;
}

.lang-toggle:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.lang-toggle .lang-ar,
.lang-toggle .lang-en {
  display: block;
}

[data-lang="ar"] .lang-toggle .lang-ar {
  display: none;
}

[data-lang="en"] .lang-toggle .lang-en {
  display: none;
}

/* Theme Toggle */
.theme-toggle {
  padding: 4px;
}

.toggle-track {
  position: relative;
  display: flex;
  align-items: center;
  width: 56px;
  height: 28px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.toggle-icon {
  font-size: 14px;
  z-index: 1;
  width: 28px;
  text-align: center;
}

.toggle-thumb {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  box-shadow: 0 2px 8px var(--gold-glow);
  transition: transform var(--transition);
  top: 2px;
}

[dir="rtl"] .toggle-thumb {
  right: 2px;
}

[dir="ltr"] .toggle-thumb {
  left: 2px;
}

[data-theme="light"] .toggle-thumb {
  transform: translateX(30px);
}

[dir="rtl"][data-theme="light"] .toggle-thumb {
  transform: translateX(-30px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

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

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  background: var(--navbar-bg);
  border-top: 1px solid var(--border);
  animation: slideDown .25s ease;
}

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

.mobile-nav-link {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.mobile-nav-link:hover {
  color: var(--gold);
  background: var(--gold-subtle);
}

.mobile-cta {
  margin-top: 12px;
  text-align: center;
  justify-content: center;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 100px;
  min-height: 44px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #000;
  box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--gold-glow);
  filter: brightness(1.08);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-subtle);
}

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

.btn-xl {
  font-size: 18px;
  padding: 18px 44px;
}

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

.nav-cta {
  padding: 9px 20px;
  font-size: 14px;
}

.pulse-btn {
  animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 4px 20px var(--gold-glow);
  }

  50% {
    box-shadow: 0 8px 48px rgba(212, 175, 55, .6);
  }
}

/* Section tags */
.section-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  background: var(--gold-subtle);
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, .25);
  margin-bottom: 18px;
}

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

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

.section-desc {
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 30%, rgba(212, 175, 55, .07), transparent 70%);
  animation: bgShift 8s ease-in-out infinite alternate;
}

@keyframes bgShift {
  from {
    opacity: .5;
  }

  to {
    opacity: 1;
  }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 10s ease-in-out infinite;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(212, 175, 55, .06);
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 280px;
  height: 280px;
  background: rgba(255, 215, 0, .04);
  bottom: 20%;
  left: 5%;
  animation-delay: -5s;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-30px);
  }
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}

/* Hero content is on the right (RTL), visual on the left */
.hero-content {
  order: 2;
}

.hero-visual {
  order: 1;
}

[dir="ltr"] .hero-content {
  order: 1;
}

[dir="ltr"] .hero-visual {
  order: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 6px 16px;
  border-radius: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .3;
  }
}

.hero-heading {
  margin-bottom: 16px;
}

.hero-sub {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.hero-sub strong {
  color: var(--text);
  font-weight: 700;
}

.hero-desc {
  color: var(--text-muted);
  margin-bottom: 36px;
  font-size: 15px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

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

.stat-num {
  font-size: 32px;
  font-weight: 900;
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Phone mockup */
.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-wrapper {
  position: relative;
  width: 300px;
}

.phone-glow {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
  animation: orbFloat 6s ease-in-out infinite;
}

.screenshot-frame {
  position: relative;
  z-index: 2;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 0 0 2px var(--gold-dark), 0 24px 80px rgba(212, 175, 55, .25);
  animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.hero-screenshot {
  width: 100%;
  display: block;
}

.float-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow);
  animation: heroFloat 4s ease-in-out infinite;
}

.float-card-1 {
  top: 8%;
  left: -35%;
  animation-delay: 0s;
}

.float-card-2 {
  top: 42%;
  right: -30%;
  animation-delay: -2s;
}

.float-card-3 {
  bottom: 10%;
  left: -30%;
  animation-delay: -1s;
}

[dir="ltr"] .float-card-1 {
  left: auto;
  right: -35%;
}

[dir="ltr"] .float-card-2 {
  right: auto;
  left: -30%;
}

[dir="ltr"] .float-card-3 {
  left: auto;
  right: -30%;
}

.float-icon {
  font-size: 20px;
}

.float-label {
  font-size: 10px;
  color: var(--text-muted);
}

.float-val {
  color: var(--gold);
  font-weight: 800;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-subtle);
  font-weight: 500;
  animation: indicatorBounce 2s ease-in-out infinite;
  z-index: 3;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}

@keyframes indicatorBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ══════════════════════════════════════════════════
   PROBLEM
══════════════════════════════════════════════════ */
.problem-section {
  padding: var(--section-pad);
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, transparent, var(--bg-2) 30%, var(--bg-2) 70%, transparent);
}

.problem-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

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

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}

.problem-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.problem-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.problem-ar {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

.problem-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 24px;
}

.problem-statement {
  font-size: clamp(18px, 2.5vw, 24px);
  margin-bottom: 16px;
}

.problem-answer {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  margin: 0 auto;
  max-width: 480px;
}

/* ══════════════════════════════════════════════════
   FEATURES
══════════════════════════════════════════════════ */
.features-section {
  padding: var(--section-pad);
  position: relative;
  z-index: 1;
}

.features-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(212, 175, 55, .03), transparent 70%);
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-subtle), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, .12);
}

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

.feature-icon-wrap {
  margin-bottom: 20px;
}

.feature-icon {
  font-size: 36px;
}

.feature-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-list li {
  font-size: 13px;
  color: var(--text-subtle);
  padding-inline-start: 16px;
  position: relative;
}

.feature-list li::before {
  content: '→';
  position: absolute;
  inset-inline-start: 0;
  color: var(--gold);
  font-size: 12px;
}

/* ══════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════ */
.how-section {
  padding: var(--section-pad);
  position: relative;
  z-index: 1;
  background: var(--bg-2);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  margin-top: 16px;
}

.steps-line {
  position: absolute;
  top: 56px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  opacity: .35;
  z-index: 0;
}

[dir="ltr"] .steps-line {
  left: 16.66%;
  right: 16.66%;
}

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

.step-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-subtle);
  margin-bottom: 16px;
}

.step-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 20px;
  box-shadow: 0 0 24px var(--gold-glow);
  transition: var(--transition);
}

.step:hover .step-icon-wrap {
  transform: scale(1.08);
  box-shadow: 0 0 40px var(--gold-glow);
}

.step-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
}

.step-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.step-list {
  text-align: start;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.step-list li {
  font-size: 13px;
  color: var(--text-muted);
  padding-inline-start: 16px;
  position: relative;
}

.step-list li::before {
  content: '·';
  position: absolute;
  inset-inline-start: 0;
  color: var(--gold);
  font-weight: 900;
}

/* ══════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════ */
.testimonials-section {
  padding: var(--section-pad);
  position: relative;
  z-index: 1;
}

.testimonials-carousel {
  position: relative;
  margin-top: 48px;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.testimonial-card {
  min-width: min(540px, 85vw);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  flex-shrink: 0;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--border-hover);
}

.quote-mark {
  font-size: 60px;
  line-height: .8;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #000;
  flex-shrink: 0;
}

.author-name {
  font-size: 15px;
  font-weight: 700;
}

.author-role {
  font-size: 13px;
  color: var(--text-muted);
}

.author-stars {
  margin-inline-start: auto;
  font-size: 14px;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  color: var(--text);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: var(--border);
  cursor: pointer;
  transition: all var(--transition);
}

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

/* ══════════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════════ */
.pricing-section {
  padding: var(--section-pad);
  position: relative;
  z-index: 1;
  background: var(--bg-2);
}

.pricing-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(212, 175, 55, .04), transparent 70%);
  pointer-events: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, .1);
  border-color: var(--border-hover);
}

.pricing-card-featured {
  background: linear-gradient(180deg, rgba(212, 175, 55, .07), var(--bg-card));
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, .18);
}

.pricing-card-featured:hover {
  transform: translateY(-14px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: #000;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-badge-gold {
  background: linear-gradient(135deg, #B8962E, #D4AF37);
}

.pricing-tier {
  font-size: 13px;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-amount {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 900;
}

.price-currency {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-muted);
}

.price-period {
  font-size: 13px;
  color: var(--text-subtle);
}

.pricing-tokens {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
}

.token-icon {
  font-size: 16px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  padding: 12px 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.check.gold {
  color: var(--gold);
  font-weight: 900;
  font-size: 16px;
}

.check.muted {
  color: var(--text-subtle);
}

/* ══════════════════════════════════════════════════
   DOWNLOAD CTA
══════════════════════════════════════════════════ */
.download-section {
  padding: var(--section-pad);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.download-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(212, 175, 55, .06), transparent 70%);
  pointer-events: none;
}

.download-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.download-inner .section-heading {
  margin-bottom: 16px;
}

.en-heading {
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 400;
  color: var(--text-muted);
}

.download-desc {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.download-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 20px;
}

.badge-dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, .4);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(46, 204, 113, 0);
  }
}

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.footer {
  padding: 64px 0 32px;
  background: var(--bg-2);
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

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

.logo-text-lg {
  font-size: 28px;
  font-weight: 900;
  display: block;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}

.footer-store-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

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

.footer-col-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-subtle);
  margin-bottom: 16px;
}

.footer-link {
  font-size: 14px;
  color: var(--text-muted);
  display: block;
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-link:hover {
  color: var(--gold);
}

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

.footer-copy {
  font-size: 13px;
  color: var(--text-subtle);
}

.back-top-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-subtle);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 18px;
  font-weight: 700;
  transition: all var(--transition);
}

.back-top-btn:hover {
  background: var(--gold);
  color: #000;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — MOBILE FIRST
══════════════════════════════════════════════════ */

/* ── Tablet (≤1024px) ── */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card-featured {
    transform: none;
  }

  .hero-container {
    gap: 48px;
  }

  .phone-wrapper {
    width: 260px;
  }

  .float-card-1,
  .float-card-2,
  .float-card-3 {
    display: none;
  }

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

/* ── Small Tablet (≤768px) ── */
@media (max-width: 768px) {
  :root {
    --section-pad: 72px 0;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .lang-toggle {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
    padding: 40px 24px;
  }

  .hero-content,
  .hero-visual {
    order: unset;
  }

  .hero-visual {
    display: flex;
    justify-content: center;
  }

  .hero-content {
    order: 2;
  }

  .hero-visual {
    order: 1;
  }

  .phone-wrapper {
    width: 220px;
  }

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

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

  .hero-badge {
    margin: 0 auto 20px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

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

  .steps-container {
    grid-template-columns: 1fr;
  }

  .steps-line {
    display: none;
  }

  .step {
    text-align: center;
  }

  .step-list {
    display: none;
  }

  .testimonial-card {
    min-width: min(480px, 90vw);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-inline: auto;
  }

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

/* ── Mobile (≤480px) ── */
@media (max-width: 480px) {
  :root {
    --section-pad: 56px 0;
  }

  .container {
    padding: 0 16px;
  }

  .nav-container {
    padding: 0 16px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  .btn-lg {
    font-size: 15px;
    padding: 13px 24px;
  }

  .btn-xl {
    font-size: 16px;
    padding: 15px 28px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

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

  .hero-stats {
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

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

  .feature-card {
    padding: 24px;
  }

  .problem-grid {
    gap: 16px;
  }

  .problem-card {
    padding: 24px 18px;
  }

  .testimonial-card {
    padding: 28px 20px;
  }

  .author-stars {
    display: none;
  }

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

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