:root {
  --bg: #0a0f14;
  --surface: #141c24;
  --text: #e0e6ed;
  --muted: #8a97a5;
  --accent: #00e5a0;
  --accent-soft: #1a3a33;
  --line: #23313d;
  --spacing-1: 0.25rem;
  --spacing-2: 0.5rem;
  --spacing-3: 0.75rem;
  --spacing-4: 1rem;
  --spacing-5: 1.5rem;
  --spacing-6: 2rem;
  --spacing-7: 3rem;
  --spacing-8: 4rem;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  --font: Verdana, Arial, sans-serif;
  --container: 1100px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #fff;
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 var(--spacing-4);
  line-height: 1.2;
  font-weight: 700;
  color: var(--text);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.75rem);
}

p {
  margin: 0 0 var(--spacing-4);
}

ul,
ol {
  margin: 0 0 var(--spacing-4);
  padding-left: var(--spacing-5);
}

li {
  margin-bottom: var(--spacing-2);
}

blockquote {
  margin: 0 0 var(--spacing-5);
  padding: var(--spacing-4);
  border-left: 4px solid var(--accent);
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--muted);
  font-style: italic;
}

.tech-main {
  min-height: 70vh;
}

.tech-section {
  padding: var(--spacing-6) var(--spacing-4);
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.tech-grid {
  display: grid;
  gap: var(--spacing-5);
  grid-template-columns: 1fr;
  min-width: 0;
}

.tech-hero {
  padding: var(--spacing-7) var(--spacing-4);
  text-align: center;
}

.tech-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.tech-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-4);
  justify-content: center;
  margin-top: var(--spacing-5);
}

.tech-hero-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-4);
}

.tech-hero-illustration {
  margin: var(--spacing-6) auto 0;
  max-width: 600px;
}

.tech-lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.tech-heading {
  margin-bottom: var(--spacing-3);
}

.tech-subheading {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-5);
}

.tech-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  padding: var(--spacing-3) var(--spacing-5);
  border-radius: var(--radius);
  font-weight: 700;
  border: 2px solid var(--accent);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}

.tech-btn:hover {
  background: transparent;
  color: var(--accent);
}

.tech-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.tech-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--spacing-5);
  box-shadow: var(--shadow);
  min-width: 0;
}

.tech-cardtitle {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-3);
}

.tech-cardtext {
  color: var(--muted);
  font-size: 0.95rem;
}

.tech-card-icon {
  font-size: 2rem;
  margin-bottom: var(--spacing-3);
  color: var(--accent);
}

.tech-card-course {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--spacing-5);
  transition: transform 0.2s, border-color 0.2s;
}

.tech-card-course:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.tech-courses-grid {
  display: grid;
  gap: var(--spacing-5);
  grid-template-columns: 1fr;
  min-width: 0;
}

.tech-stats-grid {
  display: grid;
  gap: var(--spacing-4);
  grid-template-columns: 1fr;
  min-width: 0;
}

.tech-stat {
  text-align: center;
  padding: var(--spacing-4);
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.tech-stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
}

.tech-stat-label {
  color: var(--muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tech-features-split {
  display: grid;
  gap: var(--spacing-5);
  grid-template-columns: 1fr;
  min-width: 0;
}

.tech-feature-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--spacing-5);
}

.tech-icon {
  width: 1.5em;
  height: 1.5em;
  fill: var(--accent);
  stroke: var(--accent);
  margin-bottom: var(--spacing-3);
}

.tech-list {
  list-style: none;
  padding-left: 0;
}

.tech-list li {
  padding-left: var(--spacing-5);
  position: relative;
}

.tech-list li::before {
  content: "▹";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.tech-definition-list {
  margin: 0;
}

.tech-dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-2) 0;
  margin-bottom: var(--spacing-4);
}

.tech-dl dt {
  font-weight: 700;
  color: var(--text);
}

.tech-dl dd {
  margin: 0;
  color: var(--muted);
}

.tech-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 0;
}

