/* ===========================
   Altaie Smart Tool — Landing
   Designed for high conversion
   =========================== */

:root {
  --bg: #07071a;
  --bg-2: #0d0d24;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.09);
  --border-2: rgba(255, 255, 255, 0.15);

  --text: #f1f1fa;
  --text-2: #b8b8d4;
  --text-3: #7a7a99;

  --primary: #7c5cff;
  --primary-2: #a78bfa;
  --primary-glow: rgba(124, 92, 255, 0.4);

  --accent: #00e5c7;
  --accent-2: #ff5e9c;

  --gold: #ffd166;
  --gold-2: #ffb84d;

  --success: #20e07a;
  --warn: #ffb020;
  --danger: #ff5b6e;

  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 20px 60px var(--primary-glow);

  --font-ar: 'Cairo', system-ui, sans-serif;
  --font-en: 'Inter', system-ui, sans-serif;
}

/* ============ Reset ============ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ar);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

html[lang="en"] body { font-family: var(--font-en); line-height: 1.6; }

img, video, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; }

/* ============ Layout ============ */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.25s ease;
  white-space: nowrap;
  position: relative;
  text-align: center;
}
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-xl { padding: 20px 40px; font-size: 17px; border-radius: 14px; }
.btn-block { display: flex; width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, #7c5cff 0%, #a78bfa 100%);
  color: white;
  box-shadow: 0 8px 24px rgba(124, 92, 255, 0.45);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(124, 92, 255, 0.6);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-2);
  color: var(--text);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1.5px solid var(--border-2);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--primary-2);
  color: white;
  background: rgba(124, 92, 255, 0.1);
}

.btn-gold {
  background: linear-gradient(135deg, #ffd166 0%, #ffb84d 100%);
  color: #1a1330;
  box-shadow: 0 8px 24px rgba(255, 184, 77, 0.4);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(255, 184, 77, 0.55);
}

/* RTL arrow flip */
html[dir="rtl"] .arrow-rtl { transform: scaleX(-1); }

/* ============ Announcement Bar ============ */
.announce-bar {
  background: linear-gradient(90deg, #7c5cff, #a78bfa, #00e5c7, #ff5e9c, #7c5cff);
  background-size: 400% 100%;
  animation: gradient-flow 12s linear infinite;
  color: white;
  font-size: 13px;
  font-weight: 600;
  overflow: hidden;
  padding: 10px 0;
  position: relative;
}
@keyframes gradient-flow { 0% { background-position: 0% 50%; } 100% { background-position: 400% 50%; } }

.announce-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.announce-track span { display: inline-block; padding: 0 20px; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
html[dir="rtl"] .announce-track { animation-name: marquee-rtl; }
@keyframes marquee-rtl {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 7, 26, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}
.logo-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #7c5cff, #a78bfa);
  border-radius: 12px;
  font-size: 22px;
  box-shadow: 0 6px 20px rgba(124, 92, 255, 0.4);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-text strong { font-size: 16px; color: var(--text); }
.logo-text small { font-size: 11px; color: var(--text-3); }

.main-nav {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-inline: auto;
}
.main-nav a {
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-2);
  transition: all 0.2s ease;
}
.main-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-2);
  transition: all 0.2s ease;
}
.lang-toggle:hover {
  border-color: var(--primary-2);
  color: var(--text);
}

