.elementor-2016 .elementor-element.elementor-element-d68bcdf{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2016 .elementor-element.elementor-element-7d7ef96{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS *//* =====================================================
   VistaX Webinar Landing Page — style.css
   Hebrew / RTL  |  Rubik font  |  Navy + Gold palette
   ===================================================== */

/* ── TOKENS ──────────────────────────────────────────── */
:root {
  --navy:        #0A1628;
  --navy-deep:   #060D1A;
  --navy-mid:    #0F1E3A;
  --gold:        #C9A227;
  --gold-light:  #E8BF3C;
  --gold-dim:    rgba(201,162,39,0.15);
  --surface:     #F8F9FC;
  --surface-mid: #EEF1F8;
  --white:       #FFFFFF;
  --text:        #1A1A2E;
  --text-muted:  #6B7280;
  --wa-green:    #25D366;
  --wa-dark:     #1DA851;
  --red-live:    #E53E3E;
  --warn-bg:     #7F1D1D;

  --radius:    12px;
  --radius-sm: 8px;
  --shadow:    0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.22);
  --tr:        0.2s ease;

  --max-w: 1120px;
  --font: 'Rubik', 'Segoe UI', Arial, sans-serif;
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  direction: rtl;
}

body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { font-family: var(--font); }

/* ── LAYOUT HELPERS ──────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section-light { background: var(--surface); }
.section-dark  { background: var(--navy-deep); }

section { padding: 88px 0; }

/* ── TYPOGRAPHY HELPERS ──────────────────────────────── */
.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eyebrow-light { color: var(--gold-light); }
.eyebrow-light, .eyebrow-light ~ * { }
.eyebrow-light {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 44px;
}
.section-h2.dark  { color: var(--text); }
.section-h2.light { color: var(--white); }

.gold { color: var(--gold); }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--wa-green);
  color: var(--white);
  font-family: var(--font);
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background var(--tr), transform var(--tr), box-shadow var(--tr);
  white-space: nowrap;
}
.btn-wa:hover {
  background: var(--wa-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.38);
}
.btn-wa:active { transform: translateY(-1px); }

.btn-wa-lg  { font-size: 1.05rem; padding: 16px 36px; }
.btn-wa-xl  { font-size: 1.2rem;  padding: 20px 52px; }

.wa-icon { width: 22px; height: 22px; flex-shrink: 0; }

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background var(--tr), color var(--tr);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.75);
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font);
  background: none;
  cursor: pointer;
  transition: background var(--tr), color var(--tr), border-color var(--tr);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); color: var(--white); }

.speaker-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* ── DATE "ALIVE" ────────────────────────────────────── */
/* Announce bar date */
.date-live {
  background: var(--navy-deep);
  color: var(--gold);
  padding: 2px 10px;
  border-radius: 6px;
  font-size: 1rem;
  letter-spacing: 0.5px;
  animation: date-pulse 2.2s ease-in-out infinite;
  display: inline-block;
}
/* Hero badge date */
.date-live-hero {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-shadow: 0 0 14px rgba(201,162,39,0.7);
  animation: date-pulse 2.2s ease-in-out infinite;
  display: inline-block;
}
/* Hero badge wrapper override */
.badge-date {
  font-size: 0.875rem;
  background: rgba(201,162,39,0.12);
  border: 1px solid rgba(201,162,39,0.45);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
@keyframes date-pulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%       { opacity: 0.78; transform: scale(1.04); }
}

.btn-announce {
  background: var(--navy);
  color: var(--white);
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  transition: opacity var(--tr);
  flex-shrink: 0;
}
.btn-announce:hover { opacity: 0.85; }

/* ── ANNOUNCE BAR ────────────────────────────────────── */
.announce-bar {
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 0.875rem;
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.announce-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.announce-text { flex: 1; }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  background-image:
    radial-gradient(ellipse at 75% 40%, rgba(201,162,39,0.09) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(10,50,120,0.5) 0%, transparent 55%);
  padding: 88px 0 104px;
  position: relative;
  overflow: hidden;
}

