/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0a0a0f;
  --bg2:       #0f0f18;
  --bg3:       #13131e;
  --border:    rgba(255,255,255,0.07);
  --border2:   rgba(255,255,255,0.12);
  --text:      #f0f0f5;
  --text2:     #9090aa;
  --text3:     #6060778;
  --accent:    #6c63ff;
  --accent2:   #8b83ff;
  --green:     #22c55e;
  --red:       #ef4444;
  --gold:      #f59e0b;
  --radius:    14px;
  --radius-lg: 20px;
  --shadow:    0 4px 32px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 64px rgba(0,0,0,0.6);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

/* ═══════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════ */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent2);
  border: 1px solid rgba(108,99,255,0.3);
  background: rgba(108,99,255,0.08);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--text);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text2);
  max-width: 600px;
  margin-bottom: 56px;
  line-height: 1.7;
}

.accent-text {
  background: linear-gradient(135deg, #6c63ff 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.red-text { color: var(--red); }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  white-space: nowrap;
}

.btn-lg { padding: 17px 34px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: linear-gradient(135deg, #6c63ff, #8b83ff);
  color: #fff;
  box-shadow: 0 4px 20px rgba(108,99,255,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(108,99,255,0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--text2);
  border: 1px solid var(--border2);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border-color: var(--border2);
}

.btn-outline-white {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border2);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.06);
}

/* ═══════════════════════════════════════════
   TOP BAR
═══════════════════════════════════════════ */
.top-bar {
  background: linear-gradient(90deg, #6c63ff, #a78bfa, #6c63ff);
  background-size: 200%;
  animation: gradientShift 4s ease infinite;
  padding: 10px 0;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
}
.top-bar a { color: #fff; font-weight: 700; text-decoration: underline; margin-left: 4px; }
@keyframes gradientShift { 0%,100%{background-position:0%} 50%{background-position:100%} }

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,15,0.95);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
@supports (backdrop-filter: blur(1px)) {
  .navbar {
    background: rgba(10,10,15,0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
}
.navbar.scrolled {
  background: rgba(10,10,15,0.98);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  flex-shrink: 0;
}
.nav-logo em { color: var(--accent2); font-style: normal; }
.logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #6c63ff, #a78bfa);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1rem; color: #fff;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  flex-shrink: 1;
  min-width: 0;
}
.nav-links a {
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text2);
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-links .nav-cta {
  background: linear-gradient(135deg, #6c63ff, #8b83ff);
  color: #fff !important;
  padding: 8px 14px;
  box-shadow: 0 2px 12px rgba(108,99,255,0.3);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-links .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(108,99,255,0.5); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Menu */
.mobile-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1100;
}
.mobile-menu {
  display: block;
  position: fixed;
  top: 0; right: -300px;
  width: 280px; height: 100%;
  background: var(--bg3);
  border-left: 1px solid var(--border);
  z-index: 1200;
  padding: 24px;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  visibility: hidden;
}
.mobile-menu.open { right: 0; visibility: visible; }
.mobile-overlay.open { display: block; }
.mobile-close {
  display: block; margin-bottom: 28px; margin-left: auto;
  background: none; border: none; color: var(--text2); font-size: 1.25rem; cursor: pointer;
}
.mobile-menu ul { list-style: none; }
.mobile-menu li { border-bottom: 1px solid var(--border); }
.mobile-menu a {
  display: block; padding: 16px 0; font-size: 1rem; font-weight: 500; color: var(--text2);
  transition: color 0.2s;
}
.mobile-menu a:hover, .mobile-menu .mobile-cta { color: var(--accent2); }
.mobile-menu .mobile-cta {
  display: block; margin-top: 24px;
  background: linear-gradient(135deg, #6c63ff, #8b83ff);
  color: #fff !important; text-align: center;
  padding: 14px; border-radius: 10px; font-weight: 600;
}

/* ═══════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--bg);
}

.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; opacity: 0.4;
}

.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.g1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(108,99,255,0.15) 0%, transparent 70%);
  top: -200px; left: -100px;
  animation: glowFloat1 8s ease-in-out infinite;
  will-change: transform;
  contain: strict;
}
.g2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(167,139,250,0.1) 0%, transparent 70%);
  bottom: -100px; right: -50px;
  animation: glowFloat2 10s ease-in-out infinite;
  will-change: transform;
  contain: strict;
}
@media (max-width: 768px) {
  .hero-glow { display: none; }
  .hero-noise { display: none; }
  /* Stop card float animation on mobile to save GPU */
  .dashboard-card { animation: none; }
  /* Stop logo scroll animation paint on mobile */
  .logos-track { animation-duration: 40s; }
  /* Stop top bar gradient animation */
  .top-bar { animation: none; background: #6c63ff; }
}
@keyframes glowFloat1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(30px,40px)} }
@keyframes glowFloat2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-20px,-30px)} }

