/* ═══════════════════════════════════════
   THE VECTOR ACADEMY - HOMEPAGE STYLES
═══════════════════════════════════════ */

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, iframe { max-width: 100%; display: block; }

a, a:hover, a:focus, a:visited, a:active { text-decoration: none !important; }

:root {
  --navy:        #eaf4fb;
  --navy-mid:    #f0f8fc;
  --navy-card:   #f5fafd;
  --navy-border: #c4dded;
  --accent:      #0072c6;
  --accent2:     #005bb5;
  --gold:        #b87800;
  --white:       #1a3a52;
  --off-white:   #1e4060;
  --muted:       #4a7a9b;
  --success:     #1a7a3c;
  --font-head:   'Space Grotesk', sans-serif;
  --font-mono:   'Space Mono', monospace;
  --font-body:   'Barlow', sans-serif;

  --gap-section: clamp(64px, 8vw, 100px);
  --gap-col:     clamp(32px, 5vw, 64px);
}

body {
  background: var(--navy);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}

/* ═══════════════════════════════════════
   LAYOUT UTILITIES
═══════════════════════════════════════ */
.tva-wrap {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.g2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-col);
  align-items: center;
}
.g2-top { align-items: start; }

.tva-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--navy-border), transparent);
}

/* ═══════════════════════════════════════
   TYPOGRAPHY & SHARED COMPONENTS
═══════════════════════════════════════ */
.tva-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(0,114,198,.3);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  background: rgba(0,114,198,.07);
}

.tva-h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
}

.tva-lead {
  font-size: clamp(.95rem, 1.4vw, 1.05rem);
  color: var(--muted);
  line-height: 1.75;
}

.tva-ac   { color: var(--accent); }
.tva-gold { color: var(--gold); }

.tva-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .88rem;
  padding: 13px 26px;
  border-radius: 7px;
  text-decoration: none !important;
  transition: all .2s;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  background: none;
  color: var(--white);
}
.tva-btn-fill {
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: #fff !important;
  box-shadow: 0 4px 18px rgba(0,114,198,.22);
}
.tva-btn-fill:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 24px rgba(0,114,198,.38);
  color: #fff !important;
}
.tva-btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent) !important;
  background: rgba(0,114,198,.08);
}
.tva-btn-outline:hover {
  border-color: var(--accent2);
  background: rgba(0,114,198,.15);
  color: var(--accent2) !important;
}

.tva-callout {
  background: linear-gradient(135deg, rgba(0,114,198,.07), rgba(0,91,181,.07));
  border: 1px solid rgba(0,114,198,.2);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: .92rem;
  color: var(--off-white);
  line-height: 1.7;
  font-style: italic;
  margin-top: 8px;
}
.tva-callout span { color: var(--accent); font-style: normal; font-weight: 600; }

/* ═══════════════════════════════════════
   §1  HERO
═══════════════════════════════════════ */
#tva-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(580px, 85vh, 820px);
  display: flex;
  align-items: center;
  /* BUGFIX: this used to also have a hardcoded
     background-image: url('.../4.jpg') with background-attachment: fixed.
     That image is NOT connected to the dashboard's Hero Background Image
     setting — it was a leftover fixed URL baked into the CSS. Meanwhile
     .tva-hero-bg below (the real <img> tag that DOES read the dashboard
     setting) had display:none, so it was invisible. The result: whatever
     image you picked in the dashboard was saved correctly, but visitors
     only ever saw this hardcoded CSS image instead. Removed here; the
     <img> below is now the single source of truth for the hero image. */
}

.tva-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; 
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
}

#tva-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg,
    rgba(255,255,255,.75) 0%,
    rgba(255,255,255,.65) 25%,
    rgba(255,255,255,.35) 45%,
    rgba(255,255,255,.0) 65%
  );
}

.tva-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(16px, 2vw, 28px) 0 clamp(44px, 6vw, 76px);
}

.tva-hero-grid {
  display: grid;
  grid-template-columns: 58% 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.tva-hero-text-col {
  max-width: 540px;
}

.tva-hero-text-panel {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: clamp(20px, 3vw, 32px);
}

.tva-hero-contact-card {
  background: #ffffff;
  border: 1px solid rgba(0, 114, 198, 0.15);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 10px 34px rgba(0, 30, 60, 0.14);
  width: 100%;
  max-width: 380px;
  align-self: center;
  display: block;
}

.tva-hero-form-title {
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 800;
  color: var(--accent);
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--navy-border);
}
.tva-hero-form-title svg { color: var(--accent); flex-shrink: 0; }