/* Subtle dot-grid texture */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,162,39,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  /* RTL: first col → right side, second col → left side */
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: center;
}

/* Hero text (RIGHT side in RTL) */
.hero-logo-link { display: inline-block; margin-bottom: 28px; }
.hero-logo { width: 68px; height: 68px; border-radius: 50%; }

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 22px;
}
.badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
}
.badge-free   { background: var(--gold); color: var(--navy-deep); }
.badge-date   { color: var(--gold); font-size: 0.875rem; background: none; padding: 0; }
.badge-online { background: rgba(255,255,255,0.1); color: var(--white); }

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 900;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  margin-bottom: 36px;
  max-width: 560px;
}

/* Countdown */
.countdown-wrap { margin-bottom: 36px; }
.countdown-label {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  margin-bottom: 12px;
  font-weight: 500;
}
.countdown-grid {
  display: flex;
  gap: 8px;
  align-items: center;
}
.count-unit {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  text-align: center;
  min-width: 72px;
}
.count-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.count-lbl {
  display: block;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
  margin-top: 5px;
  font-weight: 500;
}
.count-sep {
  color: var(--gold);
  font-size: 1.8rem;
  font-weight: 700;
  padding-bottom: 12px;
}

.reassurance {
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  margin-top: 14px;
}

/* Speaker card (LEFT side in RTL) */
.speaker-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.live-badge {
  display: inline-block;
  background: var(--red-live);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.65; }
}

