/* ═══════════════════════════════════════════════════════════
   TeleKeep Landing — Premium 2025 Design System
   Font: Cairo | Palette: Indigo + Sky + Emerald on Deep Navy
   ═══════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amiri:wght@400;700&display=swap');

:root {
  /* Colors */
  --bg:        #060b18;
  --bg-card:   #0c1427;
  --bg-card2:  #101b35;
  --border:    rgba(51,144,236,.18);
  --border-hv: rgba(51,144,236,.55);

  --accent:    #3390ec;    /* indigo */
  --accent2:   #2481cc;   /* violet */
  --sky:       #0ea5e9;
  --emerald:   #10b981;
  --amber:     #f59e0b;
  --rose:      #f43f5e;

  --text:      #f1f5f9;
  --muted:     rgba(241,245,249,.5);
  --muted2:    rgba(241,245,249,.28);

  --glass:     rgba(12,20,39,.55);
  --glow-a:    rgba(51,144,236,.15);
  --glow-s:    rgba(14,165,233,.12);

  --r-sm:  10px;
  --r-md:  18px;
  --r-lg:  28px;
  --r-xl:  40px;
  --ease:  cubic-bezier(.16,1,.3,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Cairo', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

html[lang="ar"] body {
  font-family: 'Amiri', serif;
}

/* ── Selection ── */
::selection { background: rgba(51,144,236,.3); color: #fff; }

/* ── Links ── */
a { text-decoration: none; color: inherit; }

/* ═══════════════════════ NOISE & BACKGROUND ═══════════════════════ */
.noise {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: .4;
}
.bg-canvas {
  position: fixed; inset: 0; z-index: 0; overflow: hidden;
}
.orb {
  position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none;
  animation: drift 18s ease-in-out infinite alternate;
}
.orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(51,144,236,.35) 0%, transparent 70%); top: -180px; right: -120px; }
.orb-2 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(14,165,233,.25) 0%, transparent 70%); bottom: -150px; left: -80px; animation-delay: -9s; }
.orb-3 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(16,185,129,.15) 0%, transparent 70%); top: 40%; left: 35%; animation-delay: -5s; }
@keyframes drift {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(40px,30px) scale(1.12); }
}
.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(51,144,236,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51,144,236,.04) 1px, transparent 1px);
  background-size: 64px 64px;
}

/* ═══════════════════════ NAVBAR ═══════════════════════ */
.nav-pill {
  position: fixed; top: 24px; left: 0; right: 0; margin: 0 auto; z-index: 200;
  width: min(1160px, 92%);
  padding: 10px 16px 10px 24px;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  background: rgba(6,11,24,.6);
  backdrop-filter: blur(24px);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transition: all .4s var(--ease);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.nav-pill.scrolled {
  top: 12px; background: rgba(6,11,24,.88);
  box-shadow: 0 4px 24px rgba(0,0,0,.6);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.35rem; font-weight: 900; letter-spacing: -.5px;
  white-space: nowrap;
}
.logo-mark {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: 0 0 10px rgba(51,144,236,.2);
}
.nav-menu-container { display: flex; align-items: center; gap: 24px; flex: 1; justify-content: flex-end; }
.nav-links { display: flex; list-style: none; gap: 6px; }
.nav-links a {
  padding: 7px 14px; border-radius: 100px; font-size: .9rem; font-weight: 600;
  color: var(--muted); transition: all .25s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,.06); }
.nav-controls { display: flex; align-items: center; gap: 10px; }

/* buttons */
.btn-ghost {
  padding: 8px 18px; border-radius: 100px; font-size: .9rem; font-weight: 700;
  color: var(--muted); border: 1px solid var(--border); background: transparent;
  transition: all .25s; cursor: pointer;
}
.btn-ghost:hover { color: var(--text); border-color: var(--border-hv); }
.btn-primary {
  padding: 9px 20px; border-radius: 100px; font-size: .9rem; font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 7px;
  box-shadow: 0 4px 12px rgba(51,144,236,.2); transition: all .3s var(--ease);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(51,144,236,.3); }
.nav-cta { padding: 9px 22px; }