.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.mobile-menu-btn span {
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: 0.2s;
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-2);
    padding: 20px;
    border-bottom: 1px solid var(--border);
    gap: 6px;
  }
  .main-nav.open a { width: 100%; padding: 12px 14px; }
}

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
}
.glow-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #7c5cff, transparent 70%);
  top: -100px;
  inset-inline-start: -100px;
}
.glow-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #ff5e9c, transparent 70%);
  bottom: -150px;
  inset-inline-end: -150px;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero-grid-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 1024px) {
  .hero-grid-layout { grid-template-columns: 1fr; gap: 40px; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.hero-title {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-title span { display: block; }

.gradient-text {
  background: linear-gradient(135deg, #7c5cff 0%, #00e5c7 50%, #ff5e9c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-2);
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  width: fit-content;
}
.trust-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
}
.trust-text {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  line-height: 1.5;
}
.trust-text strong { color: var(--text); font-size: 14px; }
.trust-text span { color: var(--text-3); }

/* Hero visual */
.hero-visual {
  position: relative;
}
.video-card {
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.15), rgba(0, 229, 199, 0.1));
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 14px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.video-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16/10;
}
.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-play-btn {
  position: absolute;
  top: 50%;
  inset-inline-start: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c5cff, #a78bfa);
  display: grid;
  place-items: center;
  color: white;
  box-shadow: 0 12px 36px rgba(124, 92, 255, 0.6);
  transition: 0.25s;
  z-index: 2;
}
html[dir="rtl"] .video-play-btn { transform: translate(50%, -50%); }
.video-play-btn svg { padding-inline-start: 4px; }
.video-play-btn:hover { transform: translate(-50%, -50%) scale(1.08); }
html[dir="rtl"] .video-play-btn:hover { transform: translate(50%, -50%) scale(1.08); }
.video-card.playing .video-play-btn { display: none; }

.video-caption {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px 4px;
  font-size: 13px;
  color: var(--text-2);
  font-weight: 600;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 12px var(--danger);
  animation: pulse 1.5s ease-in-out infinite;
}

.floating-card {
  position: absolute;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(20px);
  animation: float 6s ease-in-out infinite;
  z-index: 3;
}
.fc-icon { font-size: 24px; }
.fc-text { display: flex; flex-direction: column; line-height: 1.3; }
.fc-text strong { font-size: 14px; color: var(--text); }
.fc-text span { font-size: 11px; color: var(--text-3); }

.card-1 { top: 8%; inset-inline-end: -20px; animation-delay: 0s; }
.card-2 { top: 45%; inset-inline-start: -30px; animation-delay: 1.5s; }
.card-3 { bottom: 10%; inset-inline-end: -10px; animation-delay: 3s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@media (max-width: 1024px) {
  .floating-card { display: none; }
}

/* ============ Section common ============ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-inline: auto;
}
.section-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(124, 92, 255, 0.15);
  color: var(--primary-2);
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(124, 92, 255, 0.25);
  margin-bottom: 16px;
}
.pricing-tag {
  background: rgba(255, 184, 77, 0.15);
  color: var(--gold);
  border-color: rgba(255, 184, 77, 0.3);
}
.section-title {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.section-title span { display: inline-block; }
.section-sub {
  font-size: 17px;
  color: var(--text-2);
  max-width: 600px;
  margin-inline: auto;
}

/* ============ Trust Bar ============ */
.trust-bar {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.trust-num {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  background: linear-gradient(135deg, #7c5cff, #00e5c7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
.trust-label {
  font-size: 14px;
  color: var(--text-2);
  font-weight: 600;
}
@media (max-width: 700px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============ Problem Section ============ */
.problem-section { padding: 100px 0; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) { .problem-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .problem-grid { grid-template-columns: 1fr; } }

.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: 0.3s;
}
.problem-card:hover {
  background: var(--surface-2);
  border-color: var(--border-2);
  transform: translateY(-4px);
}
.problem-icon {
  font-size: 36px;
  margin-bottom: 14px;
}
.problem-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}
.problem-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ============ Solution / Features ============ */
.solution-section { padding: 100px 0; background: var(--bg-2); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, var(--primary-glow), transparent 70%);
  opacity: 0;
  transition: 0.3s;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
  background: var(--surface-2);
  border-color: rgba(124, 92, 255, 0.4);
  transform: translateY(-4px);
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(124, 92, 255, 0.12);
  border: 1px solid rgba(124, 92, 255, 0.25);
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}
.feature-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-list li {
  font-size: 13px;
  color: var(--text-2);
  padding: 6px 0;
  border-top: 1px dashed var(--border);
}
.feature-list li:first-child { border-top: 0; }

.feature-large {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.12), rgba(0, 229, 199, 0.06));
  border-color: rgba(124, 92, 255, 0.3);
}
.feature-large .feature-icon {
  width: 64px;
  height: 64px;
  font-size: 32px;
}
.feature-large h3 { font-size: 24px; }
.feature-large p { font-size: 16px; }

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-large { grid-column: span 2; grid-row: auto; }
}
@media (max-width: 540px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-large { grid-column: span 1; }
}