.tva-hero-contact-sub {
  font-size: .82rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
  margin: 0 0 18px;
}

.tva-hero-contact-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tva-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 16px;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  text-decoration: none !important;
  cursor: pointer;
  transition: transform .18s, box-shadow .18s, opacity .18s;
  box-sizing: border-box;
}
.tva-contact-btn:hover { transform: translateY(-1px); }

.tva-contact-btn-call {
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: #ffffff !important;
  box-shadow: 0 3px 12px rgba(0,114,198,.28);
}
.tva-contact-btn-call:hover {
  box-shadow: 0 6px 18px rgba(0,114,198,.35);
  color: #ffffff !important;
}

.tva-contact-btn-whatsapp {
  background: #25D366;
  color: #ffffff !important;
  box-shadow: 0 3px 12px rgba(37,211,102,.32);
}
.tva-contact-btn-whatsapp:hover {
  background: #20bd5a;
  box-shadow: 0 6px 18px rgba(37,211,102,.4);
  color: #ffffff !important;
}

.tva-hero-form-note {
  text-align: center;
  font-size: .74rem;
  color: var(--muted);
  margin: 12px 0 0;
  line-height: 1.5;
}
.tva-hero-form-note a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.tva-hero-form-note a:hover { text-decoration: underline; }

.tva-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tva-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.tva-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -.01em;
}

.tva-hero-sub {
  font-size: clamp(.95rem, 1.5vw, 1.08rem);
  color: rgba(30,64,96,.8);
  margin-bottom: 36px;
  line-height: 1.65;
  max-width: 420px;
}

.tva-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 44px;
}

/* Hero buttons - dark text on light background */
.tva-hero-cta .tva-btn-fill {
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: #fff !important;
  box-shadow: 0 4px 18px rgba(0,114,198,.25);
  border: none;
}

.tva-hero-cta .tva-btn-fill:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 28px rgba(0,114,198,.35);
  color: #fff !important;
}

.tva-hero-cta .tva-btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent) !important;
  background: rgba(255,255,255,.95);
  font-weight: 600;
}

.tva-hero-cta .tva-btn-outline:hover {
  border-color: var(--accent2);
  background: rgba(255,255,255,1);
  color: var(--accent2) !important;
  box-shadow: 0 4px 16px rgba(0,114,198,.15);
}

.tva-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(0,0,0,.1);
  padding-top: 28px;
}
.tva-stat {
  padding-right: clamp(20px, 3vw, 36px);
  margin-right: clamp(20px, 3vw, 36px);
  border-right: 1px solid rgba(0,0,0,.1);
}
.tva-stat:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
.tva-stat .sn {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.tva-stat .sl {
  font-size: .75rem;
  color: rgba(74,122,155,.85);
  margin-top: 5px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-family: var(--font-mono);
}

/* ═══════════════════════════════════════
   §2  WHY STRIP
═══════════════════════════════════════ */
#tva-why-strip {
  padding: var(--gap-section) 0;
  background: linear-gradient(180deg, #e6f2f9 0%, #eaf4fb 60%, #e2eff7 100%);
  position: relative;
  overflow: hidden;
}
#tva-why-strip::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(0,114,198,.07) 0%, transparent 65%);
}

.tva-strip-hd { text-align: center; margin-bottom: 40px; width: 100%; display: flex; flex-direction: column; align-items: center; }
.tva-strip-sub {
  font-family: var(--font-head);
  font-size: clamp(.95rem, 1.6vw, 1.08rem);
  color: var(--off-white);
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(36px, 5vw, 52px);
  line-height: 1.65;
}
.tva-strip-sub strong { color: var(--accent); }

