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

<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="">
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap" rel="stylesheet">

/* ═══════════════════════════════════════
   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;
  background-image: url('https://thevectoracademy.in/wp-content/uploads/2026/07/4.jpg');
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
}

.tva-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; 
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: none;
  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: 520px;
}

.tva-hero-form-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 114, 198, 0.3);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.8);
  width: 100%;
  max-width: 380px;
  align-self: center;
  overflow: visible !important;
  display: block !important;
  visibility: visible !important;
}

.tva-hero-form-header {
  background: linear-gradient(135deg, rgba(0,114,198,.08), rgba(0,91,181,.06));
  border-bottom: 1px solid var(--navy-border);
  padding: 11px 16px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.tva-hero-form-header svg {
  color: var(--accent);
  flex-shrink: 0;
}
.tva-hero-form-title {
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 800;
  color: var(--accent);
  margin: 0;
}

.tva-hero-form-body {
  padding: 14px 14px 0 !important;
}

#tva-hero .tva-hero-form-card .wpcf7 { width: 100%; }

#tva-hero .tva-hero-form-card .wpcf7 p {
  margin-bottom: 7px !important;
  margin-top: 0 !important;
}
#tva-hero .tva-hero-form-card .wpcf7 p:last-child { margin-bottom: 0 !important; }

#tva-hero .tva-hero-form-card .wpcf7 label {
  font-family: var(--font-head) !important;
  font-size: .72rem !important;
  font-weight: 500 !important;
  color: var(--muted) !important;
  display: block !important;
  margin-bottom: 2px !important;
}

#tva-hero .tva-hero-form-card .wpcf7 input:not([type="submit"]),
#tva-hero .tva-hero-form-card .wpcf7 select,
#tva-hero .tva-hero-form-card .wpcf7 textarea {
  width: 100% !important;
  background: #fff !important;
  border: 1px solid #cde0ed !important;
  border-radius: 6px !important;
  color: #3a6080 !important;
  font-family: var(--font-body) !important;
  font-size: .82rem !important;
  padding: 7px 10px !important;
  transition: border-color .18s, box-shadow .18s !important;
  outline: none !important;
  box-sizing: border-box !important;
  line-height: 1.35 !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}
#tva-hero .tva-hero-form-card .wpcf7 select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='https://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%234a7a9b' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 10px center !important;
  padding-right: 28px !important;
}
#tva-hero .tva-hero-form-card .wpcf7 textarea {
  min-height: 52px !important;
  resize: none !important;
}
#tva-hero .tva-hero-form-card .wpcf7 input:not([type="submit"]):focus,
#tva-hero .tva-hero-form-card .wpcf7 textarea:focus,
#tva-hero .tva-hero-form-card .wpcf7 select:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 2px rgba(0,114,198,.09) !important;
}

#tva-hero .tva-hero-form-card .wpcf7 input::placeholder,
#tva-hero .tva-hero-form-card .wpcf7 textarea::placeholder { color: #8aacbf !important; }

#tva-hero .tva-hero-form-card .wpcf7 input[type="submit"],
#tva-hero .tva-hero-form-card .wpcf7-submit {
  width: 100% !important;
  background: linear-gradient(135deg, var(--accent2), var(--accent)) !important;
  border: none !important;
  border-radius: 0 0 10px 10px !important;
  color: #fff !important;
  font-family: var(--font-head) !important;
  font-weight: 700 !important;
  font-size: .82rem !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  padding: 13px 16px !important;
  cursor: pointer !important;
  transition: opacity .2s, transform .2s !important;
  box-shadow: 0 3px 12px rgba(0,114,198,.28) !important;
  margin-top: 2px !important;
}
#tva-hero .tva-hero-form-card .wpcf7 input[type="submit"]:hover,
#tva-hero .tva-hero-form-card .wpcf7-submit:hover {
  opacity: .92 !important;
  transform: translateY(-1px) !important;
}

.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-course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--navy-border);
}

.tva-course-price {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
}

.tva-course-duration {
  font-size: .82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-family: var(--font-mono);
}

/* ═══════════════════════════════════════
   §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-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

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

.tva-nl-form .wpcf7 { width: 100%; }

.tva-nl-form .wpcf7 input:not([type="submit"]),
.tva-nl-form .wpcf7 textarea,
.tva-nl-form .wpcf7 select {
  width: 100% !important;
  background: #fff !important;
  border: 1px solid var(--navy-border) !important;
  border-radius: 8px !important;
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  font-size: .95rem !important;
  padding: 11px 14px !important;
  transition: border-color .2s, box-shadow .2s !important;
  outline: none !important;
  box-sizing: border-box !important;
}

.tva-nl-form .wpcf7 input:not([type="submit"]):focus,
.tva-nl-form .wpcf7 textarea:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(0,114,198,.1) !important;
}

.tva-nl-form .wpcf7 label {
  font-family: var(--font-head) !important;
  font-size: .85rem !important;
  font-weight: 500 !important;
  color: var(--white) !important;
  display: block !important;
  margin-bottom: 5px !important;
}

.tva-nl-form .wpcf7 p {
  margin-bottom: 14px !important;
}

.tva-nl-form .wpcf7 input[type="submit"],
.tva-nl-form .wpcf7-submit {
  width: 100% !important;
  background: linear-gradient(135deg, var(--accent2), var(--accent)) !important;
  border: none !important;
  border-radius: 8px !important;
  color: #fff !important;
  font-family: var(--font-head) !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  padding: 13px 24px !important;
  cursor: pointer !important;
  transition: transform .2s, box-shadow .2s !important;
  box-shadow: 0 4px 18px rgba(0,114,198,.25) !important;
}

.tva-nl-form .wpcf7 input[type="submit"]:hover,
.tva-nl-form .wpcf7-submit:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(0,114,198,.38) !important;
}

/* ═══════════════════════════════════════
   §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-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);
}

/* ═══════════════════════════════════════
   §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: var(--accent) !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: var(--accent) !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; }

/* ═══════════════════════════════════════
   MOBILE FORM SECTION
═══════════════════════════════════════ */
#tva-hero-form-mobile {
  display: none;
  background: #daedf8;
  padding: 28px 20px 32px;
}
#tva-hero-form-mobile .tva-hero-form-card {
  max-width: 560px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════
   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(234,244,251,.96) 0%, rgba(234,244,251,.78) 50%, rgba(234,244,251,.90) 100%),
                linear-gradient(135deg, rgba(0,114,198,.08) 0%, transparent 60%);
  }
  .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 .tva-hero-form-card { display: none !important; }
  #tva-hero-form-mobile { display: block !important; }

  .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-form { 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;
  }
  #tva-hero .tva-hero-form-card { display: block !important; }
  #tva-hero-form-mobile { display: none !important; }
}