/* ============ How it works ============ */
.how-section { padding: 100px 0; }

.steps-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .steps-wrap { grid-template-columns: 1fr; } }

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
.step-card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
}
.step-number {
  font-size: 64px;
  font-weight: 900;
  background: linear-gradient(135deg, #7c5cff, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 16px;
}
.step-content h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}
.step-content p {
  font-size: 15px;
  color: var(--text-2);
  margin-bottom: 20px;
}
.step-image {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.3);
  aspect-ratio: 16/10;
}
.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============ Demo Compare ============ */
.demo-section { padding: 100px 0; background: var(--bg-2); }

.demo-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .demo-compare { grid-template-columns: 1fr; }
  .compare-arrow { transform: rotate(90deg); }
}

.compare-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.compare-before { border-color: rgba(255, 91, 110, 0.3); }
.compare-after {
  border-color: rgba(32, 224, 122, 0.4);
  background: linear-gradient(135deg, rgba(32, 224, 122, 0.05), rgba(0, 229, 199, 0.03));
}

.compare-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.compare-tag {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
}
.tag-before {
  background: rgba(255, 91, 110, 0.15);
  color: var(--danger);
  border: 1px solid rgba(255, 91, 110, 0.3);
}
.tag-after {
  background: rgba(32, 224, 122, 0.15);
  color: var(--success);
  border: 1px solid rgba(32, 224, 122, 0.3);
}
.compare-meta { font-size: 13px; color: var(--text-3); }

.compare-body {
  flex: 1;
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  padding: 12px 0;
}
.compare-after .compare-body { color: var(--text); }

.compare-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-3);
}

.compare-arrow {
  display: grid;
  place-items: center;
  color: var(--primary-2);
}
html[dir="rtl"] .compare-arrow svg { transform: scaleX(-1); }

.demo-note {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-3);
}

/* ============ Industries ============ */
.industries-section { padding: 100px 0; }

.industries-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.industry-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.25s;
}
.industry-pill span:first-child { font-size: 18px; }
.industry-pill:hover {
  background: rgba(124, 92, 255, 0.1);
  border-color: var(--primary-2);
  transform: translateY(-2px);
}

/* ============ Pricing ============ */
.pricing-section { padding: 100px 0; background: var(--bg-2); }

.billing-toggle {
  display: inline-flex;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
  margin: 0 auto 40px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.bt-btn {
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-2);
  transition: 0.2s;
}
.bt-btn.active {
  background: linear-gradient(135deg, #7c5cff, #a78bfa);
  color: white;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 1024px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}
.price-card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
}
.price-card.featured {
  background: linear-gradient(180deg, rgba(124, 92, 255, 0.18), rgba(124, 92, 255, 0.05));
  border-color: rgba(124, 92, 255, 0.5);
  box-shadow: var(--shadow-glow);
  transform: scale(1.03);
}
@media (max-width: 1024px) { .price-card.featured { transform: none; } }

.price-card.lifetime {
  background: linear-gradient(180deg, rgba(255, 184, 77, 0.12), rgba(255, 184, 77, 0.03));
  border-color: rgba(255, 184, 77, 0.3);
}

