:root {
  --vt-navy: #071b3a;
  --vt-teal: #0b8c8c;
  --vt-green: #176b35;
  --vt-gold: #b88924;
  --vt-light: #f6f8fb;
  --vt-text: #222222;
  --vt-muted: #666666;
  --vt-white: #ffffff;
  --vt-border: #e5e8ee;
  --vt-shadow: 0 18px 45px rgba(7, 27, 58, 0.10);
  --vt-radius: 16px;
}

html {
  scroll-behavior: smooth;
}

.veritex-theme {
  margin: 0;
  color: var(--vt-text);
  background: var(--vt-white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

.veritex-theme *,
.veritex-theme *::before,
.veritex-theme *::after {
  box-sizing: border-box;
}

.veritex-theme img {
  max-width: 100%;
  height: auto;
}

.veritex-theme p {
  margin-top: 0;
}

.veritex-theme a {
  color: inherit;
}

.vt-skip-link {
  position: absolute;
  top: -999px;
  left: 16px;
  z-index: 100000;
  padding: 10px 14px;
  color: var(--vt-white);
  background: var(--vt-navy);
  border-radius: 6px;
}

.vt-skip-link:focus {
  top: 16px;
}

.vt-container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

.vt-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--vt-border);
  backdrop-filter: blur(14px);
}

.admin-bar .vt-header {
  top: 32px;
}

.vt-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.vt-logo {
  display: inline-flex;
  align-items: flex-start;
  color: var(--vt-navy);
  font-size: clamp(1.45rem, 2.4vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.vt-logo span {
  color: var(--vt-teal);
}

.vt-logo sup {
  margin-left: 0.1em;
  font-size: 0.45em;
  letter-spacing: 0;
}

.vt-logo-footer {
  margin-bottom: 18px;
  color: var(--vt-white);
}

.vt-primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.vt-primary-nav a {
  color: var(--vt-navy);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.vt-primary-nav a:hover,
.vt-primary-nav a:focus {
  color: var(--vt-teal);
}

.vt-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--vt-border);
  border-radius: 10px;
  background: var(--vt-white);
}

.vt-menu-toggle-lines,
.vt-menu-toggle-lines::before,
.vt-menu-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--vt-navy);
  border-radius: 999px;
  content: "";
}

.vt-menu-toggle-lines::before {
  transform: translateY(-7px);
}

.vt-menu-toggle-lines::after {
  transform: translateY(5px);
}

.vt-hero {
      background: linear-gradient(120deg, rgba(7,27,58,.94), rgba(11,140,140,.86)), url('../img/hero-image-w1600.jpg');
      background-size: cover;
      background-position: top;
      color: white;
      padding: 110px 0;
}

.vt-hero2 {
  position: relative;
  overflow: hidden;
  color: var(--vt-white);
  background:
    radial-gradient(circle at 88% 18%, rgba(184, 137, 36, 0.32), transparent 24rem),
    radial-gradient(circle at 14% 82%, rgba(11, 140, 140, 0.34), transparent 20rem),
    linear-gradient(120deg, rgba(7, 27, 58, 0.98), rgba(11, 140, 140, 0.88));
  padding: clamp(82px, 11vw, 128px) 0;
}

.vt-hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.15;
  background-image: linear-gradient(135deg, rgba(255,255,255,.35) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
}

.vt-hero .vt-container {
  position: relative;
  z-index: 1;
}

.vt-hero-copy {
  max-width: 875px;
}

