/* ================================================
   S-TEAM · style.css
   Light theme · Gold accent · RTL · Mobile-first
   ================================================ */

:root {
  --gold:         #C9973E;
  --gold-light:   #EDD068;
  --gold-glow:    rgba(201,151,62,0.30);
  --gold-border:  rgba(201,151,62,0.35);
  --gold-bg:      rgba(201,151,62,0.08);

  --bg:           #FFFFFF;
  --bg-alt:       #F8F8F6;
  --text:         #1A1A1A;
  --text-muted:   #6B7280;
  --text-dim:     #9CA3AF;
  --border:       #E5E7EB;

  --green:        #22C55E;

  --font:         'Heebo', 'Arial Hebrew', Arial, sans-serif;

  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    20px;

  --shadow-sm:    0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.10);
  --shadow-gold:  0 4px 24px rgba(201,151,62,0.28);

  --navy:         #1A3A5C;
  --brand-gold:   #C8A84B;

  --max-w:        1100px;
  --px:           20px;
  --section-py:   88px;
  --header-h:     64px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); transition: color .2s; }
a:hover { color: var(--gold-light); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 3px; }

/* ---------- Utils ---------- */
.container { max-width: var(--max-w); margin-inline: auto; padding-inline: var(--px); }
.section    { padding-block: var(--section-py); }
.gold-text  { color: var(--gold); }
.gold-link  { color: var(--gold); text-decoration: underline; }

/* ---------- Fade-in ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.benefits-grid .fade-in:nth-child(2) { transition-delay: .10s; }
.benefits-grid .fade-in:nth-child(3) { transition-delay: .20s; }
.benefits-grid .fade-in:nth-child(4) { transition-delay: .30s; }
.domains-grid  .fade-in:nth-child(2) { transition-delay: .10s; }
.domains-grid  .fade-in:nth-child(3) { transition-delay: .20s; }
.faq-list      .fade-in:nth-child(2) { transition-delay: .07s; }
.faq-list      .fade-in:nth-child(3) { transition-delay: .14s; }
.faq-list      .fade-in:nth-child(4) { transition-delay: .21s; }
.faq-list      .fade-in:nth-child(5) { transition-delay: .28s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  min-height: 44px;
  padding: 12px 26px;
  font-size: 1rem;
  transition: background .2s, box-shadow .2s, transform .15s, color .2s;
  white-space: nowrap;
  line-height: 1;
}
.btn--gold {
  background: var(--gold);
  color: #fff;
}
.btn--gold:hover {
  background: var(--gold-light);
  box-shadow: 0 0 20px var(--gold-glow);
  transform: translateY(-2px);
  color: #fff;
}
.btn--sm { min-height: 38px; padding: 8px 18px; font-size: .875rem; }
.btn--ghost-sm {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  min-height: 38px;
  padding: 7px 16px;
  font-size: .875rem;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background .2s;
}
.btn--ghost-sm:hover { background: var(--bg-alt); }

/* ---------- Section headers ---------- */
.section-header { text-align: center; margin-bottom: 52px; }
.section-title {
  font-size: clamp(1.65rem, 4vw, 2.3rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.4px;
  margin-bottom: 8px;
}
.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 12px auto 0;
  border-radius: 2px;
}
.section-sub { color: var(--text-muted); font-size: 1.05rem; margin-top: 12px; }

