/* =========================================================
   UFIRSTDEV WORDPRESS WEBSITE DEVELOPMENT BOOTCAMP — MAIN STYLESHEET
   Design tokens + full responsive layout
   ========================================================= */

:root {
  --navy: #0e2158;
  --navy-deep: #081540;
  --navy-tint: #17347f;
  --blue: #2563eb;
  --gold: #ff7a1a;
  --gold-deep: #d35400;
  --paper: #f5f7fb;
  --white: #ffffff;
  --muted: #57667e;
  --muted-on-navy: #aebbe8;
  --hairline: #2a4694;
  --hairline-light: #e2e8f4;

  --font-display: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", "Space Mono", "Courier New", monospace;

  --container: 1180px;
  --radius: 8px;

  /* Techy grid-dot background pattern, layered onto dark sections via
     background-image so content stays crisp above it. */
  --grid-dots: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
}

@media (prefers-reduced-motion: no-preference) {
  .glow-pulse { animation: matalent-glow-pulse 3.2s ease-in-out infinite; }
}
@keyframes matalent-glow-pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: var(--gold-deep);
  margin: 0 0 12px;
}
.eyebrow::before { content: "// "; opacity: 0.6; }

.eyebrow--on-navy { color: var(--gold); }
.eyebrow--pill {
  display: inline-block;
  font-family: var(--font-mono);
  background: rgba(255,122,26,0.10);
  color: var(--gold-deep);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
}
.eyebrow--pill.eyebrow--on-navy { background: rgba(255,255,255,0.12); color: var(--gold); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.2;
}

p { margin: 0; line-height: 1.6; }

.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-heading h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
}

.section-heading--on-navy h2 { color: var(--white); }

.section-heading p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
}

.section-heading--on-navy p { color: var(--muted-on-navy); }

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 17px 34px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

.btn--primary { background: var(--gold); color: var(--white); }
.btn--dark { background: var(--navy); color: var(--white); }
.btn--sm { padding: 13px 26px; font-size: 14.5px; }
.btn--block { display: block; width: 100%; text-align: center; }

/* =========================================================
   SKIP LINK / ACCESSIBILITY
   ========================================================= */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  z-index: 9999;
}
.skip-link:focus { left: 10px; top: 10px; }

/* =========================================================
   ANNOUNCEMENT BAR
   ========================================================= */
.announce-bar {
  background: var(--navy-tint);
  padding: 10px 0;
  text-align: center;
}
.announce-bar p {
  color: var(--muted-on-navy);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  background: var(--white);
  padding: 16px 0;
  position: relative;
  z-index: 100;
  box-shadow: 0 1px 0 var(--hairline-light);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.site-logo span { color: var(--gold); }
.site-logo-mark { flex-shrink: 0; }

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: var(--navy);
  font-size: 14.5px;
  font-weight: 500;
  margin-right: 28px; /* fallback for engines without flexbox gap support */
}
.main-nav a:hover { color: var(--gold-deep); }
/* .main-nav a's color rule above has higher specificity (element+class) than
   .btn--primary's (class only), so it silently wins and the nav CTA button
   rendered with navy text instead of white without this override. */
