: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: minmax(0, 0.95fr) minmax(0, 1.16fr) minmax(0, 0.95fr);
  gap: 1rem;
  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;
  transform: translateY(-10px);
}

.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;
}

.faq-item summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  font-weight: 850;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: "+";
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(4, 209, 102, 0.35);
  background: rgba(4, 209, 102, 0.11);
  color: #9cffca;
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.faq-item[open] summary::before {
  content: "-";
  transform: rotate(180deg);
  background: rgba(4, 209, 102, 0.22);
  color: #ffffff;
}

.faq-item[open] p {
  animation: faqAnswerIn 220ms ease-out both;
}

@keyframes faqAnswerIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(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%;
}

.contact-proof {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: center;
  margin: 1rem 0 0.35rem;
  padding: 0.72rem;
  border: 1px solid rgba(4, 209, 102, 0.2);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(4, 209, 102, 0.1), rgba(37, 99, 235, 0.06)),
    rgba(3, 7, 18, 0.3);
}

.contact-proof img,
.whatsapp-float img {
  display: block;
  object-fit: cover;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.contact-proof img {
  width: 56px;
  height: 56px;
  border: 2px solid rgba(255, 255, 255, 0.18);
}

.contact-proof strong,
.contact-proof span {
  display: block;
}

.contact-proof strong {
  color: #f8fafc;
  font-size: 0.96rem;
}

.contact-proof span {
  margin-top: 0.18rem;
  color: #aebbd0;
  font-size: 0.88rem;
  line-height: 1.55;
}

.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.72rem;
  float: left;
  z-index: 2;
  margin: 0.72rem 0.72rem 0 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  width: 42px;
  height: 42px;
  background: rgba(15, 23, 42, 0.92);
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

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

.workflow-close:hover {
  border-color: rgba(4, 209, 102, 0.42);
  color: #ffffff;
  background: rgba(20, 33, 54, 0.98);
}

.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;
}

.workflow-whatsapp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0.8rem 0;
  border: 1px solid rgba(4, 209, 102, 0.32);
  border-radius: 14px;
  padding: 0.78rem 0.9rem;
  color: #06100c;
  background: linear-gradient(135deg, #04d166, #9cffca);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 16px 36px rgba(4, 209, 102, 0.18);
}

.workflow-whatsapp-cta img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.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);
}

.seo-blog-section {
  border-top: 1px solid rgba(88, 110, 140, 0.24);
  border-bottom: 1px solid rgba(88, 110, 140, 0.24);
  background:
    radial-gradient(circle at 16% 20%, rgba(4, 209, 102, 0.1), transparent 30%),
    rgba(2, 7, 18, 0.58);
}

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

.seo-blog-card {
  min-width: 0;
  border: 1px solid rgba(88, 110, 140, 0.42);
  border-radius: 16px;
  padding: 1rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.055), transparent 42%),
    rgba(15, 23, 42, 0.74);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.seo-blog-card span {
  display: inline-flex;
  margin-bottom: 0.65rem;
  color: #04d166;
  font-size: 0.78rem;
  font-weight: 900;
}

.seo-blog-card h3 {
  margin-bottom: 0.58rem;
  color: #f8fafc;
  font-size: 1.06rem;
}

.seo-blog-card p {
  margin: 0;
  color: #98a6ba;
  line-height: 1.58;
}

.seo-blog-card a {
  color: inherit;
}

.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: grid;
  grid-template-columns: auto auto;
  grid-template-areas:
    "copy icon"
    "brand icon";
  align-items: center;
  column-gap: 0.62rem;
  border: 1px solid rgba(147, 224, 200, 0.28);
  border-radius: 18px;
  padding: 0.64rem 0.72rem 0.64rem 0.88rem;
  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 img {
  grid-area: icon;
  width: 40px;
  height: 40px;
}

.whatsapp-float-copy {
  grid-area: copy;
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1;
  opacity: 0.8;
}

.whatsapp-float strong {
  grid-area: brand;
  font-size: 1rem;
  line-height: 1.08;
}


@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;
    gap: 0.28rem;
    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));
  border-color: rgba(4, 209, 102, 0.56);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.46),
    0 0 42px rgba(4, 209, 102, 0.13),
    inset 0 0 0 1px rgba(4, 209, 102, 0.18);
}

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

.premium-package .price-value {
  color: #ffffff;
  text-shadow: 0 0 30px rgba(4, 209, 102, 0.2);
}

.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;
}

.footer-business {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  gap: 1.2rem;
  align-items: start;
}

.footer-brand-block {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #f8fafc;
}

.footer-brand-block img {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  box-shadow: 0 0 24px rgba(4, 209, 102, 0.18);
}

.footer-brand-block strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
  font-weight: 950;
}

.footer-brand-block p,
.footer-copyright {
  margin: 0;
  color: #98a6ba;
}

.footer-details {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
  margin: 0;
  color: #c7d2e3;
  font-style: normal;
}

.footer-details strong {
  color: #f8fafc;
  font-size: 0.95rem;
  font-weight: 950;
}

.footer-details a,
.footer-details span,
.footer-links a {
  color: #eafff3;
  font-weight: 850;
  text-decoration: none;
}

.footer-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
}

.footer-links a {
  border: 1px solid rgba(88, 110, 140, 0.32);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.54);
  padding: 0.45rem 0.72rem;
}

.footer-copyright {
  grid-column: 1 / -1;
}

/* Final mobile polish pass */
@media (max-width: 760px) {
  body {
    padding-bottom: calc(7rem + env(safe-area-inset-bottom));
  }

  .section {
    padding-block: 3rem;
  }

  .hebrew-site .hero {
    min-height: auto;
    padding: 2.4rem 0 3.2rem;
  }

  .hebrew-site .hero-left h1,
  .hero-left h1 {
    max-width: 11ch;
    font-size: clamp(2.08rem, 10.4vw, 2.72rem);
    line-height: 1.08;
  }

  .hero-trust-row {
    max-width: 340px;
  }

  .hero-cta {
    width: 100%;
    max-width: 330px;
  }

  .hero-cta .btn {
    min-height: 52px;
    justify-content: center;
  }

  .price-panel,
  .package-card,
  .checkout-panel,
  .contact-card,
  .seo-blog-card,
  .workflow-preview,
  .lead-form {
    border-radius: 16px;
  }

  .footer-business,
  .footer-details {
    grid-template-columns: 1fr;
  }

  .footer-brand-block {
    align-items: flex-start;
  }

  .seo-blog-grid {
    grid-template-columns: 1fr;
    gap: 0.72rem;
  }

  .contact-card,
  .workflow-preview {
    padding: 1rem;
  }

  .contact-proof {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 0.72rem;
    padding: 0.66rem;
    border-radius: 14px;
  }

  .contact-proof img {
    width: 48px;
    height: 48px;
  }

  .contact-proof span {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .direct-contact {
    display: grid;
    grid-template-columns: 1fr;
  }

  .direct-contact a {
    width: 100%;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .mobile-order-dock {
    display: grid;
    grid-template-columns: minmax(82px, 0.82fr) minmax(0, 1fr) 56px;
    gap: 0.5rem;
    align-items: center;
    left: 12px !important;
    right: 12px !important;
    bottom: calc(0.72rem + env(safe-area-inset-bottom));
    width: auto !important;
    max-width: none;
    padding: 0.58rem;
    padding-inline-end: 0;
    border-radius: 18px;
  }

  .mobile-order-dock .btn {
    grid-column: 1;
    min-height: 46px;
    padding: 0.62rem 0.68rem;
    font-size: 0.86rem;
    line-height: 1.1;
  }

  .mobile-order-dock > div {
    grid-column: 2;
    min-width: 0;
    text-align: right;
  }

  .mobile-order-dock span {
    font-size: 0.74rem;
  }

  .mobile-order-dock strong {
    font-size: 0.86rem;
    line-height: 1.25;
    white-space: normal;
  }

  .mobile-whatsapp {
    position: static !important;
    grid-column: 3;
    width: 56px;
    min-width: 56px;
    height: 46px;
    padding: 0;
    border-radius: 16px;
    flex-direction: column;
    font-size: 0.62rem;
    line-height: 1;
    box-shadow: 0 12px 28px rgba(69, 227, 138, 0.24);
  }

  .mobile-whatsapp img {
    width: 22px;
    height: 22px;
  }

  .mobile-whatsapp span {
    color: #06100c;
    font-size: 0.62rem;
    font-weight: 900;
    line-height: 1;
  }
}

@media (max-width: 380px) {
  .mobile-order-dock {
    grid-template-columns: 74px minmax(0, 1fr) 52px;
    left: 8px !important;
    right: 8px !important;
    gap: 0.38rem;
  }

  .mobile-order-dock .btn {
    padding-inline: 0.48rem;
    font-size: 0.8rem;
  }

  .mobile-whatsapp {
    width: 52px;
    min-width: 52px;
    font-size: 0.68rem;
  }
}

/* Compact section cleanup */
.hebrew-site .hero {
  min-height: auto;
  padding: clamp(2.6rem, 4.6vw, 4.2rem) 0 clamp(2.2rem, 4vw, 3.4rem);
}

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

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

.hebrew-site .hero-mini-proof {
  margin-top: 1.35rem;
}

.hero-bullets {
  display: none;
}

.section,
.premium-strip,
.pricing-section,
.checkout-section,
.wow-section {
  padding-block: 3.25rem;
  background: transparent;
}

.section::before,
.premium-strip::before,
.pricing-section::before,
.checkout-section::before,
.wow-section::before {
  display: none;
}

.section-muted,
.seo-blog-section,
.pricing-section,
.checkout-section {
  border-block: 1px solid rgba(88, 110, 140, 0.22);
  background: rgba(2, 7, 18, 0.34);
}

.wow-section {
  background: rgba(6, 16, 28, 0.22);
}

.proof-strip {
  padding-block: 0.72rem;
}

.premium-grid,
.wow-layout,
.checkout-layout,
.contact-shell {
  gap: 0.9rem;
}

.wow-copy h2,
.section-header h2,
.checkout-copy h2,
.contact-card h2 {
  max-width: 18ch;
}

.wow-copy .hero-copy,
.section-header p,
.contact-copy,
.checkout-copy .hero-copy {
  max-width: 42ch;
}

.risk-stack,
.deliverables,
.seo-blog-grid,
.pricing-cards {
  margin-top: 1rem;
}

.risk-stack article,
.deliverable-card,
.seo-blog-card,
.price-panel {
  padding: 0.95rem;
}

@media (max-width: 760px) {
  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .premium-package {
    order: -1;
    transform: none;
  }

  .hebrew-site .hero {
    padding: 1.45rem 0 2.2rem;
  }

  .section,
  .pricing-section,
  .checkout-section,
  .wow-section {
    padding-block: 2.45rem;
  }

  .hero-mini-proof {
    margin-top: 1rem;
  }

  .wow-copy h2,
  .section-header h2,
  .checkout-copy h2,
  .contact-card h2 {
    max-width: 100%;
  }
}

/* Professional polish + motion pass */
:root {
  --section-rail: rgba(4, 209, 102, 0.28);
  --section-rail-soft: rgba(88, 110, 140, 0.2);
  --shine-line: linear-gradient(90deg, transparent, rgba(4, 209, 102, 0.55), transparent);
}

.section,
.proof-strip,
.pricing-section,
.checkout-section,
.wow-section,
.contact-section,
.seo-blog-section {
  isolation: isolate;
}

.section > .container,
.pricing-section > .container,
.checkout-section > .container,
.wow-section > .container,
.contact-section > .container,
.seo-blog-section > .container {
  position: relative;
}

.section > .container::after,
.pricing-section > .container::after,
.checkout-section > .container::after,
.wow-section > .container::after,
.contact-section > .container::after,
.seo-blog-section > .container::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: -1.15rem;
  height: 1px;
  background: var(--shine-line);
  opacity: 0.18;
  transform: scaleX(0.72);
  transform-origin: center;
}

.wow-section {
  background:
    linear-gradient(135deg, rgba(6, 16, 28, 0.92), rgba(2, 7, 18, 0.64)),
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(88, 110, 140, 0.045) 18px 19px);
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.68), rgba(2, 7, 18, 0.44)),
    linear-gradient(90deg, rgba(4, 209, 102, 0.05), transparent 34%, rgba(37, 99, 235, 0.05));
}

.seo-blog-section {
  background:
    linear-gradient(180deg, rgba(2, 7, 18, 0.42), rgba(15, 23, 42, 0.58)),
    repeating-linear-gradient(90deg, rgba(88, 110, 140, 0.055) 0 1px, transparent 1px 72px);
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(4, 209, 102, 0.055), transparent 38%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.46), rgba(2, 7, 18, 0.42));
}

.pricing-section {
  background:
    linear-gradient(180deg, rgba(4, 209, 102, 0.04), rgba(2, 7, 18, 0.22)),
    repeating-linear-gradient(0deg, rgba(88, 110, 140, 0.055) 0 1px, transparent 1px 58px);
}

.checkout-section {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.06), transparent 38%),
    linear-gradient(180deg, rgba(2, 7, 18, 0.52), rgba(15, 23, 42, 0.46));
}

.proof-list {
  position: relative;
  overflow: hidden;
}

.proof-list::after {
  content: "";
  position: absolute;
  inset-block: 0;
  width: 22%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  animation: polishSweep 5.8s ease-in-out infinite;
}

