:root {
  color-scheme: dark;
  --bg: #09090b;
  --bg-subtle: #0f0f13;
  --bg-card: rgba(255,255,255,0.03);
  --bg-card-hover: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.15);
  --text: #fafafa;
  --text-secondary: #a1a1aa;
  --text-tertiary: #71717a;
  --accent: #6366f1;
  --accent-light: #818cf8;
  --accent-glow: rgba(99,102,241,0.15);
  --amber: #f59e0b;
  --amber-glow: rgba(245,158,11,0.15);
  --emerald: #10b981;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-400: #9ca3af;
  --indigo: #6366f1;
  --slate: #1e293b;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
  will-change: opacity, transform;
  contain: layout style;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.15s; }

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(9,9,11,0.7);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--accent-light); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-tertiary);
}

.lang-switcher select {
  background: rgba(255,255,255,0.06);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: var(--radius-xs);
  font-size: 13px;
  font-family: var(--font-sans);
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
}
.lang-switcher select:focus { border-color: var(--accent); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: var(--text);
  color: var(--bg);
  border-radius: var(--radius-xs);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(99,102,241,0.12) 0%, rgba(99,102,241,0.04) 40%, transparent 70%);
  pointer-events: none;
  will-change: transform;
  contain: strict;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 20%, transparent 70%);
  pointer-events: none;
  contain: strict;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: var(--accent-glow);
  color: var(--accent-light);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #a1a1aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.hero-desc {
  font-size: 15px;
  color: var(--text-tertiary);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 36px;
}

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

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 0 20px rgba(99,102,241,0.25), 0 4px 12px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.btn-primary:hover {
  background: #5558e6;
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(99,102,241,0.35), 0 8px 20px rgba(0,0,0,0.3);
}

.btn-large {
  padding: 18px 48px;
  font-size: 17px;
  border-radius: var(--radius);
}

.hero-subnote {
  font-size: 13px;
  color: var(--text-tertiary);
}

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

.hero-card {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero-card-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--accent) 0%, rgba(99,102,241,0.3) 50%, rgba(245,158,11,0.3) 100%);
  border-radius: 20px;
  opacity: 0.5;
  filter: blur(20px);
}

.hero-card-inner {
  position: relative;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}

.hero-card-header {
  display: flex;
  gap: 6px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red { background: #ef4444; }
.dot-yellow { background: #eab308; }
.dot-green { background: #22c55e; }

.hero-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-card-line {
  height: 10px;
  border-radius: 5px;
  background: rgba(255,255,255,0.06);
}
.hero-card-line.w50 { width: 50%; }
.hero-card-line.w60 { width: 60%; }
.hero-card-line.w70 { width: 70%; }
.hero-card-line.w80 { width: 80%; }
.hero-card-line.w90 { width: 90%; }

.hero-card-spacer { height: 12px; }

.hero-card-block {
  height: 48px;
  border-radius: var(--radius-xs);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
}
.hero-card-block.accent {
  background: var(--accent-glow);
  border-color: rgba(99,102,241,0.2);
}

.trust-bar {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-tertiary);
  font-size: 14px;
  font-weight: 500;
}

.trust-item svg { color: var(--text-tertiary); opacity: 0.6; }

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

.section {
  padding: 100px 0;
  position: relative;
}

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

.section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-light);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.feature-card {
  background: var(--bg);
  padding: 36px 28px;
  transition: background 0.3s;
}
.feature-card:hover { background: var(--bg-subtle); }

.feature-icon-wrap {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xs);
  background: var(--accent-glow);
  border: 1px solid rgba(99,102,241,0.15);
  color: var(--accent-light);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-tertiary);
  line-height: 1.65;
}

.reviews-section {
  background: var(--bg-subtle);
}

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

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s;
}
.review-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
}

.review-stars {
  color: var(--amber);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #a855f7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.review-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.review-role {
  font-size: 12px;
  color: var(--text-tertiary);
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
}

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

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  transition: color 0.2s;
}
html[dir="rtl"] .faq-q { text-align: right; }
.faq-q:hover { color: var(--accent-light); }

.faq-q::after {
  content: '+';
  font-size: 18px;
  color: var(--text-tertiary);
  transition: transform 0.3s, color 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}
html[dir="rtl"] .faq-q::after { margin-left: 0; margin-right: 16px; }
.faq-q.active::after { content: '−'; color: var(--accent-light); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1);
}

.faq-a-inner {
  padding-bottom: 22px;
  font-size: 14px;
  color: var(--text-tertiary);
  line-height: 1.7;
}

.blog-section {
  background: var(--bg-subtle);
}

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

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.blog-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-card p {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.5;
  flex: 1;
}

.blog-card .date {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 16px;
  opacity: 0.7;
}

.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(99,102,241,0.1) 0%, rgba(99,102,241,0.03) 40%, transparent 70%);
  pointer-events: none;
  will-change: transform;
  contain: strict;
}

.cta-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 56px 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  backdrop-filter: blur(20px);
}

.cta-card h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #a1a1aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.cta-pricing { margin-bottom: 32px; }

.price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}

.price-now {
  font-size: 48px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}

.price-was {
  font-size: 18px;
  color: var(--text-tertiary);
  text-decoration: line-through;
}

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

.guarantee {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-tertiary);
}

.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-secondary);
}
.footer-logo span { color: var(--accent-light); }

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

@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .blog-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .trust-divider { display: none; }
  .trust-items { gap: 20px; }
  .cta-card { padding: 40px 28px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 600px) {
  .hero { padding: 100px 0 60px; min-height: auto; }
  .section { padding: 64px 0; }
  .cta-section { padding: 80px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .nav-cta { display: none; }
  .hero h1 { font-size: 32px; }
  .price-now { font-size: 36px; }
}

.lang-bar {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-subtle);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-tertiary);
  text-decoration: none;
  transition: color 0.2s;
}

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

.lead-section {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

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

.lead-inner h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.lead-inner p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.lead-form {
  display: flex;
  gap: 8px;
}

.lead-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  color: var(--text);
  font-size: 14px;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.2s;
}

.lead-input:focus {
  border-color: var(--accent);
}

.lead-input::placeholder {
  color: var(--text-tertiary);
}

.lead-btn {
  padding: 12px 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.lead-btn:hover {
  background: var(--accent-light);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  padding: 16px 0;
  z-index: 9999;
  display: none;
}

.cookie-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-inner p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
}

.cookie-inner a {
  color: var(--accent-light);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 8px 16px;
  border: none;
  border-radius: var(--radius-xs);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: all 0.2s;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-decline {
  background: var(--bg-card);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

@media (max-width: 600px) {
  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }
  .lead-form {
    flex-direction: column;
  }
}

@media print {
  .nav, .cookie-banner, .lead-section, .cta-section, .footer, .lang-bar { display: none !important; }
  body { background: #fff; color: #000; }
  .hero { padding: 20px 0; }
  .hero h1 { color: #000; }
  .section { padding: 20px 0; }
  .blog-card { break-inside: avoid; }
}