.speaker-photo-hero {
  width: 210px;
  height: 210px;
  object-fit: cover;
  margin: 0 auto 18px;
}
.speaker-name {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.speaker-handle { color: var(--gold); font-size: 0.875rem; font-weight: 600; margin-bottom: 8px; }
.speaker-role   { color: rgba(255,255,255,0.55); font-size: 0.8rem; line-height: 1.5; margin-bottom: 16px; }
.speaker-meta   { border-top: 1px solid rgba(201,162,39,0.2); padding-top: 14px; }
.speaker-meta span { color: var(--gold-light); font-size: 0.8rem; font-weight: 600; }

/* ── PAIN SECTION ────────────────────────────────────── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}
.pain-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: var(--shadow);
  transition: transform var(--tr), box-shadow var(--tr);
}
.pain-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pain-icon { font-size: 2.6rem; margin-bottom: 18px; }
.pain-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.pain-card p { font-size: 0.875rem; color: #555; line-height: 1.65; }

.pain-pivot {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius);
  font-size: 0.975rem;
  line-height: 1.55;
  border-right: 4px solid var(--gold);
}

/* ── DREAM CUSTOMER ──────────────────────────────────── */
.avatar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.avatar-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,162,39,0.18);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color var(--tr), box-shadow var(--tr);
}
.avatar-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 28px rgba(201,162,39,0.15);
}
.avatar-card-featured {
  border-color: var(--gold);
  background: rgba(201,162,39,0.07);
  position: relative;
}
.avatar-icon { font-size: 2.4rem; margin-bottom: 16px; }
.avatar-card h3 {
  color: var(--gold-light);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.avatar-card li {
  color: rgba(255,255,255,0.78);
  font-size: 0.875rem;
  line-height: 2.1;
}

/* ── WHAT YOU'LL LEARN ───────────────────────────────── */
.learn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 44px;
}
.learn-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 24px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: var(--shadow);
  transition: transform var(--tr), box-shadow var(--tr);
}
.learn-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.learn-num {
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 1.1rem;
  font-weight: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.learn-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.learn-body p { font-size: 0.875rem; color: #555; line-height: 1.65; }

.cta-center { text-align: center; }

/* ── SPEAKER BIO ─────────────────────────────────────── */
.speaker-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: center;
}
.speaker-img-col { text-align: center; }
.speaker-bio-photo {
  width: 240px;
  height: 240px;
  object-fit: cover;
  margin: 0 auto 14px;
}
.speaker-social-handle { color: var(--gold); font-size: 0.9rem; font-weight: 600; }

.speaker-quote {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 26px;
  font-style: italic;
  border-right: 3px solid var(--gold);
  padding-right: 18px;
}
.speaker-creds li {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  line-height: 2.3;
}

/* ── SOCIAL PROOF ────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 36px;
  align-items: start;
}

/* review date/source row inside card */
.review-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.review-source {
  font-size: 0.72rem;
  color: #999;
  white-space: nowrap;
}

/* ── EXCEL SHOWCASE ──────────────────────────────────── */
.excel-showcase {
  margin-bottom: 44px;
  text-align: center;
}
.excel-caption {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 18px;
}
.excel-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.14);
  border: 2px solid rgba(201,162,39,0.25);
}
.excel-screenshot {
  width: 100%;
  display: block;
}
.excel-subcaption {
  margin-top: 12px;
  font-size: 0.78rem;
  color: #888;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: var(--shadow);
  position: relative;
  transition: transform var(--tr), box-shadow var(--tr);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-featured {
  border-top: 4px solid var(--gold);
  transform: scale(1.03);
}
.testimonial-featured:hover { transform: scale(1.03) translateY(-4px); }

.featured-tag {
  position: absolute;
  top: -14px;
  right: 20px;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
}

.stars { color: #F59E0B; font-size: 1.05rem; margin-bottom: 16px; }
.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 22px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.avatar-initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ac, #2E7D32);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.88rem; color: var(--text); }
.testimonial-author span  { font-size: 0.78rem; color: #888; }

/* Trust bar */
.trust-bar {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 22px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-label {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-logos { display: flex; gap: 14px; flex-wrap: wrap; }
.trust-logo {
  background: rgba(255,255,255,0.07);
  color: var(--white);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.13);
}
.trust-logo-gold {
  background: var(--gold-dim);
  border-color: rgba(201,162,39,0.4);
  color: var(--gold-light);
}

/* ── OFFER / VALUE STACK ─────────────────────────────── */
.value-stack {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,162,39,0.28);
  border-radius: var(--radius);
  overflow: hidden;
}
.value-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background var(--tr);
}
.value-row:hover { background: rgba(255,255,255,0.03); }
.val-check { font-size: 1.3rem; flex-shrink: 0; }
.val-desc { flex: 1; }
.val-desc strong { display: block; color: var(--white); font-size: 0.95rem; font-weight: 600; margin-bottom: 3px; }
.val-desc span   { font-size: 0.8rem; color: rgba(255,255,255,0.48); }
.val-price { text-align: center; white-space: nowrap; }
.price-was  { display: block; color: rgba(255,255,255,0.3); font-size: 0.82rem; }
.price-free { color: var(--gold); font-weight: 800; font-size: 1.05rem; }

.value-total-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  background: rgba(201,162,39,0.1);
  border-top: 2px solid rgba(201,162,39,0.4);
  flex-wrap: wrap;
}
.total-label { color: rgba(255,255,255,0.65); font-size: 0.95rem; }
.total-was   { color: rgba(255,255,255,0.35); font-size: 1rem; }
.total-arrow { color: var(--gold); font-size: 1.2rem; }
.total-yours { color: var(--white); font-size: 1.05rem; }
.total-yours strong { color: var(--gold); font-size: 1.35rem; }

/* ── SCARCITY BAR ────────────────────────────────────── */
.scarcity-bar {
  background: linear-gradient(135deg, var(--warn-bg) 0%, #991B1B 50%, var(--warn-bg) 100%);
  padding: 28px 0;
}
.scarcity-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.scarcity-headline { color: var(--white); font-size: 1.1rem; margin-bottom: 4px; }
.scarcity-sub      { color: rgba(255,255,255,0.75); font-size: 0.875rem; }
.scarcity-countdown { display: flex; gap: 6px; align-items: center; }
.sc-unit { text-align: center; }
.sc-num  { display: block; font-size: 1.6rem; font-weight: 800; color: var(--white); line-height: 1; }
.sc-lbl  { display: block; font-size: 0.65rem; color: rgba(255,255,255,0.6); margin-top: 3px; }
.sc-sep  { color: rgba(255,255,255,0.7); font-size: 1.3rem; font-weight: 700; padding: 0 2px 8px; }

/* ── FAQ ─────────────────────────────────────────────── */
.faq-wrap { max-width: 760px; }
.faq-list { margin-top: 8px; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.1); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: right;
  direction: rtl;
  transition: color var(--tr);
  gap: 16px;
}
.faq-q::after {
  content: '+';
  color: var(--gold);
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s ease, content 0s;
}
.faq-q:hover             { color: var(--gold); }
.faq-q[aria-expanded="true"] { color: var(--gold); }
.faq-q[aria-expanded="true"]::after { content: '×'; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding 0.2s ease;
}
.faq-item.open .faq-a { max-height: 240px; }
.faq-a p {
  padding-bottom: 18px;
  color: #555;
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ── FINAL CTA ───────────────────────────────────────── */
.final-cta {
  background-image: radial-gradient(ellipse at 50% 0%, rgba(201,162,39,0.14) 0%, transparent 70%);
  padding: 100px 0;
}
.final-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.final-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 28px;
}
.final-sub {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  margin-bottom: 40px;
  line-height: 1.65;
}
.final-countdown {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  margin-bottom: 36px;
}

.vistax-link {
  display: inline-block;
  margin-top: 24px;
  color: rgba(255,255,255,0.35);
  font-size: 0.85rem;
  transition: color var(--tr);
}
.vistax-link:hover { color: var(--gold); }

/* ── FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 44px 0 28px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.footer-logo { width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 8px; }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.8rem; }
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  transition: color var(--tr);
}
.footer-nav a:hover { color: var(--white); }
.footer-copy { color: rgba(255,255,255,0.28); font-size: 0.75rem; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  /* On mobile, text goes on top, speaker card below */
  .hero-text   { order: 1; }
  .hero-speaker { order: 2; display: flex; justify-content: center; }

  .pain-grid          { grid-template-columns: 1fr; }
  .avatar-grid        { grid-template-columns: 1fr; }
  .learn-grid         { grid-template-columns: 1fr; }
  .speaker-grid       { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .testimonial-featured { transform: scale(1); }
  .testimonial-featured:hover { transform: translateY(-4px); }

  .trust-bar   { flex-direction: column; align-items: flex-start; gap: 16px; }
  .scarcity-inner { flex-direction: column; text-align: center; }
  .announce-inner { justify-content: center; text-align: center; }

  .speaker-img-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .speaker-quote { text-align: right; }

  .value-row { flex-wrap: wrap; }
  .value-total-row { flex-direction: column; align-items: flex-start; gap: 6px; }
}

@media (max-width: 600px) {
  section { padding: 64px 0; }
  .hero   { padding: 64px 0 80px; }

  .hero h1 { font-size: 1.8rem; }

  .countdown-grid { gap: 4px; }
  .count-unit  { min-width: 58px; padding: 10px 8px; }
  .count-num   { font-size: 1.6rem; }
  .count-sep   { font-size: 1.4rem; }

  .btn-wa-lg { font-size: 0.95rem; padding: 14px 24px; }
  .btn-wa-xl { font-size: 1rem;    padding: 16px 30px; }
  .wa-icon   { width: 20px; height: 20px; }

  .footer-nav { gap: 16px; }
  .trust-logos { gap: 10px; }

  .final-countdown { flex-wrap: wrap; justify-content: center; }
}/* End custom CSS */