.step-card,
.deliverable-card,
.seo-blog-card,
.price-panel,
.contact-card,
.workflow-preview,
.checkout-panel,
.lead-form {
  position: relative;
  overflow: hidden;
}

.step-card::before,
.deliverable-card::before,
.seo-blog-card::before,
.price-panel::before,
.contact-card::before,
.workflow-preview::before,
.checkout-panel::before,
.lead-form::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 2px;
  background: var(--shine-line);
  opacity: 0;
  transform: translateX(28%);
  transition: opacity 220ms ease, transform 420ms var(--ease-premium-out);
}

.step-card:hover,
.deliverable-card:hover,
.seo-blog-card:hover,
.price-panel:hover,
.contact-card:hover,
.workflow-preview:hover,
.checkout-panel:hover {
  border-color: rgba(4, 209, 102, 0.38);
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.28);
}

.step-card:hover::before,
.deliverable-card:hover::before,
.seo-blog-card:hover::before,
.price-panel:hover::before,
.contact-card:hover::before,
.workflow-preview:hover::before,
.checkout-panel:hover::before {
  opacity: 0.75;
  transform: translateX(0);
}

.premium-package,
.premium-package:hover {
  transform: translateY(-12px) scale(1.02);
}

.premium-package::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(4, 209, 102, 0.2);
  border-radius: 12px;
  pointer-events: none;
}

.recommended-ribbon {
  animation: ribbonPulse 3.2s ease-in-out infinite;
}

.risk-stack article {
  border-inline-start: 3px solid rgba(4, 209, 102, 0.36);
}

.risk-stack article:nth-child(2) {
  border-inline-start-color: rgba(37, 99, 235, 0.42);
}

.risk-stack article:nth-child(3) {
  border-inline-start-color: rgba(251, 113, 133, 0.42);
}

.step-card span,
.risk-stack span {
  box-shadow: 0 10px 26px rgba(4, 209, 102, 0.12);
}

.seo-blog-card h3 a,
.deliverable-card h3 a {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size 220ms ease, color 220ms ease;
}

.seo-blog-card:hover h3 a,
.deliverable-card:hover h3 a {
  color: #ffffff;
  background-size: 100% 1px;
}

.contact-proof {
  animation: softLift 5.5s ease-in-out infinite;
}

.workflow-whatsapp-cta,
.whatsapp-float,
.mobile-whatsapp {
  position: relative;
  overflow: hidden;
}

.workflow-whatsapp-cta::after,
.whatsapp-float::after,
.mobile-whatsapp::after {
  content: "";
  position: absolute;
  inset-block: 0;
  width: 46%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: translateX(180%);
  animation: buttonGleam 4.8s ease-in-out infinite;
  pointer-events: none;
}

.reveal.is-visible {
  animation: revealSettle 520ms var(--ease-premium-out) both;
}

@keyframes polishSweep {
  0%,
  28% {
    transform: translateX(140%);
    opacity: 0;
  }
  42% {
    opacity: 1;
  }
  70%,
  100% {
    transform: translateX(-520%);
    opacity: 0;
  }
}

@keyframes ribbonPulse {
  0%,
  100% {
    box-shadow: 0 12px 26px rgba(4, 209, 102, 0.18);
  }
  50% {
    box-shadow: 0 16px 34px rgba(4, 209, 102, 0.28);
  }
}

@keyframes softLift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes buttonGleam {
  0%,
  42% {
    transform: translateX(190%);
    opacity: 0;
  }
  52% {
    opacity: 0.72;
  }
  68%,
  100% {
    transform: translateX(-240%);
    opacity: 0;
  }
}

@keyframes revealSettle {
  0% {
    filter: saturate(0.94);
  }
  100% {
    filter: saturate(1);
  }
}

@media (max-width: 760px) {
  .section > .container::after,
  .pricing-section > .container::after,
  .checkout-section > .container::after,
  .wow-section > .container::after,
  .contact-section > .container::after,
  .seo-blog-section > .container::after {
    top: -0.75rem;
  }

  .premium-package,
  .premium-package:hover {
    transform: none;
  }

  .step-card:hover,
  .deliverable-card:hover,
  .seo-blog-card:hover,
  .price-panel:hover,
  .contact-card:hover,
  .workflow-preview:hover,
  .checkout-panel:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .proof-list::after,
  .recommended-ribbon,
  .contact-proof,
  .workflow-whatsapp-cta::after,
  .whatsapp-float::after,
  .mobile-whatsapp::after,
  .reveal.is-visible {
    animation: none;
  }
}

/* Final brand bridge and mobile contact polish */
.brand-copy {
  display: grid;
  gap: 0.05rem;
  line-height: 1.04;
}

.brand-subtext {
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-trust-row {
  justify-content: center;
  margin: 0 auto 0.85rem;
  max-width: 640px;
  text-align: center;
}

.hero-trust-row span {
  justify-content: center;
  min-height: 2.05rem;
}

.whatsapp-float {
  bottom: 1rem;
  left: 1rem;
  right: auto;
  z-index: 95;
  display: inline-flex !important;
  min-width: 0;
  max-width: calc(100vw - 2rem);
  padding: 0.46rem 0.62rem 0.46rem 0.72rem;
  gap: 0.42rem;
  border-radius: 999px;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

.whatsapp-float-copy {
  font-size: 0.68rem;
  line-height: 1;
}

.whatsapp-float strong {
  font-size: 0.86rem;
  line-height: 1;
}

@media (max-width: 760px) {
  .brand-text {
    font-size: 0.92rem;
  }

  .brand-subtext {
    font-size: 0.64rem;
  }

  .hero-trust-row {
    width: min(100%, 22rem);
    gap: 0.46rem;
    margin-bottom: 0.7rem;
  }

  .hero-trust-row span {
    flex: 1 1 calc(50% - 0.5rem);
    padding: 0.5rem 0.62rem;
    font-size: 0.74rem;
  }

  .whatsapp-float {
    bottom: calc(5.8rem + env(safe-area-inset-bottom));
    left: 0.8rem;
    width: 54px;
    height: 54px;
    padding: 0;
    justify-content: center;
    border-radius: 18px;
  }

  .whatsapp-float-copy,
  .whatsapp-float strong {
    display: none;
  }

  .whatsapp-float img {
    width: 34px;
    height: 34px;
  }
}

/* Latest mobile polish: keep hero immediate and WhatsApp fixed on the right */
.hero-left > .hero-trust-row {
  display: none !important;
}

.proof-strip {
  margin-top: 0;
}

.proof-strip .proof-list {
  justify-content: center;
  gap: 0.62rem;
  padding-block: 0.78rem;
}

.proof-strip .proof-list span {
  min-height: 2.08rem;
  padding: 0.46rem 0.78rem;
  border-color: rgba(4, 209, 102, 0.24);
  background: rgba(4, 209, 102, 0.075);
}

.mobile-whatsapp {
  display: none !important;
}

.whatsapp-float {
  right: 1rem;
  left: auto;
  bottom: 1rem;
  display: grid !important;
  grid-template-areas:
    "copy icon"
    "brand icon";
  grid-template-columns: minmax(0, auto) 36px;
  align-items: center;
  min-width: 0;
  max-width: min(92vw, 188px);
  padding: 0.5rem 0.58rem 0.5rem 0.78rem;
  border-radius: 999px;
}

.whatsapp-float-copy,
.whatsapp-float strong {
  color: #04130b;
  text-align: right;
}

.whatsapp-float-copy {
  font-size: 0;
}

.whatsapp-float-copy::before {
  content: "צריכים עזרה?";
  font-size: 0.74rem;
  font-weight: 950;
  line-height: 1;
}

.whatsapp-float strong {
  font-size: 0;
}

.whatsapp-float strong::before {
  content: "וואטסאפ";
  font-size: 0.88rem;
  font-weight: 950;
  line-height: 1.05;
}

@media (max-width: 760px) {
  .hero {
    padding-top: clamp(1.9rem, 7vw, 2.8rem);
  }

  .proof-strip .proof-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-block: 0.66rem;
  }

  .proof-strip .proof-list span {
    justify-content: center;
    min-width: 0;
    padding-inline: 0.48rem;
    font-size: 0.72rem;
    text-align: center;
  }

  .mobile-order-dock {
    grid-template-columns: minmax(86px, 0.78fr) minmax(0, 1fr);
    padding-inline-end: 0;
  }

  .mobile-order-dock .btn {
    grid-column: 1;
  }

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

  .whatsapp-float {
    right: 0.86rem;
    left: auto;
    bottom: calc(5.35rem + env(safe-area-inset-bottom));
    width: auto;
    height: auto;
    min-height: 52px;
    max-width: 176px;
    padding: 0.46rem 0.5rem 0.46rem 0.66rem;
    border-radius: 18px;
  }

  .whatsapp-float img {
    width: 32px;
    height: 32px;
  }

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

/* Final requested cleanup */
#guides {
  display: none !important;
}

.pricing-section .container {
  display: grid;
  justify-items: center;
}

.pricing-section .eyebrow,
.pricing-section h2 {
  text-align: center;
}

.pricing-cards {
  width: 100%;
  justify-content: center;
  justify-items: center;
  align-items: stretch;
}

.price-panel {
  width: 100%;
  max-width: 368px;
}

.premium-package {
  animation: none !important;
  transform: none !important;
  box-shadow: 0 24px 70px rgba(4, 209, 102, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.premium-package:hover {
  animation: none !important;
  transform: translateY(-4px) !important;
}

.premium-package::after,
.recommended-ribbon {
  animation-duration: 7s;
}

.whatsapp-float {
  position: fixed !important;
  right: 1rem !important;
  left: auto !important;
  bottom: 1rem !important;
  z-index: 999 !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

@media (max-width: 760px) {
  .pricing-cards {
    max-width: 390px;
    margin-inline: auto;
  }

  .premium-package:hover {
    transform: none !important;
  }

  .whatsapp-float {
    right: 0.8rem !important;
    bottom: calc(5.45rem + env(safe-area-inset-bottom)) !important;
  }
}

/* Hero number lift animation */
.hero-mini-proof article {
  position: relative;
  overflow: hidden;
  animation: heroStatRise 720ms var(--ease-premium-out, cubic-bezier(0.16, 1, 0.3, 1)) both;
  animation-delay: calc(var(--stat-index, 0) * 110ms + 160ms);
}

.hero-mini-proof article:nth-child(1) {
  --stat-index: 1;
}

.hero-mini-proof article:nth-child(2) {
  --stat-index: 2;
}

.hero-mini-proof article:nth-child(3) {
  --stat-index: 3;
}

.hero-mini-proof article::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -35%;
  width: 40%;
  transform: rotate(18deg) translateX(-180%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  animation: heroStatSweep 4.8s ease-in-out infinite;
  animation-delay: calc(var(--stat-index, 0) * 420ms + 900ms);
  pointer-events: none;
}

.hero-mini-proof strong {
  text-shadow: 0 0 22px rgba(4, 209, 102, 0.22);
  animation: heroNumberGlow 3.4s ease-in-out infinite;
  animation-delay: calc(var(--stat-index, 0) * 260ms);
}

@keyframes heroStatRise {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  64% {
    opacity: 1;
    transform: translateY(-3px) scale(1.015);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroNumberGlow {
  0%,
  100% {
    transform: translateY(0);
    filter: brightness(1);
  }
  50% {
    transform: translateY(-2px);
    filter: brightness(1.18);
  }
}

@keyframes heroStatSweep {
  0%,
  42% {
    transform: rotate(18deg) translateX(-180%);
    opacity: 0;
  }
  54% {
    opacity: 0.75;
  }
  72%,
  100% {
    transform: rotate(18deg) translateX(420%);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-mini-proof article,
  .hero-mini-proof article::before,
  .hero-mini-proof strong {
    animation: none !important;
  }
}

/* Compact payment methods inside the checkout form */
.quick-checkout .payment-tabs {
  margin: 0.35rem 0 0.85rem;
}

.payment-tabs-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.payment-tabs-compact .payment-option {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  padding: 0.42rem 0.5rem;
  border-radius: 14px;
  text-align: center;
}

.payment-tabs-compact .payment-option:hover,
.payment-tabs-compact .payment-option.is-active {
  transform: translateY(-1px);
}

.payment-tabs-compact .payment-option img {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border-radius: 8px;
  object-fit: contain;
  background: #ffffff;
}

.payment-tabs-compact .payment-option[data-payment-method="Bit"] img {
  background: #003f43;
}

.payment-tabs-compact .payment-option span {
  color: #f8fafc;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
}

.checkout-plan-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 0 0 0.9rem;
  padding: 0;
  border: 0;
}

.checkout-plan-options legend {
  grid-column: 1 / -1;
  margin-bottom: 0.15rem;
  color: #e5edf8;
  font-size: 0.94rem;
  font-weight: 900;
}

.checkout-plan-option {
  min-height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.22rem;
  border: 1px solid rgba(88, 110, 140, 0.42);
  border-radius: 14px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.045), transparent),
    rgba(15, 23, 42, 0.76);
  color: #f8fafc;
  cursor: pointer;
  font: inherit;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.checkout-plan-option:hover,
.checkout-plan-option.is-active {
  border-color: rgba(4, 209, 102, 0.55);
  background: rgba(4, 209, 102, 0.1);
  transform: translateY(-1px);
}

.checkout-plan-option span {
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.15;
}

.checkout-plan-option strong {
  color: #6ef7ae;
  font-size: 1.02rem;
  font-weight: 950;
}

@media (min-width: 900px) {
  .hebrew-site .hero-grid {
    grid-template-columns: 1fr;
    max-width: 980px;
    align-items: center;
  }

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

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

  .hebrew-site .hero-left h1 {
    max-width: 12ch;
    margin-inline: auto;
  }
}

.testimonials-section {
  background:
    radial-gradient(680px 420px at 76% 18%, rgba(4, 209, 102, 0.1), transparent 62%),
    radial-gradient(640px 360px at 12% 24%, rgba(37, 99, 235, 0.08), transparent 64%),
    rgba(2, 7, 18, 0.34);
}

.testimonials-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
}

.testimonials-copy {
  max-width: 34rem;
}

.testimonial-rotator {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(88, 110, 140, 0.44);
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.055), transparent 36%),
    rgba(15, 23, 42, 0.76);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.testimonial-track {
  display: flex;
  direction: ltr;
  transform: translateX(var(--testimonial-offset, 0%));
  transition: transform 520ms var(--ease-premium-out);
}

.testimonial-slide {
  min-width: 100%;
  display: grid;
  direction: rtl;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: clamp(0.85rem, 2vw, 1.15rem);
}

.testimonial-image-frame {
  overflow: hidden;
  border: 1px solid rgba(88, 110, 140, 0.44);
  border-radius: 18px;
  background: rgba(2, 7, 18, 0.82);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.testimonial-image-frame img {
  display: block;
  width: 100%;
  height: clamp(280px, 31vw, 390px);
  object-fit: cover;
  object-position: top center;
}

.testimonial-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(4, 209, 102, 0.24);
  border-radius: 999px;
  background: rgba(4, 209, 102, 0.12);
  color: #6ef7ae;
  font-size: 0.88rem;
  font-weight: 950;
  padding: 0.36rem 0.7rem;
}

.testimonial-meta strong {
  display: block;
  color: #f8fafc;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1.18;
  font-weight: 950;
}

.testimonial-meta p {
  margin: 0.8rem 0 0;
  color: #98a6ba;
  line-height: 1.65;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0 1rem 1rem;
}

.testimonial-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(88, 110, 140, 0.44);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.86);
  color: #f8fafc;
  cursor: pointer;
  font: inherit;
  font-size: 1.4rem;
  font-weight: 900;
}

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.testimonial-dots span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.42);
  transition: width 220ms ease, background 220ms ease;
}