.main-nav a.btn--primary { color: var(--white); }
.main-nav a.btn--primary:hover { color: var(--white); }
.main-nav ul li:last-child a { margin-right: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--navy);
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 880px) {
  .main-nav { display: none; }
  .main-nav.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 8px 20px rgba(11,18,32,0.10);
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 18px;
  }
  .main-nav.is-open ul {
    flex-direction: column;
    gap: 16px;
  }
  .nav-toggle { display: block; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 45%, var(--blue) 100%);
  background-size: cover;
  background-position: center;
  padding: 120px 0 90px;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,21,64,0.86) 0%, rgba(37,99,235,0.78) 100%);
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: var(--grid-dots);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse at 30% 30%, black 0%, transparent 70%);
}
.hero-inner-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 620px) 1fr;
  gap: 48px;
  align-items: center;
}
.hero-content { max-width: 620px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px 8px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(255,122,26,0.25);
  flex-shrink: 0;
}
.hero-kicker {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted-on-navy);
  letter-spacing: 0.4px;
  margin: 0 0 8px;
}
.hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--gold); }
.hero-lead {
  font-size: 18px;
  color: #d8e2f5;
  margin-bottom: 32px;
  max-width: 620px;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--outline:hover { border-color: var(--white); }

.hero-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.hero-tag {
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 999px;
  max-width: 320px;
  line-height: 1.4;
}
.hero-tag--a { background: rgba(255,122,26,0.22); color: #ffd9b8; }
.hero-tag--b { background: rgba(255,255,255,0.12); color: var(--muted-on-navy); }
.hero-tag--c { background: rgba(255,255,255,0.12); color: var(--muted-on-navy); }

.hero-price-strip {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 14px 22px;
  color: var(--white);
}
.hero-price-was { font-size: 15px; color: var(--muted-on-navy); }
.hero-price-was s { color: var(--muted-on-navy); }
.hero-price-now {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--gold);
}
.hero-price-label { font-size: 13px; color: var(--muted-on-navy); }

/* Browser-mockup visual: a stylized "site under construction" preview
   card that reads as techy without needing a real screenshot asset. */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-mockup {
  width: 100%;
  max-width: 340px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(6px);
  box-shadow: 0 30px 60px rgba(4,10,32,0.45);
}
.hero-mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.hero-mockup-dot { width: 9px; height: 9px; border-radius: 50%; }
.hero-mockup-dot--red { background: #ff5f57; }
.hero-mockup-dot--yellow { background: #ffbd2e; }
.hero-mockup-dot--green { background: #28c840; }
.hero-mockup-url {
  margin-left: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted-on-navy);
}
.hero-mockup-body { padding: 20px; }
.hero-mockup-line {
  height: 10px;
  border-radius: 4px;
  background: rgba(255,255,255,0.14);
  margin-bottom: 12px;
}
.hero-mockup-line--accent { background: var(--gold); opacity: 0.7; }
.hero-mockup-block {
  height: 64px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,122,26,0.35), rgba(37,99,235,0.35));
  margin-bottom: 14px;
}
.hero-floating-badge {
  position: absolute;
  bottom: -18px;
  right: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 16px 32px rgba(4,10,32,0.35);
}
.hero-floating-badge-icon { font-size: 20px; }
.hero-floating-badge strong { display: block; font-size: 14px; color: var(--gold-deep); font-family: var(--font-display); }
.hero-floating-badge span { font-size: 11px; color: var(--muted); }

@media (max-width: 980px) {
  .hero { padding: 72px 0 56px; }
  .hero h1 { font-size: 36px; }
  .hero-inner-grid { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 8px; }
  .hero-mockup { max-width: 300px; }
}
@media (max-width: 560px) {
  .hero { padding: 56px 0 44px; }
  .hero h1 { font-size: 27px; }
  .hero-lead { font-size: 16px; }
}

/* =========================================================
   STAT RAIL
   ========================================================= */
.stat-rail {
  background: var(--navy-tint);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 36px 0;
}
.stat-rail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  color: var(--gold);
}
.stat-label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--muted-on-navy);
  margin-top: 6px;
}
@media (max-width: 700px) {
  .stat-rail-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* =========================================================
   WHY THIS BOOTCAMP (persuasive value-prop + pricing card)
   ========================================================= */
.why-v2-section {
  position: relative;
  background: var(--white);
  padding: 90px 0;
  overflow: hidden;
}
.why-v2-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: var(--grid-dots);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,0.5), transparent 55%);
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.5), transparent 55%);
  opacity: 0.35;
  filter: invert(1);
}
.why-v2-grid {
  position: relative;
  display: grid;
  grid-template-columns: 58% 38%;
  gap: 4%;
  align-items: start;
}
.why-v2-text h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin: 10px 0 18px;
}
.why-v2-text p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 14px;
}
.why-v2-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.why-v2-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  background: var(--paper);
  border-radius: 10px;
  padding: 16px 10px;
}
.why-v2-stat .dashicons {
  font-size: 22px;
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .why-v2-stats { grid-template-columns: 1fr; }
  .why-v2-stat { flex-direction: row; text-align: left; }
}
.why-v2-stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--navy);
}
.why-v2-stat-label { font-size: 12.5px; color: var(--muted); }