.tva-strip-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tva-strip-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 1000px;
}
.tva-strip-bullet {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 10px;
  padding: 14px 16px;
  transition: border-color .2s, background .2s, transform .2s;
}
.tva-strip-bullet:hover {
  border-color: rgba(0,114,198,.45);
  background: rgba(255,255,255,.95);
  transform: translateX(4px);
}
.tva-strip-bullet-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(0,114,198,.08);
  display: flex; align-items: center; justify-content: center;
  box-shadow: none;
  margin-top: 1px;
  border: 1px solid rgba(0,114,198,.2);
}
.tva-strip-bullet-icon svg { width: 15px; height: 15px; color: var(--accent); }
.tva-strip-bullet-text {
  font-size: clamp(.85rem, 1.2vw, .92rem);
  color: var(--off-white);
  line-height: 1.55;
}
.tva-strip-bullet-text strong { color: var(--white); font-weight: 600; display: block; margin-bottom: 2px; font-size: .92rem; }
.tva-strip-bullet.hl { border-color: rgba(184,120,0,.3); background: rgba(184,120,0,.05); }
.tva-strip-bullet.hl .tva-strip-bullet-icon { background: linear-gradient(135deg, #996000, var(--gold)); }
.tva-strip-bullet.hl .tva-strip-bullet-text strong { color: var(--gold); }

.tva-strip-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
  min-height: 380px;
}
.tva-strip-img {
  border-radius: 14px;
  overflow: visible;
  box-shadow: 0 20px 52px rgba(0,0,0,.15), 0 0 0 1px rgba(0,114,198,.18);
  flex: 1;
  min-height: 0;
}
.tva-strip-img img,
.tva-strip-img video {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 14px;
  object-fit: cover;
  object-position: center 40%;
}
.tva-strip-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.tva-strip-bottom-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 0;
}
.tva-strip-stat {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 10px;
  padding: 16px 10px;
  text-align: center;
}
.tva-strip-stat .ss-n {
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
}
.tva-strip-stat .ss-l {
  font-size: .74rem;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.3;
}

/* ═══════════════════════════════════════
   §3  WHY CARDS
═══════════════════════════════════════ */
#tva-why { padding: var(--gap-section) 0; background: var(--navy-mid); }

.tva-why-text { display: flex; flex-direction: column; gap: 20px; }
.tva-card-stack { display: flex; flex-direction: column; gap: 12px; }

.tva-feature-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,.5);
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 12px;
  padding: 18px 20px;
  transition: border-color .2s, transform .2s;
}
.tva-feature-card:hover { border-color: rgba(0,114,198,.45); transform: translateX(4px); background: rgba(255,255,255,.7); }
.tva-icon-box {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(0,114,198,.08);
  border: 1px solid rgba(0,114,198,.2);
  display: flex; align-items: center; justify-content: center;
  box-shadow: none;
}
.tva-icon-box svg { width: 20px; height: 20px; color: var(--accent); }
.tva-feature-card h4 {
  font-family: var(--font-head);
  font-size: .93rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
}
.tva-feature-card p { font-size: .85rem; color: #333; line-height: 1.6; }

/* ═══════════════════════════════════════
   §4  COURSES
═══════════════════════════════════════ */
#tva-courses {
  padding: var(--gap-section) 0;
  background: var(--navy);
}

.tva-courses-hd {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 60px);
}

.tva-courses-sub {
  font-size: clamp(.88rem, 1.3vw, .98rem);
  color: var(--muted);
  max-width: 580px;
  margin: 10px auto 0;
  line-height: 1.7;
  text-align: center;
}

.tva-courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.tva-course-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  text-align: center;
}
.tva-course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 52px rgba(0,0,0,.1);
  border-color: var(--accent);
}

.tva-course-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}
.tva-course-icon svg {
  width: 40px;
  height: 40px;
  color: var(--accent);
}

.tva-course-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.tva-course-level {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 600;
}

.tva-course-desc {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}

.tva-courses-cta {
  margin-top: 44px;
  text-align: center;
  padding: 28px;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 14px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.tva-courses-cta p {
  font-size: .95rem;
  color: var(--off-white);
  margin-bottom: 16px;
}
.tva-courses-cta .tva-btn-fill {
  color: #fff !important;
}

/* ═══════════════════════════════════════
   §5  FEATURES
═══════════════════════════════════════ */
#tva-features {
  padding: var(--gap-section) 0;
  background: var(--navy-mid);
}

.tva-features-hd {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 60px);
}

.tva-features-sub {
  font-size: clamp(.88rem, 1.3vw, .98rem);
  color: var(--muted);
  max-width: 580px;
  margin: 10px auto 0;
  line-height: 1.7;
  text-align: center;
}