.testimonial-dots span.is-active {
  width: 1.5rem;
  background: #04d166;
}

.trust-section {
  background:
    radial-gradient(700px 380px at 18% 14%, rgba(37, 99, 235, 0.09), transparent 62%),
    radial-gradient(760px 420px at 82% 20%, rgba(4, 209, 102, 0.1), transparent 64%),
    rgba(2, 7, 18, 0.34);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
}

.trust-copy {
  max-width: 34rem;
}

.trust-founder-snippet {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
  margin: 1.1rem 0 1rem;
  padding: 0.72rem;
  border: 1px solid rgba(4, 209, 102, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(4, 209, 102, 0.11), rgba(37, 99, 235, 0.055)),
    rgba(7, 15, 29, 0.78);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
}

.trust-founder-snippet img {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: cover;
  object-position: center 28%;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-founder-snippet strong,
.about-founder-card h2 {
  color: #ffffff;
  font-weight: 950;
  line-height: 1.2;
}

.trust-founder-snippet span {
  display: block;
  margin-top: 0.24rem;
  color: #aebbd2;
  line-height: 1.45;
  font-size: 0.92rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 0.85rem;
}

.trust-grid article,
.about-panel,
.about-fact {
  border: 1px solid rgba(88, 110, 140, 0.44);
  border-radius: 20px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.055), transparent 34%),
    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);
}

.trust-grid article {
  min-height: 13rem;
  padding: 1.15rem;
}

.trust-grid span,
.about-fact span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  height: 2.35rem;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(4, 209, 102, 0.24);
  border-radius: 999px;
  background: rgba(4, 209, 102, 0.12);
  color: #6ef7ae;
  font-weight: 900;
}

.trust-grid h3,
.about-panel h2,
.about-fact h3 {
  margin-bottom: 0.55rem;
}

.trust-grid p,
.about-panel p,
.about-fact p {
  margin: 0;
  color: #98a6ba;
  line-height: 1.65;
}

.trust-signal-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1rem;
}

.trust-signal-row span {
  border: 1px solid rgba(88, 110, 140, 0.4);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.74);
  color: #c7d2e3;
  font-size: 0.86rem;
  font-weight: 850;
  padding: 0.48rem 0.72rem;
}

.about-hero {
  padding-block: clamp(3rem, 8vw, 5.4rem);
}

.about-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
}

.about-panel {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.about-panel h1 {
  max-width: 15ch;
}

.about-panel .hero-copy {
  max-width: 58ch;
}

.about-facts {
  display: grid;
  gap: 0.85rem;
}

.about-fact {
  padding: 1.1rem;
}

.about-founder-card {
  overflow: hidden;
  border: 1px solid rgba(88, 110, 140, 0.44);
  border-radius: 24px;
  background:
    radial-gradient(circle at 24% 8%, rgba(4, 209, 102, 0.14), transparent 34%),
    rgba(15, 23, 42, 0.82);
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.about-founder-card img {
  display: block;
  width: 100%;
  height: clamp(24rem, 34vw, 31rem);
  object-fit: cover;
  object-position: center 24%;
}

.about-founder-card > div {
  padding: clamp(1rem, 2.4vw, 1.35rem);
}

.about-founder-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.65rem;
  padding: 0.34rem 0.68rem;
  border: 1px solid rgba(4, 209, 102, 0.24);
  border-radius: 999px;
  background: rgba(4, 209, 102, 0.11);
  color: #9cffca;
  font-size: 0.82rem;
  font-weight: 900;
}

.about-founder-card h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
}

.about-founder-card p {
  margin: 0;
  color: #aebbd2;
  line-height: 1.72;
}

@media (max-width: 860px) {
  .trust-layout,
  .about-page-grid,
  .testimonials-shell {
    grid-template-columns: 1fr;
  }

  .trust-copy,
  .testimonials-copy {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-founder-snippet {
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 0.65rem;
  }

  .trust-founder-snippet img {
    width: 58px;
    height: 58px;
    border-radius: 14px;
  }

  .about-founder-card img {
    height: min(88vw, 24rem);
  }

  .trust-grid article {
    min-height: auto;
  }

  .testimonial-slide {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .testimonial-image-frame img {
    height: min(72vw, 340px);
  }

  .testimonial-meta strong {
    font-size: clamp(1.25rem, 6vw, 1.65rem);
  }
}

@media (max-width: 760px) {
  .payment-tabs-compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.38rem;
  }

  .payment-tabs-compact .payment-option {
    min-height: 44px;
    gap: 0.28rem;
    padding: 0.38rem 0.34rem;
  }

  .payment-tabs-compact .payment-option img {
    width: 22px;
    height: 22px;
    border-radius: 7px;
  }

  .payment-tabs-compact .payment-option span {
    font-size: 0.72rem;
  }

  .checkout-plan-options {
    gap: 0.38rem;
  }

  .checkout-plan-option {
    min-height: 64px;
    padding: 0.45rem 0.3rem;
  }

  .checkout-plan-option span {
    font-size: 0.74rem;
  }

  .checkout-plan-option strong {
    font-size: 0.94rem;
  }
}

/* Single conversion flow: one checkout form instead of a separate fit-check step */
#contact,
.workflow-modal {
  display: none !important;
}

.checkout-section {
  scroll-margin-top: 92px;
}

/* Shorter FOMO hero copy */
.hebrew-site .hero-left h1 {
  max-width: 13ch;
}

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

@media (max-width: 760px) {
  .hebrew-site .hero-left h1,
  .hero-left h1 {
    max-width: 11.5ch;
    font-size: clamp(2rem, 9.8vw, 2.48rem);
    line-height: 1.08;
  }

  .hebrew-site .hero-copy,
  .hero-left > .hero-copy {
    max-width: 29ch;
    font-size: 0.98rem;
    line-height: 1.55;
  }
}

/* Final conversion cleanup */
.mobile-order-dock {
  display: none !important;
}

.premium-package,
.premium-package:hover {
  animation: none !important;
  transform: none !important;
}

.premium-package::after {
  display: none !important;
  content: none !important;
}

.recommended-ribbon,
.premium-package .recommended-ribbon {
  animation: none !important;
}

.price-panel:hover::before,
.premium-package:hover::before {
  opacity: 0 !important;
  transform: translateX(120%) !important;
}

.hero,
.hero-grid,
.hero-left {
  opacity: 1 !important;
  visibility: visible !important;
}

body.preload {
  opacity: 1 !important;
}

@media (max-width: 760px) {
  .hebrew-site .hero-left h1,
  .hero-left h1 {
    max-width: 12ch;
    font-size: clamp(1.92rem, 9.2vw, 2.34rem);
  }

  .hebrew-site .hero-copy,
  .hero-left > .hero-copy {
    max-width: 30ch;
  }
}

/* Stronger plan naming */
.pricing-section .price-tag {
  width: fit-content;
  padding: 0.38rem 0.74rem;
  border: 1px solid rgba(4, 209, 102, 0.28);
  border-radius: 999px;
  background: rgba(4, 209, 102, 0.1);
  color: #9cffca;
  font-size: 0.82rem;
  font-weight: 950;
}

.premium-package .price-tag {
  background: linear-gradient(135deg, rgba(4, 209, 102, 0.24), rgba(156, 255, 202, 0.12));
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(4, 209, 102, 0.18);
}

.price-panel-top h3 {
  max-width: 13ch;
  font-size: clamp(1.22rem, 1.7vw, 1.55rem);
  line-height: 1.15;
}

.hero-mini-proof strong {
  min-width: 2.4ch;
  display: inline-block;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}

.hero-mini-proof strong.is-counting {
  color: #ffffff;
  text-shadow: 0 0 18px rgba(4, 209, 102, 0.55);
}

.premium-package {
  border: 1px solid rgba(4, 209, 102, 0.55) !important;
  box-shadow:
    0 0 0 1px rgba(156, 255, 202, 0.18),
    0 24px 70px rgba(4, 209, 102, 0.16),
    0 18px 48px rgba(0, 0, 0, 0.24) !important;
}

.premium-package .recommended-ribbon {
  letter-spacing: 0;
  font-weight: 950;
  background: linear-gradient(135deg, #04d166, #9cffca);
  color: #032316;
  box-shadow: 0 12px 30px rgba(4, 209, 102, 0.24);
}

.faq-list {
  align-items: start;
}

.faq-item {
  overflow: hidden;
}

.faq-item summary span {
  line-height: 1.35;
}

.faq-item p {
  padding-top: 0.72rem;
}

@media (max-width: 760px) {
  .faq-list {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .faq-item {
    padding: 0.85rem 0.9rem;
  }

  .faq-item summary {
    min-height: 44px;
    gap: 0.75rem;
  }

  .premium-package {
    box-shadow:
      0 0 0 1px rgba(156, 255, 202, 0.18),
      0 18px 48px rgba(4, 209, 102, 0.15) !important;
  }
}

/* Stable top bar, mobile menu and section text consistency */
.top-alert {
  position: sticky !important;
  top: 0 !important;
  z-index: 1100 !important;
  min-height: 42px;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

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

.top-alert-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(4, 209, 102, 0.34);
}

.site-header {
  top: 0 !important;
  z-index: 1050 !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.72);
  color: #f8fafc;
  cursor: pointer;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle::before,
.nav-toggle::after {
  content: none !important;
  display: none !important;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.section-header,
.wow-copy,
.checkout-copy {
  text-align: right;
}

.section-header p,
.wow-copy .hero-copy,
.checkout-copy .hero-copy,
.section > .container > .hero-copy {
  max-width: 40ch;
  margin-inline: 0;
  text-align: right;
}

.section-header p {
  margin-top: -0.25rem;
}

@media (max-width: 760px) {
  .top-alert {
    min-height: 52px;
  }

  .top-alert-inner {
    min-height: 52px;
    justify-content: flex-start;
    gap: 0.48rem;
    padding-block: 0.38rem;
  }

  .top-alert-inner span,
  .top-alert-inner strong {
    font-size: 0.72rem;
    line-height: 1.15;
  }

  .top-alert-inner strong {
    max-width: 15ch;
  }

  .top-alert a {
    min-height: 34px;
    padding: 0.35rem 0.58rem;
    font-size: 0.72rem;
    white-space: nowrap;
  }

  .top-alert-icon {
    width: 22px;
    height: 22px;
  }

  .site-header {
    top: 0 !important;
  }

  .nav {
    min-height: 62px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    margin-inline-start: auto;
  }

  .nav .nav-links {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    z-index: 1200;
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 0.2rem;
    padding: 0.56rem;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 18px;
    background: rgba(2, 7, 18, 0.96);
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.36);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  body.nav-open .nav .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    display: block;
    padding: 0.82rem 0.9rem;
    border-radius: 12px;
    color: #f8fafc;
    font-weight: 850;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: rgba(4, 209, 102, 0.1);
  }

  .nav-cta {
    display: none !important;
  }

  .section-header,
  .wow-copy,
  .checkout-copy,
  .section-header p,
  .wow-copy .hero-copy,
  .checkout-copy .hero-copy,
  .section > .container > .hero-copy {
    text-align: right;
    margin-inline: 0;
  }
}

@media (max-width: 760px) {
  .whatsapp-float {
    bottom: calc(0.85rem + env(safe-area-inset-bottom)) !important;
  }
}

.hero-urgency {
  display: inline-flex;
  max-width: min(100%, 34rem);
  align-items: center;
  gap: 0.55rem;
  margin: -0.35rem 0 1rem;
  padding: 0.5rem 0.72rem;
  border: 1px solid rgba(4, 209, 102, 0.24);
  border-radius: 999px;
  background: rgba(4, 209, 102, 0.075);
  color: #dfffea;
}

.hero-urgency span {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #04d166;
  box-shadow: 0 0 18px rgba(4, 209, 102, 0.72);
}

.hero-urgency strong {
  font-size: 0.84rem;
  font-weight: 950;
  white-space: nowrap;
}

.hero-urgency small {
  color: #a8b3c6;
  font-size: 0.78rem;
  line-height: 1.25;
}

@media (max-width: 760px) {
  .hero-urgency {
    display: flex;
    width: min(100%, 22rem);
    align-items: flex-start;
    border-radius: 16px;
    margin-inline: auto;
  }

  .hero-urgency strong {
    white-space: normal;
  }
}

/* Stronger always-visible top cycle alert */
.top-alert {
  position: sticky !important;
  top: 0 !important;
  z-index: 5000 !important;
  min-height: 54px !important;
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.top-alert-inner {
  min-height: 54px !important;
}

.top-alert span {
  color: #ffffff !important;
  font-size: clamp(1rem, 2vw, 1.28rem) !important;
  font-weight: 950 !important;
  line-height: 1.1;
}

.top-alert-icon {
  width: 30px !important;
  height: 30px !important;
}

.site-header {
  top: 0 !important;
}

@media (max-width: 760px) {
  .top-alert {
    min-height: 58px !important;
  }

  .top-alert-inner {
    min-height: 58px !important;
    justify-content: center;
  }

  .top-alert span {
    flex: 1 1 auto;
    font-size: 0.98rem !important;
    text-align: right;
  }

  .top-alert-icon {
    width: 28px !important;
    height: 28px !important;
  }

  .site-header {
    top: 0 !important;
  }
}

/* Engagement pass: less text, more rhythm */
.proof-strip .proof-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.proof-strip .proof-list span {
  position: relative;
  min-height: 48px;
  border-radius: 16px;
  white-space: normal;
  text-align: center;
}

.proof-strip .proof-list span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-inline-end: 0.35rem;
  border-radius: 999px;
  background: #04d166;
  box-shadow: 0 0 18px rgba(4, 209, 102, 0.65);
}

#why-us .deliverables {
  grid-template-columns: 1.25fr 0.85fr;
}

#why-us .deliverable-card {
  min-height: 168px;
  display: grid;
  align-content: end;
  border-radius: 20px;
  background:
    radial-gradient(circle at 14% 18%, rgba(4, 209, 102, 0.18), transparent 34%),
    rgba(15, 23, 42, 0.72);
}

#why-us .deliverable-card:nth-child(1) {
  grid-row: span 2;
  min-height: 352px;
  background:
    radial-gradient(circle at 20% 22%, rgba(4, 209, 102, 0.24), transparent 36%),
    linear-gradient(145deg, rgba(4, 209, 102, 0.11), rgba(15, 23, 42, 0.88));
}

