:root {
  --bg: #080908;
  --bg-soft: #101410;
  --panel: #121612;
  --panel-2: #171d18;
  --panel-3: #1d241e;
  --text: #f6f2e9;
  --muted: #acb4a8;
  --line: #2d382f;
  --brand: #d8bd75;
  --brand-2: #8fd2bd;
  --accent: #8fd2bd;
  --ink: #0b0d0b;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Heebo", "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background:
    linear-gradient(180deg, rgba(216, 189, 117, 0.08) 0%, rgba(143, 210, 189, 0.04) 32%, transparent 70%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

html[dir="rtl"] body {
  text-align: right;
}

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

.container {
  width: 100%;
  max-width: calc(var(--container) + 2.2rem);
  margin-inline: auto;
  padding-inline: 1.1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 9, 8, 0.82);
  backdrop-filter: blur(12px);
}

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

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

.brand-logo {
  display: block;
  width: clamp(148px, 15vw, 190px);
  height: auto;
  max-height: 48px;
}

.brand-icon {
  display: block;
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 0 18px rgba(4, 209, 102, 0.28));
}

.brand-text {
  color: #f8fafc;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--brand), var(--brand-2));
  color: var(--ink);
  font-size: 0.8rem;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.25rem;
  color: var(--muted);
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  padding-inline: 0.95rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 3.8rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.4rem;
  align-items: start;
}

.hero-left,
.hero-panel,
.step-card,
.deliverable-card,
.proof-card,
.faq-item,
.price-panel,
.contact-card,
.workflow-preview,
.lead-form {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 0.7rem;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 700;
}

h1,
h2,
h3 {
  line-height: 1.12;
  margin: 0 0 1rem;
}

p,
li {
  overflow-wrap: break-word;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  max-width: 16ch;
}

h2 {
  font-size: clamp(1.6rem, 2.7vw, 2.4rem);
}

.hero-copy,
.contact-copy {
  color: var(--muted);
  font-size: 1.03rem;
  max-width: 60ch;
}

.hero-cta {
  margin: 1.5rem 0 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0.8rem 1rem;
  cursor: pointer;
  font: inherit;
  font-weight: 650;
  transition: 180ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(125deg, var(--brand), var(--brand-2));
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(216, 189, 117, 0.14);
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

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

.btn-secondary:hover {
  border-color: #3b4c80;
}

.hero-bullets {
  margin: 0;
  padding-inline-start: 1rem;
  color: var(--muted);
  line-height: 1.8;
}

.hero-panel {
  border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
  border-radius: 20px;
  padding: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.metric-grid article {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  border-radius: 12px;
  padding: 0.8rem;
}

.metric-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.metric-grid strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.1rem;
}

.signal-line {
  position: relative;
  overflow: hidden;
  margin: 0.95rem 0;
  border-radius: 999px;
  height: 8px;
  background: linear-gradient(90deg, #24342d 0%, #1b241f 100%);
}

.signal-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(143, 210, 189, 0.08), rgba(216, 189, 117, 0.95), rgba(143, 210, 189, 0.08));
  filter: blur(0.2px);
  animation: glide 2.8s ease-in-out infinite;
}

.panel-note {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.proof-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.015);
}

.proof-list {
  min-height: 58px;
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.proof-list span::before {
  content: "";
  display: inline-block;
  width: 0.38rem;
  height: 0.38rem;
  margin-inline-end: 0.5rem;
  border-radius: 999px;
  background: var(--accent);
  vertical-align: middle;
}

.section {
  padding: 4.3rem 0;
  scroll-margin-top: 92px;
}

.section-muted {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.3rem;
}

.step-card,
.deliverable-card,
.faq-item,
.price-panel,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(165deg, var(--panel-2), var(--panel));
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.step-card {
  padding: 1rem;
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(216, 189, 117, 0.14);
  color: #f2d991;
  margin-bottom: 0.6rem;
}

.step-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.deliverables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-top: 1.3rem;
}

.deliverable-card {
  padding: 1rem;
}

.step-card:hover,
.deliverable-card:hover,
.faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 189, 117, 0.42);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
}

.deliverable-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.proof-assets {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.proof-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(165deg, var(--panel-2), var(--panel));
  padding: 1rem;
}

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

.proof-lines {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.45rem;
}

.proof-lines span {
  display: block;
  border: 1px solid rgba(216, 189, 117, 0.18);
  border-radius: 10px;
  padding: 0.48rem 0.6rem;
  font-size: 0.85rem;
  color: #e5ddca;
  background: rgba(255, 255, 255, 0.02);
}

.pricing-section {
  background:
    linear-gradient(135deg, rgba(216, 189, 117, 0.055), rgba(143, 210, 189, 0.025)),
    rgba(255, 255, 255, 0.012);
}

.pricing-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 1.2rem;
  align-items: center;
}

.pricing-cards {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
  align-items: stretch;
}

.package-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.package-card .price-list {
  margin-bottom: auto;
}

.premium-package {
  border-color: rgba(216, 189, 117, 0.55);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(216, 189, 117, 0.12) inset;
}

.small-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  max-width: 86ch;
}

.pricing-copy {
  max-width: 560px;
}

.pricing-assurance {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.3rem;
}

.pricing-assurance span {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #dfd7c8;
  font-size: 0.93rem;
}

.pricing-assurance span::before,
.price-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.price-panel {
  padding: 1.2rem;
}

.premium-price-panel {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.premium-price-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(216, 189, 117, 0.45);
  pointer-events: none;
}

.price-panel-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.price-tag {
  margin: 0;
  display: inline-block;
  padding: 0.25rem 0.58rem;
  border-radius: 999px;
  background: rgba(143, 210, 189, 0.14);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
}

.price-value {
  margin: 0;
  font-size: 2.65rem;
  font-weight: 900;
  letter-spacing: 0;
  color: #fff7df;
}

.price-value span {
  font-size: 1.45rem;
  vertical-align: super;
  color: var(--brand);
}

.price-subcopy {
  color: var(--muted);
  margin: 0.35rem 0 1rem;
  max-width: 58ch;
}

.package-includes {
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 14px;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.02);
}

.package-includes > p {
  margin: 0 0 0.7rem;
  color: #eee5d4;
  font-weight: 700;
}

.price-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  display: grid;
  gap: 0.58rem;
}

.price-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  line-height: 1.5;
}

.price-list li::before {
  margin-top: 0.48rem;
}

.price-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
}

.price-footer strong,
.price-footer span {
  display: block;
}

.price-footer strong {
  margin-bottom: 0.2rem;
}

.price-footer span {
  color: var(--muted);
  font-size: 0.9rem;
}

.full {
  width: 100%;
}