.tech-table th,
.tech-table td {
  padding: var(--spacing-3);
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.tech-table th {
  background: var(--surface);
  color: var(--accent);
  font-weight: 700;
}

.tech-table td {
  color: var(--muted);
}

.tech-tag {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  padding: var(--spacing-1) var(--spacing-3);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: var(--spacing-2);
  margin-bottom: var(--spacing-2);
}

.tech-quote {
  font-size: 1.1rem;
  color: var(--text);
  border-left: 4px solid var(--accent);
  padding: var(--spacing-4);
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: var(--spacing-6) 0;
}

.tech-contact {
  padding: var(--spacing-6) var(--spacing-4);
}

.tech-formcard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--spacing-5);
  max-width: 600px;
  margin: 0 auto;
}

.tech-formcard form {
  display: grid;
  gap: var(--spacing-4);
}

.tech-formcard input,
.tech-formcard textarea {
  width: 100%;
  padding: var(--spacing-3);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
}

.tech-formcard input:focus,
.tech-formcard textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.tech-locations {
  display: grid;
  gap: var(--spacing-5);
  grid-template-columns: 1fr;
  min-width: 0;
}

.tech-mapcard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--spacing-4);
}

.tech-map {
  width: 100%;
  height: 200px;
  background: var(--line);
  border-radius: var(--radius);
}

.tech-partner-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-4);
  justify-content: center;
  align-items: center;
  padding: var(--spacing-4) 0;
}

.tech-partner-list span {
  color: var(--muted);
  font-weight: 700;
  font-size: 1.2rem;
}

.tech-network-svg {
  max-width: 100%;
  height: auto;
}

.tech-spec-list {
  list-style: none;
  padding: 0;
}

.tech-spec-item {
  padding: var(--spacing-3) 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: var(--spacing-4);
}

.tech-spec-item:last-child {
  border-bottom: none;
}

.tech-spec-item span:first-child {
  color: var(--muted);
}

.tech-spec-item span:last-child {
  color: var(--text);
  font-weight: 700;
}

.tech-more {
  text-align: center;
  margin-top: var(--spacing-6);
}

.tech-price-note {
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
  margin-top: var(--spacing-3);
}

.tech-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.tech-brand:hover {
  color: var(--accent);
}

.tech-navlink {
  color: var(--muted);
  font-weight: 500;
  padding: var(--spacing-2) var(--spacing-3);
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

.tech-navlink:hover {
  color: var(--accent);
  background: var(--accent-soft);
}

.tech-navlink:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.tech-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: var(--spacing-6) var(--spacing-4);
  text-align: center;
  color: var(--muted);
}

.tech-footer a {
  color: var(--accent);
}

.tech-footer a:hover {
  color: #fff;
}

.tech-header {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: var(--spacing-4) var(--spacing-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-4);
}

.tech-header .tech-brand {
  margin-right: auto;
}

.tech-certification-section {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--spacing-6);
  margin: var(--spacing-6) 0;
}

.tech-feedback-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--spacing-5);
  text-align: center;
}

.tech-feedback-card .tech-quote {
  border: none;
  background: none;
  padding: 0;
  font-style: italic;
}

.tech-connect {
  display: flex;
  gap: var(--spacing-4);
  justify-content: center;
  flex-wrap: wrap;
}

.tech-programs {
  display: grid;
  gap: var(--spacing-5);
  grid-template-columns: 1fr;
  min-width: 0;
}

.tech-benefits {
  display: grid;
  gap: var(--spacing-5);
  grid-template-columns: 1fr;
  min-width: 0;
}

.tech-benefits-two-col {
  display: grid;
  gap: var(--spacing-5);
  grid-template-columns: 1fr;
  min-width: 0;
}