#why-us .deliverable-card:nth-child(1) h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

#why-us .deliverable-card h3 {
  margin-bottom: 0.45rem;
}

#why-us .deliverable-card p,
.step-card p,
.faq-item p {
  max-width: 34ch;
}

.steps {
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  inset-block: 34px auto;
  inset-inline: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(4, 209, 102, 0.55), transparent);
}

.step-card {
  isolation: isolate;
}

.step-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: rgba(4, 209, 102, 0.13);
  color: #8dffbd;
}

.faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-item {
  padding-block: 1rem;
}

.faq-item h3 {
  margin-bottom: 0.4rem;
}

.checkout-section .checkout-layout {
  align-items: center;
}

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

@media (max-width: 760px) {
  .proof-strip .proof-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #why-us .deliverables,
  .faq-list {
    grid-template-columns: 1fr;
  }

  #why-us .deliverable-card,
  #why-us .deliverable-card:nth-child(1) {
    min-height: 136px;
  }

  #why-us .deliverable-card:nth-child(1) h3 {
    font-size: 1.45rem;
  }

  .steps::before {
    inset-block: 0;
    inset-inline: auto 20px;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(4, 209, 102, 0.5), transparent);
  }

  .step-card {
    padding-inline-start: 1rem;
  }
}

/* Full UX polish pass: stable sections, calmer motion, mobile-first rhythm */
:root {
  --surface-card: rgba(9, 17, 32, 0.82);
  --surface-card-strong: rgba(12, 24, 39, 0.9);
  --stroke-soft: rgba(151, 168, 197, 0.2);
  --stroke-green: rgba(4, 209, 102, 0.38);
  --glow-green-soft: 0 18px 52px rgba(4, 209, 102, 0.12);
  --motion-fast: 180ms;
  --motion-med: 360ms;
  --ease-ui: cubic-bezier(0.16, 1, 0.3, 1);
}

.section {
  scroll-margin-top: 132px;
}

.section > .container {
  position: relative;
}

.section-lead {
  max-width: 58ch;
  margin: 0.75rem auto 0;
  color: #aebbd2;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.7;
  text-align: center;
}

.section-muted {
  background:
    radial-gradient(circle at 88% 10%, rgba(4, 209, 102, 0.08), transparent 28rem),
    linear-gradient(180deg, rgba(8, 15, 29, 0.9), rgba(5, 10, 21, 0.98));
}

.wow-section,
.contact-section,
.checkout-section,
.pricing-section {
  background:
    radial-gradient(circle at 16% 12%, rgba(4, 209, 102, 0.07), transparent 24rem),
    linear-gradient(180deg, rgba(6, 12, 24, 0.98), rgba(4, 8, 18, 0.98));
}

.step-card,
.deliverable-card,
.risk-stack article,
.faq-item,
.seo-blog-card,
.price-panel,
.checkout-panel,
.contact-card,
.workflow-preview {
  border-color: var(--stroke-soft);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 38%),
    var(--surface-card);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.22);
  transition:
    transform var(--motion-fast) var(--ease-ui),
    border-color var(--motion-fast) ease,
    box-shadow var(--motion-fast) ease,
    background var(--motion-fast) ease;
}

.step-card:hover,
.deliverable-card:hover,
.risk-stack article:hover,
.faq-item:hover,
.seo-blog-card:hover,
.price-panel:hover {
  transform: translateY(-3px);
  border-color: rgba(4, 209, 102, 0.34);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28), var(--glow-green-soft);
}

#why-us .deliverables {
  width: min(100%, 1040px);
  margin: 1.45rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

#why-us .deliverable-card,
#why-us .deliverable-card:nth-child(1) {
  min-height: 212px;
  grid-row: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem;
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 18%, rgba(4, 209, 102, 0.16), transparent 38%),
    linear-gradient(150deg, rgba(13, 28, 42, 0.95), rgba(8, 15, 29, 0.94));
}

#why-us .deliverable-card:nth-child(even) {
  background:
    radial-gradient(circle at 84% 12%, rgba(69, 123, 255, 0.13), transparent 34%),
    linear-gradient(150deg, rgba(12, 22, 39, 0.96), rgba(8, 15, 29, 0.94));
}

#why-us .deliverable-card:nth-child(1) h3,
#why-us .deliverable-card h3 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(1.2rem, 1.7vw, 1.42rem);
  line-height: 1.18;
}

#why-us .deliverable-card p {
  max-width: 28ch;
  margin: 0;
  color: #b3bfd2;
  line-height: 1.65;
}

.card-kicker {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(4, 209, 102, 0.28);
  border-radius: 14px;
  background: rgba(4, 209, 102, 0.1);
  color: #9cffca;
  font-size: 0.78rem;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 12px 28px rgba(4, 209, 102, 0.1);
}

.risk-stack {
  position: relative;
}

.risk-stack::before {
  content: "";
  position: absolute;
  inset-block: 1.1rem;
  inset-inline-start: 1.1rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(4, 209, 102, 0), rgba(4, 209, 102, 0.45), rgba(4, 209, 102, 0));
  pointer-events: none;
}

.risk-stack article {
  position: relative;
  min-height: 148px;
  padding: 1.1rem 1.2rem;
  overflow: hidden;
}

.risk-stack article::before,
.deliverable-card::before,
.price-panel::before {
  transition: opacity var(--motion-med) ease, transform var(--motion-med) var(--ease-ui);
}

.steps {
  gap: 1rem;
}

.steps::before {
  opacity: 0.5;
}

.step-card {
  min-height: 162px;
  padding: 1.05rem;
}

.reveal {
  transform: translateY(16px);
  transition:
    opacity var(--motion-med) var(--ease-ui),
    transform var(--motion-med) var(--ease-ui);
}

.reveal.is-visible {
  animation: none;
}

.hero-mini-proof article::before,
.recommended-ribbon {
  animation-duration: 5.6s;
}

.btn,
.payment-option,
.nav-toggle,
.faq-item summary,
.whatsapp-float {
  touch-action: manipulation;
}

.btn:active,
.payment-option:active,
.nav-toggle:active,
.faq-item summary:active,
.whatsapp-float:active {
  transform: translateY(1px) scale(0.99);
}

.pricing-cards {
  align-items: stretch;
}

.premium-package {
  background:
    radial-gradient(circle at 18% 14%, rgba(4, 209, 102, 0.18), transparent 34%),
    linear-gradient(150deg, rgba(12, 32, 35, 0.96), rgba(8, 15, 29, 0.96)) !important;
}

.faq-item summary {
  outline-offset: 5px;
}

.faq-item[open] {
  border-color: rgba(4, 209, 102, 0.36);
  background:
    radial-gradient(circle at 92% 16%, rgba(4, 209, 102, 0.12), transparent 28%),
    var(--surface-card-strong);
}

@media (min-width: 761px) {
  #why-us h2 {
    max-width: 22ch;
    margin-inline: auto;
    text-align: center;
  }

  #why-us .eyebrow {
    margin-inline: auto;
  }

  .wow-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
  }
}

@media (max-width: 980px) {
  #why-us .deliverables {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .section {
    padding-block: clamp(2.5rem, 10vw, 3.75rem);
    scroll-margin-top: 124px;
  }

  .section-lead {
    max-width: 31ch;
    margin-top: 0.55rem;
    font-size: 0.98rem;
    line-height: 1.6;
  }

  #why-us .deliverables {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 1rem;
  }

  #why-us .deliverable-card,
  #why-us .deliverable-card:nth-child(1) {
    min-height: auto;
    padding: 1rem;
    border-radius: 16px;
  }

  #why-us .deliverable-card h3,
  #why-us .deliverable-card:nth-child(1) h3 {
    max-width: none;
    font-size: 1.12rem;
  }

  #why-us .deliverable-card p {
    max-width: 32ch;
    font-size: 0.94rem;
  }

  .card-kicker {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .risk-stack::before {
    inset-inline-start: 1.25rem;
  }

  .risk-stack article,
  .step-card {
    min-height: auto;
  }

  .step-card:hover,
  .deliverable-card:hover,
  .risk-stack article:hover,
  .faq-item:hover,
  .seo-blog-card:hover,
  .price-panel:hover {
    transform: none;
  }

  .pricing-cards,
  .seo-blog-grid,
  .faq-list {
    gap: 0.75rem;
  }

  .whatsapp-float {
    max-width: calc(100vw - 1.6rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* Accessibility menu and RTL FAQ hardening */
html {
  font-size: calc(16px + var(--a11y-text-scale, 0px));
}

#faq,
#faq .faq-list,
#faq .faq-item,
#faq .faq-item summary,
#faq .faq-item p {
  direction: rtl;
  text-align: right;
}

#faq .faq-item summary {
  flex-direction: row;
}

#faq .faq-item summary span {
  flex: 1 1 auto;
}

#faq .faq-item summary::before {
  order: -1;
  margin-inline: 0 0.2rem;
}

.accessibility-widget {
  position: fixed;
  left: 1rem;
  right: auto;
  inset-block-end: calc(1rem + env(safe-area-inset-bottom));
  z-index: 1001;
  direction: rtl;
}

.accessibility-toggle {
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(37, 99, 235, 0.42);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(226, 241, 255, 0.92));
  color: #0b2d6f;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32), 0 0 0 6px rgba(37, 99, 235, 0.1);
}

.accessibility-toggle strong {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.accessibility-icon {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #2563eb;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.18), 0 8px 18px rgba(37, 99, 235, 0.28);
}

.accessibility-icon svg {
  width: 32px;
  height: 32px;
  display: block;
}

.accessibility-icon circle {
  fill: #2563eb;
}

.accessibility-icon path {
  fill: #ffffff;
}

.accessibility-panel {
  position: absolute;
  left: 0;
  right: auto;
  inset-block-end: calc(100% + 0.75rem);
  width: min(19rem, calc(100vw - 2rem));
  padding: 1rem;
  border: 1px solid rgba(156, 255, 202, 0.28);
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 10%, rgba(4, 209, 102, 0.16), transparent 40%),
    rgba(5, 11, 22, 0.98);
  color: #ffffff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
}

.accessibility-panel[hidden] {
  display: none;
}

.accessibility-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.accessibility-panel h2 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.25;
}

.accessibility-close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.accessibility-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.accessibility-actions button {
  min-height: 46px;
  padding: 0.65rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 850;
  cursor: pointer;
}