.tva-features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-col);
  align-items: stretch;
  margin-top: var(--gap-section);
}

.tva-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  height: 100%;
}

.tva-features-img {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 280px;
  height: 100%;
}
.tva-features-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tva-features-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,114,198,.12), transparent);
  pointer-events: none;
}

.tva-feature-card-large {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 14px;
  padding: 28px;
  text-align: center;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.tva-feature-card-large:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
  border-color: var(--accent);
}

.tva-icon-large {
  font-size: 48px;
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}
.tva-icon-large svg {
  width: 48px;
  height: 48px;
  color: var(--accent);
}

.tva-feature-card-large h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.tva-feature-card-large p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   §6  TESTIMONIALS
═══════════════════════════════════════ */
#tva-testimonials {
  padding: var(--gap-section) 0;
  background: var(--navy);
}

.tva-testimonials-hd {
  text-align: center;
  margin-bottom: 40px;
}

.tva-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tva-testimonial-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s;
}
.tva-testimonial-card:hover {
  border-color: rgba(0,114,198,.3);
  transform: translateY(-4px);
}

.tva-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.tva-stars svg {
  width: 15px;
  height: 15px;
}

.tva-testimonial-text {
  font-size: clamp(.86rem, 1.2vw, .93rem);
  color: var(--off-white);
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
}

.tva-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.tva-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .8rem;
  color: #fff;
  flex-shrink: 0;
}

.tva-r-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .85rem;
  color: var(--white);
}

.tva-r-src {
  font-size: .76rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

/* ═══════════════════════════════════════
   §7  NEWSLETTER
═══════════════════════════════════════ */
#tva-newsletter {
  padding: var(--gap-section) 0;
  background: linear-gradient(135deg, #daedf8 0%, #e6f4fb 50%, #daedf8 100%);
  position: relative;
}
#tva-newsletter::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 60% 50%, rgba(0,114,198,.08) 0%, transparent 65%);
}

.tva-nl-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.tva-nl-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tva-nl-contact-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 16px;
  padding: clamp(24px, 3vw, 36px);
  box-shadow: 0 12px 40px rgba(0,114,198,.1);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tva-contact-btn-lg {
  padding: 18px 22px;
  justify-content: flex-start;
  gap: 16px;
}
.tva-contact-btn-lg svg { flex-shrink: 0; }
.tva-contact-btn-lg span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.tva-contact-btn-lg strong {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .01em;
}
.tva-contact-btn-lg em {
  font-style: normal;
  font-size: .8rem;
  font-weight: 500;
  opacity: .92;
}

/* ═══════════════════════════════════════
   §8  LOCATION
═══════════════════════════════════════ */
#tva-location {
  padding: var(--gap-section) 0;
  background: var(--navy);
}

.tva-loc-compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.tva-map-frame {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--navy-border);
  box-shadow: 0 12px 36px rgba(0,0,0,.1);
  aspect-ratio: 4 / 3;
}
.tva-map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.tva-loc-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tva-loc-header {
  margin-bottom: 4px;
}
.tva-loc-header .tva-h2 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}
.tva-loc-note {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 10px 0 20px;
}

.tva-contact-stack {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.tva-contact-card {
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 10px;
  padding: 12px 16px;
  transition: border-color .2s;
}
.tva-contact-card:hover {
  border-color: rgba(0,114,198,.35);
}

.tva-contact-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0,114,198,.09);
  border: 1px solid rgba(0,114,198,.22);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tva-contact-icon svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.tva-contact-lbl {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}

.tva-contact-val {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 500;
  color: var(--white) !important;
  text-decoration: none !important;
}
a.tva-contact-val:hover {
  color: var(--accent) !important;
}

.tva-hours {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 10px;
  padding: 14px 16px;
}

