:root {
  --bg: #07111f;
  --card: #0f1d30;
  --text: #f5f8fc;
  --muted: #a9b7c9;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #48d6c7;
  --soft: rgba(72, 214, 199, 0.12);
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(72, 214, 199, 0.08),
      transparent 28%
    ),
    linear-gradient(180deg, #07111f, #081321);
  color: var(--text);
  line-height: 1.6;
}

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

html[dir="rtl"] h1 {
  font-size: clamp(2.45rem, 4.5vw, 4.65rem);
  max-width: 780px;
}

html[dir="rtl"] .ltr-text {
  direction: ltr;
  unicode-bidi: isolate;
  text-align: left;
}

html[dir="rtl"] .brand {
  direction: ltr;
  unicode-bidi: isolate;
}

html[dir="rtl"] .price strong {
  direction: rtl;
  unicode-bidi: isolate;
}

html[dir="rtl"] .price {
  align-items: flex-end;
  gap: 10px;
}

html[dir="rtl"] .price span {
  font-size: 0.95rem;
  margin-bottom: 0.38rem;
}

html[dir="rtl"] .contact-detail a {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
}

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

.container {
  width: min(92%, var(--max));
  margin: auto;
}

nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 17, 31, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 1.35rem;
}

.brand span {
  color: var(--accent);
}

.links {
  display: flex;
  gap: 22px;
  margin-inline-start: auto;
  color: var(--muted);
  font-size: 0.92rem;
}

.links a:hover {
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.langs {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.03);
}

.lang {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 6px 9px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
}

.lang.active {
  background: var(--soft);
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  font-weight: 750;
  border: 1px solid transparent;
  cursor: pointer;
}

.primary {
  background: var(--accent);
  color: #04110f;
}

.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.mobile-cta {
  display: none;
}

section {
  padding: 88px 0;
  scroll-margin-top: 80px;
}

.hero {
  padding: 108px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--soft);
  border: 1px solid rgba(72, 214, 199, 0.22);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 22px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