.accessibility-actions button:hover,
.accessibility-actions button:focus-visible,
.accessibility-actions button.is-active {
  border-color: rgba(156, 255, 202, 0.55);
  background: rgba(4, 209, 102, 0.16);
}

.accessibility-panel p {
  margin: 0.85rem 0 0;
  color: #cbd5e1;
  font-size: 0.88rem;
  line-height: 1.55;
}

.accessibility-panel a {
  color: #9cffca;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

html.a11y-readable-font body {
  font-family: Arial, "Heebo", system-ui, sans-serif;
}

html.a11y-underline a {
  text-decoration: underline !important;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 0.08em;
}

html.a11y-reduce-motion *,
html.a11y-reduce-motion *::before,
html.a11y-reduce-motion *::after {
  animation: none !important;
  scroll-behavior: auto !important;
  transition-duration: 0.001ms !important;
}

html.a11y-contrast {
  --bg: #000000;
  --bg-soft: #000000;
  --panel: #050505;
  --panel-2: #080808;
  --panel-3: #111111;
  --text: #ffffff;
  --muted: #ffffff;
  --line: #ffffff;
  --brand: #ffff00;
  --accent: #00ff66;
}

html.a11y-contrast body,
html.a11y-contrast .section,
html.a11y-contrast .section-muted,
html.a11y-contrast .wow-section,
html.a11y-contrast .contact-section,
html.a11y-contrast .checkout-section,
html.a11y-contrast .pricing-section {
  background: #000000 !important;
  color: #ffffff !important;
}

html.a11y-contrast .step-card,
html.a11y-contrast .deliverable-card,
html.a11y-contrast .risk-stack article,
html.a11y-contrast .faq-item,
html.a11y-contrast .seo-blog-card,
html.a11y-contrast .price-panel,
html.a11y-contrast .checkout-panel,
html.a11y-contrast .contact-card,
html.a11y-contrast .workflow-preview,
html.a11y-contrast .site-header,
html.a11y-contrast .top-alert,
html.a11y-contrast .accessibility-panel {
  border-color: #ffffff !important;
  background: #000000 !important;
  box-shadow: none !important;
}

html.a11y-contrast a,
html.a11y-contrast button,
html.a11y-contrast .eyebrow,
html.a11y-contrast .price-tag,
html.a11y-contrast .recommended-ribbon {
  color: #ffff00 !important;
}

html.a11y-contrast .btn,
html.a11y-contrast .accessibility-toggle {
  border: 2px solid #ffff00 !important;
  background: #000000 !important;
  color: #ffff00 !important;
}

html.a11y-contrast .accessibility-icon,
html.a11y-contrast .accessibility-icon circle {
  background: #0000ff !important;
  fill: #0000ff !important;
}

@media (max-width: 760px) {
  .accessibility-widget {
    left: 0.8rem;
    right: auto;
    inset-block-end: calc(0.85rem + env(safe-area-inset-bottom));
  }

  .accessibility-toggle {
    min-width: 54px;
    width: 54px;
    height: 54px;
    padding: 0;
    border-radius: 999px;
  }

  .accessibility-panel {
    width: min(18rem, calc(100vw - 1.6rem));
  }

  .accessibility-actions {
    grid-template-columns: 1fr;
  }
}

/* Decision polish pass: full testimonials, clearer checkout, stable hero */
.hero-left,
.handwritten-title-frame,
.handwritten-title-frame h1 {
  position: relative;
  z-index: 4;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

.handwritten-outline {
  z-index: 0;
  pointer-events: none;
}

.hero-sparkles,
.infinite-grid-layer,
.infinite-grid-glow,
.hero-ambient {
  pointer-events: none;
}

.proof-strip {
  display: none;
}

.testimonials-section {
  background:
    radial-gradient(720px 420px at 82% 12%, rgba(4, 209, 102, 0.11), transparent 62%),
    linear-gradient(180deg, rgba(5, 10, 20, 0.98), rgba(3, 8, 17, 0.98));
}

.testimonials-shell {
  grid-template-columns: minmax(17rem, 0.46fr) minmax(0, 1.1fr);
  align-items: center;
}

.testimonial-rotator {
  border-radius: 22px;
  overflow: hidden;
}

.testimonial-slide {
  grid-template-columns: minmax(17rem, 0.78fr) minmax(0, 1fr);
  align-items: stretch;
}

.testimonial-image-frame {
  display: grid;
  min-height: clamp(360px, 42vw, 620px);
  place-items: center;
  overflow: visible;
  background:
    radial-gradient(circle at 50% 0%, rgba(4, 209, 102, 0.12), transparent 36%),
    rgba(2, 7, 18, 0.94);
}

.testimonial-image-frame img {
  width: min(100%, 430px);
  height: auto !important;
  max-height: clamp(360px, 42vw, 620px);
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 14px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.38);
}

.testimonial-meta {
  align-self: center;
  padding-inline: clamp(0.2rem, 1vw, 0.7rem);
}

.testimonial-slide.is-active .testimonial-meta {
  animation: testimonialCopyIn 360ms var(--ease-ui, cubic-bezier(0.16, 1, 0.3, 1)) both;
}

.testimonial-controls button:hover,
.testimonial-controls button:focus-visible {
  border-color: rgba(4, 209, 102, 0.48);
  background: rgba(4, 209, 102, 0.13);
}

.section-cta {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100%, 820px);
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: clamp(1rem, 2.5vw, 1.65rem) auto 0;
  padding: 0.82rem 0.92rem 0.82rem 1rem;
  border: 1px solid rgba(4, 209, 102, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(4, 209, 102, 0.12), rgba(37, 99, 235, 0.055)),
    rgba(6, 16, 30, 0.88);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
}

.section-cta::before {
  content: "";
  position: absolute;
  inset: 0.58rem auto 0.58rem 0.58rem;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #04d166, rgba(37, 99, 235, 0.75));
  opacity: 0.9;
}

.section-cta > div:first-child {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.section-cta strong {
  color: #f5fbff;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 950;
  line-height: 1.25;
}

.section-cta span {
  color: #aebdd2;
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.45;
}

.section-cta .btn {
  min-width: 9.4rem;
  min-height: 44px;
  flex: 0 0 auto;
  padding: 0.72rem 1rem;
  white-space: nowrap;
}

.section-cta-actions {
  display: flex !important;
  flex: 0 0 auto;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
}

.section-cta-dark {
  border-color: rgba(148, 163, 184, 0.22);
  background:
    linear-gradient(135deg, rgba(9, 24, 42, 0.94), rgba(4, 209, 102, 0.07)),
    rgba(5, 12, 24, 0.92);
}

.testimonials-cta,
.trust-cta {
  grid-column: 1 / -1;
}

.pricing-cta {
  margin-top: 0.9rem;
}

.checkout-help-cta {
  width: 100%;
  min-height: 64px;
  margin-top: 0.9rem;
  padding: 0.72rem;
  border-radius: 16px;
  box-shadow: none;
}

.checkout-plan-cue {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 46px;
  padding: 0.52rem 0.72rem;
  border: 1px solid rgba(4, 209, 102, 0.28);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(4, 209, 102, 0.14), rgba(37, 99, 235, 0.07)),
    rgba(6, 16, 28, 0.92);
  color: #eafff2;
  font-size: 0.9rem;
  font-weight: 900;
}

.checkout-plan-cue strong {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  background: #04d166;
  color: #062014;
  font-size: 1.2rem;
  animation: cueArrow 1200ms ease-in-out infinite;
}

.payment-tabs-compact .payment-option {
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  align-items: center;
  justify-content: center;
}

.payment-tabs-compact .payment-option small {
  grid-column: 2;
  color: #9cffca;
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1;
}

#checkoutSubmitAmount {
  font-variant-numeric: tabular-nums;
}

#risk .wow-layout {
  gap: clamp(1.25rem, 4vw, 3rem);
}

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

#risk .risk-stack article:nth-child(2) {
  transform: translateX(-1.2rem);
}

#risk .risk-stack article:nth-child(3) {
  transform: translateX(-2.4rem);
}

#risk .risk-stack article:hover {
  transform: translateX(-2.4rem) translateY(-3px);
}

#risk .risk-stack article:nth-child(2):hover {
  transform: translateX(-1.2rem) translateY(-3px);
}

#risk .risk-stack article:nth-child(1):hover {
  transform: translateY(-3px);
}

#why-us .deliverables {
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
}

#why-us .deliverable-card:nth-child(1) {
  grid-row: span 2;
  min-height: 100%;
}

#why-us .deliverable-card:nth-child(4) {
  grid-column: span 2;
}

#how .steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

#how .step-card {
  display: grid;
  align-content: start;
  min-height: 190px;
}

#how .step-card span {
  margin-bottom: 1rem;
}

.trust-grid article:nth-child(odd),
.trust-grid article:nth-child(even) {
  transform: none;
}

.trust-grid article:hover {
  transform: translateY(-0.35rem);
}

@keyframes cueArrow {
  0%,
  100% {
    transform: translateY(-2px);
  }
  50% {
    transform: translateY(3px);
  }
}

@keyframes testimonialCopyIn {
  from {
    opacity: 0.72;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .testimonials-shell,
  .testimonial-slide,
  #why-us .deliverables,
  #how .steps {
    grid-template-columns: 1fr;
  }

  #why-us .deliverable-card:nth-child(1),
  #why-us .deliverable-card:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .trust-grid article:nth-child(odd),
  .trust-grid article:nth-child(even),
  .trust-grid article:hover,
  #risk .risk-stack article,
  #risk .risk-stack article:nth-child(2),
  #risk .risk-stack article:nth-child(3),
  #risk .risk-stack article:hover,
  #risk .risk-stack article:nth-child(2):hover,
  #risk .risk-stack article:nth-child(1):hover {
    transform: none;
  }
}

@media (max-width: 760px) {
  .handwritten-title-frame,
  .handwritten-title-frame h1 {
    min-height: 0;
  }

  .section-cta {
    min-height: 0;
    align-items: stretch;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 0.78rem;
    border-radius: 16px;
    flex-direction: column;
  }

  .section-cta::before {
    inset: 0.62rem 0.62rem auto 0.62rem;
    width: auto;
    height: 3px;
  }

  .section-cta strong {
    font-size: 1rem;
  }

  .section-cta span {
    font-size: 0.84rem;
  }

  .section-cta .btn,
  .section-cta-actions,
  .section-cta-actions .btn {
    width: 100%;
  }

  .section-cta-actions {
    flex-direction: column;
  }

  .testimonials-section {
    padding-block: 2.4rem;
  }

  .testimonials-copy .section-lead {
    text-align: right;
    margin-inline: 0;
  }

  .testimonial-slide {
    padding: 0.72rem;
  }

  .testimonial-image-frame {
    min-height: auto;
    border-radius: 16px;
  }

  .testimonial-image-frame img {
    width: 100%;
    max-height: none;
  }

  .testimonial-meta {
    padding: 0.3rem 0.15rem 0.1rem;
  }

  .testimonial-meta strong {
    font-size: clamp(1.15rem, 5.4vw, 1.42rem);
  }

  .checkout-plan-cue {
    align-items: center;
    min-height: 44px;
    font-size: 0.82rem;
  }

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

  .payment-tabs-compact .payment-option small {
    grid-column: auto;
    font-size: 0.68rem;
  }

  #how .step-card {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .checkout-plan-cue strong,
  .testimonial-slide.is-active .testimonial-meta {
    animation: none !important;
  }
}

/* Mobile fix and non-generic section system */
.hero-left h1,
.hero-left > .hero-copy,
.testimonial-meta,
.testimonial-meta strong,
.testimonial-meta p {
  opacity: 1 !important;
  visibility: visible !important;
}

.hero-left > .hero-copy {
  color: #d6e2f3 !important;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.42);
}

.checkout-focus-line {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  margin-top: 0.95rem;
  padding: 0.48rem 0.72rem;
  border: 1px solid rgba(4, 209, 102, 0.24);
  border-radius: 999px;
  background: rgba(4, 209, 102, 0.09);
  color: #c9ffd9;
  font-size: 0.88rem;
  font-weight: 950;
}

.checkout-plan-option {
  display: grid !important;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.24rem 0.42rem;
  text-align: right;
}

.checkout-plan-option > span:first-child {
  grid-column: 1;
}

.checkout-plan-option > strong {
  grid-column: 2;
  grid-row: 1;
}

.checkout-plan-arrow {
  grid-column: 1 / -1;
  color: #9fb0c8;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.1;
  transition: color 180ms ease, transform 220ms var(--ease-ui, cubic-bezier(0.16, 1, 0.3, 1));
}

.checkout-plan-details {
  grid-column: 1 / -1;
  max-height: 0;
  overflow: hidden;
  color: #bfd0e7;
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.45;
  opacity: 0;
  transition:
    max-height 260ms var(--ease-ui, cubic-bezier(0.16, 1, 0.3, 1)),
    opacity 180ms ease,
    margin 180ms ease;
}

.checkout-plan-option.is-active .checkout-plan-arrow {
  color: #9cffca;
  transform: translateY(1px);
}

.checkout-plan-option.is-active .checkout-plan-details {
  max-height: 5.8rem;
  margin-top: 0.35rem;
  opacity: 1;
}

.payment-tabs-compact .payment-option {
  display: flex;
  grid-template-columns: none;
}

.checkout-legal-note {
  margin: -0.15rem 0 0.15rem;
  color: #9fb0c8;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
}