.why-v2-photo-strip {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  overflow-x: auto;
}
.why-v2-photo-strip img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.why-v2-price { position: sticky; top: 24px; }
.why-v2-price-card {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 100%);
  border-radius: 18px;
  padding: 32px 26px;
  text-align: center;
  box-shadow: 0 20px 44px rgba(14,33,88,0.22);
}
.why-v2-price-badge {
  display: inline-block;
  background: rgba(255,122,26,0.16);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.why-v2-price-was { color: var(--muted-on-navy); font-size: 14px; margin-bottom: 6px; }
.why-v2-price-was s { color: var(--muted-on-navy); }
.why-v2-price-now {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}
.why-v2-price-save {
  display: inline-block;
  background: rgba(37,99,235,0.25);
  color: var(--white);
  font-size: 12.5px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.why-v2-price-sublabel { color: var(--muted-on-navy); font-size: 12.5px; margin-bottom: 20px; }

@media (max-width: 980px) {
  .why-v2-section { padding: 64px 0; }
  .why-v2-grid { grid-template-columns: 1fr; gap: 32px; }
  .why-v2-text h2 { font-size: 26px; }
  .why-v2-price { position: static; max-width: 380px; }
}
@media (max-width: 560px) {
  .why-v2-section { padding: 48px 0; }
  .why-v2-price-now { font-size: 34px; }
}

/* =========================================================
   IS THIS BOOTCAMP RIGHT FOR YOU / BY THE END / WHAT YOU'LL RECEIVE
   (shared checklist-grid pattern)
   ========================================================= */
.forwhom-section,
.end-section,
.receive-section,
.bonus-section {
  padding: 72px 0;
  background: var(--paper);
}
.end-section,
.bonus-section { background: var(--white); }

.forwhom-grid,
.end-grid,
.receive-grid,
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  max-width: 880px;
  margin: 0 auto;
}
.forwhom-item,
.end-item,
.receive-item,
.bonus-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
  background: var(--white);
  border: 1px solid var(--hairline-light);
  border-radius: 8px;
  padding: 14px 16px;
}
.end-item,
.bonus-item { background: var(--paper); }
.forwhom-item .dashicons,
.end-item .dashicons,
.receive-item .dashicons,
.bonus-item .dashicons {
  color: var(--gold);
  font-size: 20px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}
.receive-note {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: 20px;
}

@media (max-width: 700px) {
  .forwhom-grid, .end-grid, .receive-grid, .bonus-grid { grid-template-columns: 1fr; }
  .forwhom-section, .end-section, .receive-section, .bonus-section { padding: 48px 0; }
}

/* =========================================================
   WHAT YOU'LL LEARN (curriculum categories)
   ========================================================= */
.tracks-section { padding: 90px 0; background: var(--paper); }
.tracks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.tracks-grid--six { grid-template-columns: repeat(3, 1fr); }
.track-placeholder {
  height: 96px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
}
.track-placeholder .dashicons {
  font-size: 36px;
  width: 36px;
  height: 36px;
  color: var(--gold);
}
@media (max-width: 1100px) {
  .tracks-grid--six { grid-template-columns: repeat(2, 1fr); }
}
.track-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(11,18,32,0.06);
}
.track-card img { width: 100%; aspect-ratio: 700/460; object-fit: cover; }
.track-body { padding: 22px 24px 26px; }
.track-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 1.6px;
  color: var(--gold-deep); display: block; margin-bottom: 6px;
}
.track-card h3 { font-size: 20px; font-weight: 700; color: var(--navy); }
.track-card p.track-desc { color: var(--muted); font-size: 15px; margin-top: 10px; }
.track-skills { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 9px; }
.track-skills li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: var(--navy);
}
.track-skills li::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.track-card .btn { margin-top: 22px; }