/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  inset-inline: 0;
  z-index: 9999;
  background: var(--text);
  color: #fff;
  padding: 14px var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .875rem;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.12);
}
.cookie-banner a { color: var(--gold-light); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner.hidden { display: none; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(26, 58, 92, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow .3s, background .3s;
}
.site-header.scrolled {
  background: rgba(26, 58, 92, 0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.header-logo { display: flex; align-items: center; text-decoration: none; }
.logo-img {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
.header-cta { font-size: .95rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* וידאו */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* fallback תמונה,מוצגת מאחורי הוידאו; נגלית אם הוידאו לא נטען */
.hero-video-fallback {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-block: 80px 60px;
  width: 100%;
}

/* Hero text,ימין (RTL start) */
.hero-text { flex: 1; max-width: 560px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(201,151,62,0.15);
  border: 1px solid rgba(201,151,62,0.4);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: .8rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: .4px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  margin-bottom: 36px;
}
.hero-sub strong { color: var(--gold-light); font-weight: 700; }

.hero-stats {
  display: flex;
  gap: 0;
  align-items: center;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(201,151,62,0.3);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
  overflow: hidden;
  max-width: 420px;
}
.stat-item { flex: 1; padding: 16px 18px; text-align: center; }
.stat-num  { display: block; font-size: 1.45rem; font-weight: 800; line-height: 1.1; }
.stat-label{ display: block; font-size: .72rem; color: rgba(255,255,255,0.65); margin-top: 3px; }
.stat-divider { width: 1px; height: 36px; background: rgba(201,151,62,0.25); flex-shrink: 0; }

/* Hero floating form,שמאל (RTL end) */
.hero-form-wrap {
  flex-shrink: 0;
  width: 340px;
}
.hero-form {
  background: rgba(0,0,0,0.75);
  border: 1px solid rgba(201,151,62,0.3);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 32px 28px;
}
.hero-form-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.hero-form-sub {
  font-size: .82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 22px;
}

.hf-group { margin-bottom: 16px; }
.hf-label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-bottom: 6px;
}
.req-star { color: var(--gold); margin-right: 2px; }
.hf-input {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,151,62,0.3);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font);
  font-size: .95rem;
  direction: rtl;
  min-height: 44px;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none;
  appearance: none;
}
.hf-input::placeholder { color: rgba(255,255,255,0.3); }
.hf-input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(201,151,62,0.1);
}

.hf-select-wrap { position: relative; }
.hf-select { cursor: pointer; padding-left: 36px; }
.hf-chevron {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  pointer-events: none;
}
.hf-select option { background: #1a1a1a; color: #fff; }

.hf-error { display: block; font-size: .76rem; color: var(--gold-light); margin-top: 4px; min-height: 16px; }

/* hero form checkbox */
.hf-check-group { margin-bottom: 18px; }
.hf-check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: .82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.hf-check-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.hf-check-box {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(201,151,62,0.45);
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  transition: background .2s, border-color .2s;
}
.hf-check-input:checked + .hf-check-box {
  background: var(--gold);
  border-color: var(--gold);
}
.hf-check-input:checked + .hf-check-box::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg) translateY(-1px);
}
.hf-check-input:focus-visible + .hf-check-box { outline: 2px solid var(--gold); outline-offset: 2px; }

.btn--submit-hero {
  width: 100%;
  font-size: 1.05rem;
  min-height: 48px;
  border-radius: var(--radius-md);
  letter-spacing: .3px;
}

.hf-msg {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 600;
}
.hf-msg--success { background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.3); color: #86efac; }
.hf-msg--error   { background: rgba(201,151,62,0.12); border: 1px solid rgba(201,151,62,0.3); color: var(--gold-light); }

/* hero scroll arrow */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  color: var(--gold);
  animation: bounce 2s infinite;
  text-decoration: none;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}

/* ---------- Benefits ---------- */
.benefits-section { background: var(--bg-alt); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 768px) {
  .benefits-grid { grid-template-columns: repeat(4, 1fr); }
}

.benefit-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold-border);
}

.card-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--gold);
  transition: background .25s;
}
.benefit-card:hover .card-icon { background: rgba(201,151,62,0.15); }

.card-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.card-text  { font-size: .875rem; color: var(--text-muted); line-height: 1.6; }

/* ---------- Domains ---------- */
.domains-section { background: var(--bg); }
.domains-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .domains-grid { grid-template-columns: repeat(3, 1fr); }
}

.domain-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.domain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold-border);
}

.domain-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: #1a1a1a;
}
.domain-img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; display: block; }
.domain-card:hover .domain-img { transform: scale(1.04); }

/* Placeholder,מוצג תמיד מאחורי התמונה; נגלה כשהתמונה נכשלת */
.domain-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gold);
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2218 100%);
  font-size: .85rem;
  font-weight: 600;
  pointer-events: none;
  z-index: 0; /* מאחורי התמונה */
}
/* כשהתמונה עולה בהצלחה,מסתירים placeholder */
.domain-img-wrap:not(.img-error) .domain-img-placeholder { opacity: 0; }
/* כשיש שגיאה,מציגים placeholder */
.domain-img-wrap.img-error .domain-img-placeholder { opacity: 1; z-index: 1; }