.checkout-legal-note a {
  color: #9cffca;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.card-kicker,
.step-card span,
.trust-grid span {
  width: auto;
  min-width: 42px;
  padding-inline: 0.72rem;
  letter-spacing: 0;
  white-space: nowrap;
}

#why-us,
#how,
.trust-section,
.pricing-section,
.checkout-section {
  position: relative;
  overflow: hidden;
}

#why-us::before,
#how::before,
.trust-section::before,
.pricing-section::after,
.checkout-section::before {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.42;
}

#why-us::before {
  inset: 7% auto auto -7rem;
  width: 18rem;
  height: 18rem;
  border: 1px solid rgba(4, 209, 102, 0.3);
  border-radius: 999px;
  box-shadow: 0 0 0 2.8rem rgba(4, 209, 102, 0.035), 0 0 0 5rem rgba(37, 99, 235, 0.025);
  animation: orbitGlow 8s ease-in-out infinite;
}

#why-us .deliverables::after {
  content: "";
  position: absolute;
  inset: auto 8% -1rem 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(4, 209, 102, 0.75), transparent);
  animation: lineSweep 4.8s ease-in-out infinite;
  pointer-events: none;
}

#how::before {
  inset: 50% 6% auto 6%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(4, 209, 102, 0.86), rgba(37, 99, 235, 0.45), transparent);
  transform: translateY(-50%);
  animation: linePulse 3.8s ease-in-out infinite;
}

.trust-section::before {
  inset: 8% -8rem auto auto;
  width: 26rem;
  height: 10rem;
  border-block: 1px solid rgba(4, 209, 102, 0.2);
  transform: rotate(-10deg);
}

.pricing-section::after {
  inset: 6rem auto auto 7%;
  width: 9rem;
  height: 9rem;
  border: 1px solid rgba(37, 99, 235, 0.26);
  border-radius: 34% 66% 54% 46%;
  animation: softMorph 9s ease-in-out infinite;
}

.checkout-section::before {
  inset: auto -10rem 6rem auto;
  width: 21rem;
  height: 21rem;
  border: 1px solid rgba(4, 209, 102, 0.2);
  border-radius: 999px;
  box-shadow: inset 0 0 44px rgba(4, 209, 102, 0.06);
}

.deliverable-card,
.step-card,
.trust-grid article,
.price-panel {
  position: relative;
  isolation: isolate;
}

#why-us .deliverables {
  position: relative;
}

.deliverable-card::after,
.step-card::after,
.trust-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 0 38%, rgba(255, 255, 255, 0.075) 48%, transparent 58% 100%);
  opacity: 0;
  transform: translateX(42%);
  transition: opacity 220ms ease, transform 360ms var(--ease-ui, cubic-bezier(0.16, 1, 0.3, 1));
  pointer-events: none;
}

.deliverable-card:hover::after,
.step-card:hover::after,
.trust-grid article:hover::after {
  opacity: 1;
  transform: translateX(-42%);
}

@keyframes orbitGlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(1.1rem, 0.7rem, 0) scale(1.05);
  }
}

@keyframes lineSweep {
  0%,
  100% {
    opacity: 0.2;
    transform: scaleX(0.58);
  }
  50% {
    opacity: 0.74;
    transform: scaleX(1);
  }
}

@keyframes linePulse {
  0%,
  100% {
    opacity: 0.24;
  }
  50% {
    opacity: 0.68;
  }
}

@keyframes softMorph {
  0%,
  100% {
    border-radius: 34% 66% 54% 46%;
    transform: rotate(0deg);
  }
  50% {
    border-radius: 62% 38% 42% 58%;
    transform: rotate(8deg);
  }
}

@media (max-width: 760px) {
  .hebrew-site .hero {
    min-height: auto;
    padding-block: 1.45rem 2.15rem;
  }

  .hebrew-site .hero-left h1,
  .hero-left h1 {
    max-width: 10.8ch;
    color: #ffffff !important;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.56);
  }

  .hebrew-site .hero-copy,
  .hero-left > .hero-copy {
    max-width: 28ch;
    margin-top: 0.85rem;
    color: #d6e2f3 !important;
  }

  .testimonial-slide {
    display: flex;
    flex-direction: column;
  }

  .testimonial-meta {
    order: -1;
    border: 1px solid rgba(4, 209, 102, 0.18);
    border-radius: 16px;
    background: rgba(7, 16, 29, 0.78);
    padding: 0.82rem !important;
  }

  .testimonial-image-frame img {
    max-height: 58vh;
    object-fit: contain !important;
  }

  .checkout-focus-line {
    display: none;
  }

  .checkout-plan-options {
    grid-template-columns: 1fr !important;
  }

  .checkout-plan-option {
    min-height: 58px;
    padding: 0.72rem 0.78rem;
  }

  .checkout-plan-details {
    font-size: 0.78rem;
  }

  #why-us::before,
  .pricing-section::after,
  .checkout-section::before {
    opacity: 0.22;
  }

  #how::before {
    inset: 7rem auto 5rem 24px;
    width: 2px;
    height: auto;
    transform: none;
    background: linear-gradient(180deg, transparent, rgba(4, 209, 102, 0.72), transparent);
  }

  .deliverable-card::after,
  .step-card::after,
  .trust-grid article::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  #why-us::before,
  #why-us .deliverables::after,
  #how::before,
  .pricing-section::after {
    animation: none !important;
  }
}

@keyframes mobileHeroStroke {
  from {
    stroke-dasharray: 0 1200;
    stroke-dashoffset: 160;
    opacity: 0;
  }
  to {
    stroke-dasharray: 1200 0;
    stroke-dashoffset: 0;
    opacity: 0.78;
  }
}

@keyframes heroGlowFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0.7rem, -0.55rem, 0) scale(1.06);
  }
}

@keyframes mobileHeroLift {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .handwritten-outline path,
  .infinite-grid-active,
  .infinite-grid-glow span,
  .hero-left > .hero-copy,
  .hero-cta .btn,
  .hebrew-site .eyebrow {
    animation: none !important;
  }
}

/* Mobile hero hardening, fast checkout details, and friend/family FOMO section */
.family-fomo-section {
  background:
    radial-gradient(560px 360px at 85% 14%, rgba(4, 209, 102, 0.13), transparent 62%),
    radial-gradient(460px 280px at 8% 72%, rgba(37, 99, 235, 0.12), transparent 58%),
    linear-gradient(180deg, rgba(4, 9, 18, 0.98), rgba(6, 13, 25, 0.98));
}

#why-us.family-fomo-section::before {
  content: "";
  position: absolute;
  inset: 10% auto auto -6rem;
  width: 18rem;
  height: 18rem;
  border: 1px dashed rgba(4, 209, 102, 0.28);
  border-radius: 999px;
  opacity: 0.6;
  animation: fomoOrbit 9s ease-in-out infinite;
  pointer-events: none;
}

.family-fomo-section .section-lead {
  max-width: 44rem;
}

.family-fomo-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 0.85fr));
  gap: 1rem;
  margin-top: clamp(1.35rem, 3vw, 2.15rem);
}

.family-fomo-grid::before {
  content: "";
  position: absolute;
  inset: 50% 6% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(4, 209, 102, 0.55), transparent);
  animation: lineSweep 4.2s ease-in-out infinite;
  pointer-events: none;
}

.family-fomo-card {
  position: relative;
  min-height: 13rem;
  overflow: hidden;
  padding: 1.15rem;
  border: 1px solid rgba(88, 110, 140, 0.3);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 38%),
    rgba(9, 18, 34, 0.84);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.26);
}

.family-fomo-card::after {
  content: "";
  position: absolute;
  inset: auto -12% -35% auto;
  width: 9rem;
  height: 9rem;
  border: 1px solid rgba(4, 209, 102, 0.18);
  border-radius: 999px;
  pointer-events: none;
}

.family-fomo-card span {
  display: inline-grid;
  width: 2.9rem;
  height: 2.9rem;
  place-items: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(4, 209, 102, 0.2);
  border-radius: 16px;
  background: rgba(4, 209, 102, 0.1);
  font-size: 1.35rem;
}

.family-fomo-card h3 {
  max-width: 15ch;
  margin: 0 0 0.55rem;
  color: #ffffff;
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
  line-height: 1.18;
}

.family-fomo-card p {
  max-width: 32ch;
  margin: 0;
  color: #b6c4d8;
  line-height: 1.65;
}

.family-fomo-main {
  grid-row: span 2;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background:
    radial-gradient(circle at 18% 16%, rgba(4, 209, 102, 0.2), transparent 38%),
    linear-gradient(150deg, rgba(8, 38, 32, 0.96), rgba(8, 15, 29, 0.95));
}

.family-fomo-main h3 {
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.family-fomo-action {
  grid-column: span 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 9rem;
  gap: 1rem;
  background:
    linear-gradient(120deg, rgba(4, 209, 102, 0.16), rgba(37, 99, 235, 0.08)),
    rgba(8, 18, 32, 0.92);
}

.family-fomo-action span {
  margin: 0;
}

.family-fomo-action p {
  max-width: 42ch;
}

@keyframes fomoOrbit {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(1rem, 0.6rem, 0) rotate(8deg);
  }
}

.checkout-plan-option,
.checkout-plan-details,
.checkout-plan-arrow {
  transition-duration: 150ms !important;
}

.checkout-plan-details {
  display: none;
  max-height: none !important;
  transform: translateY(-3px);
  transition:
    opacity 140ms ease,
    transform 140ms var(--ease-ui, cubic-bezier(0.16, 1, 0.3, 1)) !important;
}

.checkout-plan-option.is-active .checkout-plan-details {
  display: block;
  transform: translateY(0);
}

.checkout-plan-option.is-active .checkout-plan-arrow {
  transform: none;
}

.checkout-plan-cue strong {
  animation-duration: 760ms !important;
}

@media (max-width: 980px) {
  .family-fomo-grid,
  .family-fomo-action {
    grid-template-columns: 1fr;
  }

  .family-fomo-main,
  .family-fomo-action {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .hero-sparkles,
  .handwritten-outline,
  .infinite-grid-active,
  .infinite-grid-glow {
    display: none !important;
  }

  .hebrew-site .hero-left,
  .hebrew-site .hero-left h1,
  .handwritten-title-frame,
  .handwritten-title-frame h1 {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    animation: none !important;
    filter: none !important;
    contain: none !important;
    will-change: auto !important;
    mix-blend-mode: normal !important;
  }

  .handwritten-title-frame {
    display: block !important;
    min-height: 0 !important;
  }

  .hebrew-site .hero-left h1,
  .hero-left h1 {
    position: relative !important;
    z-index: 20 !important;
    display: block !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
  }

  .family-fomo-section {
    padding-block: 2.5rem;
  }

  .family-fomo-section .section-lead {
    max-width: 31ch;
    text-align: right;
    margin-inline: 0;
  }

  .family-fomo-grid {
    gap: 0.75rem;
  }

  .family-fomo-card,
  .family-fomo-main,
  .family-fomo-action {
    min-height: auto;
    display: block;
    padding: 1rem;
  }

  .family-fomo-card h3,
  .family-fomo-main h3 {
    max-width: 16ch;
    font-size: 1.35rem;
  }

  .family-fomo-action .btn {
    width: 100%;
    margin-top: 0.9rem;
  }

  .family-fomo-grid::before {
    inset: 0 auto 0 1.35rem;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(4, 209, 102, 0.5), transparent);
  }

  .checkout-plan-option {
    transition:
      border-color 120ms ease,
      background 120ms ease !important;
  }
}

/* Final hero motion override. Keep H1 static; animate only atmosphere and controls. */
@media (max-width: 760px) {
  .hero .hero-sparkles,
  .hero .handwritten-outline,
  .hero .infinite-grid-active,
  .hero .infinite-grid-glow {
    display: block !important;
  }

  .hero .hero-sparkles {
    opacity: 0.34 !important;
    mix-blend-mode: screen !important;
  }

  .hero .handwritten-outline {
    opacity: 0.78 !important;
    z-index: 0 !important;
  }

  .hero .handwritten-outline path {
    animation: mobileHeroStroke 1450ms ease-out 180ms both !important;
  }

  .hero .infinite-grid-active {
    opacity: 0.44 !important;
    animation: infiniteGridDrift 18s linear infinite !important;
  }

  .hero .infinite-grid-glow {
    opacity: 0.58 !important;
  }

  .hero .infinite-grid-glow span {
    animation: heroGlowFloat 6.4s ease-in-out infinite !important;
  }

  .hebrew-site .hero .hero-left h1,
  .hero .hero-left h1 {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }

  .hero .hero-left > .hero-copy,
  .hero .hero-cta .btn,
  .hero .eyebrow {
    animation: mobileHeroLift 520ms var(--ease-ui, cubic-bezier(0.16, 1, 0.3, 1)) both !important;
  }

  .hero .hero-left > .hero-copy {
    animation-delay: 120ms !important;
  }

  .hero .hero-cta .btn:nth-child(1) {
    animation-delay: 190ms !important;
  }

  .hero .hero-cta .btn:nth-child(2) {
    animation-delay: 250ms !important;
  }
}