.tva-hours-title {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tva-hours-title svg {
  width: 13px;
  height: 13px;
}

.tva-hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.tva-hours-cell {
  background: rgba(0,0,0,.025);
  border: 1px solid rgba(196,221,237,.6);
  border-radius: 7px;
  padding: 9px 8px;
  text-align: center;
}
.tva-hours-cell .hday {
  font-size: .7rem;
  color: var(--muted);
  display: block;
  margin-bottom: 3px;
}
.tva-hours-cell .htime {
  font-size: .72rem;
  color: var(--white);
  font-weight: 600;
  display: block;
  font-family: var(--font-head);
}
.tva-hours-cell.today {
  border-color: rgba(0,114,198,.35);
  background: rgba(0,114,198,.07);
}

.tva-hours-footnote {
  font-size: .78rem;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.5;
  text-align: center;
}

/* ═══════════════════════════════════════
   §9  CTA
═══════════════════════════════════════ */
#tva-cta {
  padding: clamp(64px, 8vw, 96px) 0;
  position: relative;
  z-index: 0;
  text-align: center;
  background: linear-gradient(135deg, #daedf8 0%, #c8e4f4 50%, #daedf8 100%);
}
#tva-cta::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,114,198,.1) 0%, transparent 65%);
}
#tva-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 0;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.tva-cta-inner {
  position: relative;
  z-index: 1;
  isolation: isolate;
}

.tva-cta-logo {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
.tva-cta-logo img {
  height: clamp(44px, 6vw, 62px);
  width: auto;
}

.tva-cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.tva-cta-sub {
  font-size: clamp(.88rem, 1.4vw, 1rem);
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.tva-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.tva-cta-btns .tva-btn-fill {
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: #fff !important;
  box-shadow: 0 4px 18px rgba(0,114,198,.25);
  border: none;
  padding: 13px 28px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tva-cta-btns .tva-btn-fill:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 28px rgba(0,114,198,.35);
  color: #fff !important;
}

.tva-cta-btns .tva-btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent) !important;
  background: rgba(255,255,255,.9);
}

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
@keyframes tva-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ea1 { animation: tva-up .55s ease both; }
.ea2 { animation: tva-up .55s .1s ease both; }
.ea3 { animation: tva-up .55s .22s ease both; }
.ea4 { animation: tva-up .55s .34s ease both; }
.ea5 { animation: tva-up .55s .46s ease both; }

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET ≤ 900px
═══════════════════════════════════════ */
@media (max-width: 900px) {
  :root {
    --gap-section: clamp(48px, 7vw, 72px);
    --gap-col: clamp(24px, 4vw, 40px);
  }

  .g2, .g2-top { grid-template-columns: 1fr; }

  #tva-hero { min-height: auto !important; height: auto !important; }
  #tva-hero::before {
    background: linear-gradient(180deg, rgba(255,255,255,.85) 0%, rgba(255,255,255,.75) 50%, rgba(255,255,255,.85) 100%);
  }
  .tva-hero-grid {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }
  .tva-hero-text-col {
    max-width: 100% !important;
    width: 100% !important;
  }
  .tva-hero-inner {
    padding: 36px 0 36px !important;
    width: 100% !important;
  }
  .tva-hero-contact-card {
    max-width: 100% !important;
    margin-top: 24px;
  }

  .tva-hero-cta {
    flex-direction: column !important;
    align-items: stretch !important;
    margin-bottom: 32px !important;
  }
  .tva-hero-cta .tva-btn {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }
  .tva-hero-sub { max-width: 100% !important; }
  .tva-stats-row { flex-wrap: wrap; gap: 0; padding-top: 20px; }

  .tva-strip-bullets { order: 2; }
  .tva-strip-visual { order: 1; max-width: 420px; margin: 0 auto; width: 100%; }
  .tva-strip-bottom-row { grid-template-columns: 1fr; }

  .tva-courses-grid { grid-template-columns: repeat(2, 1fr); max-width: 600px; margin-left: auto; margin-right: auto; }
  .tva-features-grid { grid-template-columns: 1fr; }

  .tva-testimonials-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  .tva-loc-compact { grid-template-columns: 1fr; }
  .tva-map-frame { aspect-ratio: 16 / 9; }

  .tva-nl-inner { grid-template-columns: 1fr; }
  .tva-nl-text { text-align: center; align-items: center; }
  .tva-nl-text .tva-lead { max-width: 100% !important; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE ≤ 600px
═══════════════════════════════════════ */
@media (max-width: 600px) {
  :root {
    --gap-section: clamp(40px, 8vw, 56px);
    --gap-col: 24px;
  }

  .tva-hero-title { font-size: clamp(1.6rem, 6vw, 2.2rem) !important; line-height: 1.15; }
  .tva-hero-sub { max-width: 100% !important; font-size: .95rem; line-height: 1.6; }
  .tva-eyebrow { font-size: 9px; margin-bottom: 12px; }
  .tva-stat .sn { font-size: 1.1rem; }
  
  .tva-hero-cta { margin-bottom: 20px !important; }

  .tva-strip-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .tva-strip-stat { padding: 12px 6px; }
  .tva-strip-features { grid-template-columns: 1fr; }

  .tva-courses-grid { grid-template-columns: 1fr; max-width: 100%; }
  .tva-features-grid { grid-template-columns: 1fr; }
  .tva-testimonials-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }

  .tva-contact-card { padding: 10px 14px; gap: 10px; }
  .tva-contact-icon { width: 32px; height: 32px; }
  .tva-contact-val { font-size: .8rem; }
  .tva-hours-grid { grid-template-columns: repeat(3, 1fr); }
  .tva-map-frame { aspect-ratio: 4 / 3; }

  .tva-cta-btns { flex-direction: column; align-items: center; }
  .tva-cta-btns .tva-btn { width: 100%; max-width: 320px; justify-content: center; }
  .tva-cta-title { font-size: 1.5rem; }

  .tva-nl-contact-card { padding: 20px 16px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — SMALL MOBILE ≤ 420px
═══════════════════════════════════════ */
@media (max-width: 420px) {
  .tva-hero-title { font-size: clamp(1.75rem, 8vw, 2.2rem); }
  .tva-hero-sub { font-size: .88rem; }
  .tva-stats-row { flex-direction: row; flex-wrap: wrap; }
  .tva-stat { min-width: calc(33% - 16px); border-right: 1px solid rgba(0,0,0,.1); padding-right: 12px; margin-right: 12px; margin-bottom: 8px; }

  .tva-strip-stats { gap: 6px; }
  .tva-strip-stat .ss-n { font-size: 1.1rem; }
  .tva-strip-stat .ss-l { font-size: .68rem; }

  .tva-hours-grid { grid-template-columns: 1fr; gap: 6px; }
  .tva-hours-cell { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; text-align: left; }
  .tva-hours-cell .hday { margin-bottom: 0; }
}

@media (min-width: 901px) {
  .tva-hero-grid {
    display: grid !important;
    grid-template-columns: 58% 1fr !important;
    gap: clamp(24px, 4vw, 48px) !important;
    align-items: center !important;
  }
}

/* ═══════════════════════════════════════
   GALLERY SECTION
═══════════════════════════════════════ */
#tva-gallery {
  padding: var(--gap-section) 0;
  background: var(--navy);
}

.tva-gallery-hd {
  margin-bottom: var(--gap-section);
  text-align: center;
}

.tva-gallery-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 500px;
  margin: 14px auto 0;
  line-height: 1.6;
}

