/* =========================================================
   Makarena — Landing Page Styles
   ========================================================= */

/* ---------------------------------------------------------
   Design Tokens (mirrors app.css palette)
   --------------------------------------------------------- */
:root {
  --lp-bg:           #0d0d10;
  --lp-surface:      #17171d;
  --lp-surface-2:    #1f1f28;
  --lp-border:       #2b2b38;
  --lp-border-light: #36364a;

  --lp-accent:       #F6C437;
  --lp-accent-hover: #d4a52f;
  --lp-accent-muted: rgba(246, 196, 55, 0.12);
  --lp-accent-glow:  rgba(246, 196, 55, 0.25);

  --lp-text:         #f0f0f5;
  --lp-text-2:       #c0c0d0;
  --lp-muted:        #7a7a98;

  --lp-success:      #2F9E44;
  --lp-info:         #3b82f6;
  --lp-purple:       #8b5cf6;

  --lp-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --lp-radius-sm:  6px;
  --lp-radius-md:  10px;
  --lp-radius-lg:  16px;
  --lp-radius-xl:  24px;
  --lp-radius-full: 9999px;

  --lp-shadow-sm:  0 1px 3px rgba(0,0,0,.4);
  --lp-shadow-md:  0 4px 12px rgba(0,0,0,.5);
  --lp-shadow-lg:  0 8px 32px rgba(0,0,0,.6);

  --lp-header-h:   68px;
  --lp-transition: 0.2s ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--lp-font);
  background: var(--lp-bg);
  color: var(--lp-text);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: var(--lp-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

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

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

/* ---------------------------------------------------------
   Layout Container
   --------------------------------------------------------- */
.lp-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------------------------------------------------------
   Accent Helper
   --------------------------------------------------------- */
.lp-accent { color: var(--lp-accent); }

/* ---------------------------------------------------------
   Sticky Header
   --------------------------------------------------------- */
.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--lp-header-h);
  transition: background var(--lp-transition), box-shadow var(--lp-transition), border-color var(--lp-transition);
  border-bottom: 1px solid transparent;
}

.lp-header.scrolled {
  background: rgba(13, 13, 16, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--lp-border);
  box-shadow: 0 2px 16px rgba(0,0,0,.4);
}

.lp-header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.lp-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--lp-text);
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
}
.lp-logo img { border-radius: 8px; flex-shrink: 0; }
.lp-logo:hover { text-decoration: none; }

.lp-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
}

.lp-nav-link {
  padding: 0.4rem 0.75rem;
  border-radius: var(--lp-radius-sm);
  font-size: 0.9375rem;
  color: var(--lp-text-2);
  transition: color var(--lp-transition), background var(--lp-transition);
  text-decoration: none;
}
.lp-nav-link:hover {
  color: var(--lp-text);
  background: rgba(255,255,255,0.06);
  text-decoration: none;
}

.lp-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Buttons */
.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.125rem;
  background: var(--lp-accent);
  color: #0d0d10;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--lp-radius-md);
  transition: background var(--lp-transition), transform var(--lp-transition), box-shadow var(--lp-transition);
  text-decoration: none;
  white-space: nowrap;
}
.lp-btn-primary:hover {
  background: var(--lp-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--lp-accent-glow);
  text-decoration: none;
  color: #0d0d10;
}

.lp-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.125rem;
  background: transparent;
  color: var(--lp-text-2);
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: var(--lp-radius-md);
  border: 1px solid var(--lp-border-light);
  transition: color var(--lp-transition), border-color var(--lp-transition), background var(--lp-transition);
  text-decoration: none;
  white-space: nowrap;
}
.lp-btn-secondary:hover {
  color: var(--lp-text);
  border-color: var(--lp-text-2);
  background: rgba(255,255,255,0.04);
  text-decoration: none;
}

.lp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--lp-text-2);
  font-weight: 500;
  font-size: 1rem;
  border-radius: var(--lp-radius-md);
  border: 1px solid var(--lp-border-light);
  transition: color var(--lp-transition), border-color var(--lp-transition), background var(--lp-transition);
  text-decoration: none;
  white-space: nowrap;
}
.lp-btn-ghost:hover {
  color: var(--lp-text);
  border-color: var(--lp-text-2);
  background: rgba(255,255,255,0.04);
  text-decoration: none;
}

.lp-btn-lg {
  padding: 0.875rem 1.875rem;
  font-size: 1.0625rem;
  border-radius: var(--lp-radius-lg);
}

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

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

.lp-lang-btn {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.4rem 0.625rem;
  background: transparent;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-sm);
  color: var(--lp-text-2);
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color var(--lp-transition), color var(--lp-transition), background var(--lp-transition);
}
.lp-lang-btn:hover {
  border-color: var(--lp-border-light);
  color: var(--lp-text);
  background: rgba(255,255,255,0.04);
}

.lp-lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-md);
  box-shadow: var(--lp-shadow-lg);
  min-width: 140px;
  overflow: hidden;
  z-index: 200;
}
.lp-lang-dropdown.open { display: block; }

