@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Syne:wght@600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #030308;
  --bg2: #07070f;
  --surface: #0a0a14;
  --surface2: #11111c;
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.14);
  --text: #eef0f8;
  --muted: #8b8fa8;
  --dim: #4a4e62;
  --accent: #22d3ee;
  --accent2: #818cf8;
  --accent-warm: #fbbf24;
  --accent-dim: rgba(34,211,238,0.1);
  --accent-glow: rgba(34,211,238,0.35);
  --accent-violet-glow: rgba(129,140,248,0.25);
  --radius: 12px;
  --radius-sm: 8px;
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --display: 'Syne', var(--font);
  --mono: 'JetBrains Mono', monospace;
  --max: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-cinema: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
}

html::after {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 9997;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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)'/%3E%3C/svg%3E");
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* cinematic atmosphere */
body::before {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% -30%, rgba(34,211,238,0.09), transparent 55%),
    radial-gradient(ellipse 50% 45% at 100% 20%, rgba(129,140,248,0.07), transparent 50%),
    radial-gradient(ellipse 40% 35% at 0% 80%, rgba(251,191,36,0.04), transparent 45%);
}

body::after {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 9998;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.55) 100%);
  opacity: 0.85;
}

.cinema-grain { display: none; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero-enter { opacity: 1 !important; transform: none !important; }
}

.wrap { position: relative; z-index: 1; min-height: 100vh; display: flex; flex-direction: column; }
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
main { flex: 1; }

/* header */
header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(3,3,8,0.75);
  backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid var(--border);
}

header::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34,211,238,0.35), rgba(129,140,248,0.25), transparent);
  opacity: 0.6;
}

.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 1rem;
}

.brand {
  display: flex; align-items: center; gap: 0.7rem;
  text-decoration: none; color: var(--text);
  font-family: var(--display); font-weight: 700; font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 0.6rem; font-weight: 700;
  color: var(--bg);
  box-shadow: 0 0 24px var(--accent-glow);
}

.brand-tld {
  font-family: var(--mono); font-size: 0.6rem;
  color: var(--dim); font-weight: 500; margin-left: -0.15rem;
}

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.82rem; font-weight: 500; color: var(--muted);
  text-decoration: none; letter-spacing: 0.02em;
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transition: transform 0.3s var(--ease-cinema);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-actions { display: flex; gap: 0.5rem; align-items: center; }

.lang-switch { position: relative; font-family: var(--mono); font-size: 0.68rem; }
.lang-switch summary {
  list-style: none; cursor: pointer; color: var(--muted);
  padding: 0.45rem 0.7rem; border: 1px solid var(--border);
  border-radius: var(--radius-sm); background: var(--surface);
  transition: border-color 0.2s, color 0.2s;
}
.lang-switch summary::-webkit-details-marker { display: none; }
.lang-switch summary:hover { color: var(--accent); border-color: var(--border-hover); }
.lang-switch ul {
  position: absolute; right: 0; top: calc(100% + 6px);
  list-style: none; background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); min-width: 150px; z-index: 300;
  max-height: 280px; overflow-y: auto; padding: 0.35rem;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(34,211,238,0.05);
}
.lang-switch li a {
  display: block; padding: 0.45rem 0.65rem; color: var(--muted);
  text-decoration: none; font-size: 0.72rem; border-radius: 6px;
}
.lang-switch li a:hover { background: var(--surface); color: var(--text); }
.lang-switch li a.active { color: var(--accent); }

html[dir="rtl"] body { direction: rtl; }
html[dir="rtl"] .nav, html[dir="rtl"] .hero-grid, html[dir="rtl"] .foot-grid { direction: rtl; }
html[dir="rtl"] .lang-switch ul { right: auto; left: 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  font-family: var(--font); font-weight: 600; font-size: 0.84rem;
  text-decoration: none; cursor: pointer; border: none;
  border-radius: var(--radius-sm); transition: all 0.25s var(--ease-cinema);
  white-space: nowrap; letter-spacing: 0.01em;
}
.btn-ghost { padding: 0.55rem 1rem; color: var(--muted); background: transparent; }
.btn-ghost:hover { color: var(--text); }
.btn-primary {
  padding: 0.6rem 1.25rem;
  background: linear-gradient(135deg, var(--accent), #06b6d4);
  color: var(--bg); font-weight: 700;
  box-shadow: 0 0 0 1px rgba(34,211,238,0.2), 0 4px 24px rgba(34,211,238,0.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(34,211,238,0.4), 0 8px 32px var(--accent-glow);
}
.btn-primary:active { transform: translateY(0); }
.btn-outline {
  padding: 0.6rem 1.25rem; background: rgba(255,255,255,0.02);
  border: 1px solid var(--border); color: var(--text);
}
.btn-outline:hover {
  border-color: rgba(34,211,238,0.4); color: var(--accent);
  background: var(--accent-dim);
}
.btn-lg { padding: 0.9rem 1.75rem; font-size: 0.92rem; }
.btn-full { width: 100%; }

.menu-btn {
  display: none; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text); cursor: pointer; padding: 0.45rem;
}

/* hero */
.hero {
  position: relative;
  padding: clamp(4rem, 10vw, 6.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(34,211,238,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,211,238,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black, transparent);
  opacity: 0.5;
}

.hero-glow {
  position: absolute; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(34,211,238,0.12), transparent 70%);
  top: -120px; right: -80px; pointer-events: none;
  filter: blur(40px);
  animation: orbFloat 12s ease-in-out infinite;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 20px) scale(1.05); }
}