.vt-eyebrow,
.vt-kicker {
  color: var(--vt-gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vt-hero h1 {
  max-width: 870px;
  margin: 0 0 24px;
  font-size: clamp(2.55rem, 6vw, 4.1rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.vt-lead {
  max-width: 780px;
  color: rgba(255,255,255,0.94);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.vt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.vt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.vt-btn-primary {
  color: var(--vt-white);
  background: var(--vt-gold);
  border: 1px solid var(--vt-gold);
}

.vt-btn-primary:hover,
.vt-btn-primary:focus {
  color: var(--vt-white);
  background: #a9791e;
  border-color: #a9791e;
}

.vt-btn-secondary {
  color: var(--vt-white);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.85);
}

.vt-btn-secondary:hover,
.vt-btn-secondary:focus {
  color: var(--vt-navy);
  background: var(--vt-white);
}

.vt-hero-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(42px, 7vw, 74px);
}

.vt-hero-logos img {
  width: 100%;
  min-height: 82px;
  padding: 16px 18px;
  object-fit: contain;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 14px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.18);
}

.vt-section {
  padding: clamp(66px, 8vw, 92px) 0;
}

.vt-section-light {
  background: var(--vt-light);
}

.vt-section-title {
  max-width: 780px;
  margin: 0 auto 52px;
  text-align: center;
}

.vt-section-title h2,
.vt-two-col h2,
.vt-cta h2 {
  margin-top: 0;
  color: var(--vt-navy);
  font-size: clamp(2rem, 4vw, 2.55rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.vt-section-title p,
.vt-two-col p {
  color: var(--vt-muted);
}

.vt-kicker {
  margin-bottom: 10px;
}

.vt-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 58px);
  align-items: center;
}

.vt-grid {
  display: grid;
  gap: 24px;
}

.vt-schemes-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vt-card {
  height: 100%;
  padding: clamp(24px, 3vw, 32px);
  background: var(--vt-white);
  border: 1px solid var(--vt-border);
  border-radius: var(--vt-radius);
  box-shadow: var(--vt-shadow);
}

.vt-card h3 {
  margin: 0 0 14px;
  color: var(--vt-navy);
  font-size: 1.35rem;
  line-height: 1.2;
}

.vt-card p {
  color: var(--vt-muted);
}

.vt-assessment-card {
  border-top: 5px solid var(--vt-teal);
}

.vt-scheme-card {
  position: relative;
  overflow: hidden;
  padding-top: 20px;
}

.vt-scheme-card::before {
  display: block;
  width: 74px;
  height: 5px;
  margin-bottom: 20px;
  border-radius: 999px;
  content: "";
}

.vt-scheme-social::before { background: var(--vt-navy); }
.vt-scheme-ecoflow::before { background: var(--vt-green); }
.vt-scheme-pure::before { background: var(--vt-teal); }
.vt-scheme-elite::before { background: var(--vt-gold); }

.vt-scheme-logo {
  display: flex;
  align-items: center;
  min-height: 82px;
  margin: 0 0 22px;
  padding: 14px 16px;
  background: #fbfcfe;
}

.vt-scheme-logo img {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
  object-position: center;
}

.vt-checklist {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.vt-checklist li {
  position: relative;
  padding: 10px 0 10px 34px;
  border-bottom: 1px solid var(--vt-border);
  color: var(--vt-text);
}

.vt-checklist li:last-child {
  border-bottom: 0;
}

.vt-checklist li::before {
  position: absolute;
  top: 9px;
  left: 0;
  color: var(--vt-teal);
  font-weight: 900;
  content: "✓";
}

.vt-levels-grid {
  align-items: stretch;
}

.vt-level-card h3 {
    display: none;
}

.vt-level-logo {
  width: 100%;
  max-width: 320px;
  max-height: 200px;
  margin-bottom: 18px;
  object-fit: contain;
  object-position: center;
}

.vt-levels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.vt-level {
  min-height: 100%;
  padding: 18px;
  color: var(--vt-muted);
  background: #fbfcfe;
  border: 1px solid var(--vt-border);
  border-radius: 12px;
}

.vt-level strong {
  display: block;
  margin-bottom: 6px;
  color: var(--vt-navy);
}

.vt-process-list {
  columns: 2;
  column-gap: 34px;
}

.vt-process-list li {
  break-inside: avoid;
}

.vt-claims-card {
  border-top: 5px solid var(--vt-gold);
}

.vt-claims {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.vt-claim {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--vt-border);
}

.vt-claim:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.vt-claim img {
  width: 138px;
  max-height: 100px;
  object-fit: contain;
  object-position: center;
}

.vt-claim p {
  margin: 0;
}

.vt-cta {
  padding: clamp(76px, 9vw, 100px) 0;
  color: var(--vt-white);
  text-align: center;
  background:
    radial-gradient(circle at 78% 32%, rgba(184, 137, 36, 0.24), transparent 18rem),
    linear-gradient(135deg, var(--vt-navy), #030b18);
}

.vt-cta h2 {
  margin-bottom: 14px;
  color: var(--vt-white);
}

.vt-cta p {
  max-width: 720px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,0.85);
}

.vt-footer {
  padding: 48px 0;
  color: var(--vt-white);
  background: #030b18;
}

.vt-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(180px, 1fr) minmax(180px, 1fr);
  gap: 34px;
}

.vt-footer p {
  color: #cfd8e3;
}

.vt-footer h4 {
  margin: 0 0 16px;
  color: var(--vt-white);
}

.vt-footer a:not(.vt-logo) {
  display: block;
  margin-bottom: 8px;
  color: #cfd8e3;
  font-size: 0.925rem;
  text-decoration: none;
}

.vt-footer a:not(.vt-logo):hover,
.vt-footer a:not(.vt-logo):focus {
  color: var(--vt-white);
}

.vt-footer-logo-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 560px;
  margin-top: 22px;
}

.vt-footer-logo-row img {
  width: 100%;
  min-height: 54px;
  padding: 8px 10px;
  object-fit: contain;
  background: rgba(255,255,255,0.96);
  border-radius: 10px;
}


.vt-certification-details {
  border-top: 1px solid var(--vt-border);
}

.vt-certification-tabs {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.vt-certification-tablist {
  position: sticky;
  top: 104px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.admin-bar .vt-certification-tablist {
  top: 136px;
}

.vt-certification-tab {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 94px;
  padding: 12px 16px;
  cursor: pointer;
  background: var(--vt-white);
  border: 1px solid var(--vt-border);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(7, 27, 58, 0.06);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.vt-certification-tab::before {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 0;
  width: 4px;
  background: transparent;
  border-radius: 0 999px 999px 0;
  content: "";
}

.vt-certification-tab:hover,
.vt-certification-tab:focus-visible {
  border-color: rgba(11, 140, 140, 0.55);
  box-shadow: 0 14px 34px rgba(7, 27, 58, 0.10);
  transform: translateY(-1px);
}

.vt-certification-tab:focus-visible {
  outline: 3px solid rgba(11, 140, 140, 0.24);
  outline-offset: 2px;
}

.vt-certification-tab.is-active {
  border-color: var(--vt-teal);
  box-shadow: 0 16px 38px rgba(7, 27, 58, 0.12);
}

.vt-certification-tab.is-active::before {
  background: var(--vt-teal);
}

.vt-certification-tab img {
  width: 100%;
  height: 68px;
  object-fit: contain;
}

.vt-certification-panels {
  min-width: 0;
}

.vt-certification-panel {
  padding: clamp(26px, 4vw, 44px);
  background: var(--vt-white);
  border: 1px solid var(--vt-border);
  border-radius: var(--vt-radius);
  box-shadow: var(--vt-shadow);
}

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

.vt-certification-panel-header {
  padding-bottom: 26px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--vt-border);
}

.vt-certification-panel-header h3 {
  margin: 0 0 8px;
  color: var(--vt-navy);
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.vt-certification-panel-header p {
  margin: 0;
  color: var(--vt-teal);
  font-size: 1.05rem;
  font-weight: 700;
}

.vt-certification-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.vt-certification-block {
  min-width: 0;
}

.vt-certification-block h4 {
  margin: 0 0 12px;
  color: var(--vt-navy);
  font-size: 1.08rem;
  line-height: 1.3;
}

.vt-certification-block p {
  margin-bottom: 0;
  color: var(--vt-muted);
}

.vt-certification-block-paragraph:first-child,
.vt-certification-block-levels,
.vt-certification-block-claim {
  grid-column: 1 / -1;
}

.vt-certification-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.vt-certification-list li {
  position: relative;
  padding-left: 22px;
  color: var(--vt-text);
}

.vt-certification-list li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  color: var(--vt-teal);
  font-weight: 900;
  content: "✓";
}

.vt-certification-labels {
  display: grid;
  gap: 10px;
}

.vt-certification-labels p {
  margin: 0;
}

.vt-certification-labels strong {
  color: var(--vt-navy);
}

.vt-certification-levels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.vt-certification-level {
  min-height: 100%;
  padding: 18px;
  background: #fbfcfe;
  border: 1px solid var(--vt-border);
  border-radius: 12px;
}

.vt-certification-level strong {
  display: block;
  color: var(--vt-navy);
  line-height: 1.35;
}

.vt-certification-level span {
  display: block;
  margin-top: 8px;
  color: var(--vt-muted);
  font-size: 0.94rem;
}

.vt-certification-claim {
  padding: 22px 24px;
  color: var(--vt-white);
  background: linear-gradient(135deg, var(--vt-navy), #0b315b);
  border-left: 5px solid var(--vt-gold);
  border-radius: 12px;
}

.vt-certification-claim p {
  margin: 0;
  color: var(--vt-white);
  font-weight: 700;
}

.vt-certification-claim p + p {
  margin-top: 5px;
}

@media (max-width: 1100px) {
  .vt-schemes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .vt-certification-tabs {
    grid-template-columns: 1fr;
  }

  .vt-certification-tablist {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vt-certification-content {
    grid-template-columns: 1fr;
  }

  .vt-certification-block-paragraph:first-child,
  .vt-certification-block-levels,
  .vt-certification-block-claim {
    grid-column: auto;
  }

  .admin-bar .vt-header {
    top: 46px;
  }

  .vt-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .vt-primary-nav {
    position: absolute;
    top: 100%;
    right: 4%;
    left: 4%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--vt-white);
    border: 1px solid var(--vt-border);
    border-radius: 14px;
    box-shadow: var(--vt-shadow);
  }

  .vt-primary-nav.is-open {
    display: flex;
  }

  .vt-primary-nav a {
    padding: 13px 12px;
    border-radius: 10px;
  }

  .vt-primary-nav a:hover,
  .vt-primary-nav a:focus {
    background: var(--vt-light);
  }

  .vt-hero-logos,
  .vt-two-col,
  .vt-levels,
  .vt-footer-grid {
    grid-template-columns: 1fr;
  }

  .vt-process-list {
    columns: 1;
  }
}

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

  .vt-certification-tab {
    min-height: 82px;
  }

  .vt-certification-tab img {
    height: 56px;
  }

  .vt-certification-levels,
  .vt-certification-list {
    grid-template-columns: 1fr;
  }

  .vt-container {
    width: min(100% - 32px, 1180px);
  }

  .vt-nav {
    min-height: 68px;
  }

  .vt-schemes-grid {
    grid-template-columns: 1fr;
  }

  .vt-claim {
    grid-template-columns: 1fr;
  }

  .vt-footer-logo-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