.lp-lang-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  color: var(--lp-text-2);
  background: none;
  border: none;
  cursor: pointer;
  transition: background var(--lp-transition), color var(--lp-transition);
}
.lp-lang-option:hover {
  background: rgba(255,255,255,0.06);
  color: var(--lp-text);
}
.lp-lang-option.active {
  color: var(--lp-accent);
  background: var(--lp-accent-muted);
}

/* Mobile menu toggle */
.lp-mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: var(--lp-radius-sm);
  color: var(--lp-text-2);
  transition: color var(--lp-transition), background var(--lp-transition);
  flex-shrink: 0;
}
.lp-mobile-menu-btn:hover {
  color: var(--lp-text);
  background: rgba(255,255,255,0.06);
}

/* Mobile menu */
.lp-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--lp-border);
  background: rgba(13, 13, 16, 0.98);
}
.lp-mobile-menu.open {
  display: flex;
}
.lp-mobile-nav-link {
  display: block;
  padding: 0.625rem 0;
  font-size: 1rem;
  color: var(--lp-text-2);
  text-decoration: none;
  border-bottom: 1px solid var(--lp-border);
}
.lp-mobile-nav-link:hover { color: var(--lp-text); text-decoration: none; }
.lp-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.lp-mobile-lang {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.lp-mobile-lang-btn {
  padding: 0.375rem 0.75rem;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-full);
  font-size: 0.8125rem;
  color: var(--lp-text-2);
  background: none;
  cursor: pointer;
  transition: all var(--lp-transition);
}
.lp-mobile-lang-btn:hover {
  border-color: var(--lp-border-light);
  color: var(--lp-text);
}
.lp-mobile-lang-btn.active {
  background: var(--lp-accent-muted);
  border-color: var(--lp-accent);
  color: var(--lp-accent);
}

/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */
.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--lp-header-h) + 4rem) 0 5rem;
  overflow: hidden;
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.lp-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.lp-hero-glow-1 {
  width: 600px;
  height: 600px;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(246,196,55,0.4) 0%, transparent 70%);
}
.lp-hero-glow-2 {
  width: 400px;
  height: 400px;
  bottom: -50px;
  left: -100px;
  background: radial-gradient(circle, rgba(139,92,246,0.3) 0%, transparent 70%);
}

.lp-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: var(--lp-accent-muted);
  border: 1px solid rgba(246, 196, 55, 0.3);
  border-radius: var(--lp-radius-full);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--lp-accent);
}

.lp-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lp-accent);
  animation: pulse-badge 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse-badge {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.lp-hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 800px;
}

.lp-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--lp-text-2);
  max-width: 560px;
  line-height: 1.7;
}

.lp-hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

.lp-hero-note {
  font-size: 0.8125rem;
  color: var(--lp-muted);
}

.lp-hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  padding: 1.25rem 2.5rem;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-xl);
  flex-wrap: wrap;
  justify-content: center;
}

.lp-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.lp-stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--lp-accent);
  line-height: 1;
}
.lp-stat-label {
  font-size: 0.8rem;
  color: var(--lp-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.lp-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--lp-border);
}

/* ---------------------------------------------------------
   Sections
   --------------------------------------------------------- */
.lp-section {
  padding: 5.5rem 0;
}
.lp-section--alt {
  background: var(--lp-surface);
}

.lp-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}
.lp-section-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-accent);
  margin-bottom: 0.75rem;
}
.lp-section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.lp-section-subtitle {
  font-size: 1.0625rem;
  color: var(--lp-text-2);
  line-height: 1.7;
}

/* ---------------------------------------------------------
   Features Grid
   --------------------------------------------------------- */
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.lp-feature-card {
  padding: 1.75rem;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  transition: border-color var(--lp-transition), transform var(--lp-transition), box-shadow var(--lp-transition);
  opacity: 0;
  transform: translateY(20px);
}
.lp-feature-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease, border-color var(--lp-transition), box-shadow var(--lp-transition);
}
.lp-feature-card:hover {
  border-color: var(--lp-border-light);
  transform: translateY(-3px);
  box-shadow: var(--lp-shadow-lg);
}

.lp-feature-card--highlight {
  border-color: rgba(246, 196, 55, 0.3);
  background: linear-gradient(135deg, rgba(246,196,55,0.06) 0%, var(--lp-surface) 60%);
}
.lp-feature-card--highlight:hover {
  border-color: rgba(246, 196, 55, 0.5);
}

.lp-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--lp-radius-md);
  background: var(--lp-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.125rem;
  color: var(--lp-muted);
  flex-shrink: 0;
}
.lp-feature-icon svg { width: 22px; height: 22px; }
.lp-feature-icon--accent {
  background: var(--lp-accent-muted);
  color: var(--lp-accent);
}

.lp-feature-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.lp-feature-desc {
  font-size: 0.9rem;
  color: var(--lp-text-2);
  line-height: 1.65;
}

/* ---------------------------------------------------------
   How it Works Steps
   --------------------------------------------------------- */
.lp-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
  margin: 0 auto;
}

.lp-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(-20px);
}
.lp-step.visible {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.lp-step-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--lp-accent);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  text-align: center;
  opacity: 0.9;
}