.hero-container {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Hero Content */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text2);
  border: 1px solid var(--border2);
  background: rgba(255,255,255,0.03);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.pulse-dot {
  width: 8px; height: 8px;
  background: var(--green); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(34,197,94,0.4)} 50%{box-shadow:0 0 0 6px rgba(34,197,94,0)} }

.hero-h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 24px;
  color: var(--text);
}
.highlight-text {
  background: linear-gradient(135deg, #6c63ff 0%, #c4b5fd 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text2);
  margin-bottom: 36px;
  line-height: 1.75;
  max-width: 520px;
}
.hero-sub strong { color: var(--text); }

.hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; }
.trust-item strong { font-size: 1.4rem; font-weight: 800; color: var(--text); }
.trust-item span { font-size: 0.75rem; color: var(--text2); font-weight: 500; }
.trust-sep { width: 1px; height: 36px; background: var(--border2); }

/* Hero Visual — Dashboard */
.hero-visual { position: relative; }

.dashboard-card {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
  animation: floatCard 6s ease-in-out infinite;
  will-change: transform;
}
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

.dc-header {
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
}
.dc-dots { display: flex; gap: 6px; }
.dc-dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.dc-dots span:nth-child(1) { background: #ff5f57; }
.dc-dots span:nth-child(2) { background: #febc2e; }
.dc-dots span:nth-child(3) { background: #28c840; }
.dc-title { font-size: 0.75rem; color: var(--text2); font-weight: 500; }

.dc-body { padding: 20px; }

.dc-metric-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.dc-metric { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 10px; padding: 14px; }
.dm-label { font-size: 0.7rem; color: var(--text2); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.08em; }
.dm-value { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; }
.dm-value.green { color: var(--green); }
.dm-bar { height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }
.dm-fill { height: 100%; background: linear-gradient(90deg, #6c63ff, #a78bfa); border-radius: 2px; }

.dc-chart { margin-bottom: 16px; }
.chart-bars {
  display: flex; align-items: flex-end; gap: 4px; height: 80px;
}
.cb {
  flex: 1; position: relative; display: flex; align-items: flex-end;
}
.arrow-cb {
  flex: 0.6; font-size: 0.9rem; color: var(--text2);
  display: flex; align-items: center; justify-content: center;
}
.cb-fill { width: 100%; border-radius: 3px 3px 0 0; }
.cb-fill.old { background: rgba(239,68,68,0.4); }
.cb-fill.new { background: linear-gradient(180deg, #6c63ff, #a78bfa); }
.chart-labels {
  display: flex; justify-content: space-between;
  font-size: 0.65rem; color: var(--text2); margin-top: 6px;
  padding: 0 8px;
}

.dc-score-row { display: flex; gap: 8px; flex-wrap: wrap; }
.score-pill {
  display: flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  padding: 5px 10px; border-radius: 100px;
  font-size: 0.72rem; color: var(--text2);
}
.score-pill strong { color: var(--green); }

/* Floating Tags */
.float-tag {
  position: absolute;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow);
  font-size: 0.8rem;
  z-index: 2;
}
.ft-icon { font-size: 1.4rem; }
.float-tag strong { font-size: 0.9rem; color: var(--text); }
.float-tag small { color: var(--text2); }
.tag-left { bottom: 30px; left: -30px; animation: floatTag1 5s ease-in-out infinite; }
.tag-right { top: 20px; right: -20px; animation: floatTag2 7s ease-in-out infinite; }
@keyframes floatTag1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes floatTag2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

.hero-scroll-hint {
  text-align: center; padding: 32px 0 24px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--text2); font-size: 0.75rem; letter-spacing: 0.08em;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--border2), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* ═══════════════════════════════════════════
   LOGO BAR
═══════════════════════════════════════════ */
.logo-bar {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  overflow: hidden;
}
.lb-label {
  text-align: center; font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text2); margin-bottom: 24px;
}
.logos-track {
  display: flex; gap: 40px;
  animation: logoScroll 25s linear infinite;
  width: max-content;
}
.logo-chip {
  font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap;
  padding: 8px 20px; border: 1px solid var(--border);
  border-radius: 100px;
  transition: color 0.3s, border-color 0.3s;
}
.logo-chip:hover { color: var(--text2); border-color: var(--border2); }
@keyframes logoScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ═══════════════════════════════════════════
   PROBLEM SECTION
═══════════════════════════════════════════ */
.problem {
  padding: 100px 0;
  background: var(--bg);
}
.problem .section-h2 { max-width: 700px; margin-bottom: 16px; }
.problem .section-sub { margin-bottom: 56px; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.problem-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.problem-card:hover { border-color: rgba(239,68,68,0.3); transform: translateY(-4px); }

.pc-icon { font-size: 2rem; margin-bottom: 16px; }
.problem-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.problem-card p { font-size: 0.875rem; color: var(--text2); line-height: 1.6; margin-bottom: 16px; }
.stat-bad {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  color: var(--red); background: rgba(239,68,68,0.1);
  padding: 4px 10px; border-radius: 100px;
}

.problem-cta-block {
  text-align: center; padding: 40px;
  background: rgba(239,68,68,0.04);
  border: 1px solid rgba(239,68,68,0.15);
  border-radius: var(--radius-lg);
}
.problem-cta-block p { font-size: 1.1rem; margin-bottom: 20px; color: var(--text2); }
.problem-cta-block p strong { color: var(--text); }

/* ═══════════════════════════════════════════
   SOLUTION SECTION
═══════════════════════════════════════════ */
.solution {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.solution-body { color: var(--text2); line-height: 1.75; margin-bottom: 36px; font-size: 1rem; }
.solution-body strong { color: var(--text); }
.solution-body em { color: var(--accent2); font-style: italic; }

.solution-items { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.sol-item {
  display: flex; gap: 16px; align-items: flex-start;
}
.sol-check {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(34,197,94,0.15); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}
.sol-item strong { display: block; font-size: 0.95rem; margin-bottom: 4px; color: var(--text); }
.sol-item p { font-size: 0.85rem; color: var(--text2); line-height: 1.6; }

/* Before/After */
.before-after {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.ba-col {
  background: var(--bg3); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
}
.ba-before { border-color: rgba(239,68,68,0.2); }
.ba-after { border-color: rgba(34,197,94,0.2); }
.ba-label {
  padding: 12px 16px; font-size: 0.8rem; font-weight: 700;
  text-align: center;
}
.bad-label { background: rgba(239,68,68,0.1); color: var(--red); }
.good-label { background: rgba(34,197,94,0.1); color: var(--green); }
.ba-items { padding: 4px 0; }
.ba-item {
  padding: 10px 16px; font-size: 0.8rem; font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.ba-item:last-child { border-bottom: none; }
.ba-item.bad { color: rgba(239,68,68,0.7); }
.ba-item.good { color: rgba(34,197,94,0.85); }

/* ═══════════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════════ */
.services {
  padding: 100px 0;
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all 0.3s;
  display: flex; flex-direction: column;
}
.service-card:hover { border-color: rgba(108,99,255,0.4); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(108,99,255,0.1); }

.sc-icon { font-size: 1.75rem; margin-bottom: 8px; }
.sc-num {
  position: absolute; top: 28px; right: 28px;
  font-size: 2rem; font-weight: 900; color: rgba(255,255,255,0.04);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.service-card > p { font-size: 0.875rem; color: var(--text2); line-height: 1.6; margin-bottom: 20px; }

.sc-list { list-style: none; margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.sc-list li {
  font-size: 0.82rem; color: var(--text2); padding-left: 18px; position: relative;
}
.sc-list li::before {
  content: '→'; position: absolute; left: 0; color: var(--accent2); font-size: 0.75rem;
}

.sc-result {
  font-size: 0.78rem; font-weight: 700;
  color: var(--green); background: rgba(34,197,94,0.08);
  padding: 6px 12px; border-radius: 100px;
  margin-bottom: 16px; display: inline-block;
}

.sc-cta {
  font-size: 0.875rem; font-weight: 600;
  color: var(--accent2); transition: gap 0.2s;
  display: inline-flex; align-items: center; gap: 4px;
}
.sc-cta:hover { gap: 8px; }

/* ═══════════════════════════════════════════
   RESULTS SECTION
═══════════════════════════════════════════ */
.results {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.result-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s;
  display: flex; flex-direction: column;
}
.result-card:hover { transform: translateY(-4px); border-color: var(--border2); box-shadow: var(--shadow); }

.rc-industry {
  font-size: 0.78rem; font-weight: 700;
  color: var(--accent2); background: rgba(108,99,255,0.08);
  border: 1px solid rgba(108,99,255,0.2);
  padding: 5px 12px; border-radius: 100px;
  display: inline-block; margin-bottom: 16px;
}
.result-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.rc-challenge { font-size: 0.8rem; color: var(--text2); margin-bottom: 20px; line-height: 1.5; }

.rc-stats {
  display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap;
}
.rc-stat {
  flex: 1; min-width: 70px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 10px; padding: 10px; text-align: center;
}
.rs-num { display: block; font-size: 1.1rem; font-weight: 800; color: var(--green); }
.rs-label { display: block; font-size: 0.65rem; color: var(--text2); margin-top: 2px; }

.rc-quote {
  font-size: 0.82rem; color: var(--text2); font-style: italic;
  line-height: 1.6; margin-bottom: 10px; border-left: 2px solid var(--accent); padding-left: 12px;
  flex: 1;
}
.rc-author { font-size: 0.78rem; font-weight: 600; color: var(--text2); }

/* ═══════════════════════════════════════════
   WHY US
═══════════════════════════════════════════ */
.why-us {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.why-us .section-h2 { text-align: center; max-width: 700px; margin: 0 auto 16px; }
.why-us .section-label { display: block; text-align: center; }
.why-us .section-h2 + .section-sub { display: none; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.why-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s;
}
.why-card:hover { border-color: rgba(108,99,255,0.3); transform: translateY(-3px); }
.wc-icon { font-size: 1.75rem; margin-bottom: 14px; }
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.why-card p { font-size: 0.85rem; color: var(--text2); line-height: 1.65; }

/* ═══════════════════════════════════════════
   PROCESS SECTION
═══════════════════════════════════════════ */
.process {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.process-timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto 60px;
}

.pt-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.pt-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--accent2);
  background: rgba(108,99,255,0.1);
  border: 1px solid rgba(108,99,255,0.25);
  border-radius: 12px;
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.pt-body { padding-top: 8px; padding-bottom: 12px; }
.pt-body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.pt-body p { font-size: 0.875rem; color: var(--text2); line-height: 1.7; margin-bottom: 10px; }
.pt-time {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  color: var(--accent2); background: rgba(108,99,255,0.08);
  padding: 4px 12px; border-radius: 100px;
}

.pt-connector {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(108,99,255,0.4), transparent);
  margin: 0 0 0 29px;
}

.process-cta {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.scarcity-note {
  font-size: 0.85rem; color: var(--gold); font-weight: 600;
  background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.2);
  padding: 8px 20px; border-radius: 100px;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonials {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.tcard {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column;
  transition: all 0.3s;
}
.tcard:hover { transform: translateY(-3px); border-color: var(--border2); box-shadow: var(--shadow); }

.featured-tcard {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(108,99,255,0.08), rgba(167,139,250,0.05));
  border-color: rgba(108,99,255,0.25);
}
.featured-tcard blockquote { font-size: 1rem; }

.tc-stars { font-size: 1rem; color: var(--gold); margin-bottom: 16px; letter-spacing: 2px; }
.tcard blockquote {
  font-size: 0.875rem; color: var(--text2); line-height: 1.75;
  font-style: italic; margin-bottom: 24px; flex: 1;
}
.tc-author { display: flex; align-items: center; gap: 14px; }
.tc-av {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; color: #fff;
  flex-shrink: 0;
}
.av1 { background: linear-gradient(135deg, #6c63ff, #a78bfa); }
.av2 { background: linear-gradient(135deg, #22c55e, #16a34a); }
.av3 { background: linear-gradient(135deg, #f59e0b, #d97706); }
.av4 { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.av5 { background: linear-gradient(135deg, #ec4899, #db2777); }
.tc-author strong { display: block; font-size: 0.9rem; color: var(--text); margin-bottom: 2px; }
.tc-author span { font-size: 0.78rem; color: var(--text2); display: block; }
.tc-result {
  display: inline-block; margin-top: 6px;
  font-size: 0.72rem; font-weight: 700;
  color: var(--green); background: rgba(34,197,94,0.08);
  padding: 3px 10px; border-radius: 100px;
}

.t-trust-bar {
  display: flex; justify-content: center;
  gap: 40px; flex-wrap: wrap;
  padding: 32px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.ttb-item { text-align: center; font-size: 0.875rem; color: var(--text2); }
.ttb-item strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--text); margin-bottom: 2px; }

/* ═══════════════════════════════════════════
   PRICING SECTION
═══════════════════════════════════════════ */
.pricing {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.pc-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  display: flex; flex-direction: column;
  transition: all 0.3s;
}
.pc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.popular-card {
  border-color: rgba(108,99,255,0.4);
  background: linear-gradient(160deg, rgba(108,99,255,0.08), var(--bg3));
  box-shadow: 0 0 0 1px rgba(108,99,255,0.2), 0 20px 60px rgba(108,99,255,0.12);
}

.popular-ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #6c63ff, #a78bfa);
  color: #fff; font-size: 0.75rem; font-weight: 700;
  padding: 6px 18px; border-radius: 100px;
  white-space: nowrap;
}

.pcc-name { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text2); margin-bottom: 12px; }
.pcc-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 14px; }
.pcc-from { font-size: 0.8rem; color: var(--text2); }
.pcc-amount { font-family: 'Syne', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--text); }
.pcc-who { font-size: 0.82rem; color: var(--text2); line-height: 1.6; padding-bottom: 20px; border-bottom: 1px solid var(--border); margin-bottom: 20px; }

.pcc-features { list-style: none; margin-bottom: 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.pcc-features li { font-size: 0.85rem; color: var(--text2); display: flex; align-items: flex-start; gap: 10px; }
.cf-check { color: var(--green); font-weight: 700; flex-shrink: 0; }
.cf-no { color: rgba(255,255,255,0.15); flex-shrink: 0; }

.pcc-timeline {
  font-size: 0.75rem; font-weight: 600; color: var(--text2);
  margin-bottom: 20px; text-align: center;
}

.pcc-btn { width: 100%; justify-content: center; }

.pricing-guarantee {
  display: flex; gap: 20px; align-items: flex-start;
  background: rgba(34,197,94,0.05); border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius); padding: 24px 28px;
}
.pg-icon { font-size: 2rem; flex-shrink: 0; }
.pricing-guarantee strong { display: block; font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.pricing-guarantee p { font-size: 0.875rem; color: var(--text2); line-height: 1.6; }

/* ═══════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════ */
.contact-section {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.cs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.cs-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text);
}
.cs-body { font-size: 1rem; color: var(--text2); line-height: 1.75; margin-bottom: 32px; }

.cs-benefits { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.csb-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; color: var(--text2);
}
.csb-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(34,197,94,0.15); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; flex-shrink: 0;
}

.cs-urgency {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: var(--text2);
  background: rgba(245,158,11,0.07); border: 1px solid rgba(245,158,11,0.2);
  border-radius: 10px; padding: 14px 18px;
}
.urgency-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  flex-shrink: 0; animation: pulse 2s ease-in-out infinite;
}
.cs-urgency strong { color: var(--gold); }

/* Form Card */
.contact-form-card {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.cfc-sub { font-size: 0.85rem; color: var(--text2); margin-bottom: 28px; }

.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-group { margin-bottom: 16px; }
.cf-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text2); margin-bottom: 6px; }
.cf-group input, .cf-group select, .cf-group textarea {
  width: 100%; background: rgba(255,255,255,0.04); border: 1px solid var(--border2);
  border-radius: 8px; padding: 12px 14px;
  color: var(--text); font-size: 0.875rem; font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
  -webkit-appearance: none;
}
.cf-group input::placeholder, .cf-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.cf-group input:focus, .cf-group select:focus, .cf-group textarea:focus {
  border-color: rgba(108,99,255,0.5); box-shadow: 0 0 0 3px rgba(108,99,255,0.1);
}
.cf-group textarea { resize: vertical; min-height: 80px; }
.cf-group select option { background: var(--bg3); }

.form-privacy {
  text-align: center; font-size: 0.75rem; color: var(--text2); margin-top: 12px;
}

.form-success {
  display: none; text-align: center; padding: 20px;
}
.form-success.show { display: block; }
.fs-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(34,197,94,0.15); color: var(--green);
  font-size: 1.75rem; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.form-success h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.form-success p { font-size: 0.9rem; color: var(--text2); margin-bottom: 20px; }
.fs-next { text-align: left; background: rgba(255,255,255,0.03); border-radius: 10px; padding: 16px 20px; }
.fs-next strong { display: block; margin-bottom: 10px; font-size: 0.875rem; }
.fs-next ol { padding-left: 20px; font-size: 0.85rem; color: var(--text2); line-height: 1.8; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.1rem; font-weight: 700; margin-bottom: 16px;
}
.footer-logo em { color: var(--accent2); font-style: normal; }
.footer-brand p { font-size: 0.85rem; color: var(--text2); line-height: 1.7; margin-bottom: 20px; }
.footer-contact { font-size: 0.85rem; color: var(--text2); display: flex; flex-direction: column; gap: 8px; }

.footer-links h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text2); margin-bottom: 20px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }

.footer-seo-block {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.footer-seo-block p { font-size: 0.72rem; color: rgba(255,255,255,0.15); line-height: 1.8; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0;
  font-size: 0.8rem; color: rgba(255,255,255,0.55);
  flex-wrap: wrap; gap: 12px;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-legal a:hover { color: var(--text); }

/* ═══════════════════════════════════════════
   LANGUAGE SWITCHER DROPDOWN
═══════════════════════════════════════════ */
.lang-switcher {
  position: relative;
  flex-shrink: 0;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 8px;
  background: rgba(108,99,255,0.1);
  border: 1px solid rgba(108,99,255,0.3);
  color: var(--accent2);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  /* prevent layout shift on hover */
  min-width: 68px;
}
.lang-btn:hover {
  background: rgba(108,99,255,0.2);
  border-color: rgba(108,99,255,0.5);
  color: #fff;
}
.lang-chevron {
  font-size: 0.65rem;
  transition: transform 0.2s;
}
.lang-switcher.open .lang-chevron {
  transform: rotate(180deg);
}

.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 6px;
  min-width: 170px;
  z-index: 2000;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  /* grid: 2 columns */
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.lang-switcher.open .lang-menu {
  display: grid;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text2);
  text-decoration: none;
  transition: all 0.15s;
  white-space: nowrap;
}
.lang-option:hover {
  background: rgba(255,255,255,0.06);
  color: var(--text);
}
.lang-option.active {
  background: rgba(108,99,255,0.15);
  color: var(--accent2);
  font-weight: 700;
}

/* ── RTL support ── */
body.rtl .nav-container { direction: rtl; }
body.rtl .hero-container { direction: rtl; }
body.rtl .lang-menu { right: auto; left: 0; }
body.rtl .section-h2,
body.rtl .section-sub,
body.rtl .section-label { text-align: right; }
body.rtl .hero-h1,
body.rtl .hero-sub,
body.rtl .hero-badge { text-align: right; }
body.rtl .hero-trust { direction: rtl; }
body.rtl .solution-body,
body.rtl .sol-item,
body.rtl .cs-title,
body.rtl .cs-body { text-align: right; direction: rtl; }
body.rtl .sol-item { flex-direction: row-reverse; }
body.rtl .ba-col { text-align: right; }
body.rtl .pt-step { flex-direction: row-reverse; }
body.rtl .pt-connector { margin: 0 29px 0 0; }
body.rtl .footer-grid { direction: rtl; }
body.rtl .btn svg { transform: scaleX(-1); }
body.rtl .problem-cta-block,
body.rtl .process-cta { direction: rtl; }

/* Price font in Plus Jakarta Sans */
.pcc-amount {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
}

/* cs-title in Plus Jakarta Sans */
.cs-title {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

/* pt-num in Plus Jakarta Sans */
.pt-num {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

/* ═══════════════════════════════════════════
   STICKY CTA (mobile)
═══════════════════════════════════════════ */
.sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  padding: 12px 20px 20px;
  background: linear-gradient(to top, var(--bg) 60%, transparent);
  z-index: 900;
}

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════ */
/* Elements start visible; JS adds aos-animate for the entrance animation */
[data-aos] {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
/* Only hide them if JS is loaded and body has data-aos-ready class */
body.aos-ready [data-aos] {
  opacity: 0;
  transform: translateY(20px);
}
body.aos-ready [data-aos="fade-left"] { transform: translateX(20px); }
body.aos-ready [data-aos="fade-right"] { transform: translateX(-20px); }
body.aos-ready [data-aos].aos-animate {
  opacity: 1;
  transform: translate(0);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
/* ── Nav overflow fix for long translated labels ── */
@media (max-width: 1200px) {
  .nav-container { gap: 16px; }
  .nav-links a { padding: 7px 7px; font-size: 0.75rem; }
  .nav-links .nav-cta { padding: 7px 12px; }
}

/* Hide middle nav items (Services, Results, Process) at 1050px+ */
@media (max-width: 1060px) {
  /* Keep: [0] Why Fail, [5] CTA — hide middle ones */
  .nav-links li:nth-child(2),
  .nav-links li:nth-child(3),
  .nav-links li:nth-child(4) { display: none; }
}

/* Hide the first link too at very narrow pre-hamburger widths */
@media (max-width: 860px) {
  .nav-links li:nth-child(1),
  .nav-links li:nth-child(5) { display: none; }
}

@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 60px; padding-top: 60px; }
  .hero-visual { order: -1; max-width: 520px; margin: 0 auto; }
  .hero-h1 { font-size: clamp(2rem, 5vw, 3rem); }
  .tag-left { left: 0; }
  .tag-right { right: 0; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-tcard { grid-column: 1 / -1; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 40px; }
  .cs-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero — no full viewport height on mobile */
  .hero { min-height: auto; }
  .hero-container { padding-top: 40px; padding-bottom: 48px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-trust { gap: 16px; flex-wrap: wrap; }
  .trust-sep { display: none; }
  /* Hide floating dashboard on small screens — too cramped */
  .float-tag { display: none; }

  .problem-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .featured-tcard { grid-column: 1; }

  .process-timeline { padding: 0 4px; }
  .pt-step { gap: 16px; }
  .pt-num { width: 48px; height: 48px; font-size: 1.3rem; flex-shrink: 0; }
  .pt-connector { margin: 0 0 0 23px; }

  .cf-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .sticky-cta { display: block; }
  /* Add padding at bottom so sticky CTA doesn't overlap content */
  body { padding-bottom: 72px; }

  .before-after { grid-template-columns: 1fr; }
  .t-trust-bar { gap: 24px; padding: 20px; }
  .dc-metric-row { grid-template-columns: 1fr; }

  .problem-cta-block { padding: 28px 20px; }
  .contact-form-card { padding: 28px 20px; }
  .pc-card { padding: 28px 24px; }

  .t-trust-bar { flex-wrap: wrap; justify-content: center; }
  .ttb-item { min-width: 120px; }

  .lang-menu { right: -40px; min-width: 160px; }

  section { padding: 64px 0 !important; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .contact-form-card { padding: 20px 16px; }
  .pcc-amount { font-size: 2rem; }
  .hero-h1 { font-size: 1.75rem; line-height: 1.15; }
  .hero-sub { font-size: 0.95rem; }
  .section-h2 { font-size: 1.65rem; }
  .rc-stats { flex-direction: column; }
  .top-bar { font-size: 0.78rem; padding: 8px 12px; }
  .hero-badge { font-size: 0.72rem; padding: 6px 12px; }
  .btn-lg { padding: 14px 24px; font-size: 0.95rem; }
  /* Keep lang switcher accessible on tiny screens */
  .lang-btn { font-size: 0.72rem; padding: 6px 8px; min-width: 56px; }
  .lang-menu { right: -60px; }
  /* Score pills wrap nicely */
  .dc-score-row { gap: 4px; }
  .score-pill { font-size: 0.65rem; padding: 4px 8px; }
  /* Footer compact */
  .footer { padding: 48px 0 0; }
  .footer-grid { gap: 32px; }
}

/* ═══════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════ */
.faq-section {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item.open { border-color: rgba(108,99,255,0.4); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent2); }
.faq-icon {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--accent2);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 0.875rem;
  color: var(--text2);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .faq-section { padding: 64px 0 !important; }
  .faq-question { padding: 16px 18px; font-size: 0.875rem; }
  .faq-item.open .faq-answer { padding: 0 18px 16px; }
}

/* Ensure no horizontal scroll on any screen */
html, body { max-width: 100%; overflow-x: hidden; }

/* ═══════════════════════════════════════════
   LOGO MARK — "L" icon in nav & footer
═══════════════════════════════════════════ */
.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(108,99,255,0.45);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text);
}
.footer-logo em { color: var(--accent2); font-style: normal; }
.footer-contact { font-size: 0.85rem; color: var(--text2); margin-top: 10px; }
.footer-contact a:hover { color: var(--accent2); }

/* ═══════════════════════════════════════════
   GEO SECTION — Why AI Compatibility Matters
═══════════════════════════════════════════ */
.geo-section {
  padding: 56px 0;
  background: linear-gradient(135deg, rgba(108,99,255,0.08) 0%, rgba(108,99,255,0.02) 100%);
  border-top: 1px solid rgba(108,99,255,0.15);
  border-bottom: 1px solid rgba(108,99,255,0.15);
}
.geo-banner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background: rgba(108,99,255,0.06);
  border: 1px solid rgba(108,99,255,0.2);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
}
.geo-icon {
  font-size: 3.5rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 16px rgba(108,99,255,0.5));
}
.geo-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--text);
}
.geo-body {
  font-size: 1rem;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 640px;
}
.geo-stats-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.geo-stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 18px 24px;
  min-width: 140px;
}
.gsc-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent2);
  line-height: 1;
  margin-bottom: 6px;
}
.gsc-label {
  font-size: 0.78rem;
  color: var(--text2);
  line-height: 1.4;
}
@media (max-width: 768px) {
  .geo-banner { flex-direction: column; padding: 28px 20px; gap: 20px; }
  .geo-stats-row { gap: 12px; }
  .geo-stat-card { min-width: 100px; padding: 14px 16px; }
}

/* ═══════════════════════════════════════════
   LEGAL PAGES — Privacy & Terms
═══════════════════════════════════════════ */
.legal-page {
  padding: 100px 0 80px;
  min-height: 80vh;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--accent2);
  margin-bottom: 40px;
  transition: gap 0.2s;
}
.legal-back:hover { gap: 10px; }
.legal-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 28px;
  margin-bottom: 36px;
}
.legal-header h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}
.legal-date {
  font-size: 0.85rem;
  color: var(--text2);
}
.legal-intro {
  background: rgba(108,99,255,0.06);
  border: 1px solid rgba(108,99,255,0.18);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 40px;
}
.legal-intro p {
  font-size: 1rem;
  color: var(--text2);
  line-height: 1.75;
}
.legal-body { max-width: 820px; }
.legal-section {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.legal-section:last-child { border-bottom: none; }
.legal-section h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.legal-section p {
  font-size: 0.95rem;
  color: var(--text2);
  line-height: 1.8;
}
.legal-contact {
  margin-top: 48px;
  padding: 24px 28px;
  background: rgba(34,197,94,0.05);
  border: 1px solid rgba(34,197,94,0.18);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text2);
}
.legal-contact a { color: var(--accent2); }
.legal-contact a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════
   RTL SUPPORT (Arabic)
═══════════════════════════════════════════ */
body.rtl {
  direction: rtl;
  text-align: right;
}
body.rtl .nav-links { margin-left: 0; margin-right: auto; }
body.rtl .hero-ctas { flex-direction: row-reverse; flex-wrap: wrap; }
body.rtl .sol-item { flex-direction: row-reverse; }
body.rtl .ba-col { text-align: right; }
body.rtl .lang-menu { left: auto; right: 0; }
body.rtl .footer-seo-block { text-align: right; }
body.rtl .legal-back { flex-direction: row-reverse; }
body.rtl .pt-step { flex-direction: row-reverse; }
@media (max-width: 768px) {
  body.rtl .hero-ctas { flex-direction: column; align-items: flex-end; }
}

/* ═══════════════════════════════════════════
   FAVICON TAB LOGO — browser tab styles
   (rendered by SVG favicon — no extra CSS needed)
═══════════════════════════════════════════ */

/* ═══════════════════════════════════════════
   FOOTER SEO BLOCK (hidden helper text for AI)
═══════════════════════════════════════════ */
.footer-seo-block {
  font-size: 0.6rem;
  color: transparent;
  user-select: none;
  height: 1px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  line-height: 0;
}