@media (max-width: 880px) {
  .tracks-section { padding: 56px 0; }
  .tracks-grid, .tracks-grid--six { grid-template-columns: 1fr; gap: 22px; }
}

/* =========================================================
   HANDS-ON PRACTICAL PROJECTS (signature ticket element)
   ========================================================= */
.ledger-section { padding: 90px 0; background: var(--white); }
.ledger-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ledger-ticket {
  background: var(--paper);
  border-top: 3px solid var(--gold);
  border-radius: 10px;
  padding: 26px;
}
.ledger-num {
  font-size: 26px;
  display: block;
  margin-bottom: 8px;
}
.ledger-ticket h3 {
  font-size: 19px; font-weight: 700; color: var(--navy);
  margin: 8px 0 0;
}
.ledger-desc {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.55;
}
.ledger-stamp {
  font-size: 12.5px; font-weight: 800; letter-spacing: 1px;
  color: var(--gold-deep); margin-top: 14px; display: block;
}

@media (max-width: 980px) {
  .ledger-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .ledger-section { padding: 56px 0; }
  .ledger-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   WHY LEARN WITH UFIRSTDEV (simple text banner)
   ========================================================= */
.why-ufirstdev-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 80px 0;
}
.why-ufirstdev-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.why-ufirstdev-inner h2 { color: var(--white); font-size: 32px; font-weight: 800; margin: 10px 0 20px; }
.why-ufirstdev-inner p { color: var(--muted-on-navy); font-size: 16px; margin-top: 10px; }
.why-ufirstdev-lead { color: var(--white) !important; font-size: 19px !important; font-weight: 600; }

@media (max-width: 560px) {
  .why-ufirstdev-section { padding: 56px 0; }
  .why-ufirstdev-inner h2 { font-size: 24px; }
}

/* =========================================================
   TRAINING SCHEDULE
   ========================================================= */
.schedule-section { padding: 90px 0; background: var(--paper); }
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.schedule-item {
  background: var(--white);
  border: 1px solid var(--hairline-light);
  border-radius: 10px;
  padding: 24px;
}
.schedule-label {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.schedule-value { font-size: 15px; color: var(--navy); line-height: 1.55; }

@media (max-width: 980px) {
  .schedule-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .schedule-section { padding: 56px 0; }
  .schedule-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   INVESTMENT / PRICING (single discounted price, persuasive)
   ========================================================= */
.pricing-section { padding: 90px 0; background: var(--white); }
.pricing-single {
  max-width: 420px;
  margin: 0 auto;
}
.pricing-single-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: 18px;
  padding: 44px 32px;
  text-align: center;
  box-shadow: 0 20px 48px rgba(21,94,239,0.24);
  position: relative;
  overflow: hidden;
}
.pricing-single-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 16px 16px;
  pointer-events: none;
}
.pricing-single-label {
  position: relative;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.pricing-single-was {
  position: relative;
  display: block;
  font-size: 15px;
  color: var(--muted-on-navy);
  margin-bottom: 6px;
}
.pricing-single-was s { color: var(--muted-on-navy); }
.pricing-single-now {
  position: relative;
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}
.pricing-single-save {
  position: relative;
  display: inline-block;
  background: rgba(255,122,26,0.16);
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.pricing-single-note { position: relative; color: var(--muted-on-navy); font-size: 13.5px; margin-bottom: 22px; }
.pricing-single-card .btn { position: relative; margin-top: 8px; }

@media (max-width: 700px) {
  .pricing-section { padding: 56px 0; }
  .pricing-single-card { padding: 36px 24px; }
  .pricing-single-now { font-size: 42px; }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-section { padding: 90px 0; background: var(--paper); }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--hairline-light);
  border-radius: 10px;
  padding: 6px 22px;
}
.faq-item summary {
  padding: 16px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--navy);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  font-weight: 700;
  color: var(--gold-deep);
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { font-size: 14.5px; color: var(--muted); padding-bottom: 18px; line-height: 1.65; }

@media (max-width: 560px) {
  .faq-section { padding: 56px 0; }
}

/* =========================================================
   CLOSING CTA
   ========================================================= */
.closing-cta { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); padding: 90px 0; }
.closing-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.closing-cta h2 { font-size: 32px; font-weight: 800; color: var(--white); }
.closing-cta p { color: var(--muted-on-navy); font-size: 16px; font-weight: 500; margin-top: 12px; }
.closing-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  margin: 28px 0 32px;
  text-align: left;
}
.closing-check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}
.closing-check-item .dashicons { color: var(--gold); font-size: 18px; flex-shrink: 0; }
.closing-cta .btn { background: var(--gold); color: var(--white); }