/* Mobile hero text safety: keep copy static, animate only decorative layers. */
@media (max-width: 760px) {
  .hero .hero-left,
  .hero .hero-trust-row,
  .hero .eyebrow,
  .hero .handwritten-title-frame,
  .hero .handwritten-title-frame h1,
  .hebrew-site .hero .hero-left h1,
  .hero .hero-left h1,
  .hero .hero-left > .hero-copy,
  .hero .hero-cta {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
    filter: none !important;
  }

  .hero .hero-left h1,
  .hero .hero-left > .hero-copy,
  .hero .eyebrow,
  .hero .hero-trust-row span {
    color: inherit;
    -webkit-text-fill-color: currentColor;
  }

  .hero .hero-left h1 {
    color: #ffffff !important;
    text-shadow: 0 10px 34px rgba(0, 0, 0, 0.34);
  }

  .hero .hero-left > .hero-copy {
    color: #d6e2f3 !important;
  }

  .hero .eyebrow {
    color: #04e374 !important;
    -webkit-text-fill-color: #04e374;
  }

  .hero .handwritten-outline {
    display: none !important;
  }

  .hero .handwritten-title-frame::after {
    content: "";
    position: absolute;
    right: 12%;
    bottom: 0.72rem;
    width: 76%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(4, 209, 102, 0.95), rgba(156, 255, 202, 0.72), transparent);
    box-shadow: 0 0 26px rgba(4, 209, 102, 0.2);
    transform-origin: right center;
    animation: heroMobileAccent 720ms var(--ease-ui, cubic-bezier(0.16, 1, 0.3, 1)) 180ms both;
    pointer-events: none;
  }

  .hero .hero-cta .btn {
    opacity: 1 !important;
    visibility: visible !important;
    animation: none !important;
    transition:
      background 160ms ease,
      border-color 160ms ease,
      box-shadow 160ms ease,
      transform 160ms ease !important;
  }

  .hero .hero-cta .btn:active {
    transform: translateY(1px) scale(0.99) !important;
  }

  .hero .infinite-grid-active {
    opacity: 0.28 !important;
    animation: infiniteGridDrift 24s linear infinite !important;
  }

  .hero .infinite-grid-glow {
    opacity: 0.34 !important;
  }

  .hero .infinite-grid-glow span {
    animation: heroGlowFloat 7.5s ease-in-out infinite !important;
  }
}

@keyframes heroMobileAccent {
  from {
    opacity: 0.28;
    transform: scaleX(0.22);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@media (max-width: 760px) and (prefers-reduced-motion: reduce) {
  .hero .handwritten-title-frame::after,
  .hero .infinite-grid-active,
  .hero .infinite-grid-glow span {
    animation: none !important;
  }
}

/* Last mobile hero override: no fade, no moving layer can cover or reset the title. */
@media (max-width: 760px) {
  body.hebrew-site .hero {
    min-height: auto !important;
    overflow: hidden !important;
  }

  .hero .hero-sparkles,
  .hero .handwritten-outline,
  .hero .infinite-grid-active,
  .hero .infinite-grid-glow,
  .hero .hero-ambient {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    animation: none !important;
    transition: none !important;
  }

  .hero .hero-grid,
  .hero .hero-left,
  .hero .hero-trust-row,
  .hero .eyebrow,
  .hero .handwritten-title-frame,
  .hero .handwritten-title-frame h1,
  .hero .hero-left h1,
  .hero .hero-left > .hero-copy,
  .hero .hero-cta,
  .hero .hero-cta .btn {
    opacity: 1 !important;
    visibility: visible !important;
    animation: none !important;
    transition: none !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
    mask: none !important;
    -webkit-mask: none !important;
    will-change: auto !important;
    mix-blend-mode: normal !important;
  }

  .hero .handwritten-title-frame {
    position: relative !important;
    z-index: 30 !important;
    isolation: isolate !important;
  }

  .hero .handwritten-title-frame::after {
    opacity: 1 !important;
    visibility: visible !important;
    animation: none !important;
    transform: none !important;
  }

  .hero .hero-left h1,
  body.hebrew-site .hero .hero-left h1 {
    position: relative !important;
    z-index: 31 !important;
    display: block !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-shadow: 0 10px 34px rgba(0, 0, 0, 0.34) !important;
  }

  .hero .hero-left > .hero-copy {
    color: #d6e2f3 !important;
    -webkit-text-fill-color: #d6e2f3 !important;
  }

  .hero .eyebrow {
    color: #04e374 !important;
    -webkit-text-fill-color: #04e374 !important;
  }
}

/* Desktop-only family/friends section: balanced cards instead of uneven bento blocks. */
@media (min-width: 981px) {
  .family-fomo-section > .container {
    max-width: 1120px;
  }

  .family-fomo-section .eyebrow,
  .family-fomo-section h2,
  .family-fomo-section .section-lead {
    margin-inline: auto;
    text-align: center;
  }

  .family-fomo-section h2 {
    max-width: 24ch;
  }

  .family-fomo-section .section-lead {
    max-width: 54ch;
  }

  .family-fomo-grid {
    width: min(100%, 1040px);
    margin: 1.55rem auto 0;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0.9rem;
    align-items: stretch;
  }

  .family-fomo-grid::before {
    display: none;
  }

  .family-fomo-card,
  .family-fomo-main {
    min-height: 218px !important;
    display: grid !important;
    grid-template-rows: auto auto 1fr;
    grid-column: auto !important;
    grid-row: auto !important;
    align-content: start;
    justify-content: stretch;
    gap: 0;
    padding: 1.05rem !important;
    border-radius: 18px;
  }

  .family-fomo-card span {
    width: 2.55rem;
    height: 2.55rem;
    margin: 0 0 0.85rem;
    border-radius: 14px;
    font-size: 1.12rem;
  }

  .family-fomo-card h3,
  .family-fomo-main h3 {
    max-width: none;
    margin: 0 0 0.5rem;
    font-size: clamp(1.2rem, 1.55vw, 1.42rem);
    line-height: 1.18;
  }

  .family-fomo-card p,
  .family-fomo-action p {
    max-width: none;
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .family-fomo-action {
    min-height: 112px !important;
    grid-column: 1 / -1 !important;
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    grid-template-rows: auto auto !important;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.15rem !important;
  }

  .family-fomo-action span {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin: 0;
  }

  .family-fomo-action h3 {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
  }

  .family-fomo-action p {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
  }

  .family-fomo-action .btn {
    grid-column: 3;
    grid-row: 1 / span 2;
    min-width: 13.5rem;
    justify-self: end;
    white-space: nowrap;
  }

  .family-fomo-section .section-cta {
    width: min(100%, 1040px);
    margin-top: 0.9rem;
  }
}

/* SEO/GEO pass: article data tables and answer blocks */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.4rem 0;
  font-size: 0.98rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  overflow: hidden;
}

.data-table th,
.data-table td {
  padding: 0.75rem 1rem;
  text-align: right;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: top;
}

.data-table th {
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
}

.data-table tr:last-child td {
  border-bottom: none;
}

.answer-block {
  border-inline-start: 4px solid #4f8cff;
  background: rgba(79, 140, 255, 0.08);
  border-radius: 10px;
  padding: 1.1rem 1.3rem;
  margin: 1.3rem 0;
}

.answer-block p {
  margin: 0;
}

@media (max-width: 640px) {
  .data-table {
    display: block;
    overflow-x: auto;
  }
}

/* Professional polish pass: aligned cards, scroll reveal, unified hover */
.trust-grid article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}

.family-fomo-grid,
#how .steps,
.seo-blog-grid,
.pricing-cards {
  align-items: stretch;
}

.family-fomo-card,
.seo-blog-card,
#how .step-card {
  height: 100%;
}

/* Scroll reveal */
.reveal-item {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 640ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 640ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-item.is-revealed {
  opacity: 1;
  transform: none;
}

/* Unified card hover: gentle lift + border glow */
.family-fomo-card,
.seo-blog-card,
.faq-item {
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), border-color 260ms ease, box-shadow 260ms ease;
}

.family-fomo-card:hover,
.seo-blog-card:hover {
  transform: translateY(-0.35rem);
  border-color: rgba(4, 209, 102, 0.38);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(4, 209, 102, 0.12);
}

.answer-block {
  transition: box-shadow 300ms ease, border-color 300ms ease;
}

.answer-block:hover {
  box-shadow: 0 0 34px rgba(79, 140, 255, 0.14);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .family-fomo-card:hover,
  .seo-blog-card:hover,
  .trust-grid article:hover {
    transform: none;
  }
}

/* Design pass: Suez One display type, hero tester meter, orchestrated motion */
:root {
  --font-display: "Suez One", "Heebo", system-ui, sans-serif;
}

h1,
h2,
.price-value,
.brand-text {
  font-family: var(--font-display);
  font-weight: 400;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.hero h1 {
  font-size: clamp(2.7rem, 6vw, 4.7rem);
  line-height: 1.08;
}

.hero h1 .accent-num {
  background: linear-gradient(160deg, #6ef7ae 10%, #04d166 60%, #02a850 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: none;
}

.price-value {
  font-variant-numeric: tabular-nums;
}

/* Hero tester meter — signature element */
.tester-meter {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.5rem 0 0.3rem;
}

.tester-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tester-dots span {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  border: 1.5px solid rgba(110, 247, 174, 0.38);
  background: rgba(110, 247, 174, 0.06);
  transition:
    background 280ms ease,
    border-color 280ms ease,
    box-shadow 280ms ease,
    transform 340ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tester-dots span.is-on {
  background: #04d166;
  border-color: #04d166;
  box-shadow: 0 0 14px rgba(4, 209, 102, 0.55);
  transform: scale(1.08);
}

.tester-meter-label {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #98a6ba;
}

.tester-meter-count {
  color: #6ef7ae;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}

.tester-meter.is-complete .tester-meter-label::after {
  content: " · מוכן לבדיקה ✓";
  color: #6ef7ae;
  font-weight: 800;
}

@keyframes meterCelebrate {
  0%, 100% { transform: scale(1.08); }
  40% { transform: scale(1.3); }
}

.tester-meter.is-complete .tester-dots span {
  animation: meterCelebrate 700ms cubic-bezier(0.34, 1.56, 0.64, 1) 1;
}

/* Hero entrance sequence */
@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

body.hebrew-site .hero-left > * {
  opacity: 0;
  animation: heroRise 760ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

body.hebrew-site .hero-left > *:nth-child(1) { animation-delay: 60ms; }
body.hebrew-site .hero-left > *:nth-child(2) { animation-delay: 160ms; }
body.hebrew-site .hero-left > *:nth-child(3) { animation-delay: 260ms; }
body.hebrew-site .hero-left > *:nth-child(4) { animation-delay: 380ms; }
body.hebrew-site .hero-left > *:nth-child(5) { animation-delay: 500ms; }
body.hebrew-site .hero-left > *:nth-child(6) { animation-delay: 640ms; }

/* Section heading accent bar, wipes in on reveal */
main section > .container > h2 {
  position: relative;
  padding-bottom: 0.7rem;
}

main section > .container > h2::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  width: 64px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #04d166, rgba(4, 209, 102, 0.1));
}

main section > .container > h2.reveal-item::after {
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 850ms cubic-bezier(0.16, 1, 0.3, 1) 240ms;
}

main section > .container > h2.reveal-item.is-revealed::after {
  transform: scaleX(1);
}

/* Button micro-interactions */
.btn {
  transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 220ms ease, filter 220ms ease;
}

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

.btn:active {
  transform: translateY(0) scale(0.97);
}

.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(4, 209, 102, 0.35);
  filter: brightness(1.06);
}

/* FAQ open animation */
details.faq-item > *:not(summary) {
  animation: none;
}

details.faq-item[open] > *:not(summary) {
  animation: faqContentIn 340ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes faqContentIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.hebrew-site .hero-left > * {
    animation: none;
    opacity: 1;
  }

  .tester-meter.is-complete .tester-dots span,
  details.faq-item[open] > *:not(summary) {
    animation: none;
  }

  main section > .container > h2.reveal-item::after {
    transform: scaleX(1);
    transition: none;
  }

  .btn:hover,
  .btn:active {
    transform: none;
  }
}

/* Excitement pass: centered meter, headline letter pop, live surfaces */
.tester-meter {
  align-items: center;
  text-align: center;
}

.tester-dots {
  justify-content: center;
}

@media (min-width: 951px) {
  .hebrew-site .tester-meter {
    align-items: flex-start;
    text-align: start;
  }

  .hebrew-site .tester-dots {
    justify-content: flex-start;
  }
}

/* Headline letter pop */
.h1-word {
  display: inline-block;
  white-space: pre;
}

.h1-ch {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.45em) scale(0.6) rotate(-5deg);
  animation: h1ChPop 560ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes h1ChPop {
  to {
    opacity: 1;
    transform: none;
  }
}

/* Premium plan: rotating gradient border */
@property --grad-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.premium-package {
  position: relative;
}

.premium-package::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from var(--grad-angle), #04d166, #4f8cff 30%, #6ef7ae 55%, #04d166);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: gradSpin 7s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes gradSpin {
  to {
    --grad-angle: 360deg;
  }
}

/* Proof strip marquee */
.proof-list.is-marquee {
  flex-wrap: nowrap;
  justify-content: flex-start;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8% 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8% 92%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  width: max-content;
  padding-inline-end: 2.4rem;
  animation: marqueeRtl 26s linear infinite;
}

.proof-list.is-marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeRtl {
  to {
    transform: translateX(50%);
  }
}

/* Testimonial image tilt */
.testimonial-image-frame {
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide:hover .testimonial-image-frame {
  transform: perspective(900px) rotateY(-4deg) rotateX(2.5deg) translateY(-5px);
}

/* Hero CTA breathing glow */
.hero-cta .btn-primary {
  animation: heroRise 760ms cubic-bezier(0.16, 1, 0.3, 1) forwards, ctaBreath 3.6s ease-in-out 2.4s infinite;
}

@keyframes ctaBreath {
  0%, 100% {
    box-shadow: 0 0 0 rgba(4, 209, 102, 0);
  }
  50% {
    box-shadow: 0 12px 36px rgba(4, 209, 102, 0.42);
  }
}

@media (prefers-reduced-motion: reduce) {
  .h1-ch {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .premium-package::before {
    animation: none;
  }

  .proof-list.is-marquee .marquee-track {
    animation: none;
  }

  .hero-cta .btn-primary {
    animation: none;
    opacity: 1;
  }

  .testimonial-slide:hover .testimonial-image-frame {
    transform: none;
  }
}

/* Variety pass: scroll keyword highlights + per-section heading animations */

/* Keyword marker highlight, sweeps in on scroll */
.kw-mark {
  background: linear-gradient(0deg, rgba(4, 209, 102, 0.3) 0 38%, transparent 38%);
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-size: 0% 100%;
  color: inherit;
  font-weight: 700;
  border-radius: 3px;
  padding-inline: 0.08em;
  transition: background-size 900ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--kw-delay, 0ms);
}

.kw-mark.is-hl {
  background-size: 100% 100%;
}

/* Heading animation variants - one per section, cycling */
main section > .container > h2::after {
  content: none;
}

/* 1. Full-width underline draw */
h2.h2-anim-underline {
  position: relative;
  padding-bottom: 0.7rem;
}

h2.h2-anim-underline::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(4, 209, 102, 0.15), #04d166, rgba(4, 209, 102, 0.15));
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1) 250ms;
}

h2.h2-anim-underline.is-revealed::after {
  transform: scaleX(1);
}

/* 2. Marker sweep behind the heading text */
h2.h2-anim-marker {
  width: fit-content;
  background: linear-gradient(0deg, rgba(4, 209, 102, 0.22) 0 42%, transparent 42%);
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-size: 0% 100%;
  transition: background-size 1000ms cubic-bezier(0.16, 1, 0.3, 1) 250ms;
  padding-inline: 0.12em;
  border-radius: 4px;
}

h2.h2-anim-marker.is-revealed {
  background-size: 100% 100%;
}

/* 3. Clip wipe reveal (right to left, reading direction) */
h2.h2-anim-clip.reveal-item {
  clip-path: inset(0 0 0 100%);
  transition:
    opacity 200ms ease,
    clip-path 950ms cubic-bezier(0.16, 1, 0.3, 1) 150ms;
}

h2.h2-anim-clip.reveal-item.is-revealed {
  clip-path: inset(0 0 0 0);
}

/* 4. Tilted rise with blur focus */
h2.h2-anim-rise.reveal-item {
  transform: translateY(30px) skewY(1.6deg);
  filter: blur(5px);
  transition:
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 700ms ease;
}

h2.h2-anim-rise.reveal-item.is-revealed {
  transform: none;
  filter: blur(0);
}

/* 5. Neon glow pulse */
@keyframes h2GlowIn {
  0% {
    text-shadow: 0 0 0 rgba(4, 209, 102, 0);
  }
  45% {
    text-shadow: 0 0 26px rgba(4, 209, 102, 0.85), 0 0 60px rgba(4, 209, 102, 0.35);
  }
  100% {
    text-shadow: 0 0 12px rgba(4, 209, 102, 0.25);
  }
}

h2.h2-anim-glow.is-revealed {
  animation: h2GlowIn 1.4s ease 250ms forwards;
}

@media (prefers-reduced-motion: reduce) {
  .kw-mark {
    background-size: 100% 100%;
    transition: none;
  }

  h2.h2-anim-underline::after {
    transform: scaleX(1);
    transition: none;
  }

  h2.h2-anim-marker {
    background-size: 100% 100%;
    transition: none;
  }

  h2.h2-anim-clip.reveal-item {
    clip-path: none;
    transition: none;
  }

  h2.h2-anim-rise.reveal-item {
    transform: none;
    filter: none;
    transition: none;
  }

  h2.h2-anim-glow.is-revealed {
    animation: none;
  }
}

/* Conversion pass: meter urgency line */
.tester-meter-urgency {
  margin: 0.15rem 0 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: #7d8ba1;
}

.tester-meter-urgency::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  margin-inline-end: 0.4rem;
  border-radius: 999px;
  background: #04d166;
  animation: urgencyBlink 2.2s ease-in-out infinite;
  vertical-align: 1px;
}