.faq-list {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.faq-item {
  padding: 1rem;
}

.faq-item p {
  color: var(--muted);
  margin-bottom: 0;
}

.quote-meta {
  margin-top: 0.8rem;
  color: #c2cfef;
  font-size: 0.85rem;
}

.contact-section {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  align-items: start;
}

.contact-card,
.workflow-preview {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(165deg, var(--panel-2), var(--panel));
  padding: 1.15rem;
}

.contact-card {
  min-height: 100%;
}

.direct-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.1rem 0 1.25rem;
}

.direct-contact a {
  border: 1px solid rgba(88, 110, 140, 0.44);
  border-radius: 999px;
  padding: 0.58rem 0.82rem;
  background: rgba(15, 23, 42, 0.72);
  color: #c7d2e3;
  font-size: 0.92rem;
  font-weight: 800;
}

.direct-contact a:hover {
  border-color: rgba(4, 209, 102, 0.42);
  color: #f8fafc;
}

.workflow-preview {
  background:
    linear-gradient(145deg, rgba(143, 210, 189, 0.08), rgba(216, 189, 117, 0.045)),
    var(--panel);
}

.workflow-preview-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.workflow-preview-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.75rem;
  row-gap: 0.22rem;
  align-items: start;
}

.workflow-preview-list li span {
  grid-row: span 2;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: rgba(216, 189, 117, 0.14);
  color: #f2d991;
  font-size: 0.78rem;
  font-weight: 800;
}

.workflow-preview-list strong {
  color: var(--text);
}

.workflow-preview-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

body.modal-open {
  overflow: hidden;
}

.workflow-modal[hidden] {
  display: none;
}

.workflow-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.workflow-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.workflow-dialog {
  position: relative;
  width: min(100%, 980px);
  max-height: min(92vh, 820px);
  overflow: auto;
  border: 1px solid rgba(216, 189, 117, 0.25);
  border-radius: 22px;
  background:
    linear-gradient(150deg, rgba(216, 189, 117, 0.08), rgba(143, 210, 189, 0.045)),
    var(--bg-soft);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.48);
}

.workflow-dialog-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 1rem;
  padding: 1rem;
}

.workflow-close {
  position: sticky;
  top: 0.8rem;
  float: right;
  z-index: 2;
  margin: 0.8rem 0.8rem 0 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 9, 8, 0.86);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  padding: 0.48rem 0.72rem;
  cursor: pointer;
}

html[dir="rtl"] .workflow-close {
  float: left;
  margin: 0.8rem 0 0 0.8rem;
}

.workflow-summary {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 1rem;
  background:
    linear-gradient(165deg, rgba(216, 189, 117, 0.09), rgba(143, 210, 189, 0.04)),
    var(--panel);
}

.workflow-summary p {
  color: var(--muted);
  line-height: 1.6;
}

.workflow-price {
  margin: 0.65rem 0;
  color: #fff7df;
  font-size: 2.35rem;
  font-weight: 900;
}

.summary-rows {
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
}

.summary-rows span {
  border: 1px solid rgba(216, 189, 117, 0.16);
  border-radius: 11px;
  padding: 0.58rem 0.65rem;
  color: #e5ddca;
  background: rgba(255, 255, 255, 0.02);
}

.lead-form {
  padding: 1rem;
}

.purchase-flow {
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(18, 22, 18, 0.98), rgba(15, 18, 15, 0.98));
}

.workflow-progress {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.workflow-progress span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.38rem 0.62rem;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 700;
}

.workflow-progress .is-active {
  border-color: rgba(216, 189, 117, 0.46);
  color: #f2d991;
  background: rgba(216, 189, 117, 0.11);
}

.flow-description {
  color: var(--muted);
  margin-top: -0.35rem;
  max-width: 64ch;
}

.flow-group {
  border: 0;
  padding: 0;
  margin: 1rem 0 0;
}

.flow-group legend {
  margin-bottom: 0.7rem;
  color: #eee5d4;
  font-weight: 800;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.lead-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  margin-top: 0.38rem;
  width: 100%;
  border: 1px solid #334033;
  border-radius: 11px;
  background: #0c100d;
  color: var(--text);
  padding: 0.68rem 0.74rem;
  font: inherit;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 2px solid rgba(143, 210, 189, 0.24);
  border-color: rgba(143, 210, 189, 0.8);
}

.workflow-confirm {
  margin: 0.8rem 0 0.85rem;
  border: 1px solid rgba(143, 210, 189, 0.18);
  border-radius: 14px;
  padding: 0.8rem;
  background: rgba(143, 210, 189, 0.055);
}

.workflow-confirm p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.form-message {
  min-height: 1.15rem;
  margin: 0.65rem 0 0;
  color: var(--accent);
  font-size: 0.88rem;
}

.hebrew-site .btn,
.hebrew-site input,
.hebrew-site select,
.hebrew-site textarea {
  letter-spacing: 0;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.2rem 0 2rem;
}

.footer-content {
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.disclaimer {
  max-width: 66ch;
}

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.99);
  transition: opacity 540ms ease, transform 540ms ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.article-meta {
  margin: 0.35rem 0 0;
  color: #b8c7e8;
  font-size: 0.85rem;
}