.tva-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.tva-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1 / 1;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  transition: transform .3s, box-shadow .3s;
  height: 100%;
  margin: 0 auto;
}

.tva-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

.tva-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .tva-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .tva-gallery-item,
  .tva-gallery-item[style*="grid-column"] {
    grid-column: span 1 !important;
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 600px) {
  .tva-gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .tva-gallery-item,
  .tva-gallery-item[style*="grid-column"] {
    grid-column: span 1 !important;
    aspect-ratio: 1 / 1;
  }
}

.tva-strip-bullet-title {
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 4px 0;
  display: block;
}

@media (max-width: 600px) {
  .tva-hero-contact-card {
    width: 100% !important;
    padding: 16px !important;
  }
}

/* Features layout responsive */
@media (max-width: 900px) {
  .tva-features-layout {
    grid-template-columns: 1fr;
  }
  .tva-features-img {
    min-height: 260px;
    order: -1;
  }
}

@media (max-width: 600px) {
  .tva-features-grid {
    grid-template-columns: 1fr;
  }
  .tva-features-img {
    min-height: 220px;
  }
}

/* ═══════════════════════════════════════
   FLOATING CALL + WHATSAPP BUTTONS
═══════════════════════════════════════ */
#tva-float-stack {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

#tva-float-call {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: #fff !important;
  text-decoration: none !important;
  padding: 14px 18px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(0,114,198,.4);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  transition: transform .2s, box-shadow .2s;
}
#tva-float-call:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 30px rgba(0,114,198,.5);
  color: #fff !important;
}
#tva-float-call svg { flex-shrink: 0; animation: tva-ring 2.5s ease-in-out infinite; }
@keyframes tva-ring {
  0%, 100% { transform: rotate(0); }
  4% { transform: rotate(18deg); }
  8% { transform: rotate(-16deg); }
  12% { transform: rotate(12deg); }
  16% { transform: rotate(-8deg); }
  20% { transform: rotate(0); }
}