.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 5vw, 4rem); align-items: center;
  position: relative;
}

.hero-enter { opacity: 0; transform: translateY(24px); }
.hero-enter.play { animation: heroIn 0.9s var(--ease-cinema) forwards; }
.hero-enter.delay-1 { animation-delay: 0.1s; }
.hero-enter.delay-2 { animation-delay: 0.2s; }
.hero-enter.delay-3 { animation-delay: 0.32s; }
.hero-enter.delay-4 { animation-delay: 0.44s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

.pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--mono); font-size: 0.65rem; font-weight: 500;
  color: var(--accent-warm); letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.4rem 0.85rem; border-radius: 999px;
  background: rgba(251,191,36,0.08);
  border: 1px solid rgba(251,191,36,0.2);
  margin-bottom: 1.5rem;
}
.pill::before {
  content: ''; width: 6px; height: 6px; background: var(--accent-warm);
  border-radius: 50%; animation: pulse 2.5s ease-in-out infinite;
  box-shadow: 0 0 8px var(--accent-warm);
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

h1 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 6vw, 4.25rem);
  font-weight: 800; line-height: 1.0; letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
}
h1 span {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 50%, var(--accent) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmerText 6s linear infinite;
}
@keyframes shimmerText {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.lead {
  font-size: 1.08rem; color: var(--muted); line-height: 1.8;
  max-width: 500px; margin-bottom: 2rem;
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.5rem; }

.stats {
  display: flex; flex-wrap: wrap; gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  position: relative;
}
.stats::before {
  content: '';
  position: absolute; top: -1px; left: 0; width: 120px; height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.stat-val {
  font-family: var(--mono); font-size: 1.6rem; font-weight: 600;
  letter-spacing: -0.03em; color: var(--text);
}
.stat-lbl {
  font-size: 0.68rem; color: var(--dim);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.2rem;
}

/* panel — mission control terminal */
.panel {
  position: relative;
  background: rgba(10,10,20,0.85);
  border: 1px solid rgba(34,211,238,0.15);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(129,140,248,0.05) inset,
    0 32px 80px rgba(0,0,0,0.55),
    0 0 60px rgba(34,211,238,0.06);
}
.panel::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 2px,
    rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px
  );
  opacity: 0.4;
}
.panel-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 1.15rem;
  border-bottom: 1px solid rgba(34,211,238,0.1);
  font-family: var(--mono); font-size: 0.65rem; color: var(--dim);
  letter-spacing: 0.06em; text-transform: uppercase;
  background: rgba(0,0,0,0.3);
}
.panel-dots { display: flex; gap: 6px; }
.panel-dots span { width: 9px; height: 9px; border-radius: 50%; opacity: 0.85; }
.panel-dots span:first-child { background: #ff5f57; }
.panel-dots span:nth-child(2) { background: #febc2e; }
.panel-dots span:nth-child(3) { background: #28c840; }
.panel-body { padding: 1.35rem; position: relative; }
.panel-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.6rem 0; border-bottom: 1px solid var(--border); font-size: 0.84rem;
}
.panel-row:last-child { border-bottom: none; }
.panel-row .lbl { color: var(--dim); font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.08em; }
.panel-row .val { font-family: var(--mono); font-weight: 500; }
.panel-row .val.live {
  color: var(--accent-warm);
  text-shadow: 0 0 12px rgba(251,191,36,0.5);
}
.bar-track {
  height: 3px; background: rgba(255,255,255,0.04);
  border-radius: 99px; margin-top: 1.25rem; overflow: hidden;
}
.bar-fill {
  height: 100%; width: 78%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 99px;
  animation: barPulse 3s var(--ease) infinite;
  box-shadow: 0 0 12px var(--accent-glow);
}
@keyframes barPulse { 0%,100%{width:70%;opacity:0.8} 50%{width:92%;opacity:1} }
.chips { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.15rem; }
.chip {
  font-family: var(--mono); font-size: 0.6rem; font-weight: 500;
  padding: 0.3rem 0.6rem; border-radius: 6px;
  border: 1px solid var(--border); color: var(--dim);
  letter-spacing: 0.04em;
}
.chip.on {
  border-color: rgba(34,211,238,0.45); color: var(--accent);
  background: var(--accent-dim);
  box-shadow: 0 0 16px rgba(34,211,238,0.1);
}

/* scroll reveal */
[data-reveal] {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s var(--ease-cinema), transform 0.7s var(--ease-cinema);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-delay="3"] { transition-delay: 0.24s; }

/* sections */
section { padding: clamp(4rem, 8vw, 6rem) 0; position: relative; }
section + section { border-top: 1px solid var(--border); }

.eyebrow {
  font-family: var(--mono); font-size: 0.65rem; font-weight: 500;
  color: var(--accent); letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 0.75rem;
}
h2 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800; letter-spacing: -0.035em; line-height: 1.1;
  margin-bottom: 0.85rem;
}
h3 { font-size: 1rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.4rem; }
.section-lead { color: var(--muted); font-size: 0.95rem; line-height: 1.8; max-width: 560px; }
.section-head { margin-bottom: 3rem; }
.section-head.center { text-align: center; }
.section-head.center .section-lead { margin-inline: auto; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card {
  position: relative;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  transition: border-color 0.35s, transform 0.35s var(--ease-cinema), box-shadow 0.35s;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34,211,238,0.4), transparent);
  opacity: 0; transition: opacity 0.35s;
}
.card:hover {
  border-color: rgba(34,211,238,0.2);
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.35), 0 0 40px rgba(34,211,238,0.04);
}
.card:hover::before { opacity: 1; }
.card-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-dim), rgba(129,140,248,0.08));
  border: 1px solid rgba(34,211,238,0.15);
  display: grid; place-items: center; font-family: var(--mono);
  font-size: 0.7rem; font-weight: 600; color: var(--accent); margin-bottom: 1.15rem;
}
.card p { color: var(--muted); font-size: 0.88rem; line-height: 1.75; }

