﻿:root {
  --bg: #060b11;
  --bg-soft: #0c1521;
  --surface: rgba(9, 18, 29, 0.78);
  --surface-strong: #0f1e2f;
  --text: #e7f2ff;
  --text-dim: #9fb3c8;
  --line: rgba(164, 210, 255, 0.2);
  --line-strong: rgba(164, 210, 255, 0.44);
  --primary: #00d1b2;
  --primary-strong: #00ffe0;
  --accent: #ffb020;
  --danger: #ff6b6b;
  --shadow: 0 16px 44px rgba(0, 0, 0, 0.45);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", sans-serif;
  background: radial-gradient(circle at 10% 10%, #15304e 0%, transparent 32%),
    radial-gradient(circle at 88% 0%, #1e2a17 0%, transparent 26%),
    linear-gradient(155deg, #04070c 0%, #091624 42%, #05080e 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-layer {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(126, 171, 211, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 171, 211, 0.12) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.18;
  mask-image: radial-gradient(circle at center, black 45%, transparent 86%);
  pointer-events: none;
  z-index: -1;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 4.8rem 0;
}

h1,
h2,
h3,
summary,
.brand-text {
  letter-spacing: 0.2px;
}

h1,
h2,
h3,
p,
ul,
ol {
  margin: 0;
}

p {
  color: var(--text-dim);
}

a {
  color: inherit;
  text-decoration: none;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(6, 11, 17, 0.7);
  border-bottom: 1px solid rgba(173, 205, 235, 0.16);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--primary-strong);
  background: linear-gradient(140deg, rgba(0, 255, 224, 0.12), rgba(0, 209, 178, 0.02));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.95rem;
  color: #b8c9dc;
}

.nav-links a:hover {
  color: #f2f8ff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.lang-switch {
  display: inline-flex;
  padding: 0.22rem;
  background: rgba(143, 186, 226, 0.15);
  border: 1px solid rgba(183, 217, 248, 0.27);
  border-radius: 12px;
}

.lang-btn {
  min-width: 42px;
  border: 0;
  border-radius: 8px;
  padding: 0.35rem 0.68rem;
  background: transparent;
  color: #c8dbef;
  cursor: pointer;
  font-family: "IBM Plex Mono", monospace;
}

.lang-btn.active {
  color: #001819;
  background: var(--primary-strong);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 11px;
  padding: 0.68rem 1.05rem;
  font-weight: 600;
  font-size: 0.93rem;
  border: 1px solid transparent;
  transition: transform 0.25s ease, filter 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.btn-primary {
  color: #001514;
  background: linear-gradient(145deg, var(--primary-strong), #7efff0);
}

.btn-ghost {
  border-color: rgba(177, 216, 252, 0.36);
  color: #e1eeff;
  background: rgba(12, 23, 36, 0.66);
}

.btn.full {
  width: 100%;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: 1.2fr 0.9fr;
}

.hero-side {
  display: grid;
  gap: 1rem;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.16;
  color: #f4f9ff;
  margin-bottom: 1rem;
}

.hero-sub {
  max-width: 65ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.4rem 0;
}

.hero-bullets {
  list-style: none;
  display: grid;
  gap: 0.66rem;
  padding: 0;
}

.hero-bullets li {
  position: relative;
  padding-inline-start: 1.4rem;
  color: #c8d9ec;
}

.hero-bullets li::before {
  content: "";
  position: absolute;
  inline-size: 9px;
  block-size: 9px;
  inset-inline-start: 0;
  top: 0.5rem;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary);
}

.hero-panel {
  background: linear-gradient(165deg, rgba(25, 44, 66, 0.73), rgba(7, 12, 19, 0.76));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.hero-illustration {
  margin: 0;
  border: 1px solid rgba(176, 214, 250, 0.24);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(8, 16, 28, 0.85), rgba(12, 24, 38, 0.68));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-illustration img {
  display: block;
  width: 100%;
  height: auto;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(171, 212, 248, 0.2);
  padding-bottom: 0.9rem;
}

.panel-head p {
  color: #d8e9f8;
  font-weight: 600;
}

.status-dot {
  font-family: "IBM Plex Mono", monospace;
  color: #9ff9e2;
  font-size: 0.76rem;
}

.panel-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.86rem;
  padding-inline-start: 1.2rem;
}

.panel-list span {
  color: #ecf6ff;
  font-weight: 600;
}

.panel-list small {
  display: block;
  color: #9eb4ca;
}

.stats {
  padding-top: 0.5rem;
}

.stats-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}

.stat-card {
  border: 1px solid rgba(167, 210, 250, 0.24);
  border-radius: 16px;
  background: rgba(9, 19, 32, 0.65);
  padding: 1rem;
}

.stat-value {
  color: #f6fbff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.14rem;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.9rem;
}

.two-col {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: 1.2fr 0.85fr;
  align-items: start;
}

.two-col h2,
.section-head h2 {
  font-size: clamp(1.55rem, 2.5vw, 2.3rem);
  line-height: 1.2;
  color: #f4faff;
  margin-bottom: 1rem;
}

.risk-panel {
  border: 1px solid rgba(255, 176, 32, 0.32);
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(34, 25, 14, 0.45), rgba(11, 17, 24, 0.82));
  padding: 1.1rem 1.2rem;
}

.risk-panel h3 {
  margin-bottom: 0.7rem;
  color: #ffe4ac;
}

.risk-panel ul {
  display: grid;
  gap: 0.66rem;
  padding-inline-start: 1rem;
}

.risk-panel li {
  color: #d6e5f6;
}

.section-head {
  margin-bottom: 1.5rem;
}

.feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  border: 1px solid rgba(176, 214, 250, 0.24);
  border-radius: 15px;
  padding: 1rem;
  background: linear-gradient(160deg, rgba(12, 23, 36, 0.66), rgba(7, 11, 19, 0.9));
}