.price-badge {
  position: absolute;
  top: -14px;
  inset-inline-end: 24px;
  background: linear-gradient(135deg, #7c5cff, #a78bfa);
  color: white;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(124, 92, 255, 0.5);
}
.badge-gold {
  background: linear-gradient(135deg, #ffd166, #ffb84d);
  color: #1a1330;
  box-shadow: 0 6px 18px rgba(255, 184, 77, 0.5);
}

.price-head { margin-bottom: 24px; }
.price-head h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}
.price-head p {
  font-size: 14px;
  color: var(--text-3);
}

.price-amount { margin-bottom: 24px; }
.price-monthly, .price-yearly { display: none; }
.price-monthly.active, .price-yearly.active { display: block; }

.price-old {
  display: inline-block;
  font-size: 16px;
  color: var(--text-3);
  text-decoration: line-through;
  margin-bottom: 6px;
}
.price-current {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}
.price-num {
  font-size: 44px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--text), var(--text-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}
.price-card.featured .price-num {
  background: linear-gradient(135deg, #7c5cff, #00e5c7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.price-card.lifetime .price-num {
  background: linear-gradient(135deg, #ffd166, #ffb84d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.price-currency {
  font-size: 14px;
  color: var(--text-2);
  font-weight: 700;
}
.price-usd {
  font-size: 13px;
  color: var(--text-3);
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
}
.price-features li {
  font-size: 14px;
  color: var(--text-2);
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  font-weight: 500;
}
.price-features li:last-child { border-bottom: 0; }

.pricing-footer {
  margin-top: 40px;
  text-align: center;
}
.guarantee {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 24px;
}
.g-icon { font-size: 32px; }
.guarantee div { display: flex; flex-direction: column; text-align: start; }
.guarantee strong { font-size: 15px; }
.guarantee span { font-size: 13px; color: var(--text-3); }

/* ============ Testimonials ============ */
.testimonials-section { padding: 100px 0; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: 0.3s;
}
.testimonial:hover {
  background: var(--surface-2);
  border-color: var(--border-2);
}
.t-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 22px;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.t-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c5cff, #a78bfa);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 18px;
  color: white;
}
.t-info { display: flex; flex-direction: column; line-height: 1.4; }
.t-info strong { font-size: 14px; }
.t-info span { font-size: 12px; color: var(--text-3); }

/* ============ Tutorial Section ============ */
.tutorial-section { padding: 100px 0; background: var(--bg-2); }

.tutorial-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) { .tutorial-wrap { grid-template-columns: 1fr; } }

.tutorial-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ts-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.ts-num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #7c5cff, #a78bfa);
  color: white;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.ts-item strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}
.ts-item p {
  font-size: 13px;
  color: var(--text-2);
}

/* ============ FAQ ============ */
.faq-section { padding: 100px 0; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: 0.2s;
}
.faq-item[open] {
  background: var(--surface-2);
  border-color: var(--border-2);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(124, 92, 255, 0.15);
  color: var(--primary-2);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 18px;
  transition: 0.2s;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); background: rgba(124, 92, 255, 0.3); }

.faq-item p {
  padding: 0 24px 22px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.7;
}

/* ============ Final CTA ============ */
.final-cta { padding: 100px 0; }

.cta-card {
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.18), rgba(0, 229, 199, 0.08));
  border: 1px solid rgba(124, 92, 255, 0.3);
  border-radius: var(--radius-xl);
  padding: 70px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(124, 92, 255, 0.3), transparent 60%);
  pointer-events: none;
}
.cta-card h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  position: relative;
}
.cta-card h2 span { display: inline-block; }
.cta-card p {
  font-size: 17px;
  color: var(--text-2);
  max-width: 580px;
  margin: 0 auto 32px;
  position: relative;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
  position: relative;
}
.cta-microcopy {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-2);
  font-weight: 600;
  position: relative;
}

/* ============ Footer ============ */
.site-footer {
  padding: 60px 0 30px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.7;
  max-width: 320px;
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--text-2);
  transition: 0.2s;
}
.footer-col a:hover { color: var(--primary-2); }

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 13px;
  color: var(--text-3);
}

/* ============ Sticky WhatsApp ============ */
.sticky-wa {
  position: fixed;
  bottom: 24px;
  inset-inline-start: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  color: white;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
  z-index: 90;
  transition: 0.25s;
  animation: pulse-wa 2.5s ease-in-out infinite;
}
.sticky-wa:hover { transform: scale(1.1); }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 12px 32px rgba(37, 211, 102, 0.8), 0 0 0 12px rgba(37, 211, 102, 0.15); }
}

/* ============ LTR Specifics ============ */
html[dir="ltr"] .floating-card.card-1 { right: -20px; left: auto; }
html[dir="ltr"] .floating-card.card-2 { left: -30px; right: auto; }
html[dir="ltr"] .floating-card.card-3 { right: -10px; left: auto; }

/* ============ Reveal animations ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ Selection ============ */
::selection {
  background: var(--primary);
  color: white;
}

/* ============ Scrollbar ============ */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #7c5cff, #a78bfa);
  border-radius: 10px;
}