.methods-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 0.65rem;
}
.method {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1.1rem 0.75rem; text-align: center;
  font-family: var(--mono); font-size: 0.7rem; font-weight: 500; color: var(--muted);
  transition: all 0.3s var(--ease-cinema); letter-spacing: 0.02em;
}
.method:hover {
  border-color: rgba(34,211,238,0.35); color: var(--accent);
  background: var(--accent-dim);
  box-shadow: 0 0 24px rgba(34,211,238,0.08);
}
.method span { display: block; font-size: 0.58rem; color: var(--dim); margin-top: 0.35rem; }

.steps { display: grid; gap: 0.85rem; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 1.35rem;
  padding: 1.5rem 1.65rem; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.3s var(--ease-cinema);
}
.step:hover { border-color: rgba(129,140,248,0.25); transform: translateX(4px); }
.step-num {
  font-family: var(--mono); font-size: 0.72rem; font-weight: 700;
  color: var(--accent); width: 2.5rem; height: 2.5rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-dim), rgba(129,140,248,0.08));
  border: 1px solid rgba(34,211,238,0.15);
  display: grid; place-items: center;
}
.step p { color: var(--muted); font-size: 0.88rem; line-height: 1.7; margin-top: 0.3rem; }

.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.85rem; }
.price-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.65rem;
  display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease-cinema), border-color 0.35s, box-shadow 0.35s;
}
.price-card:hover { transform: translateY(-3px); border-color: var(--border-hover); }
.price-card.featured {
  border-color: rgba(34,211,238,0.35);
  background: linear-gradient(180deg, rgba(34,211,238,0.06), var(--surface));
  box-shadow: 0 0 0 1px rgba(34,211,238,0.08) inset, 0 24px 48px rgba(0,0,0,0.3);
}
.price-badge {
  font-family: var(--mono); font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.75rem;
}
.price-amt {
  font-family: var(--display); font-size: 2rem; font-weight: 800;
  letter-spacing: -0.03em; margin-bottom: 1rem;
}
.price-amt small { font-size: 0.72rem; font-weight: 500; color: var(--dim); font-family: var(--font); }
.price-list {
  list-style: none; flex: 1; margin-bottom: 1.35rem;
  display: flex; flex-direction: column; gap: 0.45rem;
}
.price-list li {
  font-size: 0.82rem; color: var(--muted); padding-left: 1.1rem; position: relative;
}
.price-list li::before {
  content: '▸'; position: absolute; left: 0;
  color: var(--accent); font-size: 0.65rem;
}