/* Features section responsive */
@media (max-width: 900px) {
  [style*="grid-template-columns: 1fr 1fr"]:has(.tva-features-grid) {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns: 1fr 1fr"]:has(.tva-features-grid) > div:last-child {
    min-height: 300px !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;
}

/* ═══════════════════════════════════════
   CONTACT FORMS - RESPONSIVE
═══════════════════════════════════════ */
.wpcf7 {
  width: 100% !important;
}

.wpcf7-form {
  width: 100% !important;
}

.wpcf7-form p {
  margin-bottom: 12px !important;
}

.wpcf7-input,
.wpcf7-select,
.wpcf7-textarea {
  width: 100% !important;
  padding: 10px 12px !important;
  border: 1px solid #ddd !important;
  border-radius: 6px !important;
  font-size: 14px !important;
}

.wpcf7-submit {
  padding: 12px 24px !important;
  background: var(--accent) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  font-weight: 600 !important;
}

.wpcf7-submit:hover {
  background: var(--accent2) !important;
}

#tva-hero-form-mobile .tva-hero-form-card {
  display: none;
}

@media (max-width: 900px) {
  [style*="grid-template-columns: 1fr 1fr"]:has(.tva-features-grid) {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 600px) {
  .tva-hero-form-card {
    width: 100% !important;
    padding: 12px !important;
  }
  
  .wpcf7-input,
  .wpcf7-select,
  .wpcf7-textarea {
    font-size: 16px !important;
  }
}

.tva-hero-form-header {
  background: linear-gradient(135deg, rgba(0,114,198,.12), rgba(0,91,181,.08));
  border-bottom: 1px solid rgba(0,114,198,.2);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px 8px 0 0;
}

.tva-hero-form-title {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0;
}

.tva-hero-form-body {
  padding: 14px;
  display: block !important;
}

#tva-hero .tva-hero-form-card .wpcf7 {
  width: 100% !important;
}

#tva-hero .tva-hero-form-card .wpcf7-form {
  display: block !important;
}

#tva-hero .tva-hero-form-card .wpcf7 p {
  margin: 0 0 10px 0 !important;
  display: block !important;
}

#tva-hero .tva-hero-form-card .wpcf7 input,
#tva-hero .tva-hero-form-card .wpcf7 select {
  width: 100% !important;
  padding: 9px 11px !important;
  font-size: 14px !important;
  border: 1px solid #ddd !important;
  border-radius: 6px !important;
  display: block !important;
  box-sizing: border-box !important;
}

#tva-hero .tva-hero-form-card .wpcf7 input[type="submit"] {
  background: var(--accent) !important;
  color: #fff !important;
  border: none !important;
  padding: 10px 20px !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  font-weight: 600 !important;
  width: 100% !important;
}


/* Contact Form 7 - Universal Visibility */
.wpcf7 {
  width: 100% !important;
  display: block !important;
}

.wpcf7-form {
  width: 100% !important;
  display: block !important;
  visibility: visible !important;
}

.wpcf7-response-output {
  display: block !important;
  margin-bottom: 10px !important;
}

.wpcf7 p {
  display: block !important;
  margin-bottom: 12px !important;
}

.wpcf7-form p span {
  display: block !important;
  width: 100% !important;
}

.wpcf7-input,
.wpcf7-select,
.wpcf7-textarea {
  width: 100% !important;
  padding: 10px 12px !important;
  border: 1px solid #ccc !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  font-family: inherit !important;
  display: block !important;
  box-sizing: border-box !important;
  background: #fff !important;
  color: #333 !important;
}

.wpcf7-form-control-wrap {
  display: block !important;
  width: 100% !important;
}

.wpcf7-submit {
  background: var(--accent) !important;
  color: #fff !important;
  border: none !important;
  padding: 11px 22px !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  width: 100% !important;
  display: block !important;
}

.wpcf7-submit:hover {
  background: var(--accent2) !important;
}

/* Hero form specific */
.tva-hero-form-body .wpcf7 {
  width: 100% !important;
}

.tva-hero-form-body .wpcf7 p {
  margin-bottom: 10px !important;
}

.tva-hero-form-body .wpcf7-input,
.tva-hero-form-body .wpcf7-select {
  width: 100% !important;
  padding: 9px 11px !important;
  font-size: 13px !important;
}