@keyframes glide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(360%);
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .contact-shell,
  .pricing-layout,
  .workflow-dialog-grid {
    grid-template-columns: 1fr;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .proof-assets {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .hero {
    padding-top: 4.4rem;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .metric-grid,
  .steps,
  .deliverables,
  .faq-list,
  .proof-assets,
  .field-grid,
  .price-footer {
    grid-template-columns: 1fr;
  }

  .price-panel-top {
    flex-direction: column;
  }

  .workflow-dialog {
    max-height: 94vh;
    border-radius: 18px;
  }

  .workflow-dialog-grid {
    padding: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .signal-line::before {
    animation: none;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Premium conversion pass */
:root {
  --bg: #050706;
  --bg-soft: #0d120f;
  --panel: #101611;
  --panel-2: #151d17;
  --text: #fff8eb;
  --muted: #b7c0b0;
  --line: #2e3a31;
  --brand: #f3cb72;
  --brand-2: #93e0c8;
  --accent: #93e0c8;
  --danger: #ffb27d;
}

body {
  background:
    radial-gradient(900px 520px at 82% -8%, rgba(243, 203, 114, 0.18), transparent 58%),
    radial-gradient(760px 500px at 8% 12%, rgba(147, 224, 200, 0.12), transparent 56%),
    linear-gradient(180deg, rgba(243, 203, 114, 0.06) 0%, rgba(147, 224, 200, 0.035) 36%, transparent 72%),
    var(--bg);
}

.site-header {
  background: rgba(5, 7, 6, 0.76);
  backdrop-filter: blur(18px);
}

.brand-mark {
  box-shadow: 0 0 28px rgba(243, 203, 114, 0.22);
}

.hero {
  padding: 5.6rem 0 4.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent),
    linear-gradient(120deg, rgba(243, 203, 114, 0.06), rgba(147, 224, 200, 0.025));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 78%);
}

.hero-ambient {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.55;
}

.hero-ambient-one {
  width: 340px;
  height: 340px;
  right: -90px;
  top: 90px;
  background: radial-gradient(circle, rgba(243, 203, 114, 0.26), transparent 68%);
  animation: drift 8s ease-in-out infinite;
}

.hero-ambient-two {
  width: 280px;
  height: 280px;
  left: 6%;
  bottom: -80px;
  background: radial-gradient(circle, rgba(147, 224, 200, 0.18), transparent 70%);
  animation: drift 10s ease-in-out infinite reverse;
}

.hero-grid {
  position: relative;
  z-index: 1;
  gap: 1.8rem;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.hero-trust-row span {
  border: 1px solid rgba(243, 203, 114, 0.18);
  border-radius: 999px;
  padding: 0.34rem 0.62rem;
  color: #e9dfc8;
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.035);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4.55rem);
  max-width: 13ch;
  text-wrap: balance;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
}

.hero-copy,
.contact-copy {
  font-size: 1.1rem;
  line-height: 1.75;
}

.btn {
  border-radius: 14px;
  padding: 0.86rem 1.08rem;
  transition: transform 180ms ease, filter 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.btn-primary {
  box-shadow: 0 12px 32px rgba(243, 203, 114, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.16) inset;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(243, 203, 114, 0.26), 0 0 0 1px rgba(255, 255, 255, 0.18) inset;
}

.btn-secondary:hover {
  border-color: rgba(147, 224, 200, 0.55);
  transform: translateY(-2px);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border-color: rgba(243, 203, 114, 0.22);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), transparent 28%),
    linear-gradient(165deg, var(--panel-2), var(--panel));
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 255, 255, 0.035) inset;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, rgba(243, 203, 114, 0.16) 42%, transparent 62%);
  transform: translateX(70%);
  animation: sheen 5.5s ease-in-out infinite;
}

.panel-status {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  align-items: center;
  margin-bottom: 0.8rem;
}

.panel-status span {
  color: var(--danger);
  font-size: 0.82rem;
  font-weight: 800;
}

.launch-console {
  position: relative;
  margin: 1rem 0;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 18px;
  padding: 0.9rem;
  background:
    radial-gradient(circle at 82% 10%, rgba(147, 224, 200, 0.16), transparent 32%),
    rgba(255, 255, 255, 0.035);
}

.console-top {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: #eee4cf;
  font-size: 0.84rem;
}

.console-top span {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: rgba(147, 224, 200, 0.6);
}

.console-top strong {
  margin-inline-start: auto;
}

.console-meter {
  overflow: hidden;
  height: 0.68rem;
  margin: 1rem 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
}

.console-meter div {
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-2), var(--brand), #ffe2a0);
  animation: meterPulse 2.7s ease-in-out infinite;
}

.console-rows {
  display: grid;
  gap: 0.5rem;
}

.console-rows span {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 12px;
  padding: 0.52rem 0.62rem;
  background: rgba(0, 0, 0, 0.14);
}

.console-rows b {
  color: var(--text);
}

.tester-orbit {
  position: absolute;
  left: 0.9rem;
  top: 0.9rem;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(243, 203, 114, 0.2);
  border-radius: 999px;
  animation: spin 14s linear infinite;
}

.tester-orbit i {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--brand-2);
  box-shadow: 0 0 18px rgba(147, 224, 200, 0.55);
}

.tester-orbit i:nth-child(1) { top: -4px; left: 39px; }
.tester-orbit i:nth-child(2) { top: 15px; right: 4px; }
.tester-orbit i:nth-child(3) { bottom: 12px; right: 8px; }
.tester-orbit i:nth-child(4) { bottom: -3px; left: 38px; }
.tester-orbit i:nth-child(5) { bottom: 14px; left: 6px; }
.tester-orbit i:nth-child(6) { top: 14px; left: 6px; }

.metric-grid article {
  border-radius: 14px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.metric-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(147, 224, 200, 0.38);
}

.proof-strip {
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(10px);
}

.premium-strip {
  padding: 3.4rem 0;
  background:
    linear-gradient(90deg, rgba(147, 224, 200, 0.055), transparent 38%, rgba(243, 203, 114, 0.055)),
    rgba(255, 255, 255, 0.012);
}

.premium-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1rem;
  align-items: center;
}

.premium-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.premium-proof article {
  min-width: 0;
  border: 1px solid rgba(243, 203, 114, 0.16);
  border-radius: 18px;
  padding: 1rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), transparent),
    rgba(255, 255, 255, 0.025);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
}

.premium-proof strong {
  display: block;
  margin-bottom: 0.45rem;
}

.premium-proof p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.step-card,
.deliverable-card,
.faq-item,
.price-panel,
.lead-form {
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.step-card:hover,
.deliverable-card:hover,
.faq-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.34);
}

.pricing-section {
  background:
    radial-gradient(850px 360px at 72% 12%, rgba(243, 203, 114, 0.11), transparent 62%),
    linear-gradient(135deg, rgba(216, 189, 117, 0.055), rgba(143, 210, 189, 0.025)),
    rgba(255, 255, 255, 0.012);
}

.package-card {
  position: relative;
  overflow: hidden;
}

.package-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.055), transparent);
  transform: translateX(90%);
  transition: transform 520ms ease;
}

.package-card:hover {
  transform: translateY(-8px);
  border-color: rgba(147, 224, 200, 0.34);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.36);
}

.package-card:hover::after {
  transform: translateX(-90%);
}