.lp-step-content {
  padding: 0.25rem 0 2rem;
}
.lp-step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.lp-step-desc {
  font-size: 1rem;
  color: var(--lp-text-2);
  line-height: 1.7;
}

.lp-step-connector {
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(to bottom, var(--lp-border-light), var(--lp-border));
  margin-left: 30px;
}

/* ---------------------------------------------------------
   Pricing Card
   --------------------------------------------------------- */
.lp-pricing-wrapper {
  display: flex;
  justify-content: center;
}

.lp-pricing-card {
  width: 100%;
  max-width: 520px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-xl);
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--lp-shadow-lg);
}

.lp-pricing-badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: var(--lp-accent-muted);
  border: 1px solid rgba(246, 196, 55, 0.3);
  color: var(--lp-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--lp-radius-full);
  margin-bottom: 1rem;
}

.lp-pricing-name {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.lp-pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}
.lp-pricing-price sup {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lp-text-2);
  margin-top: -0.25rem;
}
.lp-price-amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--lp-text);
  line-height: 1;
  letter-spacing: -0.03em;
}
.lp-price-period {
  font-size: 0.875rem;
  color: var(--lp-muted);
  margin-left: 0.25rem;
}

.lp-pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.75rem 0;
}
.lp-pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--lp-text-2);
}
.lp-pricing-features li svg { color: var(--lp-success); flex-shrink: 0; }

.lp-pricing-divider {
  height: 1px;
  background: var(--lp-border);
  margin: 1.5rem 0;
}

.lp-pricing-rates-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.875rem;
  color: var(--lp-text);
}
.lp-pricing-rates-note {
  font-weight: 400;
  color: var(--lp-muted);
  margin-left: 0.5rem;
  font-size: 0.8125rem;
}

.lp-rates-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.lp-rates-table td {
  padding: 0.4rem 0.25rem;
  color: var(--lp-text-2);
  vertical-align: middle;
}
.lp-rates-table td:first-child {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.lp-rates-table td:last-child {
  text-align: right;
  color: var(--lp-muted);
}

.lp-rate-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}
.lp-rate-dot--stt { background: var(--lp-info); }
.lp-rate-dot--tr  { background: var(--lp-success); }
.lp-rate-dot--tts { background: var(--lp-purple); }

.lp-estimate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--lp-muted);
  padding: 0.25rem 0;
}
.lp-estimate-row strong { color: var(--lp-text-2); }

.lp-pricing-guarantee {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--lp-muted);
  margin-top: 1rem;
}

/* ---------------------------------------------------------
   Final CTA
   --------------------------------------------------------- */
.lp-cta-section {
  padding: 6rem 0;
  overflow: hidden;
}

.lp-cta-inner {
  position: relative;
  text-align: center;
  padding: 4rem 2rem;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-xl);
  overflow: hidden;
}

.lp-cta-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(246,196,55,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.lp-cta-title {
  position: relative;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.lp-cta-subtitle {
  position: relative;
  font-size: 1.0625rem;
  color: var(--lp-text-2);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */
.lp-footer {
  border-top: 1px solid var(--lp-border);
  padding: 2.5rem 0;
}

.lp-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.lp-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.lp-footer-logo {
  font-size: 1rem;
}
.lp-footer-tagline {
  font-size: 0.8125rem;
  color: var(--lp-muted);
}

.lp-footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.lp-footer-links a {
  font-size: 0.875rem;
  color: var(--lp-muted);
  text-decoration: none;
  transition: color var(--lp-transition);
}
.lp-footer-links a:hover {
  color: var(--lp-text-2);
  text-decoration: none;
}

/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */
@media (max-width: 1024px) {
  .lp-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .lp-nav { display: none; }
  .lp-header-actions { display: none; }
  .lp-mobile-menu-btn { display: flex; }

  .lp-hero {
    padding-top: calc(var(--lp-header-h) + 2.5rem);
    padding-bottom: 3.5rem;
    min-height: auto;
  }

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

  .lp-hero-stats {
    gap: 1.25rem;
    padding: 1rem 1.5rem;
  }
  .lp-stat-divider { display: none; }

  .lp-section { padding: 4rem 0; }

  .lp-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .lp-footer-links { gap: 1rem; }

  .lp-pricing-card { padding: 1.75rem; }

  .lp-cta-inner { padding: 3rem 1.5rem; }

  .lp-step { gap: 1.25rem; }
  .lp-step-number { font-size: 2rem; width: 48px; }
}

@media (max-width: 480px) {
  .lp-hero-cta { flex-direction: column; width: 100%; }
  .lp-hero-cta .lp-btn-primary,
  .lp-hero-cta .lp-btn-ghost {
    width: 100%;
    justify-content: center;
  }
  .lp-hero-stats { flex-direction: column; gap: 1rem; }
}

/* RTL support */
[dir="rtl"] .lp-lang-dropdown {
  right: auto;
  left: 0;
}
[dir="rtl"] .lp-step {
  transform: translateX(20px);
}
[dir="rtl"] .lp-step.visible {
  transform: translateX(0);
}