#tva-float-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #25D366;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
}
#tva-float-whatsapp:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 8px 30px rgba(37,211,102,.55);
  background: #20bd5a;
  color: #fff !important;
}

@media (max-width: 600px) {
  #tva-float-stack {
    bottom: 16px;
    right: 16px;
    gap: 10px;
  }
  #tva-float-call {
    padding: 14px;
    border-radius: 50%;
  }
  #tva-float-call .tva-float-call-text { display: none; }
  #tva-float-whatsapp {
    width: 48px;
    height: 48px;
  }
}

/* ═══════════════════════════════════════
   FINAL OVERRIDE — GUARANTEED BUTTON VISIBILITY
   This block sits last in the cascade on purpose so it always wins,
   regardless of what container a button lives in. Every "fill" button
   must always have a solid blue background with white text; every
   "outline" button must always have a light background with blue text.
═══════════════════════════════════════ */
.tva-btn.tva-btn-fill,
a.tva-btn.tva-btn-fill {
  background: linear-gradient(135deg, #005bb5, #0072c6) !important;
  background-color: #0072c6 !important;
  color: #ffffff !important;
  border: none !important;
  opacity: 1 !important;
}
.tva-btn.tva-btn-fill:hover,
a.tva-btn.tva-btn-fill:hover {
  background: linear-gradient(135deg, #004a94, #0064ac) !important;
  background-color: #0064ac !important;
  color: #ffffff !important;
}
.tva-btn.tva-btn-fill svg { color: #ffffff !important; }

.tva-btn.tva-btn-outline,
a.tva-btn.tva-btn-outline {
  background: #ffffff !important;
  background-color: #ffffff !important;
  color: #0072c6 !important;
  border: 2px solid #0072c6 !important;
  opacity: 1 !important;
}
.tva-btn.tva-btn-outline:hover,
a.tva-btn.tva-btn-outline:hover {
  background: #eaf4fb !important;
  background-color: #eaf4fb !important;
  color: #005bb5 !important;
}
.tva-btn.tva-btn-outline svg { color: #0072c6 !important; }

html body #tva-float-call {
  background: linear-gradient(135deg, #005bb5, #0072c6) !important;
  background-color: #0072c6 !important;
  color: #ffffff !important;
  opacity: 1 !important;
}
html body #tva-float-call svg,
html body #tva-float-call .tva-float-call-text {
  color: #ffffff !important;
}
html body #tva-float-whatsapp {
  background: #25D366 !important;
  background-color: #25D366 !important;
  color: #ffffff !important;
  opacity: 1 !important;
}
html body #tva-float-whatsapp svg {
  color: #ffffff !important;
}

/* ═══════════════════════════════════════
   FINAL OVERRIDE — CONTACT BUTTON VISIBILITY
   Placed last so it always wins over any theme-level default button
   styling. Guarantees the Call / WhatsApp buttons never lose their
   background or text color to an outside stylesheet.
═══════════════════════════════════════ */
html body .tva-contact-btn-call {
  background: linear-gradient(135deg, #005bb5, #0072c6) !important;
  background-color: #0072c6 !important;
  color: #ffffff !important;
}
html body .tva-contact-btn-call:hover {
  background: linear-gradient(135deg, #004a94, #0064ac) !important;
  background-color: #0064ac !important;
  color: #ffffff !important;
}
html body .tva-contact-btn-whatsapp {
  background: #25D366 !important;
  background-color: #25D366 !important;
  color: #ffffff !important;
}
html body .tva-contact-btn-whatsapp:hover {
  background: #20bd5a !important;
  background-color: #20bd5a !important;
  color: #ffffff !important;
}
html body .tva-contact-btn svg { color: #ffffff !important; }