.premium-package {
  background:
    radial-gradient(circle at 84% 12%, rgba(243, 203, 114, 0.13), transparent 38%),
    linear-gradient(165deg, #1d261c, #111611);
  box-shadow: 0 32px 78px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(216, 189, 117, 0.12) inset;
}

.workflow-dialog {
  border-radius: 24px;
  box-shadow: 0 40px 130px rgba(0, 0, 0, 0.58);
  animation: modalRise 260ms ease both;
}

.reveal {
  transform: translateY(30px) scale(0.985);
  transition: opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes drift {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(22px, -18px, 0) scale(1.08);
  }
}

@keyframes sheen {
  0%, 58%, 100% {
    transform: translateX(78%);
  }
  72% {
    transform: translateX(-82%);
  }
}

@keyframes meterPulse {
  0%, 100% {
    width: 72%;
    filter: brightness(1);
  }
  50% {
    width: 84%;
    filter: brightness(1.14);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes modalRise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1024px) {
  .premium-grid,
  .premium-proof {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  h1 {
    max-width: 100%;
  }

  .panel-status {
    align-items: flex-start;
    flex-direction: column;
  }

  .tester-orbit {
    opacity: 0.38;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-ambient,
  .hero-panel::before,
  .package-card::after,
  .tester-orbit,
  .console-meter div,
  .workflow-dialog {
    animation: none;
  }
}

/* Wow redesign pass */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(520px 360px at var(--spotlight-x, 50%) var(--spotlight-y, 18%), rgba(147, 224, 200, 0.1), transparent 62%),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: auto, 100% 4px;
  opacity: 0.9;
}

.top-alert {
  position: relative;
  z-index: 30;
  border-bottom: 1px solid rgba(243, 203, 114, 0.16);
  background:
    linear-gradient(90deg, rgba(147, 224, 200, 0.12), rgba(243, 203, 114, 0.12)),
    rgba(5, 7, 6, 0.92);
  color: #fff7df;
}

.top-alert-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  font-size: 0.9rem;
}

.top-alert span {
  color: var(--accent);
  font-weight: 900;
}

.top-alert a {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.26rem 0.58rem;
  background: rgba(255, 255, 255, 0.055);
  font-weight: 800;
}

.site-header {
  top: 0;
}

.aurora-text {
  display: inline;
  background: linear-gradient(100deg, #fff8eb 0%, var(--brand) 32%, var(--brand-2) 68%, #fff8eb 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: aurora 4.6s ease-in-out infinite;
}

.hero-mini-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 1.15rem 0 1.25rem;
  max-width: 620px;
}

.hero-mini-proof article {
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 18px;
  padding: 0.85rem;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.065), transparent),
    rgba(255, 255, 255, 0.025);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.hero-mini-proof strong {
  display: block;
  color: #fff4d8;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1;
}

.hero-mini-proof span {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.wow-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(700px 340px at 18% 18%, rgba(255, 178, 125, 0.1), transparent 62%),
    rgba(255, 255, 255, 0.01);
}

.wow-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 1rem;
  align-items: center;
}

.wow-copy h2 {
  max-width: 16ch;
}

.risk-stack {
  display: grid;
  gap: 0.85rem;
}

.risk-stack article {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.85rem;
  row-gap: 0.22rem;
  align-items: start;
  border: 1px solid rgba(255, 178, 125, 0.18);
  border-radius: 20px;
  padding: 1rem;
  background:
    linear-gradient(120deg, rgba(255, 178, 125, 0.08), transparent),
    rgba(255, 255, 255, 0.028);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24);
  transform: translateZ(0);
}

.risk-stack article::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transform: translateX(86%);
  transition: transform 520ms ease;
}

.risk-stack article:hover::after {
  transform: translateX(-86%);
}

.risk-stack span {
  grid-row: span 2;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #171009;
  background: linear-gradient(135deg, var(--danger), var(--brand));
  font-weight: 900;
}

.risk-stack strong {
  color: var(--text);
  font-size: 1.08rem;
}

.risk-stack p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.recommended-ribbon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  border: 1px solid rgba(243, 203, 114, 0.34);
  border-radius: 999px;
  padding: 0.3rem 0.62rem;
  color: #15100a;
  background: linear-gradient(135deg, var(--brand), #ffe2a0);
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(243, 203, 114, 0.18);
}

.premium-package {
  padding-top: 3rem;
}

.contact-card,
.workflow-preview {
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.25);
}

.mobile-order-dock {
  position: fixed;
  right: 0.9rem;
  left: 0.9rem;
  bottom: 0.8rem;
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  border: 1px solid rgba(243, 203, 114, 0.22);
  border-radius: 20px;
  padding: 0.72rem;
  background:
    linear-gradient(135deg, rgba(243, 203, 114, 0.13), rgba(147, 224, 200, 0.08)),
    rgba(6, 9, 7, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}

.mobile-order-dock span,
.mobile-order-dock strong {
  display: block;
}

.mobile-order-dock span {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
}

.mobile-order-dock strong {
  color: var(--text);
  font-size: 0.95rem;
}

.mobile-order-dock .btn {
  min-width: 82px;
  padding-block: 0.72rem;
}

.mobile-whatsapp {
  display: none;
}

.checkout-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(820px 420px at 72% 12%, rgba(147, 224, 200, 0.12), transparent 62%),
    linear-gradient(135deg, rgba(243, 203, 114, 0.055), rgba(147, 224, 200, 0.05));
}

.checkout-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 1rem;
  align-items: start;
}

.checkout-copy h2 {
  max-width: 18ch;
}

.checkout-selected {
  display: inline-grid;
  gap: 0.24rem;
  margin-top: 1.2rem;
  border: 1px solid rgba(243, 203, 114, 0.22);
  border-radius: 18px;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.035);
}

.checkout-selected span {
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
}

.checkout-selected strong {
  color: var(--text);
}

.checkout-panel {
  border: 1px solid rgba(243, 203, 114, 0.22);
  border-radius: 26px;
  padding: 1rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.075), transparent 28%),
    rgba(13, 18, 15, 0.9);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.payment-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-bottom: 0.95rem;
}

.payment-option {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 0.82rem;
  cursor: pointer;
  text-align: right;
  color: var(--text);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.045), transparent),
    rgba(255, 255, 255, 0.025);
  font: inherit;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.payment-option:hover,
.payment-option.is-active {
  transform: translateY(-3px);
  border-color: rgba(147, 224, 200, 0.46);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
}

.payment-option span,
.payment-option strong {
  display: block;
}

.payment-option span {
  color: #fff4d8;
  font-size: 1.4rem;
  font-weight: 900;
}

.payment-option strong {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.quick-checkout {
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 20px;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.16);
}

.quick-checkout label {
  display: block;
  margin-bottom: 0.72rem;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
}

.quick-checkout input {
  margin-top: 0.38rem;
  width: 100%;
  border: 1px solid #334033;
  border-radius: 12px;
  background: #0c100d;
  color: var(--text);
  padding: 0.72rem 0.76rem;
  font: inherit;
}

.quick-checkout input:focus {
  outline: 2px solid rgba(147, 224, 200, 0.24);
  border-color: rgba(147, 224, 200, 0.8);
}

.payment-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.8rem 0 0.9rem;
}