/* Lang switcher */
.lang-switcher-wrapper { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: 100px;
  background: rgba(255,255,255,.05); border: 1px solid var(--border); color: var(--muted);
  cursor: pointer; font-size: .85rem; font-weight: 700; transition: all .25s;
}
.lang-btn:hover { color: var(--text); border-color: var(--border-hv); }
.lang-dropdown {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 150px;
  background: rgba(12,20,39,.97); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 8px; display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all .25s var(--ease); z-index: 220; max-height: 280px; overflow-y: auto;
  backdrop-filter: blur(20px);
}
.lang-switcher-wrapper:hover .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-option {
  padding: 8px 12px; border-radius: var(--r-sm); border: none; background: transparent;
  color: var(--muted); font-size: .88rem; cursor: pointer; text-align: right; font-family: 'Cairo', sans-serif;
  transition: all .2s;
}
.lang-option:hover { background: rgba(51,144,236,.15); color: var(--text); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 8px; background: none; border: none;
  cursor: pointer; z-index: 210;
}
.hamburger span {
  display: block; width: 22px; height: 2px; background: var(--text);
  border-radius: 2px; transition: all .3s var(--ease); transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════ HERO ═══════════════════════ */
.hero {
  position: relative; z-index: 2;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: space-between;
  padding: 130px 5% 80px;
  max-width: 1300px; margin: 0 auto; gap: 60px;
}
.hero-float-badge {
  position: absolute; display: flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 100px; font-size: .78rem; font-weight: 700;
  background: rgba(12,20,39,.7); border: 1px solid var(--border);
  backdrop-filter: blur(12px); white-space: nowrap; color: var(--muted);
}
.badge-top-right { top: 140px; left: 3%; }
.badge-bottom-left { bottom: 80px; right: 5%; }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 8px var(--emerald); animation: pulse-dot 2s ease infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(.8)} }

/* hero content */
.hero-content { flex: 1.2; max-width: 640px; }
.hero-eyebrow { margin-bottom: 22px; }
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 100px;
  border: 1px solid rgba(51,144,236,.35);
  background: rgba(51,144,236,.1);
  font-size: .82rem; font-weight: 700; color: #a5b4fc;
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 10px var(--accent); animation: pulse-dot 1.8s ease infinite;
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900; line-height: 1.08; letter-spacing: -2px;
  margin-bottom: 22px;
}
.hero-title .line-1 {
  display: block;
  background: linear-gradient(135deg, #fff 0%, rgba(241,245,249,.6) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-title .line-2 {
  display: block; color: rgba(241,245,249,.7);
}
.typed-word {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent) 0%, var(--sky) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  border-bottom: 2px solid var(--accent); display: inline-block;
}

.hero-desc {
  font-size: 1.08rem; color: var(--muted); line-height: 1.75;
  max-width: 520px; margin-bottom: 36px;
}

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

.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 100px; font-size: 1rem; font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; border: none; cursor: pointer;
  box-shadow: 0 6px 16px rgba(51,144,236,.2); transition: all .3s var(--ease);
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(51,144,236,.35); }
.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 100px; font-size: 1rem; font-weight: 700;
  border: 1px solid var(--border); color: var(--muted); background: transparent;
  cursor: pointer; transition: all .3s var(--ease);
}
.btn-hero-ghost:hover { color: var(--text); border-color: var(--border-hv); background: rgba(255,255,255,.04); }

/* social proof */
.hero-social-proof { display: flex; align-items: center; gap: 14px; }
.proof-avatars { display: flex; }
.proto-avatar {
  width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: #fff;
  margin-inline-start: -10px;
}
.proto-avatar:first-child { margin-inline-start: 0; }
.proof-text { font-size: .82rem; color: var(--muted); }
.proof-stars { color: var(--amber); font-size: .9rem; margin-bottom: 2px; }