.feature-card h3 {
  color: #eff7ff;
  margin-bottom: 0.6rem;
}

.contact-email {
  margin-top: 0.8rem;
  font-family: "IBM Plex Mono", monospace;
}

.contact-email a {
  color: var(--primary-strong);
}

.process {
  position: relative;
}

.advisory {
  background: linear-gradient(180deg, rgba(0, 209, 178, 0.05), rgba(8, 16, 28, 0));
}

.timeline {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}

.step {
  border: 1px solid rgba(169, 212, 249, 0.26);
  border-radius: 16px;
  background: rgba(9, 18, 29, 0.73);
  padding: 1rem;
}

.step-index {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: var(--primary-strong);
  font-family: "IBM Plex Mono", monospace;
}

.step h3 {
  margin-bottom: 0.55rem;
  color: #f1f9ff;
}

.pricing-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.price-card {
  border: 1px solid rgba(169, 212, 249, 0.26);
  border-radius: 16px;
  padding: 1.2rem;
  background: rgba(8, 16, 28, 0.75);
  display: grid;
  gap: 0.7rem;
}

.price-card .badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.2rem 0.5rem;
  border: 1px solid rgba(255, 176, 32, 0.45);
  border-radius: 8px;
  font-size: 0.74rem;
  color: #ffd88f;
  font-family: "IBM Plex Mono", monospace;
}

.price-card.featured {
  border-color: rgba(0, 255, 224, 0.58);
  box-shadow: 0 14px 34px rgba(0, 255, 224, 0.15);
}

.price-card h3 {
  color: #f2f9ff;
}

.price {
  color: #f8fdff;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
}

.price-time {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.85rem;
  color: #9dd8cf;
}

.price-card ul {
  display: grid;
  gap: 0.5rem;
  padding-inline-start: 1rem;
  margin-bottom: 0.6rem;
}

.price-card li {
  color: #d8e8f8;
}

.testimonials {
  background: linear-gradient(180deg, rgba(13, 22, 35, 0.12), rgba(11, 20, 30, 0.6));
}

.disclaimer {
  margin-top: 0.7rem;
  font-size: 0.85rem;
  color: #b3c7dc;
}

.testimonial-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.testimonial {
  border: 1px solid rgba(168, 212, 248, 0.26);
  border-radius: 16px;
  padding: 1rem;
  background: linear-gradient(160deg, rgba(8, 16, 28, 0.75), rgba(13, 24, 38, 0.55));
}

.testimonial p {
  color: #e5f2ff;
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}

.testimonial span {
  color: #8fc9bc;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
}

.faq-wrap {
  max-width: 800px;
}

.faq-wrap details {
  border: 1px solid rgba(169, 212, 249, 0.24);
  border-radius: 12px;
  background: rgba(9, 18, 30, 0.7);
  padding: 0.9rem 1rem;
}

.faq-wrap details + details {
  margin-top: 0.8rem;
}

.faq-wrap summary {
  cursor: pointer;
  color: #f0f8ff;
  font-weight: 600;
}

.faq-wrap details p {
  margin-top: 0.65rem;
}

.cta-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.lead-form {
  border: 1px solid rgba(161, 208, 247, 0.28);
  border-radius: 16px;
  background: rgba(8, 16, 27, 0.78);
  padding: 1.1rem;
  display: grid;
  gap: 0.55rem;
}

.lead-form label {
  font-size: 0.86rem;
  color: #dcecff;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  border-radius: 10px;
  border: 1px solid rgba(165, 210, 250, 0.27);
  background: rgba(6, 12, 20, 0.8);
  color: var(--text);
  padding: 0.64rem 0.72rem;
  font-family: "Space Grotesk", sans-serif;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 1px solid rgba(0, 255, 224, 0.45);
  border-color: rgba(0, 255, 224, 0.45);
}

.form-note {
  min-height: 1.2rem;
  margin-top: 0.1rem;
  font-size: 0.84rem;
  color: #97d7cb;
}

.form-help {
  font-size: 0.8rem;
  color: #9fb3c8;
}

.honey-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  border-top: 1px solid rgba(174, 213, 248, 0.2);
  background: rgba(6, 11, 17, 0.86);
}

.footer-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.86rem;
}

.footer-wrap p:first-child {
  color: #ecf7ff;
  font-family: "IBM Plex Mono", monospace;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .two-col,
  .cta-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .feature-grid,
  .pricing-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .section {
    padding: 4rem 0;
  }

  .nav-wrap {
    flex-wrap: wrap;
    padding: 0.8rem 0;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .hero-copy h1 {
    font-size: 1.85rem;
  }

  .stats-grid,
  .feature-grid,
  .pricing-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 1rem 0;
  }
}

html[dir="rtl"] body {
  font-family: "Cairo", "Segoe UI", Tahoma, sans-serif;
}

html[dir="rtl"] .brand,
html[dir="rtl"] .header-actions,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .footer-wrap {
  flex-direction: row-reverse;
}

html[dir="rtl"] .panel-list,
html[dir="rtl"] .risk-panel ul,
html[dir="rtl"] .price-card ul,
html[dir="rtl"] .hero-bullets {
  padding-inline-start: 0;
  padding-inline-end: 1.2rem;
}

html[dir="rtl"] .hero-bullets li {
  padding-inline-start: 0;
  padding-inline-end: 1.4rem;
}

html[dir="rtl"] .hero-bullets li::before {
  inset-inline-start: auto;
  inset-inline-end: 0;
}