.payment-assurance span {
  border: 1px solid rgba(147, 224, 200, 0.16);
  border-radius: 999px;
  padding: 0.36rem 0.6rem;
  color: var(--muted);
  background: rgba(147, 224, 200, 0.045);
  font-size: 0.82rem;
  font-weight: 700;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 75;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(147, 224, 200, 0.28);
  border-radius: 999px;
  padding: 0.72rem 0.9rem;
  color: #06100c;
  background: linear-gradient(135deg, #45e38a, #b9ffd8);
  box-shadow: 0 18px 46px rgba(69, 227, 138, 0.25);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(69, 227, 138, 0.34);
}

.whatsapp-float span,
.whatsapp-float strong {
  display: block;
}

.whatsapp-float span {
  font-size: 0.78rem;
  font-weight: 900;
  opacity: 0.78;
}

.whatsapp-float strong {
  font-size: 0.95rem;
}


@keyframes aurora {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@media (max-width: 1024px) {
  .wow-layout {
    grid-template-columns: 1fr;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 6rem;
  }

  .top-alert-inner {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
    padding-block: 0.35rem;
  }

  .hero {
    padding-top: 3.4rem;
  }

  .hero-trust-row {
    gap: 0.42rem;
  }

  .hero-trust-row span {
    font-size: 0.76rem;
    padding: 0.28rem 0.5rem;
  }

  .hero-mini-proof {
    grid-template-columns: 1fr;
  }

  .hero-mini-proof article {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .wow-copy h2 {
    max-width: 100%;
  }

  .risk-stack article {
    grid-template-columns: 1fr;
  }

  .risk-stack span {
    grid-row: auto;
  }

  .mobile-order-dock {
    display: flex;
    right: auto;
    left: 0.9rem;
    width: calc(100vw - 1.8rem);
    direction: ltr;
    gap: 0.42rem;
    justify-content: initial;
    overflow: hidden;
  }

  .mobile-order-dock > * {
    direction: rtl;
  }

  .mobile-order-dock > div {
    order: 2;
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
  }

  .mobile-order-dock .btn {
    order: 1;
    min-width: 58px;
  }

  .payment-tabs {
    grid-template-columns: 1fr;
  }

  .checkout-copy h2 {
    max-width: 100%;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 5.65rem;
    padding: 0.66rem 0.78rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  .aurora-text {
    animation: none;
  }
}

/* Mobile RTL fit fixes */
@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    padding-bottom: 6rem;
  }

  .container {
    max-width: 100%;
    padding-inline: 1rem;
  }

  .top-alert-inner {
    justify-content: center;
    overflow: hidden;
    white-space: normal;
    flex-wrap: wrap;
    row-gap: 0.32rem;
    padding-block: 0.35rem;
    text-align: center;
  }

  .top-alert a {
    display: none;
  }

  .nav {
    justify-content: center;
    min-height: 76px;
  }

  .brand {
    max-width: 100%;
  }

  .brand-text {
    font-size: 1rem;
  }

  .hero {
    padding-top: 2.8rem;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
  }

  .hero-left,
  .hero-panel {
    width: 100%;
  }

  .hero-trust-row {
    justify-content: center;
    gap: 0.42rem;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 14vw, 3.45rem);
    text-align: center;
  }

  .eyebrow,
  .hero-copy {
    text-align: center;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.68;
  }

  .hero-cta {
    margin-top: 1.2rem;
  }

  .hero-bullets {
    padding-inline-start: 0;
    list-style-position: inside;
    text-align: center;
  }

  .hero-panel {
    border-radius: 22px;
    padding: 0.9rem;
  }

  .panel-status {
    align-items: flex-start;
    flex-direction: column;
  }

  .launch-console {
    overflow: hidden;
  }

  .console-rows span,
  .metric-grid article {
    min-width: 0;
  }

  .metric-grid strong {
    font-size: 1rem;
  }

  .tester-orbit {
    opacity: 0.28;
  }

  .proof-list {
    justify-content: flex-start;
  }

  .price-value {
    font-size: 2.25rem;
  }
}

/* Refined motion pass */
:root {
  --ease-premium-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-premium-soft: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hero-ambient {
  will-change: transform, opacity;
}

.hero-ambient-one {
  animation: driftPremium 14s var(--ease-premium-soft) infinite;
  opacity: 0.72;
}

.hero-ambient-two {
  animation: driftPremiumAlt 18s var(--ease-premium-soft) infinite;
  opacity: 0.56;
}

.hero-panel,
.checkout-panel,
.price-panel,
.step-card,
.deliverable-card,
.risk-stack article,
.payment-option,
.whatsapp-float {
  transition-timing-function: var(--ease-premium-out);
}

.hero-panel::before {
  animation-duration: 9s;
  animation-timing-function: var(--ease-premium-soft);
  opacity: 0.56;
}

.package-card::after,
.risk-stack article::after {
  transition: transform 760ms var(--ease-premium-out);
}

.reveal {
  transform: translateY(18px) scale(0.992);
  transition:
    opacity 820ms var(--ease-premium-out) var(--reveal-delay, 0ms),
    transform 820ms var(--ease-premium-out) var(--reveal-delay, 0ms);
}

.aurora-text {
  animation-duration: 7.2s;
  animation-timing-function: var(--ease-premium-soft);
  background-size: 180% 180%;
}

.console-meter div {
  animation: meterBreath 4.8s var(--ease-premium-soft) infinite;
}

.tester-orbit {
  animation-duration: 26s;
  opacity: 0.58;
}

.payment-option {
  transform-origin: center;
}

.payment-option.is-active {
  transform: translateY(-2px);
}

@keyframes driftPremium {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(10px, -8px, 0) scale(1.035);
  }
}

@keyframes driftPremiumAlt {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-8px, 10px, 0) scale(1.03);
  }
}

@keyframes meterBreath {
  0%,
  100% {
    width: 76%;
    filter: saturate(1);
  }
  50% {
    width: 84%;
    filter: saturate(1.14);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition-delay: 0ms;
  }
}

@media (max-width: 760px) {
  .hero-left {
    min-width: 0;
    overflow: visible;
  }

  .hero-left h1 {
    width: 100%;
    max-width: 11ch;
    margin-inline: auto;
    font-size: clamp(2.35rem, 11vw, 2.85rem);
    line-height: 1.08;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .hero-left > .hero-copy {
    width: min(100%, 32ch);
    margin-inline: auto;
    text-align: center;
  }

  .metric-grid article {
    overflow: hidden;
  }

  .hero-mini-proof article {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    text-align: center;
    row-gap: 0.24rem;
    overflow: visible;
  }

  .hero-mini-proof strong {
    direction: ltr;
    unicode-bidi: isolate;
    white-space: nowrap;
  }

  .hero-mini-proof span {
    min-width: 0;
  }

  .whatsapp-float {
    display: none;
  }

  .mobile-whatsapp {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    height: 46px;
    border-radius: 999px;
    color: #06100c;
    background: linear-gradient(135deg, #45e38a, #b9ffd8);
    box-shadow: 0 14px 34px rgba(69, 227, 138, 0.24);
    font-size: 0.78rem;
    font-weight: 900;
    visibility: visible;
    opacity: 1;
  }

  .mobile-order-dock {
    display: grid;
    left: 16px !important;
    right: auto !important;
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px);
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    padding-inline-end: 66px;
  }

  .mobile-order-dock .btn {
    grid-column: 1;
    width: 100%;
    min-width: 0;
  }

  .mobile-order-dock > div {
    grid-column: 2;
  }

  .mobile-whatsapp {
    position: fixed;
    left: calc(100vw - 74px) !important;
    right: auto !important;
    bottom: 1.45rem !important;
    z-index: 100;
  }
}

@media (max-width: 420px) {
  .hero-left h1 {
    max-width: 10ch;
    font-size: clamp(2.12rem, 10.6vw, 2.56rem);
  }
}

/* 12testers.io-inspired Hebrew hero */
.hebrew-site .hero {
  min-height: calc(100vh - 116px);
  padding: clamp(4.4rem, 7vw, 7.2rem) 0 clamp(3rem, 5vw, 5.6rem);
  background:
    radial-gradient(circle at 18% 18%, rgba(4, 209, 102, 0.11), transparent 32%),
    linear-gradient(180deg, #020712 0%, #06101c 58%, #040910 100%);
}

.hebrew-site .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.48;
  background-image: radial-gradient(circle, rgba(143, 164, 190, 0.28) 1px, transparent 1.3px);
  background-size: 28px 28px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
}

.infinite-grid-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.36) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.36) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: infiniteGridDrift 18s linear infinite;
}