@media (max-width: 780px) {
  .closing-cta { padding: 56px 0; }
  .closing-checklist { grid-template-columns: 1fr; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  position: relative;
  background: var(--navy-deep);
  padding: 72px 0 0;
  overflow: hidden;
  border-top: 3px solid var(--gold);
}
.footer-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: var(--grid-dots);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, black, transparent 80%);
  pointer-events: none;
}
.footer-top {
  position: relative;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 48px;
}
.footer-col--brand { padding-right: 20px; }
.footer-logo { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-text { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--white); }
.footer-logo-text span { color: var(--gold); }
.footer-tagline { color: var(--muted-on-navy); font-size: 14px; margin: 0 0 20px; line-height: 1.6; }
.footer-socials {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
}
.footer-socials a { color: var(--muted-on-navy); font-size: 13.5px; font-weight: 500; }
.footer-socials a:hover { color: var(--gold); }

.footer-col-heading {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-links a, .footer-links span { color: #d8e2f5; font-size: 13.5px; }
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  position: relative;
  border-top: 1px solid var(--hairline);
  padding: 20px 0;
}
.footer-copyright {
  color: #8a9bc4;
  font-size: 13px;
  text-align: center;
}

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-col--brand { grid-column: 1 / -1; padding-right: 0; }
}
@media (max-width: 560px) {
  .site-footer { padding: 48px 0 0; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
}

/* =========================================================
   APPLICATION FORM (page-apply.php)
   ========================================================= */
.apply-hero {
  background: var(--navy);
  padding: 64px 0 40px;
  text-align: center;
}
.apply-hero h1 { font-size: 34px; font-weight: 700; color: var(--white); }
.apply-hero p { color: var(--muted-on-navy); margin-top: 12px; font-size: 16px; max-width: 620px; margin-left: auto; margin-right: auto; }

.apply-meta-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  max-width: 720px;
  margin: 24px auto 0;
}
.apply-meta-item {
  font-size: 13px;
  color: var(--muted-on-navy);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  padding: 8px 14px;
}
.apply-meta-item strong { color: var(--white); font-weight: 600; }
.apply-meta-item--price strong { color: var(--gold); }
.apply-meta-item--price s { color: var(--muted-on-navy); margin-right: 4px; }

.apply-section { background: var(--paper); padding: 56px 0 90px; }
.apply-form {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(11,18,32,0.08);
  padding: 40px;
  max-width: 760px;
  margin: 0 auto;
}

.form-group { display: block; margin: 0; padding: 0; border: none; }
.form-group + .form-group { margin-top: 36px; }
.form-group legend,
.form-group .group-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--gold-deep);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: block;
  padding: 0;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}