.domain-body { padding: 22px 20px; }
.domain-title { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.domain-text  { font-size: .875rem; color: var(--text-muted); line-height: 1.6; }

/* ---------- Requirements ---------- */
.requirements-section { background: var(--bg-alt); }
.req-cols {
  display: grid;
  gap: 20px;
  margin-bottom: 24px;
}
@media (min-width: 600px) {
  .req-cols { grid-template-columns: 1fr 1fr; }
}

.req-block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}

.req-badge {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: 20px;
}
.req-badge--must {
  background: var(--gold-bg);
  color: var(--gold);
  border: 1px solid var(--gold-border);
}
.req-badge--plus {
  background: rgba(237,208,104,0.10);
  color: #a07828;
  border: 1px solid rgba(201,151,62,0.25);
}

.req-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.req-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.req-icon {
  flex-shrink: 0;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  font-size: 1rem;
}
.req-icon--check { color: var(--green); }
.req-icon--star  { color: var(--gold); }

.req-note {
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: .875rem;
  color: var(--text-muted);
  max-width: 640px;
}
.req-note strong { color: var(--text); }

/* ---------- Full form section ---------- */
.full-form-section { background: var(--bg); }

.full-form {
  max-width: 640px;
  margin-inline: auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  box-shadow: var(--shadow-md);
}
@media (max-width: 480px) { .full-form { padding: 28px 20px; } }

.form-row {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}
@media (min-width: 520px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group { margin-bottom: 20px; }
.form-row .form-group { margin-bottom: 0; }
.form-row { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 7px;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font);
  font-size: .95rem;
  direction: rtl;
  min-height: 44px;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder { color: var(--text-dim); }
.form-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,151,62,0.15);
}

.ff-select-wrap { position: relative; }
.form-select { cursor: pointer; padding-left: 36px; background: var(--bg); }
.ff-select-arrow {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  pointer-events: none;
}
.form-select option { background: var(--bg); color: var(--text); }

.form-error { display: block; font-size: .8rem; color: var(--gold); margin-top: 4px; min-height: 16px; }

/* Checkbox (full form) */
.form-group--check { margin-bottom: 16px; }
.check-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.check-input { position: absolute; opacity: 0; width: 0; height: 0; }
.check-box {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1px solid var(--gold-border);
  border-radius: 5px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  transition: background .2s, border-color .2s;
}
.check-input:checked + .check-box {
  background: var(--gold);
  border-color: var(--gold);
}
.check-input:checked + .check-box::after {
  content: '';
  display: block;
  width: 6px;
  height: 10px;
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg) translateY(-1px);
}
.check-input:focus-visible + .check-box { outline: 2px solid var(--gold); outline-offset: 2px; }

.btn--submit-full {
  width: 100%;
  font-size: 1.05rem;
  min-height: 52px;
  border-radius: var(--radius-md);
  margin-top: 8px;
  letter-spacing: .3px;
}

.form-msg {
  margin-top: 14px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 600;
}
.form-msg--success {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.3);
  color: #16a34a;
}
.form-msg--error {
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  color: var(--gold);
}

/* ---------- FAQ ---------- */
.faq-section { background: var(--bg-alt); }
.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item[open] {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-gold);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  list-style: none;
  color: var(--text);
  transition: background .15s;
  user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { background: var(--bg-alt); }
.faq-arrow {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
  display: inline-block;
  width: 20px;
  text-align: center;
}
.faq-arrow::before { content: '+'; }
.faq-item[open] .faq-arrow::before { content: '−'; }
.faq-a {
  padding: 0 22px 18px;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #1A1A1A;
  border-top: 3px solid var(--gold);
  padding-block: 52px;
  color: rgba(255,255,255,0.7);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  text-align: center;
  align-items: start;
}
@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr 1fr;
    text-align: right;
  }
}

.footer-brand { display: flex; flex-direction: column; gap: 8px; align-items: center; }
@media (min-width: 768px) { .footer-brand { align-items: flex-end; } }

.footer-logo-img {
  height: 60px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
.footer-tagline { font-size: .85rem; color: rgba(255,255,255,0.45); }

.footer-center { display: flex; flex-direction: column; gap: 10px; align-items: center; }
@media (min-width: 768px) { .footer-center { align-items: center; } }

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: .85rem;
  color: rgba(255,255,255,0.55);
  transition: color .2s;
  text-decoration: none;
}
.footer-links a:hover { color: var(--gold); }

.footer-copy { font-size: .8rem; color: rgba(255,255,255,0.4); }
.footer-copy a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-copy a:hover { color: var(--gold); }