.infinite-grid-muted {
  z-index: 0;
  opacity: 0.035;
}

.infinite-grid-active {
  z-index: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(4, 209, 102, 0.62) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4, 209, 102, 0.62) 1px, transparent 1px);
  mask-image: radial-gradient(320px circle at var(--hero-grid-x, 50%) var(--hero-grid-y, 42%), #000, transparent 72%);
  -webkit-mask-image: radial-gradient(320px circle at var(--hero-grid-x, 50%) var(--hero-grid-y, 42%), #000, transparent 72%);
}

.infinite-grid-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.infinite-grid-glow span {
  position: absolute;
  display: block;
  border-radius: 999px;
  filter: blur(110px);
  opacity: 0.28;
}

.infinite-grid-glow span:nth-child(1) {
  width: 34%;
  height: 34%;
  top: -18%;
  right: -10%;
  background: #04d166;
}

.infinite-grid-glow span:nth-child(2) {
  width: 28%;
  height: 28%;
  top: 18%;
  left: -12%;
  background: #2563eb;
}

.infinite-grid-glow span:nth-child(3) {
  width: 22%;
  height: 22%;
  right: 38%;
  bottom: -16%;
  background: #f97316;
  opacity: 0.18;
}

.hero-sparkles {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.42;
  mix-blend-mode: screen;
  mask-image: radial-gradient(74% 58% at 50% 34%, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.48) 46%, transparent 100%);
  -webkit-mask-image: radial-gradient(74% 58% at 50% 34%, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.48) 46%, transparent 100%);
}

@keyframes infiniteGridDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 40px 40px, 40px 40px;
  }
}

.hebrew-site .hero-ambient {
  display: none;
}

.hebrew-site .hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: clamp(1.6rem, 4vw, 4rem);
  align-items: start;
}

.hebrew-site .hero-left {
  padding-block: 1rem;
}

.hebrew-site .hero-left h1 {
  max-width: 11ch;
  margin-bottom: 1.35rem;
  font-size: clamp(3.25rem, 6.25vw, 5.6rem);
  line-height: 1.02;
  font-weight: 900;
  color: #ffffff;
}

.hebrew-site .aurora-text {
  color: #04d166;
  background: none;
  -webkit-text-fill-color: currentColor;
}

.hebrew-site .eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 1.55rem;
  border: 1px solid rgba(4, 209, 102, 0.15);
  border-radius: 999px;
  padding: 0.58rem 1rem;
  background: rgba(4, 209, 102, 0.1);
  color: #04e374;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.hebrew-site .eyebrow::before {
  content: "";
  width: 0.72rem;
  height: 0.72rem;
  margin-inline-end: 0.55rem;
  border-radius: 999px;
  background: #04d166;
  box-shadow: 0 0 18px rgba(4, 209, 102, 0.7);
}

.hebrew-site .hero-copy {
  max-width: 31ch;
  color: #a8b3c6;
  font-size: clamp(1.22rem, 1.8vw, 1.55rem);
  line-height: 1.7;
}

.hebrew-site .hero-cta {
  margin: 1.8rem 0 1.5rem;
}

.hebrew-site .hero-cta .btn {
  min-height: 3.15rem;
  border-radius: 14px;
  padding-inline: 1.35rem;
}

.hebrew-site .btn-primary {
  background: #f8fafc;
  color: #07111f;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.hebrew-site .btn-primary:hover {
  background: #ffffff;
}

.hebrew-site .btn-secondary {
  border-color: rgba(148, 163, 184, 0.26);
  background: rgba(15, 23, 42, 0.72);
  color: #f8fafc;
}

.hebrew-site .hero-mini-proof {
  max-width: 620px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 2.4rem;
}