.faq-list { max-width: 720px; margin-inline: auto; }
details { border-bottom: 1px solid var(--border); }
summary {
  padding: 1.15rem 0; font-weight: 600; font-size: 0.9rem;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  transition: color 0.25s;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font-family: var(--mono); color: var(--dim); font-size: 1.1rem; }
details[open] summary { color: var(--accent); }
details[open] summary::after { content: '−'; color: var(--accent); }
.faq-a { padding: 0 0 1.15rem; color: var(--muted); font-size: 0.86rem; line-height: 1.8; }

.cta {
  position: relative;
  background: linear-gradient(135deg, rgba(34,211,238,0.08), rgba(129,140,248,0.05));
  border: 1px solid rgba(34,211,238,0.18);
  border-radius: var(--radius); padding: clamp(3rem, 6vw, 4rem);
  text-align: center; overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(34,211,238,0.1), transparent 70%);
}
.cta h2 { margin-bottom: 0.65rem; position: relative; }
.cta p { color: var(--muted); margin-bottom: 1.75rem; position: relative; }
.cta .btn { position: relative; }

/* inner pages */
.page-hero {
  padding: clamp(3.5rem, 7vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: min(100%, 400px); height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.85rem); margin-bottom: 0.75rem;
}
.page-hero .lead { margin-bottom: 0; max-width: 620px; }
.breadcrumb {
  font-family: var(--mono); font-size: 0.65rem; color: var(--dim);
  margin-bottom: 1.25rem; display: flex; gap: 0.5rem; flex-wrap: wrap;
  letter-spacing: 0.04em;
}
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }

.content { padding: clamp(2.5rem, 5vw, 3.5rem) 0; }
.prose { max-width: 720px; }
.prose p, .prose li { color: var(--muted); font-size: 0.92rem; line-height: 1.85; margin-bottom: 1rem; }
.prose h2 { font-family: var(--display); font-size: 1.35rem; margin: 2rem 0 0.75rem; }
.prose ul { padding-left: 1.25rem; margin-bottom: 1rem; }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1rem; }
.blog-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease-cinema);
  text-decoration: none; color: inherit; display: block;
}
.blog-card:hover { border-color: rgba(34,211,238,0.25); transform: translateY(-2px); }
.blog-card-body { padding: 1.4rem; }
.blog-date { font-family: var(--mono); font-size: 0.62rem; color: var(--dim); margin-bottom: 0.5rem; letter-spacing: 0.06em; }
.blog-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.blog-card p { color: var(--muted); font-size: 0.86rem; line-height: 1.7; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; max-width: 720px; }
.contact-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.65rem;
  transition: border-color 0.3s;
}
.contact-card:hover { border-color: rgba(34,211,238,0.2); }
.contact-card h3 { margin-bottom: 0.35rem; }
.contact-card p { color: var(--muted); font-size: 0.88rem; margin-bottom: 1rem; }
.contact-card a.contact-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--accent); text-decoration: none; font-weight: 600; font-size: 0.9rem;
}
.contact-card a.contact-link:hover { text-shadow: 0 0 20px var(--accent-glow); }

.seo-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

footer {
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem; margin-top: auto;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.3));
}
.foot-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 2rem; margin-bottom: 2rem;
}
.foot-brand p { color: var(--dim); font-size: 0.82rem; line-height: 1.7; margin-top: 0.85rem; max-width: 260px; }
.foot-col h4 {
  font-family: var(--mono); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--dim); margin-bottom: 0.85rem;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.foot-col a { color: var(--muted); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.foot-col a:hover { color: var(--accent); }
.foot-bot {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem;
  padding-top: 1.5rem; border-top: 1px solid var(--border);
  font-family: var(--mono); font-size: 0.62rem; color: var(--dim); letter-spacing: 0.04em;
}

.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  background: rgba(3,3,8,0.9); backdrop-filter: blur(20px);
  border-top: 1px solid rgba(34,211,238,0.12);
  padding: 0.75rem 1.25rem;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-cinema);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.4);
}
.sticky-bar.show { transform: translateY(0); }
.sticky-bar p { font-family: var(--mono); font-size: 0.68rem; color: var(--dim); display: none; letter-spacing: 0.04em; }
body.has-sticky { padding-bottom: 60px; }

@media (min-width: 640px) { .sticky-bar p { display: block; } }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .panel { max-width: 440px; }
  .card-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--bg); padding: 1.25rem;
    border-bottom: 1px solid var(--border); gap: 0.65rem;
  }
  header .container { position: relative; }
  .menu-btn { display: block; }
  .nav-actions .btn-ghost { display: none; }
  .brand-tld { display: none; }
  .price-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero-glow { width: 300px; height: 300px; right: -100px; }
}