.footer-contact { display: flex; flex-direction: column; align-items: center; gap: 12px; }
@media (min-width: 768px) { .footer-contact { align-items: flex-start; } }

.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: .9rem;
  font-family: var(--font);
  text-decoration: none;
  min-height: 46px;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.footer-wa-btn:hover {
  background: #1db954;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  color: #fff;
}

/* ---------- WhatsApp Float ---------- */
.wa-float {
  position: fixed;
  bottom: 28px;
  left: 20px;
  z-index: 9000;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  text-decoration: none;
  font-weight: 700;
  font-size: .875rem;
  font-family: var(--font);
  min-height: 50px;
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.05); box-shadow: 0 6px 24px rgba(37,211,102,0.5); color: #fff; }
.wa-label { white-space: nowrap; }

/* ---------- A11y Widget ---------- */
.a11y-widget {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 8000;
  display: flex;
  align-items: center;
}

/* Tab shape stuck to left edge */
.a11y-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 14px 14px 12px;
  min-width: 62px;
  background: #C8A84B;
  color: #fff;
  border: none;
  border-radius: 0 14px 14px 0;
  cursor: pointer;
  box-shadow: 3px 0 18px rgba(200,168,75,0.55);
  transition: min-width .2s ease, box-shadow .2s;
  flex-shrink: 0;
}
.a11y-toggle:hover,
.a11y-toggle[aria-expanded="true"] {
  min-width: 70px;
  box-shadow: 4px 0 24px rgba(200,168,75,0.7);
}
.a11y-toggle:focus-visible {
  outline: 3px solid #fff;
  outline-offset: -4px;
  border-radius: 0 14px 14px 0;
}
.a11y-toggle-text {
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .8px;
  font-family: var(--font);
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
}

.a11y-panel {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  padding: 16px;
  min-width: 220px;
  margin-left: 12px;
}
.a11y-panel[hidden] { display: none; }

.a11y-panel-title {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid #C8A84B;
  text-align: right;
  letter-spacing: .2px;
}