/* ── Hero Visual — Browser Mockup ── */
.hero-visual { flex: 1; position: relative; display: flex; flex-direction: column; align-items: center; }
.mockup-browser {
  width: 100%; max-width: 560px;
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 40px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.04);
  background: var(--bg-card2);
  animation: float-browser 8s ease-in-out infinite alternate;
}
@keyframes float-browser {
  from { transform: translateY(0) rotate(0deg); }
  to   { transform: translateY(-16px) rotate(.4deg); }
}
.browser-bar {
  padding: 12px 16px; background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; gap: 12px;
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 10px; height: 10px; border-radius: 50%; }
.browser-url {
  flex: 1; text-align: center; font-size: .72rem; color: var(--muted2);
  background: rgba(0,0,0,.3); padding: 4px 12px; border-radius: 100px; max-width: 220px; margin: 0 auto;
}
.browser-content { display: flex; height: 320px; }
.mock-sidebar {
  width: 140px; background: rgba(0,0,0,.2); border-inline-end: 1px solid rgba(255,255,255,.06);
  padding: 16px 10px; display: flex; flex-direction: column; gap: 8px; flex-shrink: 0;
}
.mock-logo { font-size: .8rem; font-weight: 900; padding: 4px 6px; margin-bottom: 8px; color: var(--accent); }
.mock-nav {
  padding: 7px 10px; border-radius: 8px; font-size: .7rem; color: var(--muted2); cursor: default;
  transition: all .2s;
}
.mock-nav.active { background: rgba(51,144,236,.2); color: var(--accent); }
.mock-storage { margin-top: auto; }
.mock-storage-label { font-size: .6rem; color: var(--muted2); margin-bottom: 3px; }
.mock-storage-value { font-size: .65rem; font-weight: 800; color: var(--emerald); margin-bottom: 6px; }
.mock-storage-bar { height: 3px; background: rgba(255,255,255,.1); border-radius: 2px; overflow: hidden; }
.mock-storage-fill { height: 100%; width: 8%; background: linear-gradient(90deg, var(--emerald), var(--sky)); border-radius: 2px; }
.mock-main { flex: 1; padding: 12px; overflow: hidden; }
.mock-header { display: flex; gap: 8px; margin-bottom: 12px; }
.mock-search { flex:1; padding: 6px 10px; background: rgba(0,0,0,.3); border-radius: 8px; font-size: .65rem; color: var(--muted2); border: 1px solid rgba(255,255,255,.06); }
.mock-upload-btn { padding: 6px 12px; background: rgba(51,144,236,.3); border-radius: 8px; font-size: .65rem; font-weight: 700; color: var(--accent); }
.mock-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mock-file {
  padding: 10px; background: rgba(255,255,255,.03); border-radius: 10px;
  border: 1px solid rgba(255,255,255,.05); transition: all .3s;
  animation: file-appear .4s var(--ease) both;
  animation-delay: var(--d);
}
@keyframes file-appear { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }
.mock-file:hover { background: rgba(51,144,236,.1); border-color: rgba(51,144,236,.3); }
.mock-file-icon { font-size: 1.4rem; margin-bottom: 4px; }
.mock-file-name { font-size: .6rem; font-weight: 700; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock-file-size { font-size: .55rem; color: var(--muted2); margin-top: 2px; }

/* floating cards */
.float-card {
  position: absolute; display: flex; align-items: center; gap: 10px;
  padding: 10px 16px; border-radius: 14px;
  background: rgba(12,20,39,.85); border: 1px solid var(--border);
  backdrop-filter: blur(16px); box-shadow: 0 8px 24px rgba(0,0,0,.4);
  white-space: nowrap;
}
.float-card-1 { bottom: -20px; right: -20px; }
.float-card-2 { top: 40px; left: -30px; }
.float-card-icon { width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.float-card-val { font-size: .9rem; font-weight: 900; }
.float-card-label { font-size: .65rem; color: var(--muted); }

/* ═══════════════════════ STATS BAR ═══════════════════════ */
.stats-bar {
  position: relative; z-index: 2;
  padding: 32px 5%;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(12,20,39,.4); backdrop-filter: blur(8px);
}
.stats-bar-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 0;
}
.stat-item { flex: 1; text-align: center; padding: 0 24px; }
.stat-num {
  font-size: 2rem; font-weight: 900; letter-spacing: -1px;
  background: linear-gradient(135deg, #fff, rgba(241,245,249,.6));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: .78rem; color: var(--muted); margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* ═══════════════════════ SECTIONS ═══════════════════════ */
.section {
  position: relative; z-index: 2;
  padding: 100px 5%; max-width: 1300px; margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block; padding: 5px 14px; border-radius: 100px;
  font-size: .78rem; font-weight: 700; color: var(--accent);
  background: rgba(51,144,236,.1); border: 1px solid rgba(51,144,236,.25);
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; letter-spacing: -1px; margin-bottom: 14px;
  background: linear-gradient(135deg, #fff 0%, rgba(241,245,249,.65) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.section-header p { font-size: 1.05rem; color: var(--muted); max-width: 500px; margin: 0 auto; }

/* ═══════════════════════ HOW IT WORKS ═══════════════════════ */
.steps-track {
  position: relative; display: grid; grid-template-columns: repeat(3,1fr); gap: 28px;
  max-width: 1100px; margin: 0 auto;
}
.steps-line {
  position: absolute; top: 60px; left: 16.6%; right: 16.6%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
}
.step-card {
  text-align: center; padding: 40px 28px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg);
  transition: all .4s var(--ease); position: relative; overflow: hidden;
}
.step-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at top center, rgba(51,144,236,.08) 0%, transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.step-card:hover { border-color: var(--border-hv); transform: translateY(-6px); }
.step-card:hover::before { opacity: 1; }
.step-num {
  font-size: 3rem; font-weight: 900; letter-spacing: -2px;
  color: rgba(51,144,236,.15); margin-bottom: 12px; display: block;
}
.step-icon-wrap {
  font-size: 2.2rem; width: 72px; height: 72px; border-radius: 50%;
  background: rgba(51,144,236,.12); border: 1px solid rgba(51,144,236,.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 20px rgba(51,144,236,.15);
}
.step-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 10px; }
.step-card p { font-size: .9rem; color: var(--muted); line-height: 1.7; }

/* ═══════════════════════ BENTO FEATURES ═══════════════════════ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 20px;
}
.bento-card {
  position: relative; overflow: hidden;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px;
  transition: all .4s var(--ease);
}
.bento-card:hover { border-color: var(--border-hv); transform: translateY(-5px); }
.bento-large { grid-column: span 2; }
.bento-wide  { grid-column: span 2; }
.bento-glow {
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, hsla(var(--hue), 80%, 60%, .18) 0%, transparent 70%);
  pointer-events: none;
}
.bento-tag {
  display: inline-block; font-size: .72rem; font-weight: 700;
  background: rgba(51,144,236,.1); border: 1px solid rgba(51,144,236,.2);
  border-radius: 100px; padding: 3px 10px; margin-bottom: 14px; color: #a5b4fc;
}
.bento-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(51,144,236,.12); display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 16px; }
.bento-icon svg { width: 26px; height: 26px; }
.bento-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 10px; }
.bento-card p { font-size: .88rem; color: var(--muted); line-height: 1.7; }

/* encrypt demo */
.bento-visual { margin-top: 20px; }
.encrypt-demo { display: flex; align-items: center; gap: 12px; }
.enc-block {
  padding: 8px 14px; background: rgba(255,255,255,.06); border-radius: 8px;
  font-size: .8rem; font-weight: 700; border: 1px solid rgba(255,255,255,.1);
}
.enc-block.encrypted { background: rgba(51,144,236,.15); color: var(--accent); border-color: rgba(51,144,236,.3); letter-spacing: 2px; }
.enc-arrow { font-size: 1.2rem; color: var(--muted2); }

/* integrations pills */
.integrations-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.pill {
  padding: 6px 14px; background: rgba(14,165,233,.1); border: 1px solid rgba(14,165,233,.2);
  border-radius: 100px; font-size: .75rem; font-weight: 700; color: var(--sky);
}

/* ═══════════════════════ MARQUEE ═══════════════════════ */
.marquee-section {
  position: relative; z-index: 2;
  padding: 48px 0; overflow: hidden;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(12,20,39,.3);
}
.marquee-label {
  text-align: center; font-size: .72rem; font-weight: 700; color: var(--muted2);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px;
}
.marquee-track { overflow: hidden; }
.marquee-inner {
  display: flex; gap: 0; white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-section:hover .marquee-inner { animation-play-state: paused; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.marquee-item {
  display: inline-flex; align-items: center; padding: 10px 28px;
  border-inline-end: 1px solid var(--border);
  font-size: .9rem; font-weight: 700; color: var(--muted); white-space: nowrap;
  transition: color .2s;
}
.marquee-item:hover { color: var(--text); }

/* ═══════════════════════ TESTIMONIALS ═══════════════════════ */
.testi-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.testi-card {
  padding: 32px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); transition: all .4s var(--ease); position: relative; overflow: hidden;
}
.testi-card:hover { border-color: var(--border-hv); transform: translateY(-5px); }
.testi-featured {
  background: linear-gradient(145deg, #0f1c3f, #0c1427);
  border-color: rgba(51,144,236,.4);
  box-shadow: 0 0 40px rgba(51,144,236,.12);
}
.testi-quote-mark {
  position: absolute; top: 16px; left: 24px; font-size: 5rem; font-weight: 900;
  color: rgba(51,144,236,.15); line-height: 1; font-family: Georgia, serif;
}
.testi-stars { color: var(--amber); font-size: .9rem; margin-bottom: 14px; }
.testi-text { font-size: .9rem; color: var(--muted); line-height: 1.75; margin-bottom: 24px; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; color: #fff; font-size: .9rem;
}
.testi-name { font-size: .9rem; font-weight: 700; }
.testi-role { font-size: .75rem; color: var(--muted); }

/* ═══════════════════════ PRICING ═══════════════════════ */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 24px; align-items: start; }
.pricing-loading { grid-column: 1/-1; display: flex; align-items: center; justify-content: center; gap: 14px; padding: 60px; color: var(--muted); font-size: .9rem; }
.spinner-ring {
  width: 24px; height: 24px; border-radius: 50%;
  border: 2px solid var(--border); border-top-color: var(--accent);
  animation: spin .7s linear infinite;
}
@keyframes spin { to{transform:rotate(360deg)} }
.price-card {
  position: relative; padding: 36px; border-radius: var(--r-lg);
  background: var(--bg-card); border: 1px solid var(--border);
  transition: all .4s var(--ease); overflow: hidden;
}
.price-card:hover { border-color: var(--border-hv); transform: translateY(-6px); }
.price-card.featured {
  border-color: rgba(51,144,236,.5); background: linear-gradient(145deg, #0f1c3f, #0c1427);
  box-shadow: 0 0 50px rgba(51,144,236,.2);
}
.price-badge {
  position: absolute; top: 20px; left: 20px;
  padding: 4px 12px; border-radius: 100px; font-size: .7rem; font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff;
}
.plan-name { font-size: 1rem; font-weight: 700; color: var(--muted); margin-bottom: 12px; }
.price-card.featured .plan-name { color: var(--accent); }
.price { font-size: 3.2rem; font-weight: 900; letter-spacing: -2px; line-height: 1; margin-bottom: 28px; }
.price span { font-size: 1rem; font-weight: 400; color: var(--muted); }
.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.price-card li { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; color: var(--muted); }
.price-card li svg { width: 18px; height: 18px; color: var(--emerald); flex-shrink: 0; margin-top: 2px; }
.btn-primary-price, .btn-ghost-price {
  display: block; width: 100%; padding: 13px; border-radius: 100px;
  font-size: .95rem; font-weight: 800; text-align: center; cursor: pointer;
  transition: all .3s var(--ease); border: none; font-family: 'Cairo', sans-serif;
}
.btn-primary-price { background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff; box-shadow: 0 4px 14px rgba(51,144,236,.2); }
.btn-primary-price:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(51,144,236,.3); }
.btn-ghost-price { background: transparent; border: 1px solid var(--border); color: var(--muted); }
.btn-ghost-price:hover { border-color: var(--border-hv); color: var(--text); }

/* ═══════════════════════ FAQ ═══════════════════════ */
.faq-container { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-md);
  overflow: hidden; transition: all .35s var(--ease);
}
.faq-item.active { border-color: rgba(51,144,236,.4); }
.faq-question {
  padding: 22px 26px; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; gap: 16px;
}
.faq-question h3 { font-size: 1rem; font-weight: 700; }
.faq-chevron { width: 28px; height: 28px; border-radius: 8px; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.faq-chevron svg { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.faq-item.active .faq-chevron svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; padding: 0 26px; overflow: hidden; transition: all .35s var(--ease); }
.faq-item.active .faq-answer { max-height: 200px; padding: 0 26px 24px; }
.faq-answer p { font-size: .9rem; color: var(--muted); line-height: 1.75; }

/* ═══════════════════════ CTA ═══════════════════════ */
.cta-section {
  position: relative; z-index: 2; margin: 40px 5% 80px; border-radius: var(--r-xl);
  overflow: hidden;
}
.cta-inner {
  padding: 80px 40px; text-align: center; position: relative;
  background: linear-gradient(145deg, rgba(51,144,236,.12), rgba(14,165,233,.08));
  border: 1px solid rgba(51,144,236,.25);
  border-radius: var(--r-xl);
}
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 400px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(51,144,236,.2) 0%, transparent 70%);
  filter: blur(40px); pointer-events: none;
}
.cta-tag { display: inline-block; font-size: .78rem; font-weight: 700; color: var(--accent); background: rgba(51,144,236,.1); border: 1px solid rgba(51,144,236,.25); border-radius: 100px; padding: 5px 14px; margin-bottom: 20px; }
.cta-inner h2 {
  font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; letter-spacing: -1px; margin-bottom: 14px;
  background: linear-gradient(135deg, #fff, rgba(241,245,249,.7));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.cta-inner p { font-size: 1rem; color: var(--muted); margin-bottom: 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; margin-bottom: 24px; flex-wrap: wrap; }
.cta-note { font-size: .78rem; color: var(--muted2); }

/* ═══════════════════════ FOOTER ═══════════════════════ */
.site-footer {
  position: relative; z-index: 2;
  border-top: 1px solid var(--border);
  background: rgba(6,11,24,.7); backdrop-filter: blur(10px);
  padding: 70px 5% 32px;
}
.footer-inner { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1.8fr 1fr; gap: 60px; margin-bottom: 48px; }
.footer-logo { font-size: 1.4rem; font-weight: 900; letter-spacing: -.5px; display: block; margin-bottom: 14px; }
.footer-brand p { font-size: .88rem; color: var(--muted); line-height: 1.7; max-width: 340px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,.06);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: all .25s;
}
.social-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(51,144,236,.1); }
.footer-links-group { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.footer-col h4 { font-size: .88rem; font-weight: 800; margin-bottom: 18px; color: var(--text); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .85rem; color: var(--muted); transition: all .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1300px; margin: 0 auto; padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem; color: var(--muted2); flex-wrap: wrap; gap: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--muted2); transition: color .2s; }
.footer-bottom-links a:hover { color: var(--text); }

/* ═══════════════════════ ANIMATIONS ═══════════════════════ */
.reveal { opacity: 0; transform: translateY(32px); transition: all .8s var(--ease); }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }

/* ═══════════════════════ RESPONSIVE ═══════════════════════ */
@media (max-width: 1024px) {
  .hero { flex-direction: column; text-align: center; padding-top: 140px; gap: 40px; }
  .hero-content { max-width: 100%; }
  .hero-desc { max-width: 100%; margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-social-proof { justify-content: center; }
  .hero-float-badge { display: none; }
  .hero-visual { width: 100%; }
  .mockup-browser { max-width: 100%; }
  .bento-grid { grid-template-columns: repeat(2,1fr); }
  .bento-large, .bento-wide { grid-column: span 2; }
  .testi-grid { grid-template-columns: 1fr; gap: 14px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links-group { grid-template-columns: repeat(3,1fr); }
  .steps-track { grid-template-columns: 1fr; gap: 16px; }
  .steps-line { display: none; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu-container {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(6,11,24,.98); backdrop-filter: blur(24px);
    flex-direction: column; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transform: scale(.97);
    transition: all .35s var(--ease); margin: 0; padding: 32px; z-index: 199;
  }
  .nav-menu-container.active { opacity: 1; visibility: visible; transform: scale(1); }
  .nav-links { flex-direction: column; align-items: center; gap: 20px; margin-bottom: 32px; }
  .nav-links a { font-size: 1.2rem; }
  .nav-controls { flex-direction: column; width: 100%; align-items: center; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-large, .bento-wide { grid-column: span 1; }
  .stats-bar-inner { flex-direction: column; gap: 24px; }
  .stat-divider { width: 60px; height: 1px; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-links-group { grid-template-columns: 1fr 1fr; }
  .cta-inner { padding: 48px 24px; }
  .hero { padding-top: 120px; }
}
@media (max-width: 480px) {
  .footer-links-group { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.2rem; }
  .section { padding: 60px 5%; }
}