@media (min-width: 640px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-features-split {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-locations {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-programs {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-benefits-two-col {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-dl {
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-2) var(--spacing-4);
  }

  .tech-dl dt {
    text-align: right;
  }
}

@media (min-width: 900px) {
  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tech-courses-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tech-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .tech-features-split {
    grid-template-columns: repeat(3, 1fr);
  }

  .tech-locations {
    grid-template-columns: repeat(3, 1fr);
  }

  .tech-programs {
    grid-template-columns: repeat(3, 1fr);
  }

  .tech-benefits {
    grid-template-columns: repeat(3, 1fr);
  }

  .tech-benefits-two-col {
    grid-template-columns: 1fr 1fr;
  }

  .tech-hero {
    padding: var(--spacing-8) var(--spacing-4);
  }

  .tech-hero-cta {
    justify-content: flex-start;
  }

  .tech-hero-content {
    text-align: left;
    margin: 0;
  }

  .tech-hero-illustration {
    margin: var(--spacing-6) 0 0;
  }

  .tech-lead {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (min-width: 1200px) {
  .tech-section {
    padding-left: var(--spacing-6);
    padding-right: var(--spacing-6);
  }

  .tech-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .tech-courses-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .tech-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .tech-features-split {
    grid-template-columns: repeat(4, 1fr);
  }

  .tech-locations {
    grid-template-columns: repeat(4, 1fr);
  }

  .tech-programs {
    grid-template-columns: repeat(4, 1fr);
  }

  .tech-benefits {
    grid-template-columns: repeat(4, 1fr);
  }

  .tech-benefits-two-col {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  overflow-x: hidden;
}

.tech-main,
.tech-section,
.tech-header,
.tech-footer {
  min-width: 0;
}

.tech-card,
.tech-card-course,
.tech-feature-block,
.tech-stat,
.tech-mapcard,
.tech-formcard,
.tech-feedback-card {
  min-width: 0;
}

.tech-table {
  display: block;
  overflow-x: auto;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .tech-table {
    display: table;
    white-space: normal;
  }
}

/* --- repaired missing selectors --- */
.tech-valueth { min-width: 0; }


/* --- guard --- */
*, *::before, *::after { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: hidden; margin: 0; }
main > *, section > *, ul > li, ol > li { min-width: 0; }
svg, table, pre, blockquote, img { max-width: 100%; }
svg { height: auto; }
h1, h2, h3, h4, p, li, dt, dd, td, th, a, figcaption {
  overflow-wrap: anywhere;
}
table { display: block; overflow-x: auto; }
main header, main footer, main nav { display: none !important; }

.wp-header, .wp-footer, main {
  padding-left: max(1.25rem, env(safe-area-inset-left)) !important;
  padding-right: max(1.25rem, env(safe-area-inset-right)) !important;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.wp-header {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 0.75rem 1.25rem;
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.wp-footer {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
  margin-top: 2rem;
}
.wp-tagline {
  flex-basis: 100%;
  margin: 0 !important;
  padding: 0 !important;
  text-align: left !important;
  font-size: 0.95rem !important;
  line-height: 1.45 !important;
  max-width: none !important;
}

/* --- hamburger --- */
.wp-menu { margin: 0 0 0 auto; }
.wp-menu-btn {
  list-style: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  cursor: pointer;
  color: inherit;
  background: var(--surface, #fff);
  border: 1px solid var(--line, #d4d4d4);
  border-radius: 0.5rem;
}
.wp-menu-btn::-webkit-details-marker,
.wp-menu-btn::marker { display: none; content: ""; }
.wp-menu-bars,
.wp-menu-bars::before,
.wp-menu-bars::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  position: relative;
}
.wp-menu-bars::before,
.wp-menu-bars::after {
  content: "";
  position: absolute;
  left: 0;
}
.wp-menu-bars::before { top: -6px; }
.wp-menu-bars::after { top: 6px; }

@media (max-width: 719px) {
  .wp-nav-wide { display: none !important; }
  .wp-menu:not([open]) > nav { display: none !important; }
  .wp-menu[open] { flex-basis: 100%; width: 100%; margin: 0; }
  .wp-menu[open] > nav {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    gap: 0 !important;
    padding: 0.5rem 0 0.15rem !important;
  }
  .wp-menu[open] > nav > a {
    display: block !important;
    padding: 0.7rem 0.15rem !important;
  }
}

@media (min-width: 720px) {
  .wp-menu { display: none !important; }
  .wp-nav-wide {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 0.35rem 1.1rem;
    margin: 0 0 0 auto;
    align-items: center;
  }
}