.a11y-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  cursor: pointer;
  font-family: var(--font);
  font-size: .875rem;
  color: var(--text);
  margin-bottom: 8px;
  text-align: right;
  transition: background .15s, border-color .15s;
  min-height: 44px;
}
.a11y-option:last-child { margin-bottom: 0; }
.a11y-option:hover { background: var(--bg-alt); border-color: #C8A84B; }
.a11y-option.active {
  background: rgba(200,168,75,0.12);
  border-color: #C8A84B;
  color: #7a5f1a;
  font-weight: 700;
}
.a11y-option:focus-visible { outline: 2px solid #C8A84B; outline-offset: 2px; }
.a11y-option-icon { font-size: 1.1rem; flex-shrink: 0; }
.a11y-option-label { font-weight: 600; flex: 1; }
.a11y-sr-info { cursor: default; color: var(--text-muted); font-size: .82rem; }
.a11y-sr-info:hover { background: var(--bg); border-color: var(--border); color: var(--text-muted); }

/* High contrast mode — comprehensive */
body.high-contrast {
  --bg:         #000000;
  --bg-alt:     #111111;
  --text:       #FFFFFF;
  --text-muted: #DDDDDD;
  --text-dim:   #BBBBBB;
  --border:     #666666;
  --gold-bg:    rgba(255,220,80,0.15);
  --gold-border: rgba(255,220,80,0.7);
}
body.high-contrast .site-header { background: rgba(0,0,0,0.98) !important; }
body.high-contrast .hero-overlay { background: rgba(0,0,0,0.80) !important; }
body.high-contrast .hero-form   { background: rgba(0,0,0,0.97) !important; }
body.high-contrast .hero-stats  { background: rgba(0,0,0,0.88) !important; border-color: rgba(255,220,80,0.5) !important; }
body.high-contrast .hero-badge  { background: rgba(255,220,80,0.2) !important; border-color: rgba(255,220,80,0.7) !important; }
body.high-contrast .hf-input    { background: rgba(255,255,255,0.1) !important; border-color: #888 !important; color: #fff !important; }
body.high-contrast .benefit-card,
body.high-contrast .domain-card,
body.high-contrast .req-block,
body.high-contrast .faq-item    { background: #111 !important; border-color: #666 !important; }
body.high-contrast .card-icon   { background: #222 !important; border-color: #666 !important; }
body.high-contrast .full-form   { background: #111 !important; border-color: #666 !important; }
body.high-contrast .form-input  { background: #111 !important; border-color: #666 !important; color: #fff !important; }
body.high-contrast .faq-q       { color: #fff !important; }
body.high-contrast .faq-q:hover { background: #1a1a1a !important; }
body.high-contrast .faq-a       { color: #ddd !important; border-color: #555 !important; }
body.high-contrast .trust-strip { background: #000 !important; }
body.high-contrast .site-footer { border-top-color: #FFD700 !important; }
body.high-contrast .cookie-banner { background: #000 !important; border-top: 1px solid #555; }
body.high-contrast a                { color: #FFD700 !important; }
body.high-contrast .gold-text       { color: #FFD700 !important; }
body.high-contrast .btn--gold       { background: #FFD700 !important; color: #000 !important; box-shadow: none !important; }
body.high-contrast .btn--ghost-sm   { border-color: #888 !important; color: #ddd !important; }
body.high-contrast .req-icon--check { color: #7CFC00 !important; }
body.high-contrast .req-icon--star  { color: #FFD700 !important; }
body.high-contrast .section-title   { color: #fff !important; }
body.high-contrast .trust-title     { color: #FFD700 !important; }
body.high-contrast .trust-tag       { border-color: #FFD700 !important; color: #fff !important; }
body.high-contrast .a11y-toggle     { background: #FFD700 !important; }
body.high-contrast .a11y-toggle svg { fill: #000 !important; stroke: #000 !important; }
body.high-contrast .a11y-toggle-text { color: #000 !important; }
body.high-contrast .a11y-panel      { background: #111 !important; border-color: #666 !important; }
body.high-contrast .a11y-option     { background: #1a1a1a !important; border-color: #555 !important; color: #fff !important; }
body.high-contrast .a11y-option.active { background: rgba(255,220,80,0.15) !important; border-color: #FFD700 !important; color: #FFD700 !important; }
body.high-contrast .legal-wrap h1,
body.high-contrast .legal-wrap h2   { color: #fff !important; border-color: rgba(255,220,80,0.5) !important; }

/* No animations mode */
body.no-animations *,
body.no-animations *::before,
body.no-animations *::after {
  animation-duration: .01ms !important;
  transition-duration: .01ms !important;
}
body.no-animations .fade-in { opacity: 1 !important; transform: none !important; }

/* ---------- Trust Strip ---------- */
.trust-strip {
  background: var(--navy);
  padding-block: var(--section-py);
}
.trust-title {
  color: #fff;
}
.trust-title::after {
  background: var(--brand-gold);
}
.trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.trust-tag {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--brand-gold);
  color: #fff;
  border-radius: 20px;
  padding: 8px 20px;
  font-size: .875rem;
  font-weight: 500;
  font-family: var(--font);
  transition: background .2s, color .2s;
  cursor: default;
}
.trust-tag:hover {
  background: rgba(200, 168, 75, 0.18);
  color: var(--brand-gold);
}

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
  :root { --header-h: 64px; --section-py: 64px; }

  .logo-img { height: 40px; }

  .hero-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
    padding-block: 60px 48px;
  }
  .hero-text { max-width: 100%; }
  .hero-form-wrap { width: 100%; }

  .hero-stats { max-width: 100%; }
}

@media (max-width: 480px) {
  :root { --section-py: 52px; }

  .benefits-grid { grid-template-columns: 1fr; }
  .domains-grid  { grid-template-columns: 1fr; }

  .wa-float .wa-label { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; }

  .hero-stats { flex-direction: column; }
  .stat-divider { width: 60px; height: 1px; }
}

/* ---------- Accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .fade-in { opacity: 1; transform: none; }
}
body.text-lg { font-size: 1.1rem; }
body.text-xl { font-size: 1.22rem; }

/* ---------- Legal Pages ---------- */
.legal-wrap {
  max-width: 760px;
  margin-inline: auto;
  padding-block: 56px 88px;
  padding-inline: var(--px);
  font-family: 'Assistant', var(--font);
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 36px;
  color: var(--gold);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: color .2s;
}
.legal-back:hover { color: var(--gold-light); }
.legal-wrap h1 {
  font-size: clamp(1.55rem, 4vw, 2.1rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  font-family: 'Heebo', var(--font);
}
.legal-meta {
  color: var(--text-muted);
  font-size: .875rem;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border);
}
.legal-wrap h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 36px;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold-border);
  font-family: 'Heebo', var(--font);
}
.legal-wrap p,
.legal-wrap li {
  line-height: 1.85;
  margin-bottom: 10px;
  font-size: .95rem;
  color: var(--text-muted);
}
.legal-wrap strong { color: var(--text); }
.legal-wrap ul {
  padding-right: 22px;
  margin-bottom: 14px;
}
.legal-wrap a { color: var(--gold); text-decoration: underline; }
.legal-wrap a:hover { color: var(--gold-light); }

/* ══════════════════════════════════════════════════════════
   VISUAL EFFECTS  (effects.js companion styles)
══════════════════════════════════════════════════════════ */

/* ── Scroll progress bar ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, #C8A84B 0%, #f7e099 50%, #C8A84B 100%);
  background-size: 200% 100%;
  animation: progress-shimmer 2s linear infinite;
  z-index: 10000;
  width: 0%;
  pointer-events: none;
  border-radius: 0 2px 2px 0;
}
@keyframes progress-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Hero canvas (particles) ── */
.hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* ── Gold shimmer on hero S-TEAM title ── */
@keyframes gold-shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
.hero-title .gold-text {
  background: linear-gradient(100deg, #b8892e 0%, #f7e099 30%, #ffe566 50%, #f7e099 70%, #b8892e 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gold-shimmer 2.8s linear infinite;
}

/* ── Hero badge entrance ── */
@keyframes badge-pop {
  0%   { opacity: 0; transform: translateY(-16px) scale(.9); }
  70%  { transform: translateY(3px) scale(1.03); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-badge {
  animation: badge-pop .7s .05s cubic-bezier(.22,.68,0,1.2) both;
}

/* ── Hero title words slide ── */
@keyframes word-rise {
  from { opacity: 0; transform: translateY(32px); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0);   }
}
.hero-title {
  animation: word-rise .7s .2s ease-out both;
}
.hero-sub {
  animation: word-rise .7s .36s ease-out both;
}
.hero-stats {
  animation: word-rise .6s .52s ease-out both;
}
.hero-form-wrap {
  animation: word-rise .7s .12s ease-out both;
}

/* ── Hero form glow on load ── */
@keyframes form-glow-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(200,168,75,.0); }
  40%  { box-shadow: 0 0 40px 8px rgba(200,168,75,.28); }
  100% { box-shadow: 0 0 0 0 rgba(200,168,75,.0); }
}
.hero-form-wrap.hero-form-glow .hero-form {
  animation: form-glow-pulse 1.4s ease-out forwards;
}

/* ── Button ripple ── */
.btn { position: relative; overflow: hidden; }
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  transform: scale(0);
  animation: ripple-out .65s ease-out forwards;
  pointer-events: none;
}
@keyframes ripple-out {
  to { transform: scale(1); opacity: 0; }
}

/* ── Section title underline animate ── */
.title-anim::after {
  width: 0;
  transition: width .7s .15s cubic-bezier(.22,.68,0,1.1);
}
.title-anim--in::after {
  width: 48px;
}

/* ── Card will-change for tilt ── */
.benefit-card, .domain-card { will-change: transform; }

/* ── No-animations & reduced-motion overrides ── */
body.no-animations .scroll-progress { animation: none !important; }
body.no-animations .hero-badge,
body.no-animations .hero-title,
body.no-animations .hero-sub,
body.no-animations .hero-stats,
body.no-animations .hero-form-wrap { animation: none !important; opacity: 1; transform: none; filter: none; }
body.no-animations .hero-title .gold-text { animation: none !important; }
body.no-animations .btn-ripple { display: none !important; }
body.no-animations .title-anim::after { transition: none !important; }

body.high-contrast .hero-title .gold-text {
  background: none;
  -webkit-text-fill-color: #FFD700;
  animation: none;
}
body.high-contrast .scroll-progress { background: #FFD700; animation: none; }

@media (prefers-reduced-motion: reduce) {
  .scroll-progress { animation: none !important; }
  .hero-badge, .hero-title, .hero-sub, .hero-stats, .hero-form-wrap { animation: none !important; opacity: 1; transform: none; }
  .hero-title .gold-text { animation: none !important; }
  .btn-ripple { display: none !important; }
  .title-anim::after { transition: none !important; width: 48px; }
}