.field .req { color: #d6453d; }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d6e0ec;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--navy);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 100px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21,94,239,0.12);
}
.field-hint { font-size: 12.5px; color: var(--muted); margin-top: 6px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }

.radio-grid, .checkbox-grid {
  display: grid;
  gap: 10px;
}
.checkbox-grid--stacked { grid-template-columns: 1fr; }
.radio-option, .checkbox-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid #d6e0ec;
  border-radius: 6px;
  padding: 12px 14px;
  cursor: pointer;
  font-size: 14.5px;
  color: var(--navy);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.radio-option:hover, .checkbox-option:hover { border-color: var(--blue); background: var(--paper); }
.radio-option input, .checkbox-option input { margin-top: 2px; accent-color: var(--blue); }
.radio-option:has(input:checked), .checkbox-option:has(input:checked) {
  border-color: var(--gold-deep);
  background: rgba(255,122,26,0.06);
}

.consent-line { font-size: 13.5px; color: var(--muted); margin-bottom: 14px; }
.consent-line a { color: var(--navy); text-decoration: underline; }

.apply-submit-row { margin-top: 32px; text-align: center; }
.apply-submit-row .btn { width: 100%; padding: 17px; font-size: 16px; }
.apply-submit-note { font-size: 13px; color: var(--muted); margin-top: 14px; }

.form-feedback {
  border-radius: 6px;
  padding: 16px 18px;
  font-size: 14.5px;
  margin-bottom: 28px;
}
.form-feedback--success { background: #e8f7ee; color: #0a4a24; border: 1px solid #4caf7d; }
.form-feedback--error { background: #fdecea; color: #9b2c25; border: 1px solid #e2998f; }
.form-feedback--error ul { margin: 8px 0 0; padding-left: 18px; }

@media (max-width: 600px) {
  .apply-form { padding: 24px 20px; }
  .apply-hero { padding: 48px 0 32px; }
  .apply-hero h1 { font-size: 25px; }
}

/* =========================================================
   WHAT HAPPENS NEXT (apply page)
   ========================================================= */
.apply-next-section { padding: 90px 0; background: var(--white); }
.apply-next-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.apply-next-step {
  background: var(--paper);
  border-radius: 10px;
  padding: 22px 18px;
  text-align: center;
}
.apply-next-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 12px;
}
.apply-next-step h3 { font-size: 15.5px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.apply-next-step p { font-size: 13px; color: var(--muted); line-height: 1.5; }

@media (max-width: 980px) {
  .apply-next-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .apply-next-section { padding: 56px 0; }
  .apply-next-grid { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   NEED ASSISTANCE (apply page)
   ========================================================= */
.apply-help-section { background: var(--paper); padding: 0 0 90px; }
.apply-help-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.apply-help-inner h2 { font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.apply-help-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  font-size: 14.5px;
  color: var(--navy);
}
.apply-help-links a { color: var(--blue); font-weight: 600; }

@media (max-width: 600px) {
  .apply-help-section { padding: 0 0 56px; }
}

/* =========================================================
   SUCCESS MODAL (application submitted confirmation)
   ========================================================= */
.matalent-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 18, 32, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  animation: matalent-fade-in 0.2s ease;
}
.matalent-modal {
  background: var(--white);
  border-radius: 14px;
  max-width: 440px;
  width: 100%;
  padding: 40px 32px 32px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(11, 18, 32, 0.35);
  animation: matalent-pop-in 0.25s ease;
}
.matalent-modal-icon { margin-bottom: 18px; }
.matalent-modal h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.matalent-modal p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 26px;
}
.matalent-modal .btn { width: 100%; }

@keyframes matalent-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes matalent-pop-in {
  from { opacity: 0; transform: scale(0.94) translateY(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@media (max-width: 480px) {
  .matalent-modal { padding: 32px 22px 24px; }
  .matalent-modal h2 { font-size: 19px; }
}