.hebrew-site .hero-mini-proof article {
  min-height: 92px;
  border-color: rgba(88, 110, 140, 0.48);
  border-radius: 18px;
  background: rgba(15, 25, 42, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.hebrew-site .hero-mini-proof strong {
  color: #ffffff;
  font-size: clamp(1.55rem, 2.3vw, 2.1rem);
}

.hebrew-site .hero-mini-proof span,
.hebrew-site .hero-bullets {
  color: #8b98ad;
}

.hebrew-site .hero-bullets {
  max-width: 56ch;
  padding-inline-start: 1.2rem;
  font-size: 1.03rem;
}

.hebrew-site .hero-panel.hero-intake-card {
  position: relative;
  overflow: hidden;
  opacity: 1;
  transform: none;
  animation: none;
  margin-top: clamp(2.8rem, 5vw, 4.8rem);
  border: 1px solid rgba(76, 93, 122, 0.58);
  border-radius: 30px;
  padding: clamp(1.1rem, 2.5vw, 2rem);
  background: rgba(16, 25, 42, 0.94);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hebrew-site .hero-panel.hero-intake-card::before {
  display: none;
}

.intake-head {
  text-align: center;
  margin-bottom: 1.3rem;
}

.intake-head p {
  margin: 0 0 0.35rem;
  color: #04d166;
  font-weight: 800;
}

.intake-head h2 {
  margin-bottom: 0.48rem;
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.intake-head span {
  display: block;
  margin-inline: auto;
  max-width: 36ch;
  color: #a8b3c6;
  line-height: 1.55;
}

.mock-field {
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 14px;
  padding: 0.92rem 1rem;
  background: rgba(2, 6, 12, 0.82);
}

.mock-field span {
  display: block;
  margin-bottom: 0.36rem;
  color: #dbe4f0;
  font-size: 0.88rem;
  font-weight: 700;
}

.mock-field strong {
  display: block;
  direction: ltr;
  text-align: left;
  color: #aab4c4;
  font-size: 1.02rem;
  font-weight: 600;
  unicode-bidi: isolate;
}

.mock-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 0.85rem;
}

.mock-field-grid .mock-field strong {
  direction: rtl;
  text-align: right;
}

.plan-picker {
  margin-top: 1.25rem;
}

.plan-picker > p {
  margin: 0 0 0.65rem;
  color: #ffffff;
  font-weight: 800;
}

.plan-row {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 16px;
  margin-bottom: 0.78rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(15, 23, 42, 0.84);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  text-align: right;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.hebrew-site .hero .hero-intake-card.reveal {
  opacity: 1;
  transform: none;
}

.plan-row:hover,
.plan-row.is-selected {
  transform: translateY(-1px);
  border-color: #04d166;
  background: rgba(4, 209, 102, 0.1);
}

.plan-row span {
  display: grid;
  gap: 0.22rem;
}

.plan-row strong {
  font-size: 1.05rem;
}

.plan-row small {
  color: #8d9aaf;
  font-size: 0.92rem;
}

.plan-row b {
  color: #ffffff;
  font-size: 1.25rem;
  white-space: nowrap;
}

.hero-start-btn {
  min-height: 3.4rem;
  margin-top: 0.45rem;
  font-size: 1.08rem;
}

@media (max-width: 950px) {
  .hebrew-site .hero {
    min-height: auto;
  }

  .hebrew-site .hero-grid {
    grid-template-columns: 1fr;
  }

  .hebrew-site .hero-panel.hero-intake-card {
    margin-top: 0;
  }

  .hebrew-site .hero-left {
    text-align: center;
  }

  .hebrew-site .eyebrow,
  .hebrew-site .hero-copy,
  .hebrew-site .hero-mini-proof,
  .hebrew-site .hero-bullets {
    margin-inline: auto;
  }

  .hebrew-site .hero-left h1 {
    max-width: 11ch;
    margin-inline: auto;
    font-size: clamp(2.75rem, 10vw, 4.45rem);
  }

  .hebrew-site .hero-copy {
    max-width: 34ch;
  }

  .hebrew-site .hero-cta {
    justify-content: center;
  }

  .hebrew-site .hero-bullets {
    max-width: 42ch;
    text-align: right;
  }
}

@media (max-width: 640px) {
  .hebrew-site .hero {
    padding-top: 2.8rem;
  }

  .hebrew-site .hero-left h1 {
    max-width: 10.5ch;
    font-size: clamp(2.45rem, 12vw, 3.2rem);
  }

  .hebrew-site .hero-copy {
    font-size: 1.05rem;
  }

  .hebrew-site .hero-mini-proof,
  .mock-field-grid {
    grid-template-columns: 1fr;
  }

  .hebrew-site .hero-panel.hero-intake-card {
    border-radius: 22px;
  }

  .plan-row {
    align-items: flex-start;
  }
}

/* Hero variant without side card */
.hebrew-site .hero-grid {
  grid-template-columns: 1fr;
  max-width: 980px;
  margin-inline: auto;
}

.hebrew-site .hero-left {
  width: 100%;
  text-align: center;
}

.hebrew-site .hero-trust-row,
.hebrew-site .eyebrow,
.hebrew-site .hero-copy,
.hebrew-site .hero-cta,
.hebrew-site .hero-mini-proof,
.hebrew-site .hero-bullets {
  margin-inline: auto;
}

.hebrew-site .hero-left h1 {
  max-width: 13.5ch;
  margin-inline: auto;
  font-size: clamp(3.4rem, 7vw, 6.6rem);
}

.hebrew-site .hero-copy {
  max-width: 48ch;
}

.hebrew-site .hero-cta {
  justify-content: center;
}

.hebrew-site .hero-mini-proof {
  max-width: 760px;
}

.hebrew-site .hero-bullets {
  max-width: 68ch;
  padding-inline-start: 0;
  list-style-position: inside;
  text-align: center;
}

@media (max-width: 640px) {
  .hebrew-site .hero-left h1 {
    max-width: 10ch;
    font-size: clamp(2.42rem, 11vw, 3.08rem);
  }

  .hebrew-site .hero-copy {
    max-width: 32ch;
  }

  .hero-sparkles {
    opacity: 0.32;
  }
}

/* Hand-written hero title accent */
.handwritten-title-frame {
  position: relative;
  width: min(100%, 980px);
  margin-inline: auto;
  padding: clamp(0.8rem, 1.8vw, 1.35rem) clamp(0.7rem, 2vw, 1.4rem) clamp(1.8rem, 3vw, 2.6rem);
}

.handwritten-title-frame h1 {
  position: relative;
  z-index: 1;
  margin-inline: auto;
}

.handwritten-outline {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 0;
  width: min(86%, 820px);
  height: 116px;
  transform: translateX(-50%);
  overflow: visible;
  color: rgba(4, 209, 102, 0.58);
  pointer-events: none;
  filter: drop-shadow(0 0 22px rgba(4, 209, 102, 0.12));
}

.handwritten-outline path {
  fill: none;
  stroke: currentColor;
  stroke-width: 12;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1100;
  stroke-dashoffset: 1100;
  animation: drawHandwrittenFrame 1.8s cubic-bezier(0.43, 0.13, 0.23, 0.96) 0.28s forwards;
}

@keyframes drawHandwrittenFrame {
  to {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 640px) {
  .handwritten-title-frame {
    padding: 0.7rem 0.2rem 1.65rem;
  }

  .handwritten-outline {
    width: 78%;
    height: 72px;
    opacity: 0.76;
  }
}

/* Site-wide alignment to the new hero system */
:root {
  --bg: #020712;
  --bg-soft: #06101c;
  --panel: #0f172a;
  --panel-2: #111c2f;
  --panel-3: #132238;
  --text: #f8fafc;
  --muted: #98a6ba;
  --line: rgba(88, 110, 140, 0.45);
  --brand: #04d166;
  --brand-2: #22e88a;
  --accent: #04d166;
  --ink: #06110c;
  --danger: #fb7185;
}

html,
body {
  background:
    radial-gradient(900px 560px at 82% -8%, rgba(4, 209, 102, 0.13), transparent 58%),
    radial-gradient(760px 500px at 8% 14%, rgba(37, 99, 235, 0.13), transparent 56%),
    linear-gradient(180deg, #020712 0%, #06101c 45%, #020712 100%);
  background-color: #020712;
  color: var(--text);
}

body {
  min-height: 100vh;
}

main,
.hebrew-site {
  background-color: #020712;
}

body::before {
  background:
    radial-gradient(520px 360px at var(--spotlight-x, 50%) var(--spotlight-y, 18%), rgba(4, 209, 102, 0.1), transparent 62%),
    linear-gradient(rgba(148, 163, 184, 0.03) 1px, transparent 1px);
  background-size: auto, 100% 4px;
}

.site-header {
  border-bottom-color: rgba(148, 163, 184, 0.12);
  background: rgba(2, 7, 18, 0.88);
}

.brand-mark {
  background: linear-gradient(140deg, #f8fafc, #04d166);
  color: #06110c;
  box-shadow: 0 0 28px rgba(4, 209, 102, 0.24);
}

.top-alert {
  border-bottom-color: rgba(4, 209, 102, 0.18);
  background:
    linear-gradient(90deg, rgba(4, 209, 102, 0.14), rgba(37, 99, 235, 0.1)),
    rgba(2, 7, 18, 0.94);
  color: #e5edf8;
}

.top-alert span {
  color: #6ef7ae;
}

.top-alert a {
  border-color: rgba(4, 209, 102, 0.34);
  background: rgba(4, 209, 102, 0.1);
  color: #eafff3;
}

.section,
.premium-strip,
.pricing-section,
.checkout-section,
.wow-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(760px 360px at 74% 10%, rgba(4, 209, 102, 0.075), transparent 62%),
    radial-gradient(680px 340px at 12% 12%, rgba(37, 99, 235, 0.06), transparent 64%),
    rgba(2, 7, 18, 0.34);
}

.section::before,
.premium-strip::before,
.pricing-section::before,
.checkout-section::before,
.wow-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: radial-gradient(circle, rgba(143, 164, 190, 0.26) 1px, transparent 1.35px);
  background-size: 30px 30px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
}

.section > .container,
.premium-strip > .container,
.pricing-section > .container,
.checkout-section > .container,
.wow-section > .container {
  position: relative;
  z-index: 1;
}

.proof-strip {
  border-block: 1px solid rgba(88, 110, 140, 0.25);
  background:
    linear-gradient(90deg, rgba(4, 209, 102, 0.07), transparent 34%, rgba(37, 99, 235, 0.06)),
    rgba(15, 23, 42, 0.58);
}

.proof-list span {
  border-color: rgba(88, 110, 140, 0.42);
  background: rgba(15, 23, 42, 0.68);
  color: #c7d2e3;
}

.eyebrow,
.checkout-selected span,
.mobile-order-dock span,
.top-alert span {
  color: #04d166;
}

.aurora-text {
  background: none;
  color: #04d166;
  -webkit-text-fill-color: currentColor;
  animation: none;
}

.btn-primary {
  background: #f8fafc;
  color: #07111f;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.btn-primary:hover {
  background: #ffffff;
  box-shadow: 0 22px 52px rgba(4, 209, 102, 0.18);
}

.btn-secondary {
  border-color: rgba(148, 163, 184, 0.24);
  background: rgba(15, 23, 42, 0.74);
  color: #f8fafc;
}

.btn-secondary:hover {
  border-color: rgba(4, 209, 102, 0.46);
}

.step-card,
.deliverable-card,
.proof-card,
.faq-item,
.price-panel,
.package-card,
.contact-card,
.workflow-preview,
.lead-form,
.checkout-panel,
.quick-checkout,
.risk-stack article,
.premium-proof article,
.metric-grid article {
  border-color: rgba(88, 110, 140, 0.44);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.055), transparent 32%),
    rgba(15, 23, 42, 0.78);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.step-card:hover,
.deliverable-card:hover,
.faq-item:hover,
.package-card:hover,
.metric-grid article:hover {
  border-color: rgba(4, 209, 102, 0.42);
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.36);
}

.price-panel .price,
.price-panel strong,
.checkout-selected strong,
.payment-option span,
.hero-mini-proof strong {
  color: #f8fafc;
}

.price-tag,
.recommended-ribbon,
.risk-stack span {
  background: rgba(4, 209, 102, 0.12);
  color: #6ef7ae;
  border-color: rgba(4, 209, 102, 0.24);
  box-shadow: none;
}

.premium-package {
  background:
    radial-gradient(circle at 84% 12%, rgba(4, 209, 102, 0.12), transparent 38%),
    linear-gradient(165deg, rgba(17, 28, 47, 0.96), rgba(8, 13, 24, 0.96));
  box-shadow: 0 32px 78px rgba(0, 0, 0, 0.38), inset 0 0 0 1px rgba(4, 209, 102, 0.13);
}

.premium-package .recommended-ribbon {
  color: #04110a;
  background: linear-gradient(135deg, #04d166, #8af7bd);
}

.checkout-section {
  background:
    radial-gradient(820px 420px at 72% 12%, rgba(4, 209, 102, 0.12), transparent 62%),
    radial-gradient(720px 380px at 10% 18%, rgba(37, 99, 235, 0.08), transparent 64%),
    rgba(2, 7, 18, 0.34);
}

.payment-option {
  border-color: rgba(88, 110, 140, 0.42);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.045), transparent),
    rgba(15, 23, 42, 0.76);
}

.payment-option:hover,
.payment-option.is-active {
  border-color: rgba(4, 209, 102, 0.55);
  background: rgba(4, 209, 102, 0.1);
}

.quick-checkout input,
.quick-checkout select,
.lead-form input,
.lead-form select,
.lead-form textarea {
  border-color: rgba(88, 110, 140, 0.52);
  background: rgba(2, 6, 12, 0.82);
  color: #f8fafc;
}

.quick-checkout input:focus,
.quick-checkout select:focus,
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 2px solid rgba(4, 209, 102, 0.22);
  border-color: rgba(4, 209, 102, 0.8);
}

.payment-assurance span,
.hero-trust-row span {
  border-color: rgba(88, 110, 140, 0.46);
  background: rgba(15, 23, 42, 0.62);
  color: #c7d2e3;
}

.hero-trust-row span:hover,
.payment-assurance span:hover {
  border-color: rgba(4, 209, 102, 0.32);
}

.hebrew-site .hero {
  min-height: min(980px, calc(100vh - 116px));
}

.package-card::after,
.risk-stack article::after {
  background: linear-gradient(90deg, transparent, rgba(4, 209, 102, 0.18), transparent);
}

.section-header h2,
.checkout-copy h2,
.contact-copy h2 {
  color: #f8fafc;
}

.section-header p,
.premium-proof p,
.risk-stack p,
.step-card p,
.deliverable-card p,
.faq-item p,
.contact-card p {
  color: #98a6ba;
}

.mobile-order-dock {
  border-color: rgba(4, 209, 102, 0.24);
  background:
    linear-gradient(135deg, rgba(4, 209, 102, 0.12), rgba(37, 99, 235, 0.08)),
    rgba(2, 7, 18, 0.92);
}

.whatsapp-float {
  border-color: rgba(4, 209, 102, 0.28);
  background: linear-gradient(135deg, #04d166, #9cffca);
  box-shadow: 0 18px 46px rgba(4, 209, 102, 0.24);
}

.workflow-dialog,
.workflow-summary {
  border-color: rgba(88, 110, 140, 0.5);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), transparent 30%),
    #0f172a;
}

.site-footer {
  border-top-color: rgba(88, 110, 140, 0.28);
  background: #020712;
}