h1 {
  font-size: clamp(2.6rem, 5vw, 5.1rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  margin-bottom: 24px;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2 {
  letter-spacing: 0;
  line-height: 1.25;
}

.accent {
  color: var(--accent);
}

.hero-copy {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 680px;
  margin-bottom: 32px;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.note {
  margin-top: 18px;
  color: #7f91a8;
  font-size: 0.87rem;
}

.card {
  padding: 26px;
  border-radius: 18px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.label {
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--muted);
}

.priority {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent);
  background: var(--soft);
  border: 1px solid rgba(72, 214, 199, 0.25);
  padding: 5px 9px;
  border-radius: 7px;
}

.company {
  font-size: 1.4rem;
  font-weight: 750;
  margin-bottom: 16px;
}

.intel {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.row {
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 15px;
  padding: 13px 15px;
  background: var(--card);
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
}

.row:last-child {
  border-bottom: 0;
}

.row span:first-child {
  color: #8192a8;
}

.row span:last-child {
  font-weight: 650;
}

.problem {
  background: rgba(255, 255, 255, 0.018);
  border-block: 1px solid var(--line);
}

.section-head {
  max-width: 760px;
  margin-bottom: 45px;
}

.kicker {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}

.section-head p,
.muted {
  color: var(--muted);
}

.flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.flow > div,
.feature,
.step,
.about-point,
.contact-box,
.contact-detail {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.flow > div {
  padding: 18px 15px;
  min-height: 105px;
}

.num {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 17px;
}

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

.feature {
  padding: 24px;
  min-height: 180px;
}

.icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--soft);
  border: 1px solid rgba(72, 214, 199, 0.2);
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 18px;
}

.feature h3,
.step h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.feature p,
.step p {
  color: var(--muted);
  font-size: 0.9rem;
}

.sample {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
}

.sample-copy {
  padding: 32px;
  border-radius: 16px;
  background: var(--soft);
  border: 1px solid rgba(72, 214, 199, 0.2);
}

.sample-copy h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.sample-copy p {
  color: #c0ccd9;
  margin-bottom: 22px;
}

.sample-table {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.sample-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  border-bottom: 1px solid var(--line);
}

.sample-row:last-child {
  border-bottom: 0;
}

.sample-row div {
  padding: 14px 17px;
}

.sample-row div:first-child {
  color: #8293a8;
  background: rgba(255, 255, 255, 0.025);
}

.sample-row div:last-child {
  font-weight: 650;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step {
  padding: 24px;
  border-top: 2px solid var(--accent);
  border-radius: 0 0 13px 13px;
}

.step-no {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.pricing {
  max-width: 760px;
  margin: auto;
  padding: 40px;
  border-radius: 20px;
  background: linear-gradient(
    145deg,
    rgba(72, 214, 199, 0.13),
    rgba(255, 255, 255, 0.025)
  );
  border: 1px solid rgba(72, 214, 199, 0.28);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 8px 0 20px;
}

.price strong {
  font-size: 3.7rem;
}

.price span {
  color: var(--muted);
}

.pkg {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin: 27px 0 32px;
}

.pkg li {
  padding-inline-start: 24px;
  position: relative;
}

.pkg li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  color: var(--accent);
  font-weight: 900;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
}

.about p {
  color: var(--muted);
}

.about-points {
  display: grid;
  gap: 12px;
}

.about-point {
  padding: 17px;
}

.about-point span {
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 50px;
}

.contact-copy p {
  color: var(--muted);
  margin-bottom: 22px;
}

.details {
  display: grid;
  gap: 11px;
}

.contact-detail {
  padding: 15px 17px;
}

.contact-detail small {
  display: block;
  color: #7f91a8;
  margin-bottom: 3px;
}

.contact-box {
  padding: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.group {
  display: grid;
  gap: 7px;
}

.group.full {
  grid-column: 1 / -1;
}

.group label {
  font-size: 0.86rem;
  font-weight: 650;
}

.control {
  width: 100%;
  min-height: 46px;
  border-radius: 9px;
  border: 1px solid var(--line);
  background: #0a1727;
  color: var(--text);
  padding: 11px 13px;
  outline: none;
}

.control:focus {
  border-color: rgba(72, 214, 199, 0.65);
  box-shadow: 0 0 0 3px rgba(72, 214, 199, 0.08);
}

textarea.control {
  min-height: 125px;
  resize: vertical;
}

.form-actions {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.form-note {
  color: #7f91a8;
  font-size: 0.8rem;
}

footer {
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
  color: #7e8fa5;
  font-size: 0.84rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

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

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.turnstile-wrap {
  margin-top: 16px;
  min-height: 65px;
}

.form-status {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 9px;
  font-size: 0.88rem;
}

.form-status.show {
  display: block;
}

.form-status.success {
  color: #bff8ef;
  background: rgba(72, 214, 199, 0.1);
  border: 1px solid rgba(72, 214, 199, 0.25);
}

.form-status.error {
  color: #ffd0d0;
  background: rgba(255, 100, 100, 0.08);
  border: 1px solid rgba(255, 100, 100, 0.2);
}

.btn[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

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

  .desktop-cta {
    display: none;
  }

  .mobile-cta {
    display: inline-flex;
  }

  .hero-grid,
  .sample,
  .about,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .flow {
    grid-template-columns: repeat(3, 1fr);
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 72px;
  }

  .flow,
  .features,
  .steps,
  .pkg,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .group.full {
    grid-column: auto;
  }

  .sample-row {
    grid-template-columns: 1fr;
  }

  .sample-row div:first-child {
    padding-bottom: 4px;
  }

  .sample-row div:last-child {
    padding-top: 5px;
  }

  .row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .pricing,
  .contact-box {
    padding: 26px 20px;
  }

  .price strong {
    font-size: 3rem;
  }
}

@media (max-width: 470px) {
  .brand {
    font-size: 1.08rem;
  }

  .mobile-cta {
    display: none;
  }

  .nav {
    min-height: 64px;
  }

  h1 {
    font-size: 2.55rem;
  }
}