@keyframes urgencyBlink {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(4, 209, 102, 0.7); }
  50% { opacity: 0.35; box-shadow: 0 0 0 rgba(4, 209, 102, 0); }
}

body.hebrew-site .hero-left > *:nth-child(7) {
  animation-delay: 760ms;
}

@media (prefers-reduced-motion: reduce) {
  .tester-meter-urgency::before {
    animation: none;
  }
}

/* Feedback pass: desktop dot centering, hand-drawn circle, color variety */
@media (min-width: 951px) {
  .hebrew-site .tester-meter {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .hebrew-site .tester-dots {
    justify-content: center;
  }
}

/* Hand-drawn circle annotation around a keyword */
.kw-circle {
  position: relative;
  display: inline-block;
  line-height: 1.5;
  padding-inline: 0.22em;
  font-weight: 700;
  color: inherit;
}

.kw-circle svg {
  position: absolute;
  left: -0.46em;
  top: -0.4em;
  width: calc(100% + 0.92em);
  height: calc(100% + 0.82em);
  overflow: visible;
  pointer-events: none;
}

.kw-circle path {
  fill: none;
  stroke: #fbbf24;
  stroke-width: 2.6;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 470;
  stroke-dashoffset: 470;
  opacity: 0.92;
}

.kw-circle.is-hl path {
  animation: kwCircleDraw 950ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: var(--kw-delay, 0ms);
}

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

/* Color variety: blue glow heading, blue-green underline, blue answer accent */
@keyframes h2GlowInBlue {
  0% {
    text-shadow: 0 0 0 rgba(79, 140, 255, 0);
  }
  45% {
    text-shadow: 0 0 26px rgba(79, 140, 255, 0.85), 0 0 60px rgba(79, 140, 255, 0.35);
  }
  100% {
    text-shadow: 0 0 12px rgba(79, 140, 255, 0.25);
  }
}

h2.h2-anim-glow.is-revealed {
  animation-name: h2GlowInBlue;
}

h2.h2-anim-underline::after {
  background: linear-gradient(90deg, rgba(79, 140, 255, 0.2), #4f8cff 35%, #04d166 70%, rgba(4, 209, 102, 0.2));
}

h2.h2-anim-marker {
  background-image: linear-gradient(0deg, rgba(251, 191, 36, 0.24) 0 42%, transparent 42%);
}

@media (prefers-reduced-motion: reduce) {
  .kw-circle path {
    stroke-dashoffset: 0;
    animation: none;
  }

  h2.h2-anim-glow.is-revealed {
    animation: none;
  }
}

/* Specificity fix: variant selectors must outrank the ::after reset */
main section > .container > h2.h2-anim-underline::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(79, 140, 255, 0.2), #4f8cff 35%, #04d166 70%, rgba(4, 209, 102, 0.2));
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1) 250ms;
}

main section > .container > h2.h2-anim-underline.is-revealed::after {
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  main section > .container > h2.h2-anim-underline::after {
    transform: scaleX(1);
    transition: none;
  }
}

/* GEO article blocks */
.article-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 18px 0 22px;
  color: rgba(226, 232, 240, 0.72);
  font-size: 0.95rem;
}

.article-breadcrumbs a {
  color: #7dd3fc;
  text-decoration: none;
}

.article-answer-box,
.article-definitions {
  border: 1px solid rgba(45, 212, 191, 0.32);
  background:
    radial-gradient(circle at 85% 8%, rgba(45, 212, 191, 0.16), transparent 34%),
    rgba(4, 16, 31, 0.72);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.2);
}

.article-answer-box {
  margin: 18px 0 28px;
  padding: clamp(20px, 3vw, 30px);
  border-radius: 18px;
}

.article-answer-box p:last-child {
  margin: 0;
  color: rgba(241, 245, 249, 0.92);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  line-height: 1.85;
}

.article-definitions {
  padding: clamp(20px, 3vw, 28px);
  border-radius: 18px;
}

.article-definitions dl {
  display: grid;
  grid-template-columns: minmax(140px, 0.36fr) 1fr;
  gap: 14px 20px;
  margin: 0;
}

.article-definitions dt {
  color: #34d399;
  font-weight: 800;
}

.article-definitions dd {
  margin: 0;
  color: rgba(203, 213, 225, 0.9);
  line-height: 1.75;
}

@media (max-width: 640px) {
  .article-breadcrumbs {
    font-size: 0.86rem;
  }

  .article-definitions dl {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .article-definitions dd:not(:last-child) {
    margin-bottom: 14px;
  }
}

/* Mobile checkout payment buttons */
@media (max-width: 640px) {
  .quick-checkout .payment-tabs-compact {
    width: min(100%, 360px);
    margin: 0.65rem auto 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    gap: 0.75rem;
  }

  .quick-checkout .payment-tabs-compact .payment-option {
    min-height: 68px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    justify-content: center;
    gap: 0.48rem;
    padding: 0.75rem 0.7rem;
    border-radius: 18px;
    text-align: center;
  }

  .quick-checkout .payment-tabs-compact .payment-option img {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .quick-checkout .payment-tabs-compact .payment-option span {
    font-size: 1rem;
    text-align: center;
  }

  .quick-checkout .payment-tabs-compact .payment-option small {
    grid-column: auto;
    font-size: 0.78rem;
    text-align: center;
  }
}

/* Approval guarantee add-on */
.addon-row {
  display: flex !important;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 0.9rem 0;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(216, 189, 117, 0.4);
  border-radius: 14px;
  background: rgba(216, 189, 117, 0.08);
  cursor: pointer;
  font-weight: 500 !important;
}

.addon-row input[type="checkbox"] {
  width: 1.15rem !important;
  height: 1.15rem;
  min-width: 1.15rem;
  margin-top: 0.15rem;
  accent-color: var(--brand, #d8bd75);
  cursor: pointer;
}

.addon-row span {
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--text);
}

.addon-row span strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.report-section .trust-grid {
  margin-top: 1.6rem;
}

.checkout-pricing-link {
  display: block;
  text-align: center;
  margin: 0.2rem 0 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.checkout-pricing-link:hover {
  color: var(--accent);
}

/* Scroll-reveal hardening:
   1. Release compositor layers once revealed (Android GPU eviction caused
      text to disappear when scrolling back up on mobile Chrome/Samsung).
   2. Disable reveal animations entirely on touch/small screens - content
      is always visible there. Desktop keeps the animations. */
.reveal.is-visible,
.reveal-item.is-revealed {
  will-change: auto;
}

@media (max-width: 820px), (hover: none) {
  .reveal,
  .reveal.is-visible,
  .reveal-item,
  .reveal-item.is-revealed {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
  }
}

/* ==== Mobile text-flicker fix (Android Chrome / Samsung Internet) ====
   Continuously-animating composited layers (grid drift, glow float, ambient
   blobs), gradient-clipped transparent text, and backdrop-filter force
   constant re-rasterization during scroll on Android - text tiles flash
   blank. On touch/small screens we freeze all decorative animation and
   flatten those effects. Desktop is untouched. */
@media (max-width: 820px), (hover: none) {
  .hero .infinite-grid-active,
  .hero .infinite-grid-muted,
  .hero .infinite-grid-glow span,
  .hero .hero-ambient,
  .hero-ambient-one,
  .hero-ambient-two,
  .aurora-text,
  .hero .handwritten-title-frame::after,
  .hero .handwritten-outline path {
    animation: none !important;
    transition: none !important;
  }

  .hero h1 .accent-num {
    background: none !important;
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    -webkit-text-fill-color: #06e277 !important;
    color: #06e277 !important;
  }

  .site-header,
  .top-alert,
  .price-panel,
  .checkout-panel,
  .workflow-dialog {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

.footer-legal-name {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0.75;
}

/* ==== Mobile heading-visibility fix ====
   Section headings get a per-section entrance variant (marker / underline /
   clip / rise / glow). Two of them hide the text outright until the
   IntersectionObserver adds .is-revealed: `clip` uses clip-path inset 100%
   and `rise` uses blur(5px). If the observer misses on mobile (fast scroll,
   scroll-up, bfcache restore) the heading stays invisible - and clip-path /
   filter were not covered by the earlier opacity/transform override.
   On touch and small screens every heading renders in its final state. */
@media (max-width: 820px), (hover: none) {
  main section > .container > h2,
  h2.h2-anim-marker,
  h2.h2-anim-underline,
  h2.h2-anim-clip,
  h2.h2-anim-clip.reveal-item,
  h2.h2-anim-rise,
  h2.h2-anim-rise.reveal-item,
  h2.h2-anim-glow {
    opacity: 1 !important;
    clip-path: none !important;
    filter: none !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }

  h2.h2-anim-marker,
  .kw-mark {
    background-size: 100% 100% !important;
    transition: none !important;
  }

  h2.h2-anim-underline::after,
  main section > .container > h2.h2-anim-underline::after,
  main section > .container > h2.reveal-item::after {
    transform: scaleX(1) !important;
    transition: none !important;
  }
}
