:root {
  --color-brand-primary: #002e62;
  --color-brand-action: #0c71c3;
  --color-brand-accent: #d92122;
  --color-brand-highlight: #0d6efd;
  --color-success: #047857;
  --color-success-bg: #d1fae5;
  --color-success-border: #6ee7b7;
  --color-warning: #92400e;
  --color-warning-bg: #fef3c7;
  --color-info-bg: #eff6ff;
  --color-surface: #ffffff;
  --color-surface-muted: #f3f3f3;
  --color-border: #cccccb;
  --color-text: #1a1a1a;
  --color-text-muted: #555555;
  --color-footer-bg: #001a3d;
  --color-footer-text: #c8d8ec;
  --color-footer-heading: #ffffff;
  --font-stack: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-xs: 12px;
  --font-size-lg: 18px;
  --font-size-xl: 22px;
  --font-size-2xl: 28px;
  --font-size-3xl: 36px;
  --font-size-4xl: 48px;
  --font-weight-normal: 400;
  --font-weight-semi: 600;
  --font-weight-bold: 700;
  --line-height-body: 1.6;
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 6px 20px rgba(0, 0, 0, 0.14);
  --shadow-header: 0 2px 12px rgba(0, 0, 0, 0.12);
  --container-max: 1200px;
  --container-wide: 1640px;
  --header-height: 78px;
  --state-subnav-offset: 96px;
  --transition: 160ms ease;
}

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

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-stack);
  color: var(--color-text);
  background: var(--color-surface);
  line-height: var(--line-height-body);
  -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

a {
  color: var(--color-brand-action);
  text-decoration: underline;
}

a:hover {
  color: var(--color-brand-primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 var(--sp-3);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  color: var(--color-brand-primary);
}

h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

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

p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  padding-left: 1.4em;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: var(--sp-3) var(--sp-4);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

th {
  background: var(--color-surface-muted);
  font-weight: var(--font-weight-semi);
  color: var(--color-brand-primary);
}

.sr-only,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus,
.sr-only:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  padding: var(--sp-2) var(--sp-3);
  background: var(--color-brand-action);
  color: #fff;
  z-index: 1000;
}

.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-brand-action);
  color: #fff;
  padding: var(--sp-2) var(--sp-4);
  z-index: 1000;
  border-radius: 0 0 var(--radius-sm) 0;
  text-decoration: none;
  transform: translateY(calc(-100% - 2px));
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.container,
.col-full {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: var(--sp-8) 0;
}

.section-muted {
  background: var(--color-surface-muted);
}

.examprep-scroll-target {
  scroll-margin-top: calc(var(--header-height) + 1.5rem);
}

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--color-text-muted);
}

.micro-heading,
.section-eyebrow {
  margin-bottom: var(--sp-2);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-brand-action);
}

.section-header {
  margin-bottom: var(--sp-6);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: 46px;
  padding: 12px 24px;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semi);
  line-height: 1.15;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  transition: all var(--transition);
}

.examprep-theme-shell .button,
.examprep-theme-shell button.button,
.examprep-theme-shell input.button,
.examprep-theme-shell .woocommerce a.button,
.examprep-theme-shell .woocommerce button.button,
.examprep-theme-shell .woocommerce input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 20px;
  color: #fff;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semi);
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  background: var(--color-brand-action);
  border: 2px solid var(--color-brand-action);
  border-radius: var(--radius-md);
  box-shadow: none;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.examprep-theme-shell .button:hover,
.examprep-theme-shell button.button:hover,
.examprep-theme-shell input.button:hover,
.examprep-theme-shell .woocommerce a.button:hover,
.examprep-theme-shell .woocommerce button.button:hover,
.examprep-theme-shell .woocommerce input.button:hover {
  color: #fff;
  background: #0860a8;
  border-color: #0860a8;
  box-shadow: 0 4px 12px rgba(12, 113, 195, 0.24);
  transform: translateY(-1px);
}

.examprep-theme-shell .button:focus-visible,
.examprep-theme-shell button.button:focus-visible,
.examprep-theme-shell input.button:focus-visible,
.examprep-theme-shell .woocommerce a.button:focus-visible,
.examprep-theme-shell .woocommerce button.button:focus-visible,
.examprep-theme-shell .woocommerce input.button:focus-visible {
  outline: 3px solid var(--color-brand-highlight);
  outline-offset: 2px;
}

.examprep-theme-shell .button.disabled,
.examprep-theme-shell .button:disabled,
.examprep-theme-shell button.button:disabled,
.examprep-theme-shell input.button:disabled {
  opacity: 0.58;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn:focus-visible {
  outline: 3px solid var(--color-brand-highlight);
  outline-offset: 2px;
}

.btn-primary {
  color: #fff;
  background: var(--color-brand-action);
  border-color: var(--color-brand-action);
}

.btn-primary:hover {
  color: #fff;
  background: #0860a8;
  border-color: #0860a8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(12, 113, 195, 0.35);
}

.btn-secondary {
  color: var(--color-brand-action);
  background: transparent;
  border-color: var(--color-brand-action);
}

.btn-secondary:hover {
  color: #fff;
  background: var(--color-brand-action);
}

.btn-outline {
  color: var(--color-brand-action);
  background: transparent;
  border-color: var(--color-brand-action);
}

.btn-outline:hover {
  color: #fff;
  background: var(--color-brand-action);
  border-color: var(--color-brand-action);
}

.btn-white {
  color: var(--color-brand-primary);
  background: #fff;
  border-color: #fff;
}

.btn-white:hover {
  color: var(--color-brand-primary);
  background: #e8f0fb;
}

.btn-sm {
  min-height: 40px;
  padding: 9px 16px;
  font-size: var(--font-size-sm);
}

.site {
  min-height: 100vh;
}

.site-content {
  background: var(--color-surface);
}

body:not(.home):not(.blog) .site-main {
  padding: 32px 0 64px;
}

.examprep-front-page {
  padding-top: 0;
  margin-bottom: 0;
}

body.home #content > .col-full,
body.blog.home #content > .col-full {
  max-width: none;
  padding: 0;
}

body.examprep-full-bleed-template #content > .col-full {
  max-width: none;
  margin: 0;
  padding: 0;
}

body.examprep-full-bleed-template:not(.home):not(.blog) .site-main {
  padding-top: 0;
}

.storefront-breadcrumb {
  margin: 0;
  padding: 18px 20px 0;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

body.examprep-full-bleed-template .storefront-breadcrumb {
  display: none;
}

body.examprep-child-owned-template .storefront-breadcrumb {
  display: none;
}

.storefront-breadcrumb a {
  text-decoration: none;
}

.examprep-breadcrumbs {
  margin: 0 0 clamp(1.1rem, 2.5vw, 1.75rem);
  color: var(--color-text-muted);
  font-size: clamp(0.88rem, 1.3vw, 1rem);
  font-weight: 700;
}

.examprep-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.examprep-breadcrumbs li {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
}

.examprep-breadcrumbs li + li::before {
  content: "›";
  opacity: 0.65;
}

.examprep-breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.examprep-breadcrumbs a:hover {
  text-decoration: underline;
}

.examprep-breadcrumbs--hero {
  margin-bottom: clamp(0.7rem, 1.4vw, 1rem);
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.84rem, 1vw, 0.94rem);
}

.examprep-breadcrumbs--hero a {
  color: rgba(255, 255, 255, 0.92);
}

.examprep-breadcrumbs--hero li + li::before {
  color: rgba(255, 255, 255, 0.58);
}

.examprep-breadcrumbs--product {
  margin-bottom: var(--sp-5);
}

.examprep-page-template {
  display: grid;
  gap: var(--sp-6);
}

body.examprep-full-bleed-template .examprep-page-template {
  width: min(calc(100% - 40px), var(--container-max));
  margin-inline: auto;
}

.examprep-page-header,
.examprep-hero-panel,
.examprep-content-card,
.examprep-result-card,
.examprep-empty-state {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.examprep-page-header,
.examprep-hero-panel {
  padding: clamp(28px, 5vw, 56px);
  background:
    linear-gradient(135deg, rgba(12, 113, 195, 0.09), rgba(217, 33, 34, 0.04)),
    var(--color-surface);
}

.examprep-page-header h1,
.examprep-hero-panel h1 {
  max-width: 800px;
  margin-bottom: var(--sp-4);
}

.examprep-entry-content {
  max-width: 860px;
}

.examprep-content-card {
  padding: clamp(24px, 4vw, 44px);
}

.examprep-content-card .examprep-page-header {
  padding: 0;
  margin-bottom: var(--sp-5);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.examprep-entry-content > *:last-child {
  margin-bottom: 0;
}

.examprep-search-form {
  display: flex;
  max-width: 680px;
  margin-top: var(--sp-5);
  overflow: hidden;
  border: 2px solid var(--color-brand-action);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px rgba(12, 113, 195, 0.12);
}

.examprep-search-form .search-field {
  flex: 1;
  min-width: 0;
  min-height: 52px;
  padding: 0 18px;
  border: 0;
  outline: none;
}

.examprep-search-form .search-submit {
  min-width: 140px;
  padding: 0 var(--sp-4);
  color: #fff;
  font-weight: var(--font-weight-semi);
  background: var(--color-brand-action);
  border: 0;
  cursor: pointer;
  transition: background var(--transition);
}

.examprep-search-form .search-submit:hover {
  background: #0860a8;
}

.examprep-result-list {
  display: grid;
  gap: var(--sp-4);
}

.examprep-result-card {
  padding: var(--sp-5);
}

.examprep-result-card h2 {
  margin-bottom: var(--sp-2);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.examprep-result-card h2 a {
  color: var(--color-brand-primary);
  text-decoration: none;
}

.examprep-result-card h2 a:hover {
  color: var(--color-brand-action);
  text-decoration: underline;
}

.examprep-result-type,
.examprep-result-meta {
  margin-bottom: var(--sp-2);
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.examprep-result-summary {
  color: var(--color-text-muted);
}

.examprep-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  align-items: center;
}

.examprep-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 8px 12px;
  color: var(--color-brand-primary);
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.examprep-pagination .page-numbers.current,
.examprep-pagination a.page-numbers:hover {
  color: #fff;
  background: var(--color-brand-action);
  border-color: var(--color-brand-action);
}

.examprep-empty-state {
  padding: clamp(24px, 4vw, 40px);
}

.examprep-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}

.examprep-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--sp-4);
}

.examprep-link-card {
  display: grid;
  gap: var(--sp-2);
  padding: var(--sp-5);
  color: var(--color-brand-primary);
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.examprep-link-card:hover {
  color: var(--color-brand-action);
  border-color: var(--color-brand-action);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.examprep-link-card span {
  font-weight: var(--font-weight-bold);
}

.examprep-link-card small {
  color: var(--color-text-muted);
}

#masthead.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  background: var(--color-surface);
  box-shadow: var(--shadow-header);
}

.examprep-state-page #masthead.site-header {
  position: relative;
  top: auto;
  z-index: 80;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  height: 100%;
  min-height: 0;
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.site-logo img {
  width: auto;
  height: 48px;
}

.nav-primary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-primary > li {
  position: static;
}

.nav-primary > li > a {
  display: block;
  height: var(--header-height);
  padding: 0 var(--sp-4);
  color: var(--color-brand-primary);
  font-size: 15px;
  font-weight: var(--font-weight-semi);
  line-height: var(--header-height);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.nav-primary > li > a:hover,
.nav-primary > li > a:focus {
  color: var(--color-brand-action);
  border-bottom-color: var(--color-brand-action);
}

.nav-utility {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-shrink: 0;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-brand-primary);
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  white-space: nowrap;
}

.nav-phone:hover {
  color: var(--color-brand-action);
}

.nav-icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  color: var(--color-brand-primary);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

.nav-icon-btn:hover {
  color: var(--color-brand-primary);
  background: var(--color-surface-muted);
}

.nav-cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  height: 16px;
  padding: 0 3px;
  color: #fff;
  font-size: 10px;
  font-weight: var(--font-weight-bold);
  background: var(--color-brand-accent);
  border-radius: 999px;
}

.has-mega > .mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  min-width: 520px;
  max-width: min(820px, calc(100vw - 32px));
  padding: var(--sp-5);
  background: #fff;
  border-top: 2px solid var(--color-brand-action);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-card-hover);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(6px);
  transition:
    opacity 120ms ease,
    visibility 120ms ease,
    transform 120ms ease;
}

.has-mega::after {
  position: absolute;
  top: calc(100% - 2px);
  right: 0;
  left: 0;
  z-index: 19;
  display: block;
  height: 14px;
  content: "";
  opacity: 0;
  pointer-events: none;
}

.has-mega:hover > .mega-menu,
.has-mega:focus-within > .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.has-mega:hover::after,
.has-mega:focus-within::after {
  pointer-events: auto;
}

.has-mega > .mega-menu--wide {
  grid-template-columns: minmax(210px, 1.05fr) minmax(180px, 1fr) minmax(170px, 0.95fr);
  min-width: 760px;
}

.has-mega > .mega-menu--right {
  right: auto;
  left: 50%;
}

.mega-intro {
  display: grid;
  align-content: start;
  gap: var(--sp-2);
  padding: var(--sp-4);
  background: var(--color-surface-muted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.mega-menu-heading {
  margin: 0;
  color: var(--color-brand-primary);
  font-size: 1rem;
  line-height: 1.25;
}

.mega-intro p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  line-height: 1.5;
}

.mega-cta {
  display: inline-flex;
  width: fit-content;
  margin-top: var(--sp-2);
  color: var(--color-brand-action);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
}

.mega-cta:hover {
  color: var(--color-brand-primary);
}

.mega-section-title {
  margin-bottom: var(--sp-2);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}

.mega-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mega-links li a {
  display: block;
  padding: var(--sp-1) 0;
  color: var(--color-text);
  font-size: var(--font-size-sm);
  line-height: 1.35;
  text-decoration: none;
}

.mega-links li a:hover {
  color: var(--color-brand-action);
}

.mega-links--summary li a {
  display: grid;
  gap: 2px;
  padding: var(--sp-2) 0;
}

.mega-links--summary span {
  font-weight: var(--font-weight-bold);
}

.mega-links--summary small {
  color: var(--color-text-muted);
  font-size: 12px;
  line-height: 1.35;
}

.mega-links--summary a:hover small {
  color: var(--color-text);
}

.hamburger {
  display: none;
  padding: var(--sp-2);
  color: var(--color-brand-primary);
  background: none;
  border: 0;
  cursor: pointer;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  flex-direction: column;
  gap: var(--sp-5);
  padding: var(--sp-5);
  color: #fff;
  background: var(--color-brand-primary);
  overflow-y: auto;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
}

.mobile-nav-logo {
  text-decoration: none;
}

.mobile-nav-logo img {
  width: auto;
  height: 40px;
}

.mobile-nav-close {
  padding: var(--sp-2);
  color: #fff;
  background: none;
  border: 0;
  cursor: pointer;
}

.mobile-nav-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav-links li a {
  display: block;
  padding: var(--sp-3) 0;
  color: #fff;
  font-size: 1.2rem;
  font-weight: var(--font-weight-semi);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-nav-section-title {
  margin: var(--sp-3) 0 var(--sp-1);
  color: rgba(255, 255, 255, 0.62);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-nav-section-title:first-child {
  margin-top: 0;
}

.mobile-nav-utility {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.mobile-nav-cta {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.mobile-nav-cta:hover {
  border-color: #fff;
}

.site-footer {
  padding: clamp(3rem, 6vw, 5rem) 0 var(--sp-5);
  color: #e8f2ff;
  background:
    linear-gradient(135deg, rgba(12, 113, 195, 0.18), transparent 38%),
    var(--color-footer-bg);
}

.site-footer h3 {
  margin: 0 0 var(--sp-4);
  padding-bottom: var(--sp-3);
  color: var(--color-footer-heading);
  font-size: 1.08rem;
  letter-spacing: -0.01em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-brand {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: var(--sp-7);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.footer-brand-copy {
  min-width: 0;
}

.footer-eyebrow {
  margin: 0 0 var(--sp-2);
  color: #9fd2ff;
  font-size: var(--font-size-xs);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-brand h2 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.footer-brand p:not(.footer-eyebrow) {
  max-width: 820px;
  margin: var(--sp-3) 0 0;
  color: #d5e6fa;
  font-size: 1rem;
  line-height: 1.65;
}

.footer-phone-card {
  display: grid;
  gap: var(--sp-2);
  max-width: 440px;
  margin-top: var(--sp-4);
  padding: var(--sp-5);
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
}

.site-footer .footer-phone-card:not(.button):not(.components-button),
.site-footer .footer-phone-card:not(.button):not(.components-button):visited {
  color: #fff;
}

.footer-phone-card:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.footer-phone-card span,
.footer-phone-card small {
  color: #cfe1f7;
  font-weight: 800;
}

.footer-phone-card strong {
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1;
}

.footer-support-card {
  justify-self: end;
  width: 100%;
  max-width: 520px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.footer-support-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: calc(var(--radius-md) - 4px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.15fr 1fr 1.35fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: var(--sp-7);
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--sp-2);
}

.footer-links a,
.footer-address a {
  color: #edf6ff;
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 650;
}

.site-footer .footer-links a:not(.button):not(.components-button),
.site-footer .footer-address a:not(.button):not(.components-button),
.site-footer .footer-social a:not(.button):not(.components-button),
.site-footer .footer-copy a:not(.button):not(.components-button) {
  color: #edf6ff;
}

.site-footer .footer-links a:not(.button):not(.components-button):visited,
.site-footer .footer-address a:not(.button):not(.components-button):visited,
.site-footer .footer-social a:not(.button):not(.components-button):visited,
.site-footer .footer-copy a:not(.button):not(.components-button):visited {
  color: #edf6ff;
}

.footer-links a:hover,
.footer-address a:hover {
  color: #fff;
  text-decoration: underline;
}

.site-footer .footer-links a:not(.button):not(.components-button):hover,
.site-footer .footer-address a:not(.button):not(.components-button):hover,
.site-footer .footer-social a:not(.button):not(.components-button):hover,
.site-footer .footer-copy a:not(.button):not(.components-button):hover {
  color: #fff;
}

.footer-address {
  margin: 0;
  font-style: normal;
  color: #d8e8fa;
  font-size: 0.95rem;
  line-height: 1.75;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 var(--sp-3);
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  font-size: var(--font-size-xs);
  font-weight: 900;
}

.site-footer .footer-social a:not(.button):not(.components-button) {
  color: #fff;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.footer-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}

.footer-search input {
  min-width: 0;
  min-height: 44px;
  padding: 0 var(--sp-3);
  color: var(--color-text);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
}

.footer-search button {
  min-height: 44px;
  padding: 0 var(--sp-4);
  color: #fff;
  background: var(--color-brand-action);
  border: 0;
  border-radius: var(--radius-md);
  font-weight: 900;
}

.footer-search button:hover {
  background: #0a5ea3;
}

.footer-subheading {
  margin-top: var(--sp-5) !important;
}

.footer-office-list {
  display: grid;
  gap: var(--sp-3);
}

.footer-office strong {
  color: #fff;
  font-size: 1rem;
}

.footer-office a {
  color: #edf6ff;
  text-decoration: none;
}

.footer-office a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-copy {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-3);
  padding-top: var(--sp-5);
  font-size: var(--font-size-sm);
  color: #bdd2eb;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copy a {
  color: #e8f2ff;
  font-weight: 700;
}

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

.hero-home {
  position: relative;
  padding: 40px 0 48px;
  overflow: hidden;
  background: #002050;
}

.hero-bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.hero-home .hero-bg-photo img {
  object-position: right 24%;
}

.examprep-hub-hero--seminars .hero-bg-photo img {
  width: 110%;
  max-width: none;
  transform: translateX(4%);
}

.examprep-hub-hero--custom-training .hero-bg-photo img {
  width: 120%;
  max-width: none;
  transform: translateX(8%);
}

.examprep-hub-hero--nascla .hero-bg-photo img {
  object-position: center center;
}

.examprep-hub-hero--online-classes .hero-bg-photo img {
  object-position: center center;
}

.examprep-hub-hero--practice-exams .hero-bg-photo img {
  object-position: center center;
}

.examprep-hub-hero--application-processing .hero-bg-photo img {
  object-position: center center;
}

.hero-bg-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #002050 0%,
    #002050 35%,
    rgba(0, 32, 80, 0.82) 55%,
    rgba(0, 32, 80, 0.25) 78%,
    rgba(0, 32, 80, 0) 100%
  );
}

.examprep-hub-hero--nascla .hero-bg-photo::after {
  background: linear-gradient(
    to right,
    rgba(0, 23, 55, 0.96) 0%,
    rgba(0, 32, 80, 0.88) 36%,
    rgba(0, 32, 80, 0.48) 72%,
    rgba(0, 32, 80, 0.22) 100%
  );
}

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

.hero-split {
  display: block;
  max-width: 580px;
}

.hero-content {
  position: relative;
}

.hero-eyebrow-strip {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 22px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 16px;
  color: #fff;
  font-size: 13px;
  font-weight: var(--font-weight-semi);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.trust-pill + .trust-pill {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-pill svg {
  color: #60a5fa;
  flex-shrink: 0;
}

.hero-title {
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3rem);
}

.hero-title-highlight {
  color: #60a5fa;
}

.hero-copy {
  max-width: 500px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.7;
}

.state-selector-bar,
.search-bar {
  display: flex;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.state-selector-bar {
  max-width: 480px;
  margin-bottom: 12px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.state-selector-bar select {
  flex: 1;
  min-height: 48px;
  padding: 0 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 0;
  outline: none;
  cursor: pointer;
  appearance: none;
}

.state-selector-bar select option {
  color: #fff;
  background: var(--color-brand-primary);
}

.state-selector-bar button,
.search-bar button {
  min-width: 140px;
  color: #fff;
  background: var(--color-brand-action);
  border: 0;
  cursor: pointer;
  font-weight: var(--font-weight-semi);
  transition: background var(--transition);
}

.state-selector-bar button:hover,
.search-bar button:hover {
  background: #0860a8;
}

.hero-note-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-sm);
}

.hero-note-link:hover {
  color: #fff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.trust-bar {
  padding: var(--sp-5) 0;
  background: var(--color-surface-muted);
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}

.trust-stat {
  padding: var(--sp-4);
  text-align: center;
}

.trust-stat .number {
  color: var(--color-brand-primary);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  line-height: 1;
}

.trust-stat .number-nowrap {
  font-size: clamp(1.25rem, 3.5vw, 2.5rem);
  white-space: nowrap;
}

.trust-stat .label {
  margin-top: var(--sp-2);
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.front-page-section-intro {
  max-width: 640px;
}

.front-page-search {
  max-width: 520px;
  margin-bottom: 36px;
}

.search-bar {
  overflow: hidden;
  border: 2px solid var(--color-brand-action);
  box-shadow: 0 2px 12px rgba(12, 113, 195, 0.12);
}

.search-bar input {
  flex: 1;
  min-height: 52px;
  padding: 0 18px;
  border: 0;
  outline: none;
}

.front-page-popular {
  margin-bottom: 36px;
}

.popular-state-list,
.trade-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.state-chip,
.trade-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semi);
  text-decoration: none;
  transition: all var(--transition);
}

.state-chip {
  color: var(--color-brand-primary);
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
}

.state-chip:hover {
  color: var(--color-brand-action);
  background: #f0f7ff;
  border-color: var(--color-brand-action);
}

.state-az-shell {
  columns: 6 130px;
  column-gap: 0;
  padding: 8px 0;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.state-az-link {
  display: block;
  padding: 7px 20px;
  color: var(--color-brand-primary);
  font-size: var(--font-size-sm);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-bottom: 1px solid #f3f3f3;
  transition: all var(--transition);
  break-inside: avoid;
}

.state-az-link:hover {
  color: var(--color-brand-action);
  background: #f0f7ff;
  padding-left: 24px;
}

.state-az-actions {
  margin-top: 16px;
  text-align: right;
}

.state-details-link {
  color: var(--color-brand-action);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semi);
  text-decoration: none;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--sp-3);
}

.offer-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-3);
  text-align: center;
  color: var(--color-text);
  text-decoration: none;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.offer-tile:hover {
  background: #f0f7ff;
  border-color: var(--color-brand-action);
  transform: translateY(-2px);
}

.offer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #dbeafe;
  border-radius: var(--radius-md);
}

.offer-tile h3 {
  margin: 0;
  color: var(--color-brand-primary);
  font-size: 13px;
}

.offer-tile p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 11px;
}

.trade-chip {
  color: var(--color-brand-action);
  border: 1.5px solid var(--color-brand-action);
  border-radius: var(--radius-pill);
}

.trade-chip:hover {
  color: #fff;
  background: var(--color-brand-action);
}

.trade-band {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 92px) 0;
  background:
    linear-gradient(135deg, rgba(12, 113, 195, 0.12), transparent 44%),
    linear-gradient(180deg, #f7fbff 0%, #eef5fc 100%);
  border-top: 1px solid #dbe7f3;
  border-bottom: 1px solid #dbe7f3;
}

.trade-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(36vw, 520px);
  height: 6px;
  background: linear-gradient(90deg, var(--color-brand-accent), var(--color-brand-action));
}

.trade-band-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(var(--sp-5), 5vw, var(--sp-8));
  align-items: start;
}

.trade-band-intro {
  max-width: 430px;
}

.trade-band-intro h2 {
  margin: 0 0 var(--sp-3);
  color: var(--color-brand-primary);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.trade-band-intro p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--font-size-lg);
  line-height: 1.65;
}

.trade-band-link {
  display: inline-flex;
  align-items: center;
  margin-top: var(--sp-5);
  color: var(--color-brand-action);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
}

.trade-band-link:hover {
  color: var(--color-brand-primary);
  text-decoration: underline;
}

.trade-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-3);
}

.trade-card {
  position: relative;
  display: grid;
  gap: var(--sp-2);
  min-height: 152px;
  padding: var(--sp-4);
  color: var(--color-text);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #cfdced;
  border-left: 4px solid transparent;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 22px rgba(0, 32, 80, 0.07);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.trade-card::after {
  content: "\2192";
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  color: var(--color-brand-action);
  font-weight: var(--font-weight-bold);
  opacity: 0.72;
}

.trade-card:hover {
  transform: translateY(-3px);
  border-color: rgba(12, 113, 195, 0.48);
  border-left-color: var(--color-brand-accent);
  box-shadow: 0 16px 34px rgba(0, 32, 80, 0.13);
}

.trade-card-kicker {
  color: var(--color-brand-action);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trade-card strong {
  max-width: calc(100% - 24px);
  color: var(--color-brand-primary);
  font-size: 1.05rem;
  line-height: 1.25;
}

.trade-card span:last-child {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  line-height: 1.45;
}

.testimonial-grid,
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.testimonial-card,
.location-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.testimonial-card {
  padding: var(--sp-5);
}

.testimonial-stars {
  margin-bottom: var(--sp-3);
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-quote {
  margin: 0 0 var(--sp-4);
  color: var(--color-text);
  font-style: italic;
  line-height: 1.7;
}

.testimonial-author {
  color: var(--color-brand-primary);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semi);
}

.testimonial-meta {
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
}

.loc-img {
  display: flex;
  align-items: center;
  min-height: 160px;
  overflow: hidden;
}

.examprep-location-band {
  justify-content: center;
  padding: var(--sp-4);
  color: #fff;
  font-size: 1.05rem;
  font-weight: var(--font-weight-bold);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(12, 113, 195, 0.18), rgba(217, 33, 34, 0.06)),
    linear-gradient(135deg, #002050, #002e62 48%, #0c71c3 100%);
}

.loc-body {
  padding: var(--sp-4);
}

.loc-body h3 {
  font-size: 1.1rem;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: var(--sp-4);
}

.location-call {
  color: var(--color-brand-action);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semi);
  text-decoration: none;
}

/* Location card image — fills the .loc-img slot in place of the old text band */
.loc-img {
  aspect-ratio: 3 / 2;
  min-height: 200px;
  background: #f6f8fb;
}

.loc-img img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

/* About band — photo left, copy right (text gets more room) */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: var(--sp-7);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-photo {
  order: -1;
}

.about-copy h2 {
  margin: var(--sp-2) 0 var(--sp-4);
  color: var(--color-brand-primary);
  font-size: var(--font-size-3xl);
  line-height: 1.2;
}

.about-copy p {
  margin: 0 0 var(--sp-4);
  color: var(--color-text);
  font-size: var(--font-size-lg);
  line-height: 1.7;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }
}

.about-proof-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(52px, 7vw, 92px) 0;
  color: #fff;
  background:
    linear-gradient(132deg, rgba(217, 33, 34, 0.92) 0 4px, transparent 4px 100%),
    linear-gradient(135deg, #001a3d 0%, #002f66 52%, #071a33 100%);
}

.about-proof-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.about-proof-banner::after {
  content: "";
  position: absolute;
  inset: auto -10% -46% 42%;
  z-index: -1;
  height: 78%;
  background: linear-gradient(110deg, rgba(217, 33, 34, 0.86), rgba(12, 113, 195, 0.14));
  transform: skewY(-8deg);
}

.about-proof-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(var(--sp-6), 6vw, var(--sp-8));
  align-items: center;
}

.about-proof-statement .section-eyebrow {
  color: #93c5fd;
}

.about-proof-statement h2 {
  max-width: 940px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.8rem, 7vw, 6.8rem);
  line-height: 0.95;
  text-wrap: balance;
}

.about-proof-statement h2 span {
  display: block;
}

.about-proof-statement h2 span + span {
  margin-top: 0.18em;
  color: #fff;
  text-shadow:
    0 0 24px rgba(96, 165, 250, 0.52),
    0 10px 28px rgba(0, 0, 0, 0.35);
}

.about-proof-copy {
  padding: var(--sp-5);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-left: 5px solid var(--color-brand-accent);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.about-proof-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-lg);
  line-height: 1.65;
}

.about-proof-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}

.about-proof-badges div {
  display: grid;
  gap: 4px;
  min-height: 94px;
  padding: var(--sp-4);
  align-content: center;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-md);
}

.about-proof-badges strong {
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  line-height: 1;
}

.about-proof-badges span {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semi);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 900px) {
  .about-proof-inner {
    grid-template-columns: 1fr;
  }

  .about-proof-copy {
    max-width: 640px;
  }
}

@media (max-width: 600px) {
  .about-proof-banner {
    padding: var(--sp-7) 0;
  }

  .about-proof-statement h2 {
    font-size: clamp(2.4rem, 13vw, 3.4rem);
  }

  .about-proof-copy {
    padding: var(--sp-4);
  }

  .about-proof-badges {
    grid-template-columns: 1fr;
  }
}

/* How It Works — 2x2 grid of vertical feature cards (image top, copy below) */
.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
  max-width: 1100px;
  margin: 0 auto;
}

.how-step {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.how-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.how-step-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.how-step-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.how-step-num {
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 1rem;
  font-weight: var(--font-weight-bold);
  background: var(--color-brand-primary);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.how-step h3 {
  margin: 0;
  padding: var(--sp-5) var(--sp-5) var(--sp-2);
  color: var(--color-brand-primary);
  font-size: var(--font-size-lg);
  line-height: 1.3;
}

.how-step p {
  margin: 0;
  padding: 0 var(--sp-5) var(--sp-5);
  color: var(--color-text-muted);
  font-size: var(--font-size-base);
  line-height: 1.55;
}

@media (max-width: 700px) {
  .how-it-works-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

/* Why Prep band — photo left, copy right (text gets more room) */
.why-prep-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: var(--sp-7);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.why-prep-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.why-prep-copy h2 {
  margin: var(--sp-2) 0 var(--sp-4);
  color: var(--color-brand-primary);
  font-size: var(--font-size-3xl);
  line-height: 1.2;
}

.why-prep-copy p {
  margin: 0 0 var(--sp-4);
  color: var(--color-text);
  font-size: var(--font-size-lg);
  line-height: 1.7;
}

.why-prep-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--sp-3);
  list-style: none;
}

.why-prep-list li {
  position: relative;
  padding-left: var(--sp-6);
  color: var(--color-text);
  line-height: 1.55;
}

.why-prep-list li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: var(--color-brand-action);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
}

@media (max-width: 900px) {
  .why-prep-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }
}

/* CTA banner background photo (positioned behind the existing text/buttons) */
.cta-banner {
  position: relative;
  overflow: hidden;
}

.cta-bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.cta-bg-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
}

.cta-bg-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 26, 61, 0.55), rgba(0, 46, 98, 0.92));
}

.cta-banner > .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 600px) {
  .offer-tile {
    align-items: flex-start;
    gap: var(--sp-3);
    padding: var(--sp-4);
    text-align: left;
  }

  .offer-icon {
    width: 42px;
    height: 42px;
  }

  .offer-tile h3 {
    font-size: 0.95rem;
    line-height: 1.25;
  }

  .offer-tile p {
    font-size: 0.82rem;
    line-height: 1.45;
  }
}

.faq-shell {
  max-width: 960px;
}

.faq-shell .section-header {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 46, 98, 0.14);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 26px rgba(0, 46, 98, 0.06);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.faq-item:hover {
  border-color: rgba(12, 113, 195, 0.32);
}

.faq-item.is-open {
  border-color: rgba(12, 113, 195, 0.55);
  box-shadow: 0 16px 34px rgba(0, 46, 98, 0.1);
}

.faq-question {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  justify-content: flex-start;
  width: 100%;
  min-height: 68px;
  padding: 20px 56px 20px 22px;
  color: var(--color-brand-primary);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semi);
  line-height: 1.35;
  text-align: left;
  background: #fff;
  border: 0;
  border-radius: calc(var(--radius-md) - 1px);
  cursor: pointer;
  transition: color var(--transition), background-color var(--transition), box-shadow var(--transition);
}

.faq-question:hover {
  color: var(--color-brand-action);
  background: #f8fbff;
}

.faq-question:focus-visible {
  outline: 0;
  box-shadow: inset 0 0 0 2px rgba(12, 113, 195, 0.22);
}

.faq-question::after {
  position: absolute;
  top: 50%;
  right: 24px;
  display: block;
  width: 11px;
  height: 11px;
  content: "";
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-60%) rotate(45deg);
  transition: transform var(--transition);
}

.faq-chevron {
  display: none;
}

.faq-answer {
  display: none;
  max-width: 74ch;
  padding: 16px 0 22px;
  margin: 0 22px;
  color: var(--color-text);
  line-height: 1.7;
  border-top: 1px solid rgba(0, 46, 98, 0.12);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-item.is-open .faq-question {
  color: var(--color-brand-primary);
  background: #f8fbff;
}

.faq-item.is-open .faq-question::after {
  transform: translateY(-35%) rotate(225deg);
}

.faq-answer > *:last-child {
  margin-bottom: 0;
}

.cta-banner {
  padding: var(--sp-7) 0;
  color: #fff;
  text-align: center;
  background: var(--color-brand-primary);
}

.cta-banner h2 {
  color: #fff;
}

.cta-banner p {
  margin-bottom: var(--sp-5);
  color: rgba(255, 255, 255, 0.82);
}

.cta-banner .btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3);
}

.cta-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.cta-secondary:hover {
  border-color: #fff;
}

.js-ready .hero-anim {
  opacity: 0;
  transform: translateY(10px);
}

.js-ready .hero-anim-in {
  opacity: 0;
}

.js-animated .hero-anim,
.js-animated .hero-anim-in {
  opacity: 1;
  transform: translate(0, 0);
  transition: opacity 0.42s ease, transform 0.42s cubic-bezier(0.2, 0, 0, 1);
}

.d1 {
  transition-delay: 0.04s !important;
}

.d2 {
  transition-delay: 0.1s !important;
}

.d3 {
  transition-delay: 0.16s !important;
}

.d4 {
  transition-delay: 0.22s !important;
}

.d5 {
  transition-delay: 0.28s !important;
}

.scroll-reveal {
  opacity: 1;
  transform: none;
}

.js-ready .scroll-reveal {
  opacity: 1;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 0.68, 0, 1.1);
}

.js-ready .scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s !important;
}

.delay-2 {
  transition-delay: 0.2s !important;
}

.delay-3 {
  transition-delay: 0.3s !important;
}

.delay-4 {
  transition-delay: 0.4s !important;
}

body.has-mobile-nav-open {
  overflow: hidden;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  color: var(--color-brand-primary);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #eef4fb;
  border-radius: var(--radius-pill);
}

.badge-navy {
  color: #fff;
  background: var(--color-brand-primary);
}

.badge-blue {
  color: #075985;
  background: #e0f2fe;
}

.badge-green {
  color: #166534;
  background: #dcfce7;
}

.badge-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.badge-success {
  color: #15803d;
  background: #dcfce7;
}

.filter-input,
.examprep-finder-bar select,
.examprep-finder-bar input,
.woocommerce-ordering select {
  min-height: 44px;
  padding: 0 14px;
  color: var(--color-text);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  outline: none;
}

.filter-input:focus,
.examprep-finder-bar select:focus,
.examprep-finder-bar input:focus,
.woocommerce-ordering select:focus {
  border-color: var(--color-brand-action);
  box-shadow: 0 0 0 3px rgba(12, 113, 195, 0.14);
}

.examprep-hub-hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 86% 18%, rgba(217, 33, 34, 0.26), transparent 18rem),
    linear-gradient(135deg, #001a3d, #002e62 54%, #0c71c3 100%);
}

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

.examprep-hub-hero--seminars {
  padding-top: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: clamp(1.25rem, 3.5vw, 2.5rem);
}

.examprep-hub-hero h1,
.examprep-hub-hero .section-eyebrow {
  color: #fff;
}

.examprep-hub-hero h1 {
  max-width: 820px;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.examprep-hub-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.examprep-hub-actions,
.examprep-results-header,
.examprep-section-header-split {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
  justify-content: space-between;
}

.examprep-hub-actions {
  justify-content: flex-start;
  margin-top: var(--sp-5);
}

.examprep-hero-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.62);
}

.examprep-hero-outline:hover {
  color: var(--color-brand-primary);
  background: #fff;
  border-color: #fff;
}

.examprep-state-hero .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.62);
}

.examprep-state-hero .btn-outline:hover {
  color: var(--color-brand-primary);
  background: #fff;
  border-color: #fff;
}

.examprep-narrow-copy {
  max-width: 860px;
}

.examprep-intro-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.examprep-intro-card h2 {
  margin-bottom: 0;
}

.examprep-intro-card__copy {
  color: var(--color-text);
  font-size: 1.04rem;
  line-height: 1.75;
}

.examprep-intro-card__copy p:last-child {
  margin-bottom: 0;
}

.examprep-step-grid,
.examprep-format-grid,
.examprep-check-grid,
.examprep-prep-card-grid,
.examprep-exam-panel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--sp-4);
}

.examprep-step-card,
.examprep-format-card,
.examprep-check-item,
.examprep-prep-card,
.examprep-exam-panel {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.examprep-step-card {
  padding: var(--sp-5);
}

.examprep-step-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: var(--sp-3);
  color: #fff;
  font-weight: 900;
  background: var(--color-brand-action);
  border-radius: 50%;
}

.examprep-step-card h3 {
  font-size: 1rem;
}

.examprep-popular-state-grid,
.examprep-offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--sp-4);
}

.examprep-popular-state-card,
.examprep-offer-card,
.examprep-product-card {
  color: var(--color-text);
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.examprep-popular-state-card:hover,
.examprep-offer-card:hover,
.examprep-product-card:hover {
  color: var(--color-text);
  border-color: var(--color-brand-action);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.examprep-popular-state-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: var(--sp-3);
  align-items: center;
  padding: var(--sp-4);
}

.examprep-popular-state-card__abbr {
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  background:
    linear-gradient(135deg, rgba(217, 33, 34, 0.92), rgba(12, 113, 195, 0.8)),
    var(--color-brand-primary);
  border-radius: var(--radius-md);
}

.examprep-popular-state-card__abbr {
  width: 58px;
  height: 58px;
}

.examprep-popular-state-card__body {
  display: grid;
  gap: 3px;
}

.examprep-popular-state-card strong,
.examprep-offer-card h3 {
  color: var(--color-brand-primary);
}

.examprep-popular-state-card small,
.examprep-offer-card p {
  color: var(--color-text-muted);
}

.examprep-filter-control {
  display: grid;
  gap: 6px;
  min-width: min(100%, 320px);
}

.examprep-filter-control label {
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.examprep-state-index {
  display: grid;
  gap: var(--sp-5);
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #fff;
  border: 1px solid rgba(16, 44, 89, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.examprep-state-index__tools {
  display: grid;
  grid-template-columns: minmax(260px, 520px) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: end;
}

.examprep-state-index__search .search-bar {
  background: #fff;
}

.examprep-state-index__search input {
  min-height: 52px;
}

.examprep-state-index__popular {
  display: grid;
  gap: var(--sp-2);
}

.examprep-state-index__list {
  columns: 5 150px;
  padding: 10px 0;
}

.examprep-state-index__link {
  font-weight: 800;
  line-height: 1.35;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

.examprep-state-index__filterable[hidden] {
  display: none;
}

.examprep-nascla-callout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  color: #fff;
  background:
    radial-gradient(circle at 90% 14%, rgba(217, 33, 34, 0.22), transparent 16rem),
    linear-gradient(135deg, #001a3d, #102c59);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.examprep-nascla-callout h2,
.examprep-nascla-callout .section-eyebrow {
  color: #fff;
}

.examprep-nascla-callout p {
  color: rgba(255, 255, 255, 0.82);
}

.examprep-nascla-chip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.examprep-nascla-chip-grid a {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 8px 10px;
  color: #fff;
  font-size: var(--font-size-sm);
  font-weight: 800;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
}

.examprep-nascla-chip-grid span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--color-brand-primary);
  background: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
}

.examprep-offer-card {
  display: grid;
  gap: var(--sp-2);
  padding: var(--sp-5);
}

.examprep-offer-card span {
  color: var(--color-brand-action);
  font-weight: 800;
}

.examprep-finder-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.2fr auto;
  gap: var(--sp-3);
  align-items: end;
  margin-top: var(--sp-6);
  padding: var(--sp-5);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
}

.examprep-finder-bar label {
  display: block;
  margin-bottom: 6px;
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.examprep-finder-bar select,
.examprep-finder-bar input {
  width: 100%;
}

.examprep-book-search-bar {
  grid-template-columns: minmax(0, 1fr) auto;
  max-width: 780px;
}

.examprep-book-search-bar input[type="search"] {
  min-height: 48px;
}

.examprep-results-header {
  margin-bottom: var(--sp-5);
}

.examprep-results-header h2 {
  margin-bottom: 0;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

.examprep-seminar-list {
  display: grid;
  gap: var(--sp-3);
}

  .examprep-seminar-row {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  gap: var(--sp-5);
  align-items: center;
  padding: var(--sp-5);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.seminar-date-block {
  display: grid;
  gap: 2px;
  justify-items: center;
  padding: 10px 8px;
  color: #fff;
  background: var(--color-brand-primary);
  border-radius: var(--radius-md);
}

.seminar-date-block .month,
.seminar-date-block .year {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.82;
}

.seminar-date-block .day {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}

.seminar-info h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.seminar-info h3 a {
  color: var(--color-brand-primary);
  text-decoration: none;
}

.seminar-info h3 a:hover {
  color: var(--color-brand-action);
  text-decoration: underline;
}

.seminar-meta,
.seminar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.seminar-tags {
  margin-top: var(--sp-2);
}

.seminar-actions {
  display: grid;
  gap: var(--sp-2);
  justify-items: end;
  min-width: 150px;
}

.seminar-price {
  color: var(--color-brand-primary);
  font-size: 1.15rem;
  font-weight: 900;
}

.examprep-format-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.examprep-format-card,
.examprep-prep-card,
.examprep-exam-panel {
  padding: var(--sp-5);
}

.examprep-format-card ul {
  display: grid;
  gap: 0.45rem;
  margin: var(--sp-4) 0;
  padding-left: 1.15rem;
  color: var(--color-text-muted);
}

.examprep-check-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.examprep-check-item {
  position: relative;
  padding: var(--sp-4) var(--sp-4) var(--sp-4) 3rem;
  color: var(--color-text);
  font-weight: 700;
}

.examprep-check-item::before {
  content: "";
  position: absolute;
  top: 1.05rem;
  left: 1.1rem;
  width: 18px;
  height: 18px;
  background: var(--color-brand-action);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px #fff;
}

.examprep-seminar-state-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--sp-3);
}

.state-sem-card {
  display: grid;
  gap: 4px;
  padding: var(--sp-4);
  color: var(--color-brand-primary);
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.state-sem-card .abbr {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--color-brand-primary);
  border-radius: 50%;
  font-weight: 900;
}

.state-sem-card .name {
  font-weight: 900;
}

.state-sem-card .freq {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.examprep-shop-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: var(--sp-6);
  align-items: start;
}

.examprep-shop-filters {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
}

.examprep-shop-filter-panel {
  padding: var(--sp-5);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.examprep-shop-filter-panel h2 {
  font-size: 1.1rem;
}

/* Mobile/tablet filter disclosure — collapsed by default (see <=900px block)
   so products appear right after the hero instead of below the full filter
   list. Hidden on desktop, where the filters are a sticky sidebar. */
.examprep-shop-filter-toggle {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 18px;
  color: var(--color-brand-primary);
  font: inherit;
  font-weight: 800;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  cursor: pointer;
}

.examprep-shop-filter-toggle__icon {
  flex: 0 0 auto;
  transition: transform var(--transition);
}

.examprep-shop-filter-toggle[aria-expanded="true"] .examprep-shop-filter-toggle__icon {
  transform: rotate(180deg);
}

.filter-group {
  display: grid;
  gap: 8px;
  padding: var(--sp-4) 0;
  border-top: 1px solid var(--color-border);
}

.filter-group h3 {
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.filter-group a {
  display: flex;
  justify-content: space-between;
  gap: var(--sp-2);
  color: var(--color-brand-primary);
  font-size: var(--font-size-sm);
  font-weight: 700;
  text-decoration: none;
}

.filter-group a:hover {
  color: var(--color-brand-action);
  text-decoration: underline;
}

.examprep-shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-5);
}

.examprep-shop-toolbar .woocommerce-result-count {
  margin: 0;
  color: var(--color-text-muted);
}

.examprep-shop-template ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-5);
  margin: 0;
  padding: 0;
}

.examprep-shop-template ul.products::before,
.examprep-shop-template ul.products::after {
  display: none;
}

.examprep-product-card.product {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  overflow: hidden;
  text-align: left;
}

.examprep-product-card__image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f8fafc;
}

.examprep-product-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
}

.examprep-product-card__placeholder {
  display: grid;
  place-items: center;
  height: 100%;
  padding: var(--sp-3);
  color: rgba(0, 46, 98, 0.34);
  font-size: var(--font-size-sm);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  text-wrap: balance;
  text-transform: uppercase;
  background:
    linear-gradient(135deg, rgba(12, 113, 195, 0.08), rgba(217, 33, 34, 0.05)),
    #f8fafc;
}

.examprep-product-card__body {
  display: grid;
  gap: var(--sp-3);
  padding: var(--sp-4);
  text-align: left;
}

.examprep-product-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.examprep-product-card__title {
  margin: 0;
  padding: 0;
  font-size: 1rem !important;
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
  text-align: left;
}

.examprep-product-card__title a {
  color: var(--color-brand-primary);
  text-decoration: none;
}

.examprep-product-card__title a:hover {
  color: var(--color-brand-action);
  text-decoration: underline;
}

.examprep-product-card__meta,
.examprep-product-card__summary {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  line-height: 1.55;
}

.examprep-product-card__footer {
  display: grid;
  gap: var(--sp-3);
  align-self: end;
}

.examprep-product-card__footer .price {
  margin: 0;
  color: var(--color-brand-accent);
  font-size: 1.15rem;
  font-weight: 900;
  text-align: left;
}

.examprep-product-card__footer .button {
  justify-content: center;
  width: 100%;
  border-radius: var(--radius-pill);
}

.examprep-product-card__footer .added_to_cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  width: 100%;
  padding: 11px 20px;
  color: var(--color-brand-primary);
  font-weight: var(--font-weight-semi);
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  background: #fff;
  border: 2px solid rgba(0, 46, 98, 0.22);
  border-radius: var(--radius-pill);
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews,
p.no-comments {
  display: grid;
  gap: 0.45rem;
  margin: 0 0 var(--sp-5);
  padding: var(--sp-4) var(--sp-5);
  color: var(--color-brand-primary);
  background: #eef5ff;
  border: 1px solid rgba(12, 113, 195, 0.2);
  border-left: 5px solid var(--color-brand-action);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  list-style: none;
}

.woocommerce-message a,
.woocommerce-info a,
.woocommerce-error a {
  color: var(--color-brand-action);
  font-weight: var(--font-weight-bold);
}

.woocommerce-error {
  color: #7f1d1d;
  background: #fef2f2;
  border-color: rgba(217, 33, 34, 0.22);
  border-left-color: var(--color-brand-accent);
}

.woocommerce-message {
  color: #14532d;
  background: #f0fdf4;
  border-color: rgba(21, 128, 61, 0.2);
  border-left-color: #15803d;
}

body.has-cart-confirmation-open {
  overflow: hidden;
}

.examprep-cart-confirmation {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  justify-items: end;
  pointer-events: auto;
}

.examprep-cart-confirmation__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 20, 44, 0.54);
  backdrop-filter: blur(4px);
}

.examprep-cart-confirmation__panel {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: var(--sp-4);
  width: min(460px, calc(100vw - 32px));
  height: 100%;
  overflow: auto;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--color-text);
  background: #fff;
  border-left: 1px solid rgba(0, 46, 98, 0.12);
  box-shadow: -24px 0 60px rgba(0, 24, 52, 0.28);
  animation: examprep-cart-panel-in 180ms ease-out;
}

.examprep-cart-confirmation__panel:focus {
  outline: 0;
}

.examprep-cart-confirmation__close {
  position: absolute;
  top: clamp(1.2rem, 3vw, 1.8rem);
  right: clamp(1.2rem, 3vw, 1.8rem);
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--color-brand-primary);
  background: #f4f7fb;
  border: 1px solid rgba(0, 46, 98, 0.12);
  border-radius: 50%;
  cursor: pointer;
}

.examprep-cart-confirmation__close:hover {
  color: #fff;
  background: var(--color-brand-primary);
}

.examprep-cart-confirmation__close:focus-visible {
  outline: 3px solid var(--color-brand-highlight);
  outline-offset: 2px;
}

.examprep-cart-confirmation__eyebrow {
  margin: 0;
  padding-right: 52px;
  color: #15803d;
  font-size: var(--font-size-xs);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.examprep-cart-confirmation h2 {
  margin: -8px 0 0;
  padding-right: 52px;
  color: var(--color-brand-primary);
  font-size: clamp(1.55rem, 4vw, 2rem);
  line-height: 1.12;
}

.examprep-cart-confirmation__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--sp-3);
  padding: var(--sp-4);
  background: #f8fbff;
  border: 1px solid rgba(12, 113, 195, 0.16);
  border-radius: var(--radius-md);
}

.examprep-cart-confirmation__item div:first-child {
  grid-column: 1 / -1;
}

.examprep-cart-confirmation__item > div > span:first-child {
  display: block;
  margin-bottom: 3px;
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.examprep-cart-confirmation__item a,
.examprep-cart-confirmation__item strong {
  color: var(--color-brand-primary);
  font-size: var(--font-size-sm);
  font-weight: 900;
  line-height: 1.35;
  text-decoration: none;
}

.examprep-cart-confirmation__item a:hover {
  color: var(--color-brand-action);
}

.examprep-cart-confirmation__item .woocommerce-Price-amount,
.examprep-cart-confirmation__item .woocommerce-Price-currencySymbol {
  display: inline;
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-transform: none;
  letter-spacing: 0;
}

.examprep-cart-confirmation__note {
  margin: 0;
  padding: 12px 14px;
  color: #14532d;
  font-size: var(--font-size-sm);
  font-weight: 800;
  background: #f0fdf4;
  border: 1px solid rgba(21, 128, 61, 0.18);
  border-radius: var(--radius-md);
}

.examprep-cart-confirmation__books,
.examprep-cart-confirmation__business-law {
  display: grid;
  gap: var(--sp-3);
  padding: var(--sp-4);
  background:
    linear-gradient(135deg, rgba(230, 57, 70, 0.08), rgba(12, 113, 195, 0.08)),
    #fff;
  border: 1px solid rgba(230, 57, 70, 0.18);
  border-radius: var(--radius-md);
}

.examprep-cart-confirmation__business-law {
  background:
    linear-gradient(135deg, rgba(12, 113, 195, 0.1), rgba(21, 128, 61, 0.08)),
    #fff;
  border-color: rgba(12, 113, 195, 0.18);
}

.examprep-cart-confirmation__books h3,
.examprep-cart-confirmation__business-law h3 {
  margin: 0;
  color: var(--color-brand-primary);
  font-size: 1.1rem;
  line-height: 1.25;
}

.examprep-cart-confirmation__books p,
.examprep-cart-confirmation__business-law p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  line-height: 1.55;
}

.examprep-cart-confirmation__microcopy {
  font-weight: 800;
}

.examprep-cart-confirmation__books .btn,
.examprep-cart-confirmation__business-law .btn {
  width: 100%;
}

.examprep-cart-confirmation__secondary-link {
  justify-self: center;
  color: var(--color-brand-primary);
  font-size: var(--font-size-sm);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.examprep-cart-confirmation__secondary-link:hover {
  color: var(--color-brand-action);
}

.examprep-cart-confirmation__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
  padding-top: var(--sp-2);
}

.examprep-cart-confirmation__actions .btn {
  min-height: 48px;
  padding-right: 16px;
  padding-left: 16px;
}

.examprep-cart-confirmation__actions .btn-link {
  grid-column: 1 / -1;
  color: var(--color-brand-primary);
  background: transparent;
  border-color: transparent;
}

.examprep-cart-confirmation__actions .btn-link:hover {
  color: var(--color-brand-action);
  background: #f4f7fb;
  transform: none;
  box-shadow: none;
}

@keyframes examprep-cart-panel-in {
  from {
    opacity: 0.7;
    transform: translateX(28px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 640px) {
  .examprep-cart-confirmation {
    align-items: end;
    justify-items: stretch;
  }

  .examprep-cart-confirmation__panel {
    width: 100%;
    height: auto;
    max-height: calc(100vh - 28px);
    border-top: 1px solid rgba(0, 46, 98, 0.12);
    border-left: 0;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -20px 48px rgba(0, 24, 52, 0.28);
    animation-name: examprep-cart-panel-up;
  }

  .examprep-cart-confirmation__actions {
    grid-template-columns: 1fr;
  }

  .examprep-cart-confirmation__actions .btn-link {
    grid-column: auto;
  }
}

@keyframes examprep-cart-panel-up {
  from {
    opacity: 0.75;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.woocommerce-pagination {
  margin-top: var(--sp-6);
}

.woocommerce-pagination ul.page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 0;
}

.woocommerce-pagination .page-numbers li {
  margin: 0;
  border: 0;
}

.woocommerce-pagination .page-numbers a,
.woocommerce-pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 8px 12px;
  color: var(--color-brand-primary);
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.woocommerce-pagination .page-numbers .current,
.woocommerce-pagination .page-numbers a:hover {
  color: #fff;
  background: var(--color-brand-action);
  border-color: var(--color-brand-action);
}

.woocommerce-ordering select,
.woocommerce .quantity .qty,
.quantity .qty {
  min-height: 44px;
  padding: 8px 12px;
  color: var(--color-text);
  background: #fff;
  border: 1px solid rgba(0, 46, 98, 0.18);
  border-radius: var(--radius-md);
  box-shadow: none;
}

.examprep-shop-note {
  margin-top: var(--sp-7);
  padding: var(--sp-5);
  background: var(--color-surface-muted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.examprep-product-hero {
  padding: clamp(18px, 2.4vw, 34px) 0 clamp(28px, 3.5vw, 52px);
}

.single-product .examprep-product-breadcrumb-container {
  max-width: var(--container-wide);
  padding-left: clamp(20px, 3vw, 56px);
  padding-right: clamp(20px, 3vw, 56px);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.75fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 4.5vw, 5.5rem);
  align-items: start;
}

.single-product .product-detail-grid,
.single-product .examprep-product-detail-section > .container {
  max-width: var(--container-wide);
  padding-left: clamp(20px, 3vw, 56px);
  padding-right: clamp(20px, 3vw, 56px);
}

.single-product .examprep-product-kind-seminar .product-detail-grid {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3.4vw, 4rem);
}

.single-product .examprep-product-kind-seminar .examprep-product-summary {
  order: 2;
}

.single-product .examprep-product-kind-seminar .examprep-product-media {
  order: 1;
  display: grid;
  gap: var(--sp-4);
}

.single-product .examprep-product-kind-seminar .examprep-next-session {
  margin-top: 0;
}

.single-product .examprep-product-kind-seminar .examprep-next-session {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-3) var(--sp-4);
}

.examprep-seminar-media-card {
  overflow: hidden;
  border: 1px solid rgba(16, 44, 89, 0.12);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.examprep-seminar-media-card__visual {
  display: grid;
  min-height: clamp(260px, 28vw, 390px);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 14%, rgba(217, 33, 34, 0.14), transparent 12rem),
    linear-gradient(135deg, #eef6ff, #f8fafc);
}

.examprep-seminar-media-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.examprep-seminar-media-card__placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: var(--sp-2);
  min-height: clamp(260px, 28vw, 390px);
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  background:
    radial-gradient(circle at 78% 18%, rgba(217, 33, 34, 0.24), transparent 12rem),
    linear-gradient(135deg, #001b40, #0c71c3);
}

.examprep-seminar-media-card__placeholder span {
  max-width: 18rem;
  font-size: 1.25rem;
  font-weight: 1000;
  line-height: 1.15;
  letter-spacing: 0;
  text-wrap: balance;
  text-transform: uppercase;
}

.examprep-seminar-media-card__placeholder strong {
  font-size: var(--font-size-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.examprep-seminar-includes {
  padding: var(--sp-5);
  background: #fff;
}

.examprep-seminar-includes h2 {
  margin: 0 0 var(--sp-3);
  color: var(--color-brand-primary);
  font-size: 1rem;
}

.examprep-seminar-includes ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.examprep-seminar-includes li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  line-height: 1.45;
}

.examprep-seminar-includes li::before {
  position: absolute;
  top: 0.15rem;
  left: 0;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  color: #fff;
  content: "";
  background: var(--color-brand-action);
  border-radius: 50%;
}

.examprep-product-media,
.examprep-product-summary,
.examprep-product-support {
  min-width: 0;
}

.examprep-product-media .woocommerce-product-gallery {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}

.examprep-product-media .woocommerce-product-gallery__wrapper {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.product-format-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--sp-3);
}

.examprep-next-session,
.examprep-product-support {
  display: grid;
  gap: 6px;
  margin-top: var(--sp-4);
  padding: var(--sp-4);
  background: #f0f7ff;
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-md);
}

.examprep-next-session .label {
  color: var(--color-brand-action);
  font-size: var(--font-size-xs);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.examprep-next-session .value,
.examprep-product-support a {
  color: var(--color-brand-primary);
  font-weight: 900;
}

.examprep-product-support {
  background: #fff;
  border-color: rgba(0, 46, 98, 0.14);
}

.examprep-product-support h2 {
  margin: 0;
  font-size: 1.1rem;
}

.single-product .examprep-product-kind-seminar .examprep-product-support {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px var(--sp-4);
  align-items: center;
  padding: var(--sp-3) var(--sp-4);
}

.single-product .examprep-product-kind-seminar .examprep-product-support h2 {
  font-size: 1rem;
}

.single-product .examprep-product-kind-seminar .examprep-product-support p {
  margin: 0;
  font-size: var(--font-size-sm);
  line-height: 1.45;
}

.single-product .examprep-product-kind-seminar .examprep-product-support a {
  grid-row: 1 / 3;
  grid-column: 2;
  white-space: nowrap;
}

.examprep-product-detail-section .container > .woocommerce-tabs {
  margin-top: 0;
}

.single-product .site-main {
  color: var(--color-text);
}

.single-product .examprep-single-product .summary {
  display: grid;
  gap: var(--sp-3);
}

.single-product .examprep-single-product .product_title {
  max-width: 980px;
  color: var(--color-brand-primary);
  font-size: clamp(2.25rem, 4.4vw, 4.5rem);
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.single-product .examprep-single-product.examprep-product-kind-seminar .product_title {
  max-width: 760px;
  font-size: clamp(1.9rem, 3.1vw, 3.4rem);
  line-height: 1;
}

.single-product .examprep-product-kind-seminar .woocommerce-product-details__short-description {
  font-size: 1rem;
  line-height: 1.52;
}

.single-product .examprep-product-kind-seminar .woocommerce-product-details__short-description p {
  margin-bottom: var(--sp-3);
}

.single-product .examprep-single-product p.price {
  color: var(--color-brand-accent);
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 800;
}

.single-product .examprep-single-product .woocommerce-product-details__short-description {
  color: var(--color-text-muted);
  font-size: 1.06rem;
  line-height: 1.65;
}

.examprep-product-cta {
  display: grid;
  gap: 0.9rem;
  padding: 1.1rem;
  border: 1px solid rgba(16, 44, 89, 0.12);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(230, 57, 70, 0.08), rgba(16, 44, 89, 0.04)),
    #fff;
  box-shadow: var(--shadow-card);
}

.examprep-product-cta p {
  margin: 0;
  color: var(--color-brand-primary);
  font-size: 1rem;
  line-height: 1.5;
}

.single-product .examprep-product-kind-seminar .examprep-product-cta {
  gap: var(--sp-3);
  padding: var(--sp-4);
}

.single-product .examprep-product-kind-seminar .examprep-product-cta p {
  font-size: 0.98rem;
}

.single-product .examprep-product-kind-seminar .examprep-product-cta__button.button {
  min-height: 44px;
  padding: 0.7rem 1.15rem;
}

.examprep-product-cta__button.button,
.single-product .examprep-single-product .single_add_to_cart_button,
.single-product .examprep-single-product .examprep-required-books__add-all .button {
  border-radius: 999px;
  background: var(--color-brand-accent);
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.examprep-product-cta__button.button:hover,
.single-product .examprep-single-product .single_add_to_cart_button:hover,
.single-product .examprep-single-product .examprep-required-books__add-all .button:hover {
  background: #b61f2a;
  color: #fff;
}

.single-product .examprep-single-product form.cart {
  margin: 0;
}

.single-product .examprep-single-product table.variations,
.single-product .examprep-single-product table.group_table {
  overflow: hidden;
  border: 1px solid rgba(16, 44, 89, 0.1);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.single-product .examprep-single-product table.variations th,
.single-product .examprep-single-product table.variations td,
.single-product .examprep-single-product table.group_table td {
  padding: 1rem;
  vertical-align: middle;
}

.single-product .examprep-single-product table.variations select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(16, 44, 89, 0.18);
  border-radius: 12px;
  background: #fff;
  color: var(--color-brand-primary);
  font-weight: 700;
}

.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .examprep-product-hero {
  padding: 28px 0 clamp(28px, 3.5vw, 52px);
  color: #fff;
  background:
    radial-gradient(circle at 78% 8%, rgba(12, 113, 195, 0.34), transparent 24rem),
    linear-gradient(135deg, #001a3d 0%, var(--color-brand-primary) 58%, #001f44 100%);
}

.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .examprep-product-breadcrumb-container,
.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .product-detail-grid {
  max-width: var(--container-max);
  padding-left: 20px;
  padding-right: 20px;
}

.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .examprep-breadcrumbs--product {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.84rem, 1vw, 0.94rem);
}

.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .examprep-breadcrumbs--product a {
  color: rgba(255, 255, 255, 0.92);
}

.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .examprep-breadcrumbs--product li + li::before {
  color: rgba(255, 255, 255, 0.58);
}

.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .product-detail-grid {
  grid-template-columns: minmax(390px, 0.92fr) minmax(440px, 0.82fr);
  gap: clamp(1.25rem, 2.2vw, 2rem);
  align-items: start;
}

.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .examprep-product-media {
  display: grid;
  align-self: stretch;
  padding-bottom: var(--sp-5);
}

.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .woocommerce-product-gallery {
  height: 100%;
}

.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .examprep-product-media .woocommerce-product-gallery__wrapper {
  position: relative;
  display: grid;
  min-height: clamp(390px, 39vw, 580px);
  place-items: center;
  padding: clamp(14px, 2vw, 24px);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.24), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .examprep-product-media .woocommerce-product-gallery__wrapper::before {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 8px 12px;
  color: var(--color-brand-primary);
  font-size: var(--font-size-xs);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  content: "Reference Book";
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(12, 113, 195, 0.18);
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 22px rgba(0, 46, 98, 0.14);
}

.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .examprep-product-media .woocommerce-product-gallery__image,
.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .examprep-product-media .woocommerce-product-gallery__image a {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
}

.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .examprep-product-media .woocommerce-product-gallery__image img {
  width: clamp(260px, 34vw, 430px) !important;
  max-width: 94%;
  max-height: clamp(380px, 62vh, 620px);
  object-fit: contain;
  filter: drop-shadow(0 22px 26px rgba(0, 31, 68, 0.24));
}

/* Branded placeholder for books with no cover image (~2/3 of the catalogue),
   so the hero shows a finished panel instead of an empty card. */
.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .examprep-product-media-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  gap: var(--sp-2);
  min-height: clamp(390px, 39vw, 580px);
  padding: clamp(20px, 3vw, 40px);
  text-align: center;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.24), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .examprep-product-media-placeholder span {
  max-width: 17rem;
  color: var(--color-brand-primary);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 1000;
  line-height: 1.15;
  text-transform: uppercase;
  text-wrap: balance;
}

.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .examprep-product-media-placeholder strong {
  color: var(--color-brand-action);
  font-size: var(--font-size-sm);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .examprep-product-summary {
  align-self: start;
  gap: var(--sp-3);
  padding: clamp(20px, 2.4vw, 28px);
  color: var(--color-text);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 60px rgba(0, 31, 68, 0.26);
}

.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .product-format-pills {
  order: 6;
  margin-bottom: 0;
}

.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .product-format-pills .badge-navy {
  color: var(--color-brand-primary);
  background: #eef6ff;
  border: 1px solid rgba(12, 113, 195, 0.18);
}

.examprep-book-stock-pill {
  order: 6;
  justify-self: start;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 6px 11px;
  color: #166534;
  font-size: var(--font-size-sm);
  font-weight: 900;
  line-height: 1.2;
  background: #dcfce7;
  border-radius: var(--radius-pill);
}

.examprep-book-stock-pill.is-out-of-stock {
  color: #92400e;
  background: #fff7ed;
}

.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .product_title {
  order: 3;
  max-width: none;
  margin: 0;
  color: var(--color-brand-primary);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.16;
  letter-spacing: 0;
  text-wrap: balance;
}

.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) p.price {
  order: 4;
  margin: 0;
  color: var(--color-brand-primary);
  font-size: clamp(1.5rem, 2.4vw, 1.95rem);
  font-weight: 900;
  line-height: 1;
}

.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .woocommerce-product-details__short-description {
  order: 4;
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.62;
}

.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .woocommerce-product-details__short-description p {
  margin-bottom: 0;
}

.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) form.cart {
  order: 5;
  display: grid;
  grid-template-columns: minmax(88px, 112px) minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  padding: var(--sp-3) 0 var(--sp-4);
  border-top: 1px solid rgba(16, 44, 89, 0.12);
  border-bottom: 1px solid rgba(16, 44, 89, 0.12);
}

.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) form.cart .quantity {
  margin: 0;
}

.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) form.cart .qty {
  width: 100%;
  min-height: 52px;
  text-align: center;
  border-radius: var(--radius-md);
}

.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) form.cart .single_add_to_cart_button {
  width: 100%;
  min-height: 52px;
  background: var(--color-brand-action);
  border-color: var(--color-brand-action);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) form.cart .single_add_to_cart_button:hover {
  background: #0860a8;
  border-color: #0860a8;
}

.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .product_meta {
  order: 7;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  padding-bottom: var(--sp-3);
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  border-bottom: 1px solid rgba(16, 44, 89, 0.1);
}

.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .product_meta > span {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  padding: 6px 10px;
  background: #f8fbff;
  border: 1px solid rgba(12, 113, 195, 0.12);
  border-radius: var(--radius-pill);
}

.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .product_meta a {
  color: var(--color-brand-action);
  font-weight: 800;
  text-decoration: none;
}

.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .product_meta a:hover {
  text-decoration: underline;
}

.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .examprep-product-support,
.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .examprep-product-assurance {
  margin-top: 0;
  border-radius: var(--radius-md);
  box-shadow: none;
}

.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .examprep-product-support {
  order: 8;
  padding: 14px 16px;
  background: #f8fbff;
  border-color: rgba(12, 113, 195, 0.16);
}

.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .examprep-product-support h2,
.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .examprep-product-assurance h2 {
  color: var(--color-brand-primary);
  font-size: 1rem;
}

.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .examprep-product-support p,
.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .examprep-product-assurance li {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  line-height: 1.5;
}

.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .examprep-product-support a {
  justify-self: start;
}

.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .examprep-product-assurance {
  order: 9;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(217, 33, 34, 0.06), rgba(255, 255, 255, 0.94)),
    #fff;
  border-color: rgba(217, 33, 34, 0.16);
}

.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .examprep-product-assurance ul {
  gap: 8px;
  padding-left: 1rem;
}

.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .examprep-product-detail-section {
  background:
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border-top: 1px solid rgba(0, 46, 98, 0.1);
}

.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .examprep-book-plan {
  border-radius: var(--radius-md);
  box-shadow: 0 18px 48px rgba(0, 46, 98, 0.08);
}

.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .examprep-book-detail-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
}

.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .examprep-book-detail-grid.has-single-card {
  grid-template-columns: minmax(0, 1fr);
}

.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .examprep-book-spec-card {
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 46, 98, 0.05);
}

/* When the spec card stands alone (no license categories), let its rows fill
   the full-width card in two columns instead of one narrow stack. */
.single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .examprep-book-detail-grid.has-single-card .examprep-book-spec-card dl {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-3) var(--sp-5);
}

.single-product .examprep-seminar-product-hero {
  padding: 28px 0 clamp(26px, 3vw, 48px);
  color: #fff;
  background:
    radial-gradient(circle at 82% 8%, rgba(12, 113, 195, 0.34), transparent 24rem),
    linear-gradient(135deg, #001a3d 0%, var(--color-brand-primary) 58%, #001f44 100%);
}

.single-product .examprep-product-kind-seminar.examprep-seminar-product .examprep-seminar-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: 36px;
  max-width: var(--container-max);
  padding: 0 20px;
}

.examprep-seminar-hero-main {
  min-width: 0;
  padding-bottom: var(--sp-6);
}

.examprep-seminar-hero-feature {
  position: relative;
  height: clamp(190px, 18vw, 260px);
  margin: 0 0 var(--sp-5);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.examprep-seminar-hero-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.examprep-seminar-hero-feature::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 31, 68, 0.48) 0%, rgba(5, 31, 68, 0.12) 45%, rgba(5, 31, 68, 0.18) 100%),
    linear-gradient(180deg, rgba(5, 31, 68, 0.08) 0%, rgba(5, 31, 68, 0.34) 100%);
}

.examprep-seminar-hero-feature figcaption {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  max-width: min(520px, calc(100% - 36px));
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--font-size-sm);
  font-weight: 800;
  line-height: 1.2;
  background: rgba(5, 31, 68, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(10px);
}

.examprep-seminar-hero-eyebrow {
  margin-bottom: var(--sp-3);
}

.single-product .examprep-seminar-product .examprep-seminar-hero-main h1 {
  max-width: 780px;
  margin: 0 0 var(--sp-3);
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.12;
}

.examprep-seminar-hero-desc {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.7;
}

.examprep-seminar-hero-desc p {
  margin-bottom: var(--sp-3);
}

.examprep-seminar-price-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
  margin-top: var(--sp-4);
}

.examprep-seminar-price-tag .price,
.single-product .examprep-seminar-price-tag .woocommerce-Price-amount {
  color: #fff;
  font-size: clamp(1.8rem, 2.6vw, 2.35rem);
  font-weight: 900;
  line-height: 1;
}

.examprep-seminar-price-tag .price-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--font-size-sm);
  font-weight: 800;
}

.examprep-seminar-purchase-card {
  align-self: start;
  padding: var(--sp-5);
  color: var(--color-text);
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.single-product .examprep-seminar-purchase-card .next-session-pill {
  display: inline-flex;
  width: auto;
  min-width: 0;
  gap: 6px;
  align-items: center;
  justify-content: flex-start;
  padding: 3px 10px;
  margin: 0 0 14px;
  color: #15803d;
  font-size: var(--font-size-xs);
  font-weight: 800;
  line-height: 1.3;
  background: #dcfce7;
  border: 0;
  border-radius: var(--radius-pill);
  box-shadow: none;
}

.single-product .examprep-seminar-purchase-card .next-session-pill .label,
.single-product .examprep-seminar-purchase-card .next-session-pill .value {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0;
  line-height: inherit;
  text-transform: none;
}

.single-product .examprep-seminar-purchase-card .next-session-icon::before {
  display: inline-block;
  font-size: 13px;
  line-height: 1;
  content: "\23F2";
}

.purchase-card-title {
  margin-bottom: var(--sp-3);
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.examprep-seminar-cart-shell {
  display: grid;
  gap: var(--sp-3);
}

.single-product .examprep-seminar-cart-shell form.cart {
  display: grid;
  gap: var(--sp-3);
}

.single-product .examprep-seminar-cart-shell table.variations {
  margin: 0;
  border: 0;
  box-shadow: none;
}

.single-product .examprep-seminar-cart-shell table.variations tr,
.single-product .examprep-seminar-cart-shell table.variations th,
.single-product .examprep-seminar-cart-shell table.variations td {
  display: block;
  padding: 0;
  border: 0;
}

.single-product .examprep-seminar-cart-shell table.variations th.label {
  margin-bottom: 6px;
  color: var(--color-brand-primary);
  font-size: var(--font-size-sm);
  font-weight: 900;
}

.single-product .examprep-seminar-cart-shell table.variations th.label label {
  font-size: 0;
}

.single-product .examprep-seminar-cart-shell table.variations th.label label::after {
  font-size: var(--font-size-sm);
  content: "Select Location & Date";
}

.single-product .examprep-seminar-cart-shell table.variations select {
  min-height: 50px;
  border-radius: var(--radius-md);
}

.single-product .examprep-seminar-cart-shell .reset_variations {
  display: none !important;
}

.single-product .examprep-seminar-cart-shell .single_variation_wrap,
.single-product .examprep-seminar-cart-shell .woocommerce-variation-add-to-cart {
  display: grid;
  gap: var(--sp-3);
}

.single-product .examprep-seminar-cart-shell .woocommerce-variation-price {
  display: none;
}

.single-product .examprep-seminar-card-price {
  display: flex;
  gap: 8px;
  align-items: baseline;
  margin: 14px 0;
}

.single-product .examprep-seminar-card-price .amount,
.single-product .examprep-seminar-card-price .woocommerce-Price-amount {
  color: var(--color-brand-primary);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.single-product .examprep-seminar-card-price .per {
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  line-height: 1.3;
}

.single-product .examprep-seminar-cart-shell .woocommerce-variation-description {
  display: block;
  max-height: 180px;
  overflow: auto;
  padding: 12px 14px;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  line-height: 1.55;
  background: #f8fbff;
  border: 1px solid rgba(12, 113, 195, 0.18);
  border-radius: var(--radius-md);
}

.single-product .examprep-seminar-cart-shell .woocommerce-variation-description:empty {
  display: none;
}

.single-product .examprep-seminar-cart-shell .woocommerce-variation-description p {
  margin: 0 0 0.45rem;
}

.single-product .examprep-seminar-cart-shell .woocommerce-variation-description p:last-child {
  margin-bottom: 0;
}

.single-product .examprep-seminar-cart-shell .quantity {
  display: none !important;
}

.single-product .examprep-seminar-cart-shell .single_add_to_cart_button {
  width: 100%;
  min-height: 52px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.single-product .examprep-seminar-cart-shell .single_add_to_cart_button.disabled,
.single-product .examprep-seminar-cart-shell .single_add_to_cart_button:disabled,
.single-product .examprep-seminar-cart-shell .single_add_to_cart_button:disabled[disabled] {
  opacity: 1 !important;
  background: var(--color-brand-accent);
  border-color: var(--color-brand-accent);
  color: #fff;
}

.seminar-books-addon {
  padding: 12px 14px;
  margin: 0;
  background: #f0f7ff;
  border: 1px solid rgba(12, 113, 195, 0.22);
  border-radius: var(--radius-md);
}

.seminar-books-addon-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 0;
  color: var(--color-brand-primary);
  cursor: pointer;
}

.seminar-books-addon-label input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-brand-action);
}

.seminar-books-addon-label strong,
.seminar-books-addon-label small {
  display: block;
}

.seminar-books-addon-label strong {
  font-size: var(--font-size-sm);
  line-height: 1.25;
}

.seminar-books-addon-label small {
  margin-top: 2px;
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  line-height: 1.4;
}

.purchase-trust {
  display: grid;
  gap: 8px;
  padding-top: var(--sp-3);
  margin-top: var(--sp-3);
  border-top: 1px solid var(--color-border);
}

.purchase-trust-item {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  line-height: 1.45;
}

.purchase-trust-item > span:first-child {
  color: var(--color-brand-action);
  font-weight: 900;
}

.examprep-seminar-product-body {
  padding: clamp(38px, 5vw, 64px) 0;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--color-border);
}

.examprep-seminar-body-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 330px);
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: start;
}

.examprep-seminar-included-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 46, 98, 0.12);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 44px rgba(0, 46, 98, 0.08);
}

.examprep-seminar-classroom-card {
  overflow: hidden;
  min-height: 100%;
  border: 0;
  border-radius: 0;
}

.seminar-classroom-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  object-position: center;
}

.examprep-seminar-included-copy {
  display: grid;
  align-content: start;
  gap: var(--sp-3);
  padding: clamp(1.35rem, 3vw, 2rem);
}

.examprep-seminar-section-kicker {
  width: fit-content;
  padding: 5px 10px;
  color: var(--color-brand-action);
  font-size: var(--font-size-xs);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(12, 113, 195, 0.1);
  border-radius: var(--radius-pill);
}

.examprep-seminar-included-row h2 {
  margin: 0;
  color: var(--color-brand-primary);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.15;
}

.includes-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin: var(--sp-1) 0 0;
  padding: 0;
  list-style: none;
}

.includes-list li {
  position: relative;
  min-height: 44px;
  padding: 0 0 0 1.75rem;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  line-height: 1.45;
}

.includes-list li::before {
  position: absolute;
  top: 0.05rem;
  left: 0;
  color: var(--color-brand-action);
  font-size: 1rem;
  font-weight: 900;
  content: "\2713";
}

.examprep-seminar-support-panel {
  position: sticky;
  top: calc(var(--header-height) + 12px);
  display: grid;
  gap: 12px;
}

.guarantee-box,
.contact-box,
.examprep-no-public-sessions {
  padding: 18px 20px;
  border-radius: var(--radius-md);
}

.guarantee-box {
  background: #fff7f7;
  border: 1px solid rgba(217, 33, 34, 0.2);
  box-shadow: 0 10px 26px rgba(217, 33, 34, 0.06);
}

.guarantee-box-title,
.contact-box-title {
  margin-bottom: 8px;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.25;
}

.guarantee-box-title {
  color: var(--color-brand-accent);
}

.guarantee-box p,
.contact-box p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  line-height: 1.55;
}

.contact-box {
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 26px rgba(0, 46, 98, 0.06);
}

.contact-box-title {
  color: var(--color-brand-primary);
}

.examprep-seminar-support-panel .btn {
  justify-content: center;
  width: 100%;
  min-height: 48px;
  border-width: 2px;
  border-radius: var(--radius-md);
  background: #fff;
}

.product-tabs-section {
  padding: clamp(22px, 3vw, 38px) 0 clamp(42px, 5vw, 64px);
  background: #f3f5f8;
  border-top: 1px solid var(--color-border);
}

.product-tabs-section.examprep-seminar-plan > .container {
  max-width: min(1680px, calc(100vw - 80px));
}

.examprep-seminar-tabs {
  padding-top: 0;
}

.examprep-seminar-tabs ul.tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(0, 46, 98, 0.12);
  border-bottom: 0;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  box-shadow: 0 10px 30px rgba(0, 46, 98, 0.06);
  scrollbar-width: none;
}

.examprep-seminar-tabs ul.tabs::-webkit-scrollbar {
  display: none;
}

.single-product .examprep-seminar-tabs ul.tabs li {
  flex: 0 0 auto;
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.single-product .examprep-seminar-tabs ul.tabs li a {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  padding: 14px 24px;
  color: var(--color-text-muted);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

.single-product .examprep-seminar-tabs ul.tabs li a:hover {
  color: var(--color-brand-action);
  background-color: rgba(12, 113, 195, 0.04);
}

.single-product .examprep-seminar-tabs ul.tabs li.active a {
  color: var(--color-brand-action);
  border-bottom-color: var(--color-brand-action);
}

.single-product .examprep-seminar-tabs ul.tabs li a:focus {
  outline: 0;
}

.single-product .examprep-seminar-tabs ul.tabs li a:focus-visible {
  outline: 2px solid var(--color-brand-action);
  outline-offset: -4px;
  border-radius: var(--radius-sm);
}

.examprep-seminar-tabs .wc-tab[hidden] {
  display: none !important;
}

.single-product .examprep-seminar-tabs .woocommerce-Tabs-panel {
  padding: clamp(2rem, 4vw, 3rem) 0 0;
  margin: 0 !important;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.examprep-tab-intro {
  max-width: 780px;
  margin-bottom: var(--sp-5);
}

.examprep-tab-intro h2 {
  margin-bottom: 6px;
  color: var(--color-brand-primary);
}

.examprep-tab-intro p {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.examprep-seminar-schedule {
  min-width: 880px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 46, 98, 0.12);
  border-radius: var(--radius-md);
}

.examprep-seminar-schedule th,
.examprep-seminar-schedule td {
  font-size: var(--font-size-sm);
  vertical-align: middle;
}

.examprep-session-details summary {
  color: var(--color-brand-action);
  font-weight: 900;
  cursor: pointer;
}

.examprep-session-details div {
  margin-top: 8px;
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  line-height: 1.55;
}

.examprep-no-public-sessions {
  max-width: 680px;
  background: #fff;
  border: 1px solid rgba(0, 46, 98, 0.12);
}

.examprep-required-books__add-all .button,
.examprep-seminar-tabs .examprep-required-books__add-all .button {
  border-radius: var(--radius-md);
}

@media (max-width: 960px) {
  .single-product .examprep-product-kind-seminar.examprep-seminar-product .examprep-seminar-hero-grid,
  .examprep-seminar-body-grid,
  .examprep-seminar-included-row {
    grid-template-columns: 1fr;
  }

  .examprep-seminar-purchase-card {
    align-self: stretch;
  }

  .examprep-seminar-support-panel {
    position: static;
  }

  .examprep-seminar-classroom-card {
    max-width: none;
  }

  .seminar-classroom-image {
    height: 240px;
    min-height: 0;
  }
}

@media (max-width: 600px) {
  .single-product .examprep-seminar-product-hero {
    padding-top: 20px;
  }

  .examprep-seminar-hero-feature {
    height: 170px;
    border-radius: 20px;
  }

  .examprep-seminar-hero-feature figcaption {
    bottom: 12px;
    left: 12px;
    max-width: calc(100% - 24px);
    padding: 8px 11px;
    border-radius: 18px;
    font-size: var(--font-size-xs);
    line-height: 1.35;
  }

  .examprep-seminar-purchase-card {
    padding: var(--sp-4);
  }

  .includes-list {
    grid-template-columns: 1fr;
  }

  .examprep-seminar-product-body,
  .product-tabs-section {
    padding: var(--sp-5) 0;
  }

  .seminar-classroom-image {
    height: 190px;
  }

  .single-product .examprep-seminar-tabs ul.tabs li a {
    min-height: 52px;
    padding: 12px 16px;
    font-size: 0.94rem;
  }
}

.single-product .examprep-single-product .woocommerce-tabs {
  margin-top: var(--sp-6);
}

.single-product .examprep-single-product .woocommerce-tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  float: none !important;
  width: 100% !important;
  padding: 0;
  list-style: none;
  border: 0;
}

.single-product .examprep-single-product .woocommerce-tabs .panel,
.single-product .examprep-single-product .woocommerce-Tabs-panel {
  float: none !important;
  width: 100% !important;
  margin: var(--sp-4) 0 0 !important;
}

.single-product .examprep-single-product .woocommerce-tabs ul.tabs::before,
.single-product .examprep-single-product .woocommerce-tabs ul.tabs li::after,
.single-product .examprep-single-product .woocommerce-tabs ul.tabs li::before {
  display: none;
}

.single-product .examprep-single-product .woocommerce-tabs ul.tabs li {
  margin: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(16, 44, 89, 0.08);
}

.single-product .examprep-single-product .woocommerce-tabs ul.tabs li.active {
  background: var(--color-brand-primary);
}

.single-product .examprep-single-product .woocommerce-tabs ul.tabs li a {
  padding: 0.7rem 1rem;
  color: var(--color-brand-primary);
  font-weight: 800;
}

.single-product .examprep-single-product .woocommerce-tabs ul.tabs li.active a {
  color: #fff;
}

.single-product .examprep-single-product .woocommerce-Tabs-panel {
  padding: var(--sp-5);
  border: 1px solid rgba(16, 44, 89, 0.1);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.single-product .examprep-single-product .woocommerce-Tabs-panel h2 {
  color: var(--color-brand-primary);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.05;
}

.single-product .examprep-single-product .woocommerce-tabs ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: var(--sp-3);
  clear: both;
  margin: var(--sp-4) 0 0;
  padding: 0;
}

.single-product .examprep-single-product .related ul.products,
.single-product .examprep-single-product .upsells ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-4);
  clear: both;
  margin: var(--sp-4) 0 0;
  padding: 0;
}

.single-product .examprep-single-product .woocommerce-tabs ul.products::before,
.single-product .examprep-single-product .woocommerce-tabs ul.products::after,
.single-product .examprep-single-product .related ul.products::before,
.single-product .examprep-single-product .related ul.products::after,
.single-product .examprep-single-product .upsells ul.products::before,
.single-product .examprep-single-product .upsells ul.products::after {
  display: none;
}

.single-product .examprep-single-product .woocommerce-tabs .examprep-product-card,
.single-product .examprep-single-product .related .examprep-product-card,
.single-product .examprep-single-product .upsells .examprep-product-card {
  min-width: 0;
}

.single-product .examprep-single-product .woocommerce-tabs .examprep-product-card__image,
.single-product .examprep-single-product .related .examprep-product-card__image,
.single-product .examprep-single-product .upsells .examprep-product-card__image {
  display: grid;
  place-items: center;
  aspect-ratio: auto;
  box-sizing: border-box;
  height: 168px;
  min-height: 132px;
  max-height: 168px;
  overflow: hidden;
  padding: var(--sp-3);
  background: #f3f7fb;
}

.single-product .examprep-single-product .related .examprep-product-card__image,
.single-product .examprep-single-product .upsells .examprep-product-card__image {
  height: 210px;
  max-height: 210px;
}

.single-product .examprep-single-product .woocommerce-tabs .examprep-product-card__image img,
.single-product .examprep-single-product .related .examprep-product-card__image img,
.single-product .examprep-single-product .upsells .examprep-product-card__image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 144px;
  object-fit: contain;
}

.single-product .examprep-single-product .related .examprep-product-card__image img,
.single-product .examprep-single-product .upsells .examprep-product-card__image img {
  max-height: 186px;
}

.single-product .examprep-single-product .woocommerce-tabs .examprep-product-card__placeholder,
.single-product .examprep-single-product .related .examprep-product-card__placeholder,
.single-product .examprep-single-product .upsells .examprep-product-card__placeholder {
  width: 100%;
  min-height: 132px;
  font-size: 1rem;
}

.single-product .examprep-single-product .woocommerce-tabs .examprep-product-card__body,
.single-product .examprep-single-product .related .examprep-product-card__body,
.single-product .examprep-single-product .upsells .examprep-product-card__body {
  gap: var(--sp-2);
  padding: var(--sp-3);
}

.single-product .examprep-single-product .woocommerce-tabs .examprep-product-card__summary,
.single-product .examprep-single-product .related .examprep-product-card__summary,
.single-product .examprep-single-product .upsells .examprep-product-card__summary {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.single-product .examprep-single-product .woocommerce-tabs .examprep-product-card__footer .button,
.single-product .examprep-single-product .related .examprep-product-card__footer .button,
.single-product .examprep-single-product .upsells .examprep-product-card__footer .button {
  min-height: 38px;
  font-size: var(--font-size-xs);
}

.single-product .examprep-single-product.examprep-seminar-product .woocommerce-tabs {
  margin-top: 0;
}

.single-product .examprep-single-product.examprep-seminar-product .examprep-seminar-tabs {
  overflow: hidden;
  padding: 0 !important;
  background: #fff;
  border: 1px solid rgba(0, 46, 98, 0.12);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 48px rgba(0, 46, 98, 0.1);
}

.single-product .examprep-single-product.examprep-seminar-product .examprep-seminar-tabs ul.tabs {
  flex-wrap: nowrap;
  gap: 0;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: auto;
  background: #f9fbfd;
  border: 0;
  border-bottom: 1px solid rgba(0, 46, 98, 0.12);
  box-shadow: none;
}

.single-product .examprep-single-product.examprep-seminar-product .examprep-seminar-tabs ul.tabs li,
.single-product .examprep-single-product.examprep-seminar-product .examprep-seminar-tabs ul.tabs li.active {
  background: transparent;
  border-radius: 0;
}

.single-product .examprep-single-product.examprep-seminar-product .examprep-seminar-tabs ul.tabs li a,
.single-product .examprep-single-product.examprep-seminar-product .examprep-seminar-tabs ul.tabs li.active a {
  min-height: 54px;
  padding: 14px 20px;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  font-weight: 900;
  outline: 0;
  border-bottom: 2px solid transparent;
  box-shadow: none;
}

.single-product .examprep-single-product.examprep-seminar-product .examprep-seminar-tabs ul.tabs li a:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(12, 113, 195, 0.38);
}

.single-product .examprep-single-product.examprep-seminar-product .examprep-seminar-tabs ul.tabs li.active a,
.single-product .examprep-single-product.examprep-seminar-product .examprep-seminar-tabs ul.tabs li a:hover {
  color: var(--color-brand-action);
  border-bottom-color: var(--color-brand-action);
}

.single-product .examprep-single-product.examprep-seminar-product .examprep-seminar-tabs .woocommerce-Tabs-panel {
  padding: clamp(2rem, 4vw, 3rem);
  margin: 0 !important;
  background: #fff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.single-product .examprep-single-product.examprep-seminar-product .examprep-seminar-tabs .woocommerce-Tabs-panel h2 {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.16;
}

.examprep-required-books,
.examprep-additional-services,
.examprep-course-detail-tab {
  color: var(--color-text);
  font-size: 1.03rem;
  line-height: 1.7;
}

.examprep-licensing-exam-section + .examprep-licensing-exam-section {
  margin-top: clamp(1.75rem, 3.5vw, 2.75rem);
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
  border-top: 1px solid rgba(0, 46, 98, 0.1);
}

.examprep-required-books__references {
  margin-bottom: var(--sp-4);
  max-width: 940px;
}

.examprep-additional-services {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(1.35rem, 3vw, 2rem);
  background:
    linear-gradient(135deg, rgba(12, 113, 195, 0.08), rgba(255, 255, 255, 0.92)),
    #f8fbff;
  border: 1px solid rgba(12, 113, 195, 0.16);
  border-radius: var(--radius-md);
}

.examprep-additional-services h2 {
  margin: 0 0 var(--sp-4);
  padding-bottom: var(--sp-3);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem) !important;
  border-bottom: 1px solid rgba(0, 46, 98, 0.1);
}

.single-product .examprep-single-product.examprep-seminar-product .examprep-additional-services ul.products {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-4);
  margin-top: 0;
}

.single-product .examprep-single-product.examprep-seminar-product .examprep-additional-services .examprep-product-card.product {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  border-color: rgba(0, 46, 98, 0.14);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 24px rgba(0, 46, 98, 0.07);
  transform: none;
}

.single-product .examprep-single-product.examprep-seminar-product .examprep-additional-services .examprep-product-card__image {
  align-self: start;
  height: 100%;
  min-height: 112px;
  max-height: 240px;
  padding: 0;
  border-right: 1px solid rgba(0, 46, 98, 0.08);
}

.single-product .examprep-single-product.examprep-seminar-product .examprep-additional-services .examprep-product-card__placeholder {
  min-height: 112px;
  padding: 10px 8px;
  font-size: 0.66rem;
  line-height: 1.3;
}

.single-product .examprep-single-product.examprep-seminar-product .examprep-additional-services .examprep-product-card__body {
  align-content: start;
  padding: var(--sp-4);
}

.single-product .examprep-single-product.examprep-seminar-product .examprep-additional-services .examprep-product-card__title {
  font-size: 0.98rem !important;
}

.single-product .examprep-single-product.examprep-seminar-product .examprep-additional-services .examprep-product-card__summary {
  -webkit-line-clamp: 2;
}

.single-product .examprep-single-product.examprep-seminar-product .examprep-additional-services .examprep-product-card__footer {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.single-product .examprep-single-product.examprep-seminar-product .examprep-additional-services .examprep-product-card__footer .button {
  width: auto;
  min-width: 116px;
  border-radius: var(--radius-md);
}

.examprep-seminar-reviews {
  position: relative;
  padding-top: clamp(3.25rem, 6vw, 5rem);
  background: #fff;
  border-top: 1px solid rgba(0, 46, 98, 0.12);
  box-shadow: inset 0 18px 40px rgba(0, 46, 98, 0.04);
}

.examprep-seminar-reviews h2 {
  margin-bottom: var(--sp-5);
}

@media (max-width: 700px) {
  .single-product .examprep-single-product.examprep-seminar-product .examprep-seminar-tabs .woocommerce-Tabs-panel {
    padding: var(--sp-5) var(--sp-4);
  }

  .single-product .examprep-single-product.examprep-seminar-product .examprep-additional-services ul.products {
    grid-template-columns: 1fr;
  }

  .single-product .examprep-single-product.examprep-seminar-product .examprep-additional-services .examprep-product-card.product {
    grid-template-columns: 1fr;
  }

  .single-product .examprep-single-product.examprep-seminar-product .examprep-additional-services .examprep-product-card__image {
    height: 170px;
    min-height: 112px;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 46, 98, 0.08);
  }

  .single-product .examprep-single-product.examprep-seminar-product .examprep-additional-services .examprep-product-card__placeholder {
    font-size: var(--font-size-sm);
  }

  .single-product .examprep-single-product.examprep-seminar-product .examprep-additional-services .examprep-product-card__footer {
    grid-template-columns: 1fr;
  }

  .single-product .examprep-single-product.examprep-seminar-product .examprep-additional-services .examprep-product-card__footer .button {
    width: 100%;
  }
}

.examprep-product-assurance {
  display: grid;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
  padding: var(--sp-4);
  border: 1px solid rgba(12, 113, 195, 0.2);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(12, 113, 195, 0.08), rgba(217, 33, 34, 0.04)),
    #fff;
}

.examprep-product-assurance h2 {
  margin: 0;
  font-size: 1.05rem;
}

.examprep-product-assurance ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding-left: 1.15rem;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.examprep-product-panel {
  margin-bottom: var(--sp-6);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(0, 46, 98, 0.12);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.examprep-product-panel__header {
  max-width: 820px;
  margin-bottom: var(--sp-5);
}

.examprep-product-panel__header h2 {
  max-width: 740px;
}

.examprep-seminar-schedule-wrap {
  overflow-x: auto;
  margin-bottom: var(--sp-5);
  border: 1px solid rgba(0, 46, 98, 0.1);
  border-radius: var(--radius-md);
}

.examprep-seminar-schedule {
  min-width: 680px;
  margin: 0;
}

.examprep-seminar-schedule th {
  background: #eef6ff;
}

.examprep-seminar-schedule td {
  background: #fff;
}

.examprep-seminar-feature-grid,
.examprep-book-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-4);
}

.examprep-seminar-feature-grid > div,
.examprep-book-spec-card,
.examprep-companion-course {
  padding: var(--sp-4);
  border: 1px solid rgba(0, 46, 98, 0.12);
  border-radius: var(--radius-md);
  background: #f8fbff;
}

.examprep-seminar-feature-grid h3,
.examprep-book-spec-card h3,
.examprep-companion-course h3 {
  margin-bottom: var(--sp-2);
  font-size: 1.05rem;
}

.examprep-book-spec-card dl {
  display: grid;
  gap: var(--sp-3);
  margin: 0;
}

.examprep-book-spec-card dl > div {
  display: grid;
  gap: 0.15rem;
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid rgba(0, 46, 98, 0.1);
}

.examprep-book-spec-card dl > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.examprep-book-spec-card dt {
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.examprep-book-spec-card dd {
  margin: 0;
  color: var(--color-brand-primary);
  font-weight: 800;
}

.examprep-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.examprep-chip-list a {
  display: inline-flex;
  padding: 0.45rem 0.75rem;
  color: var(--color-brand-primary);
  font-size: var(--font-size-sm);
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(12, 113, 195, 0.22);
  border-radius: var(--radius-pill);
  background: #fff;
}

.examprep-chip-list a:hover {
  color: #fff;
  background: var(--color-brand-action);
  border-color: var(--color-brand-action);
}

.examprep-book-bundle {
  margin-top: var(--sp-5);
}

.examprep-book-bundle__header,
.examprep-companion-course {
  display: flex;
  gap: var(--sp-4);
  align-items: center;
  justify-content: space-between;
}

.examprep-book-bundle__header {
  margin-bottom: var(--sp-4);
}

.examprep-book-bundle__header h3 {
  margin-bottom: var(--sp-1);
}

.examprep-book-bundle__header p {
  color: var(--color-text-muted);
}

.examprep-book-bundle__add-all.button,
.examprep-book-bundle-tab-add-all.button {
  flex-shrink: 0;
  border-radius: var(--radius-pill);
  background: var(--color-brand-accent);
  color: #fff;
  font-weight: 900;
}

.examprep-book-bundle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--sp-4);
}

.examprep-book-bundle-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(0, 46, 98, 0.12);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.examprep-book-bundle-card__image {
  display: grid;
  place-items: center;
  aspect-ratio: 3 / 4;
  padding: var(--sp-3);
  background: #f3f7fb;
}

.examprep-book-bundle-card__image img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
}

.examprep-book-bundle-card__body {
  display: grid;
  gap: var(--sp-2);
  padding: var(--sp-4);
}

.examprep-book-bundle-card h4 {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.25;
}

.examprep-book-bundle-card h4 a {
  color: var(--color-brand-primary);
  text-decoration: none;
}

.examprep-book-bundle-card h4 a:hover {
  color: var(--color-brand-action);
  text-decoration: underline;
}

.examprep-book-bundle-card__sku {
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.examprep-book-bundle-card__price {
  color: var(--color-brand-accent);
  font-weight: 900;
}

.single-product .examprep-book-bundle-product .examprep-book-bundle-hero {
  padding: 28px 0 clamp(34px, 4.6vw, 64px);
  color: #fff;
  background:
    radial-gradient(circle at 78% 12%, rgba(12, 113, 195, 0.32), transparent 24rem),
    linear-gradient(135deg, #001a3d 0%, var(--color-brand-primary) 58%, #001f44 100%);
}

.single-product .examprep-book-bundle-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: clamp(1.5rem, 3.4vw, 4rem);
  align-items: start;
  max-width: var(--container-max);
  padding: 0 20px;
}

.examprep-book-bundle-hero-main {
  min-width: 0;
}

.examprep-book-bundle-hero-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(220px, 24vw, 340px);
  margin-top: var(--sp-5);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.92)),
    #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.examprep-book-bundle-hero-media img {
  width: 100%;
  height: 100%;
  max-height: 340px;
  object-fit: contain;
  padding: clamp(16px, 3vw, 34px);
}

.examprep-book-bundle-media-label {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 12px;
  color: var(--color-brand-primary);
  font-size: var(--font-size-xs);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(12, 113, 195, 0.18);
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 22px rgba(0, 46, 98, 0.14);
}

.examprep-book-bundle-pills .badge-navy {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.examprep-book-bundle-pills .badge-navy:first-child {
  color: #14532d;
  background: #dcfce7;
  border-color: rgba(22, 163, 74, 0.24);
}

.single-product .examprep-book-bundle-product h1 {
  max-width: 860px;
  margin-bottom: var(--sp-4);
  color: #fff;
  font-size: clamp(2.25rem, 4.2vw, 4.35rem);
  line-height: 1.02;
}

.examprep-book-bundle-hero-copy {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.7;
}

.examprep-book-bundle-hero-copy p:last-child,
.examprep-book-bundle-overview-copy p:last-child,
.examprep-book-bundle-help-card p:last-child {
  margin-bottom: 0;
}

.examprep-book-bundle-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: end;
  margin-top: var(--sp-5);
}

.examprep-book-bundle-price {
  color: #fff;
  font-size: clamp(2.35rem, 4.5vw, 4.1rem);
  font-weight: 1000;
  line-height: 1;
}

.examprep-book-bundle-price-note,
.examprep-book-bundle-price-range span {
  color: rgba(255, 255, 255, 0.64);
  font-size: var(--font-size-sm);
  font-weight: 800;
}

.examprep-book-bundle-price-range {
  display: grid;
  gap: 4px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
}

.examprep-book-bundle-price-range strong {
  color: #fff;
  font-size: var(--font-size-sm);
}

.examprep-book-bundle-purchase {
  display: grid;
  gap: var(--sp-3);
  padding: clamp(20px, 2.4vw, 28px);
  color: var(--color-text);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.examprep-book-bundle-purchase__label {
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.examprep-book-bundle-stock {
  justify-self: start;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 7px 12px;
  color: #166534;
  font-size: var(--font-size-sm);
  font-weight: 900;
  background: #dcfce7;
  border-radius: var(--radius-pill);
}

.examprep-book-bundle-stock.is-out-of-stock {
  color: #92400e;
  background: #fff7ed;
}

.examprep-book-bundle-card-price {
  display: flex;
  gap: 10px;
  align-items: baseline;
  padding-top: var(--sp-2);
}

.examprep-book-bundle-card-price span {
  color: var(--color-brand-primary);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 1000;
  line-height: 1;
}

.examprep-book-bundle-card-price small {
  color: var(--color-text-muted);
  font-weight: 800;
}

.examprep-book-bundle-add-all.button,
.examprep-book-bundle-card__button.button {
  justify-content: center;
  width: 100%;
  color: #fff;
  background: var(--color-brand-accent);
  border-radius: var(--radius-md);
}

.examprep-book-bundle-add-all.button:hover,
.examprep-book-bundle-card__button.button:hover {
  color: #fff;
  background: #b91c1c;
}

.examprep-book-bundle-grouped-form {
  display: grid;
  gap: var(--sp-2);
  padding-top: var(--sp-2);
  border-top: 1px solid rgba(16, 44, 89, 0.12);
}

.examprep-book-bundle-grouped-form__header {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  align-items: center;
  justify-content: space-between;
  color: var(--color-brand-primary);
  font-size: var(--font-size-sm);
}

.examprep-book-bundle-grouped-form__header span {
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  font-weight: 800;
}

.single-product .examprep-book-bundle-grouped-form form.cart {
  display: grid;
  gap: var(--sp-3);
  margin: 0;
}

.single-product .examprep-book-bundle-grouped-form table.group_table {
  display: block;
  max-height: 280px;
  margin: 0;
  overflow: auto;
  border: 1px solid rgba(16, 44, 89, 0.12);
  border-radius: var(--radius-md);
}

.single-product .examprep-book-bundle-grouped-form table.group_table tbody {
  display: grid;
  gap: 0;
}

.single-product .examprep-book-bundle-grouped-form table.group_table tr {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid rgba(16, 44, 89, 0.1);
}

.single-product .examprep-book-bundle-grouped-form table.group_table tr:last-child {
  border-bottom: 0;
}

.single-product .examprep-book-bundle-grouped-form table.group_table td {
  display: block;
  padding: 0 !important;
  border: 0;
}

.single-product .examprep-book-bundle-grouped-form table.group_table label,
.single-product .examprep-book-bundle-grouped-form table.group_table label a {
  color: var(--color-brand-primary);
  font-size: var(--font-size-xs);
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
}

.single-product .examprep-book-bundle-grouped-form table.group_table label a:hover {
  color: var(--color-brand-action);
  text-decoration: underline;
}

.single-product .examprep-book-bundle-grouped-form table.group_table .quantity {
  margin: 0;
}

.single-product .examprep-book-bundle-grouped-form table.group_table input.qty {
  width: 60px;
  min-height: 38px;
  padding: 6px;
  text-align: center;
  border-radius: var(--radius-sm);
}

.single-product .examprep-book-bundle-grouped-form table.group_table .woocommerce-Price-amount {
  color: var(--color-brand-primary);
  font-size: var(--font-size-xs);
  font-weight: 900;
  white-space: nowrap;
}

.single-product .examprep-book-bundle-grouped-form .single_add_to_cart_button {
  width: 100%;
  min-height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-brand-primary);
}

.single-product .examprep-book-bundle-grouped-form .single_add_to_cart_button:hover {
  background: #001f44;
}

.examprep-book-bundle-trust-list,
.examprep-book-bundle-includes {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.examprep-book-bundle-trust-list {
  padding-top: var(--sp-2);
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  line-height: 1.45;
  border-top: 1px solid rgba(16, 44, 89, 0.12);
}

.examprep-book-bundle-trust-list li,
.examprep-book-bundle-includes li {
  position: relative;
  padding-left: 1.5rem;
}

.examprep-book-bundle-trust-list li::before,
.examprep-book-bundle-includes li::before {
  position: absolute;
  left: 0;
  color: var(--color-brand-action);
  font-weight: 1000;
  content: "✓";
}

.examprep-book-bundle-overview {
  background: #fff;
}

.examprep-book-bundle-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  max-width: var(--container-max);
}

.examprep-book-bundle-overview-copy {
  max-width: 850px;
}

.examprep-book-bundle-overview-copy h2,
.examprep-book-bundle-help-card h2 {
  color: var(--color-brand-primary);
}

.examprep-book-bundle-overview-copy p {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.75;
}

.examprep-book-bundle-includes {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 18px;
  margin-top: var(--sp-4);
}

.examprep-book-bundle-includes li {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  line-height: 1.45;
}

.examprep-book-bundle-help-card {
  display: grid;
  gap: var(--sp-3);
  padding: var(--sp-5);
  background: #f8fbff;
  border: 1px solid rgba(12, 113, 195, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.examprep-book-bundle-help-card h2 {
  margin: 0;
  font-size: 1.1rem;
}

.examprep-book-bundle-help-card p {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  line-height: 1.6;
}

.examprep-book-bundle-help-card a {
  color: var(--color-brand-action);
  font-weight: 900;
}

.examprep-book-bundle-tabs-section {
  padding-top: var(--sp-7);
}

.single-product .examprep-book-bundle-product .examprep-book-bundle-tabs {
  max-width: var(--container-wide);
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(16, 44, 89, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 48px rgba(0, 46, 98, 0.08);
}

.single-product .examprep-book-bundle-product .examprep-book-bundle-tabs ul.tabs {
  gap: 0;
  padding: 0;
  overflow-x: auto;
  background: #fff;
  border-bottom: 1px solid rgba(16, 44, 89, 0.12);
  border-radius: 0;
}

.single-product .examprep-book-bundle-product .examprep-book-bundle-tabs ul.tabs li,
.single-product .examprep-book-bundle-product .examprep-book-bundle-tabs ul.tabs li.active {
  border-radius: 0;
  background: transparent;
}

.single-product .examprep-book-bundle-product .examprep-book-bundle-tabs ul.tabs li a,
.single-product .examprep-book-bundle-product .examprep-book-bundle-tabs ul.tabs li.active a {
  padding: 17px 22px;
  color: var(--color-text-muted);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  outline-offset: -2px;
}

.single-product .examprep-book-bundle-product .examprep-book-bundle-tabs ul.tabs li.active a,
.single-product .examprep-book-bundle-product .examprep-book-bundle-tabs ul.tabs li a:hover {
  color: var(--color-brand-action);
  border-bottom-color: var(--color-brand-action);
}

.single-product .examprep-book-bundle-product .examprep-book-bundle-tabs ul.tabs li a:focus {
  outline: none;
}

.single-product .examprep-book-bundle-product .examprep-book-bundle-tabs ul.tabs li a:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(12, 113, 195, 0.42);
}

.single-product .examprep-book-bundle-product .examprep-book-bundle-tabs .woocommerce-Tabs-panel {
  margin: 0 !important;
  padding: clamp(24px, 4vw, 44px);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.examprep-book-bundle-notice {
  margin-bottom: var(--sp-4);
  padding: 12px 16px;
  color: #92400e;
  font-size: var(--font-size-sm);
  line-height: 1.55;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: var(--radius-md);
}

.examprep-book-bundle-card h3 {
  margin: 0;
  color: var(--color-brand-primary);
  font-size: 0.95rem;
  line-height: 1.25;
}

.examprep-book-bundle-card h3 a {
  color: inherit;
  text-decoration: none;
}

.examprep-book-bundle-card h3 a:hover {
  color: var(--color-brand-action);
  text-decoration: underline;
}

.examprep-book-bundle-card__button.button {
  min-height: 40px;
  margin-top: auto;
  padding: 8px 12px;
  font-size: var(--font-size-xs);
}

.examprep-book-bundle-specs {
  display: grid;
  max-width: 720px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 44, 89, 0.12);
  border-radius: var(--radius-md);
}

.examprep-book-bundle-specs > div {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 1fr);
  gap: var(--sp-4);
  padding: 14px 16px;
  border-bottom: 1px solid rgba(16, 44, 89, 0.1);
}

.examprep-book-bundle-specs > div:last-child {
  border-bottom: 0;
}

.examprep-book-bundle-specs dt {
  color: var(--color-brand-primary);
  font-weight: 900;
}

.examprep-book-bundle-specs dd {
  margin: 0;
  color: var(--color-text-muted);
}

.examprep-book-bundle-ready {
  padding: clamp(42px, 5vw, 72px) 0;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(12, 113, 195, 0.28), transparent 22rem),
    linear-gradient(135deg, #071f45 0%, var(--color-brand-primary) 58%, #001832 100%);
}

.examprep-book-bundle-ready .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  max-width: var(--container-max);
}

.examprep-book-bundle-ready h2,
.examprep-book-bundle-ready h3,
.examprep-book-bundle-ready p,
.examprep-book-bundle-ready .micro-heading {
  margin: 0;
  color: #fff;
}

.examprep-book-bundle-ready .micro-heading {
  margin-bottom: var(--sp-3);
  color: rgba(255, 255, 255, 0.68);
}

.examprep-book-bundle-ready h2 {
  max-width: 760px;
  font-size: clamp(1.9rem, 3.1vw, 3.25rem);
  line-height: 1.04;
}

.examprep-book-bundle-ready p {
  max-width: 790px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.6;
}

.examprep-book-bundle-ready__main {
  display: grid;
  gap: var(--sp-4);
}

.examprep-book-bundle-ready__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: var(--sp-2) 0 0;
  padding: 0;
  list-style: none;
}

.examprep-book-bundle-ready__facts li,
.examprep-book-bundle-ready__support {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
}

.examprep-book-bundle-ready__facts li {
  display: grid;
  gap: 7px;
  padding: 16px;
}

.examprep-book-bundle-ready__facts strong {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 1000;
  line-height: 1.1;
}

.examprep-book-bundle-ready__facts span {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-sm);
  line-height: 1.45;
}

.examprep-book-bundle-ready__support {
  display: grid;
  gap: var(--sp-3);
  padding: clamp(20px, 2.4vw, 28px);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}

.examprep-book-bundle-ready__support h3 {
  font-size: 1.15rem;
  line-height: 1.2;
}

.examprep-book-bundle-ready__support .button {
  justify-content: center;
  width: 100%;
}

.examprep-book-bundle-ready__secondary.button {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.46);
}

.examprep-book-bundle-ready__secondary.button:hover {
  color: var(--color-brand-primary);
  background: #fff;
}

.examprep-companion-course {
  margin-top: var(--sp-5);
}

.examprep-state-sidebar .important-contacts {
  padding: var(--sp-4);
  border-left: 5px solid var(--color-brand-accent);
  border-radius: var(--radius-md);
  background: rgba(16, 44, 89, 0.05);
}

.examprep-state-template {
  background:
    radial-gradient(circle at 10% 4%, rgba(12, 113, 195, 0.1), transparent 24rem),
    linear-gradient(180deg, #f8fafc 0, #fff 22rem);
}

.examprep-service-template {
  background: #fff;
}

.examprep-service-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.examprep-service-metric-panel,
.examprep-nascla-map-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.examprep-service-metric-panel {
  display: grid;
  gap: var(--sp-3);
  padding: var(--sp-5);
}

.examprep-service-metric-panel div,
.examprep-service-metric-row div {
  padding: var(--sp-4);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
}

.examprep-service-metric-panel.examprep-service-metric-panel--inline {
  max-width: 760px;
  margin-top: var(--sp-5);
  padding: 8px;
  background: rgba(0, 32, 80, 0.36);
  border-color: rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
}

.examprep-service-metric-panel.examprep-service-metric-panel--inline div {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 62px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.26);
}

.examprep-service-metric-panel.examprep-service-metric-panel--inline {
  grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
}

.examprep-service-metric-panel.examprep-service-metric-panel--inline strong {
  flex: 0 0 auto;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
}

.examprep-service-metric-panel.examprep-service-metric-panel--inline span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.25;
}

.examprep-service-metric-panel strong,
.examprep-service-metric-row strong {
  display: block;
  color: #fff;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1;
}

.examprep-service-metric-panel span,
.examprep-service-metric-row span {
  display: block;
  margin-top: var(--sp-2);
  color: rgba(255, 255, 255, 0.76);
  font-size: var(--font-size-sm);
}

.examprep-service-metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}

.examprep-service-card-grid,
.examprep-product-teaser-grid,
.examprep-location-grid,
.examprep-office-mini-grid {
  display: grid;
  gap: var(--sp-5);
}

.examprep-service-card-grid,
.examprep-product-teaser-grid,
.examprep-location-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.examprep-service-card-grid.examprep-custom-training-benefit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.examprep-office-mini-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: var(--sp-5);
}

.examprep-service-card,
.examprep-location-card,
.examprep-office-mini-grid article,
.examprep-tollfree-card,
.examprep-platform-card,
.examprep-map-panel {
  color: var(--color-text);
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.examprep-service-card {
  display: block;
  padding: var(--sp-5);
}

.examprep-service-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: var(--sp-4);
  color: #fff;
  font-weight: 900;
  background: var(--color-brand-primary);
  border-radius: 16px;
}

.examprep-step-list {
  display: grid;
  gap: var(--sp-4);
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: service-step;
}

.examprep-step-list li {
  position: relative;
  padding: var(--sp-5) var(--sp-5) var(--sp-5) 5rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  counter-increment: service-step;
}

.examprep-step-list li::before {
  content: counter(service-step, decimal-leading-zero);
  position: absolute;
  top: var(--sp-5);
  left: var(--sp-5);
  color: var(--color-brand-action);
  font-size: 1rem;
  font-weight: 900;
}

.examprep-request-grid,
.examprep-contact-grid,
.examprep-map-panel,
.examprep-platform-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.examprep-map-panel,
.examprep-platform-card {
  padding: var(--sp-6);
}

.examprep-lead-form {
  display: grid;
  gap: var(--sp-4);
  padding: var(--sp-5);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.examprep-lead-form label {
  display: grid;
  gap: 6px;
  margin: 0;
  color: var(--color-brand-primary);
  font-weight: var(--font-weight-semi);
}

.examprep-lead-form input,
.examprep-lead-form select,
.examprep-lead-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  color: var(--color-text);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.examprep-lead-form textarea {
  min-height: 132px;
  padding: 12px 14px;
  resize: vertical;
}

.examprep-lead-form input:focus,
.examprep-lead-form select:focus,
.examprep-lead-form textarea:focus {
  border-color: var(--color-brand-action);
  outline: none;
  box-shadow: 0 0 0 3px rgba(12, 113, 195, 0.14);
}

.examprep-form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-4);
}

.examprep-hp-field {
  position: absolute;
  left: -9999px;
}

.examprep-form-notice {
  padding: var(--sp-3) var(--sp-4);
  color: #0f5132;
  background: #d1e7dd;
  border: 1px solid #badbcc;
  border-radius: var(--radius-md);
  font-weight: 700;
}

.examprep-check-list {
  display: grid;
  gap: var(--sp-2);
  margin: var(--sp-5) 0 0;
  padding: 0;
  list-style: none;
}

.examprep-check-list li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--color-text);
  font-weight: 700;
}

.examprep-check-list li::before {
  content: "";
  position: absolute;
  top: 0.42rem;
  left: 0;
  width: 14px;
  height: 14px;
  background: var(--color-brand-action);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px #fff;
}

.examprep-nascla-map-card {
  padding: var(--sp-5);
}

.examprep-nascla-map-card__map,
.examprep-map-placeholder {
  display: grid;
  place-items: center;
  min-height: 240px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05) 4px, transparent 4px, transparent 12px),
    linear-gradient(135deg, #001a3d, #0c71c3);
  border-radius: var(--radius-lg);
}

.examprep-nascla-state-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--sp-3);
}

.examprep-nascla-state-list a {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3);
  color: var(--color-brand-primary);
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-weight: 700;
}

.examprep-nascla-state-list span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #fff;
  background: var(--color-brand-primary);
  border-radius: 50%;
  flex-shrink: 0;
  font-size: var(--font-size-xs);
}

.examprep-product-card--teaser {
  overflow: hidden;
}

.examprep-product-card--teaser .examprep-product-card__image {
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: var(--sp-4);
  background: var(--color-surface-muted);
}

.examprep-product-card--teaser .examprep-product-card__image img {
  max-height: 180px;
  width: auto;
  object-fit: contain;
}

.examprep-product-card--teaser .examprep-product-card__body {
  display: grid;
  gap: var(--sp-3);
  padding: var(--sp-5);
}

.examprep-product-card--teaser h3 {
  margin: 0;
  font-size: 1.05rem;
}

.examprep-product-card--teaser h3 a {
  color: var(--color-brand-primary);
  text-decoration: none;
}

.examprep-product-card__price {
  color: var(--color-brand-primary);
  font-size: 1.15rem;
  font-weight: 900;
}

.examprep-location-card {
  overflow: hidden;
}

.examprep-location-card__media {
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: var(--sp-5);
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(217, 33, 34, 0.2), transparent),
    linear-gradient(135deg, #001a3d, #002e62 55%, #0c71c3);
}

.examprep-location-card__body {
  padding: var(--sp-5);
}

.examprep-location-card h2 {
  font-size: 1.25rem;
}

.examprep-location-card address,
.examprep-office-mini-grid address {
  margin: 0 0 var(--sp-3);
  color: var(--color-text);
  font-style: normal;
  line-height: 1.7;
}

.examprep-location-card__hours {
  padding: var(--sp-3);
  color: var(--color-brand-primary);
  background: var(--color-surface-muted);
  border-radius: var(--radius-md);
  font-weight: 700;
}

.examprep-map-panel .examprep-map-placeholder {
  min-height: 280px;
  color: #fff;
}

.examprep-tollfree-card {
  display: grid;
  gap: 4px;
  margin-top: var(--sp-5);
  padding: var(--sp-5);
}

.examprep-tollfree-card span {
  color: var(--color-brand-primary);
  font-weight: 700;
}

.examprep-tollfree-card a {
  color: var(--color-brand-action);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
  text-decoration: none;
}

.examprep-office-mini-grid article {
  padding: var(--sp-4);
}

.examprep-office-mini-grid h3 {
  font-size: 1rem;
}

.examprep-office-mini-grid a {
  font-weight: 800;
}

.examprep-step-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.examprep-state-hero {
  position: relative;
  padding: clamp(1.25rem, 2.4vw, 2rem) 0 clamp(1.75rem, 3vw, 3.25rem);
  overflow: hidden;
  color: #fff;
  background: #002050;
}

.examprep-state-hero .hero-bg-photo img {
  width: var(--state-hero-image-width, 100%);
  max-width: none;
  object-position: var(--state-hero-object-position, right center);
  transform: translateX(var(--state-hero-shift-x, 0));
}

.examprep-state-hero--colorado {
  --state-hero-object-position: center 48%;
}

.examprep-state-hero--connecticut {
  --state-hero-image-width: 124%;
  --state-hero-shift-x: 8%;
}

.examprep-state-hero--florida,
.examprep-state-hero--illinois,
.examprep-state-hero--iowa,
.examprep-state-hero--kentucky,
.examprep-state-hero--massachusetts,
.examprep-state-hero--oregon,
.examprep-state-hero--washington {
  --state-hero-image-width: 118%;
  --state-hero-shift-x: 6%;
}

.examprep-state-hero--north-carolina {
  --state-hero-image-width: 136%;
  --state-hero-shift-x: 12%;
}

.examprep-state-hero--new-york {
  --state-hero-image-width: 150%;
  --state-hero-shift-x: 16%;
}

.examprep-state-hero__grid {
  max-width: var(--container-wide);
  padding-left: clamp(20px, 3vw, 56px);
  padding-right: clamp(20px, 3vw, 56px);
}

.examprep-state-hero__copy {
  max-width: 820px;
}

.examprep-state-hero h1,
.examprep-state-hero .section-eyebrow {
  color: #fff;
}

.examprep-state-hero h1 {
  max-width: 900px;
  font-size: 4.2rem;
  letter-spacing: 0;
  line-height: 1;
}

.examprep-state-hero__summary {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
}

.examprep-state-select {
  width: min(100%, 520px);
  min-height: 48px;
  margin: var(--sp-3) 0;
  padding: 0 var(--sp-4);
  color: var(--color-brand-primary);
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-pill);
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.examprep-state-hero__actions,
.examprep-state-card__commerce,
.examprep-state-video-row__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
}

.examprep-state-video-row {
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  background:
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border-bottom: 1px solid rgba(16, 44, 89, 0.08);
}

.examprep-state-video-row__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.75rem);
  align-items: center;
  max-width: var(--container-wide);
  padding-left: clamp(20px, 3vw, 56px);
  padding-right: clamp(20px, 3vw, 56px);
}

.examprep-state-video-row__media {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(16, 44, 89, 0.12);
  border-radius: var(--radius-md);
  aspect-ratio: 16 / 9;
  background: var(--color-brand-primary);
  box-shadow: 0 22px 55px rgba(16, 44, 89, 0.18);
}

.examprep-state-video-row__media iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.examprep-state-video-row__copy {
  max-width: 720px;
}

.examprep-state-video-row__copy h2 {
  max-width: 680px;
}

.examprep-state-video-row__copy p {
  color: var(--color-text-muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.examprep-state-video-row__list {
  display: grid;
  gap: 0.65rem;
  margin: var(--sp-4) 0;
  padding-left: 1.1rem;
  color: var(--color-brand-primary);
  font-weight: 800;
}

.examprep-state-video-row__actions {
  margin-top: var(--sp-4);
}

.examprep-state-sub-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(16, 44, 89, 0.1);
  box-shadow: 0 10px 28px rgba(16, 44, 89, 0.08);
  backdrop-filter: blur(14px);
}

.admin-bar.examprep-state-page .examprep-state-sub-nav {
  top: var(--wp-admin--admin-bar--height, 32px);
}

.examprep-state-sub-nav .container {
  display: flex;
  gap: clamp(0.6rem, 1.8vw, 1.4rem);
  align-items: center;
  justify-content: center;
  max-width: var(--container-wide);
  overflow-x: auto;
  padding-top: 1rem;
  padding-bottom: 1rem;
  scrollbar-width: thin;
}

.examprep-state-sub-nav a {
  flex: 0 0 auto;
  color: var(--color-brand-primary);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.15;
  text-decoration: none;
  white-space: nowrap;
}

.examprep-state-sub-nav a:hover {
  color: var(--color-brand-action);
}

.examprep-state-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: start;
  max-width: var(--container-wide);
  padding-top: var(--sp-7);
  padding-right: clamp(20px, 3vw, 56px);
  padding-bottom: var(--sp-8);
  padding-left: clamp(20px, 3vw, 56px);
}

.examprep-state-main {
  display: grid;
  gap: var(--sp-6);
}

.examprep-state-product-sections {
  display: grid;
  gap: var(--sp-6);
}

.examprep-state-overview,
.examprep-state-section,
.examprep-state-sidebar__card {
  border: 1px solid rgba(16, 44, 89, 0.1);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.examprep-state-overview,
.examprep-state-section {
  padding: clamp(1.35rem, 3vw, 2rem);
}

.examprep-state-overview__content {
  color: var(--color-text);
  font-size: 1.04rem;
  line-height: 1.75;
}

.examprep-state-overview__content ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
}

.examprep-state-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: start;
}

.examprep-state-facts {
  padding: var(--sp-4);
  border: 1px solid rgba(12, 113, 195, 0.18);
  border-radius: var(--radius-md);
  background: rgba(12, 113, 195, 0.05);
}

.examprep-state-facts h2,
.examprep-state-facts h3 {
  margin-bottom: var(--sp-3);
  font-size: 1rem;
}

.examprep-state-facts dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.examprep-state-facts dl div {
  display: grid;
  grid-template-columns: minmax(100px, 0.58fr) minmax(0, 1fr);
  gap: var(--sp-3);
  padding: 0.62rem 0;
  border-top: 1px solid rgba(16, 44, 89, 0.1);
}

.examprep-state-facts dt {
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.examprep-state-facts dd {
  margin: 0;
  color: var(--color-brand-primary);
  font-weight: 800;
}

.examprep-state-section {
  scroll-margin-top: calc(var(--header-height) + 1.5rem);
}

.examprep-state-page .examprep-scroll-target,
.examprep-state-page .examprep-state-section,
.examprep-state-page .examprep-state-cat,
.examprep-state-page .examprep-state-product-card {
  scroll-margin-top: var(--state-subnav-offset);
}

.examprep-state-section--table {
  overflow: hidden;
}

.examprep-state-section__header {
  max-width: 820px;
  margin-bottom: var(--sp-5);
}

.examprep-state-seminars-heading {
  max-width: 1160px;
  margin-bottom: 0;
}

.examprep-state-seminars-heading h2 {
  max-width: none;
  font-size: 2.6rem;
  line-height: 1.08;
  white-space: nowrap;
}

.examprep-state-seminars-heading p:last-child {
  max-width: 86ch;
  font-size: 1.06rem;
  line-height: 1.65;
}

.examprep-state-product-sections.examprep-state-section {
  gap: var(--sp-5);
}

.examprep-table-wrap {
  overflow-x: auto;
}

.examprep-data-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: var(--font-size-sm);
}

.examprep-data-table th {
  padding: 0.85rem 1rem;
  color: var(--color-brand-primary);
  font-size: var(--font-size-xs);
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(16, 44, 89, 0.06);
}

.examprep-data-table td {
  padding: 1rem;
  vertical-align: top;
  border-top: 1px solid rgba(16, 44, 89, 0.1);
}

.examprep-exam-panel-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.examprep-exam-panel table {
  width: 100%;
  margin-top: var(--sp-4);
  border-collapse: collapse;
  font-size: var(--font-size-sm);
}

.examprep-exam-panel th,
.examprep-exam-panel td {
  padding: 0.65rem 0;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid rgba(16, 44, 89, 0.1);
}

.examprep-exam-panel th {
  width: 38%;
  color: var(--color-brand-primary);
}

.examprep-state-step-list {
  display: grid;
  gap: var(--sp-3);
}

.examprep-state-step-list article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: var(--sp-4);
  padding: var(--sp-4);
  border: 1px solid rgba(16, 44, 89, 0.1);
  border-radius: var(--radius-md);
  background: rgba(16, 44, 89, 0.03);
}

.examprep-state-step-list span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  font-weight: 900;
  background: var(--color-brand-action);
  border-radius: 50%;
}

.examprep-state-step-list h3 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.examprep-state-step-list p {
  margin-bottom: 0;
  color: var(--color-text-muted);
}

.examprep-prep-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.examprep-prep-card {
  display: grid;
  gap: var(--sp-3);
  align-content: start;
}

.examprep-prep-card h3 {
  margin-bottom: 0;
  font-size: 1rem;
}

.examprep-prep-card h3 a {
  color: var(--color-brand-primary);
  text-decoration: none;
}

.examprep-prep-card h3 a:hover {
  color: var(--color-brand-action);
  text-decoration: underline;
}

.examprep-prep-card__price {
  color: var(--color-brand-accent);
  font-size: 1.05rem;
  font-weight: 900;
}

.examprep-reciprocity-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--sp-4);
}

.examprep-reciprocity-chips a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 var(--sp-3);
  color: var(--color-brand-primary);
  font-size: var(--font-size-sm);
  font-weight: 800;
  text-decoration: none;
  background: #eef4fb;
  border: 1px solid rgba(12, 113, 195, 0.14);
  border-radius: var(--radius-pill);
}

.examprep-reciprocity-chips a:hover {
  color: #fff;
  background: var(--color-brand-action);
}

.examprep-state-card-list {
  display: grid;
  gap: var(--sp-4);
}

.examprep-state-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: clamp(1rem, 2.4vw, 1.75rem);
  padding: clamp(1rem, 2.2vw, 1.5rem);
  border: 1px solid rgba(16, 44, 89, 0.1);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(12, 113, 195, 0.05), transparent 40%),
    #fff;
}

.examprep-state-card__marker {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  color: #fff;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(217, 33, 34, 0.85), rgba(12, 113, 195, 0.76)),
    var(--color-brand-primary);
  font-size: 1.8rem;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.examprep-state-card__title {
  margin-bottom: var(--sp-2);
}

.examprep-state-card__title a {
  color: var(--color-brand-primary);
  text-decoration: none;
}

.examprep-state-card__title a:hover {
  color: var(--color-brand-action);
  text-decoration: underline;
}

.examprep-state-card__summary,
.examprep-state-card__details,
.examprep-state-card__training {
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.examprep-state-card__details {
  margin: var(--sp-3) 0;
}

.examprep-state-card__details summary {
  width: fit-content;
  color: var(--color-brand-action);
  font-weight: 800;
  cursor: pointer;
}

.examprep-state-card__commerce,
.examprep-state-card__training {
  margin-top: var(--sp-3);
}

.examprep-state-card__availability,
.examprep-state-card__price {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 var(--sp-3);
  border-radius: var(--radius-pill);
  font-size: var(--font-size-sm);
  font-weight: 800;
  text-decoration: none;
}

.examprep-state-card__availability {
  color: #075f2a;
  background: #dcfce7;
}

.examprep-state-card__price {
  color: var(--color-brand-accent);
  background: #fff1f2;
}

.examprep-state-card__training {
  display: grid;
  gap: var(--sp-3);
  padding: var(--sp-4);
  border-radius: var(--radius-md);
  background: rgba(16, 44, 89, 0.05);
}

.examprep-state-sidebar {
  display: grid;
  gap: var(--sp-4);
  min-width: 0;
}

.examprep-state-sidebar__card {
  display: grid;
  gap: var(--sp-3);
  min-width: 0;
  padding: var(--sp-5);
}

.examprep-state-sidebar__card h2 {
  font-size: 1.35rem;
}

.examprep-state-sidebar .examprep-state-facts h2 {
  margin-bottom: 0;
  font-size: 1.25rem;
}

.examprep-state-sidebar .examprep-state-facts dl div {
  grid-template-columns: 1fr;
  gap: 0.28rem;
  padding: 0.72rem 0;
}

.examprep-state-sidebar .btn {
  width: 100%;
  text-align: center;
  white-space: normal;
}

.examprep-state-sidebar .important-contacts {
  max-height: 640px;
  overflow: auto;
  border-left-color: var(--color-brand-action);
}

.examprep-course-detail-tab--applications .important-contacts {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}

.examprep-state-hero__copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.examprep-state-hero h1 {
  display: grid;
  gap: 0.08em;
  max-width: 16ch;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1;
}

.examprep-state-hero h1 .h1-prefix {
  display: block;
  color: #c7dcf4;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 0.68em;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}

.examprep-state-hero h1 .h1-anchor {
  display: block;
  margin-left: 0.45em;
  color: #fff;
  font-size: 1.62em;
  font-weight: 900;
  line-height: 0.96;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.22);
}

.examprep-state-hero h1 .h1-anchor__sub {
  display: block;
  margin-top: 0.08em;
  margin-left: 0.72em;
  color: #d8e7f8;
  font-size: 0.46em;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}

.examprep-state-hero h1 .h1-suffix {
  display: block;
  margin-top: 0.14em;
  margin-left: 2.45em;
  color: #c7dcf4;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 0.82em;
  font-weight: 400;
  line-height: 1.1;
}

.examprep-state-hero__summary {
  color: #c7dcf4;
  font-size: 1.15rem;
}

.examprep-state-hero__urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  margin-top: var(--sp-3);
  padding: 7px 14px;
  color: var(--color-success);
  font-size: 0.88rem;
  font-weight: 800;
  background: var(--color-success-bg);
  border-radius: var(--radius-pill);
}

.examprep-state-hero__urgency-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  background: var(--color-success);
  border-radius: 50%;
  animation: examprep-pulse 1.8s ease-in-out infinite;
}

@keyframes examprep-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.55;
    transform: scale(1.25);
  }
}

.examprep-state-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, auto));
  gap: clamp(1rem, 2vw, 2rem);
  width: max-content;
  max-width: 100%;
  margin: var(--sp-4) 0 var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
}

.examprep-state-hero__stat {
  display: grid;
  gap: 2px;
  min-width: 0;
  color: #fff;
}

.examprep-state-hero__stat-value {
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  font-weight: 900;
  line-height: 1.1;
}

.examprep-state-hero__stat-label {
  color: #a8c4e3;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.examprep-state-sub-nav a {
  padding: 8px 14px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}

.examprep-state-sub-nav a:hover {
  color: var(--color-brand-action);
  background: rgba(12, 113, 195, 0.08);
  border-color: rgba(12, 113, 195, 0.2);
}

.examprep-state-sub-nav a.is-active {
  color: #fff;
  background: var(--color-brand-primary);
  border-color: var(--color-brand-primary);
}

.examprep-data-table tbody tr {
  transition: background var(--transition);
}

.examprep-data-table tbody tr:hover {
  background: rgba(12, 113, 195, 0.04);
}

.examprep-data-table .class-row-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 6px 12px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  background: var(--color-brand-action);
  border-radius: var(--radius-sm);
}

.examprep-data-table .class-row-action:hover {
  color: #fff;
  text-decoration: none;
  background: var(--color-brand-primary);
}

.examprep-data-table .class-row-action::after {
  content: ">";
  font-size: 0.8em;
}

.examprep-state-full {
  display: grid;
  gap: var(--sp-6);
  max-width: var(--container-wide);
  padding-right: clamp(20px, 3vw, 56px);
  padding-bottom: var(--sp-8);
  padding-left: clamp(20px, 3vw, 56px);
}

.examprep-state-cat {
  padding: clamp(1.35rem, 3vw, 2rem);
  scroll-margin-top: calc(var(--header-height) + 1.5rem);
  background: #fff;
  border: 1px solid rgba(16, 44, 89, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.examprep-state-cat__header {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
  padding-bottom: var(--sp-4);
  margin-bottom: var(--sp-5);
  border-bottom: 2px solid var(--color-brand-primary);
}

.examprep-state-cat__heading {
  display: flex;
  flex: 1 1 auto;
  gap: var(--sp-4);
  align-items: center;
  min-width: 0;
}

.examprep-state-cat__letter {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-brand-primary) 0%, var(--color-brand-action) 100%);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(12, 113, 195, 0.25);
}

.examprep-state-cat__image {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(12, 113, 195, 0.18);
}

.examprep-state-cat__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.examprep-state-cat__heading-copy h2 {
  margin: 4px 0 0;
  color: var(--color-brand-primary);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
}

.examprep-state-cat__count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-top: 0.7rem;
  padding: 8px 14px;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--color-surface-muted);
  border-radius: var(--radius-pill);
}

.examprep-state-product-list {
  display: grid;
  gap: var(--sp-5);
}

.examprep-state-product-card {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 340px);
  overflow: hidden;
  color: var(--color-text);
  background: #fff;
  border: 1px solid rgba(16, 44, 89, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 3px rgba(16, 44, 89, 0.06), 0 8px 24px rgba(16, 44, 89, 0.06);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.examprep-state-product-card:hover {
  border-color: rgba(12, 113, 195, 0.35);
  box-shadow: 0 4px 8px rgba(16, 44, 89, 0.08), 0 24px 48px rgba(16, 44, 89, 0.14);
}

.examprep-state-product-card--custom {
  background: linear-gradient(135deg, rgba(0, 46, 98, 0.03), rgba(12, 113, 195, 0.04));
}

.examprep-state-product-card__body {
  display: grid;
  gap: var(--sp-3);
  align-content: start;
  min-width: 0;
  padding: clamp(1.25rem, 2.2vw, 1.75rem);
}

.examprep-state-product-card__topline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.examprep-state-product-card__code {
  padding: 3px 8px;
  color: var(--color-brand-action);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(12, 113, 195, 0.1);
  border-radius: var(--radius-sm);
}

.examprep-state-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  color: var(--color-brand-action);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
  white-space: nowrap;
  background: var(--color-info-bg);
  border-radius: var(--radius-pill);
  box-shadow: inset 0 0 0 1px rgba(12, 113, 195, 0.3);
}

.examprep-state-badge--success {
  color: var(--color-success);
  background: var(--color-success-bg);
  box-shadow: inset 0 0 0 1px var(--color-success-border);
}

.examprep-state-badge--custom {
  color: var(--color-warning);
  background: var(--color-warning-bg);
  box-shadow: inset 0 0 0 1px rgba(146, 64, 14, 0.3);
}

.examprep-state-product-card__title {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.examprep-state-product-card__title a {
  color: var(--color-brand-primary);
  text-decoration: none;
}

.examprep-state-product-card__title a:hover {
  color: var(--color-brand-action);
  text-decoration: underline;
}

.examprep-state-product-card__summary,
.examprep-state-product-card__more {
  max-width: 62ch;
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.65;
}

.examprep-state-product-card__features {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 4px 0 0;
  list-style: none;
}

.examprep-state-product-card__features li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  color: var(--color-text);
  font-size: 0.92rem;
  line-height: 1.5;
}

.examprep-state-product-card__features li::before {
  display: block;
  width: 18px;
  height: 18px;
  content: "";
  background-color: var(--color-success-bg);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'><path fill='none' stroke='%23047857' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='M4.5 9.2 7.7 12.4 13.8 6.3'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
}

.examprep-state-product-card__more summary {
  display: inline-block;
  padding: 4px 0;
  color: var(--color-brand-action);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.examprep-state-product-card__formats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.examprep-state-format {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  color: var(--color-text);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
}

.examprep-state-format::before {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  content: "";
  background: currentColor;
  border-radius: 50%;
}

.examprep-state-format--inperson,
.examprep-state-format--selfpaced {
  color: var(--color-success);
  background: var(--color-success-bg);
  border-color: rgba(4, 120, 87, 0.3);
}

.examprep-state-format--webinar,
.examprep-state-format--course {
  color: var(--color-brand-action);
  background: #f0f7ff;
  border-color: rgba(12, 113, 195, 0.3);
}

.examprep-state-format--private {
  color: var(--color-warning);
  background: var(--color-warning-bg);
  border-color: rgba(146, 64, 14, 0.3);
}

.examprep-state-product-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  padding-top: var(--sp-3);
  font-size: 0.88rem;
  border-top: 1px solid rgba(16, 44, 89, 0.08);
}

.examprep-state-product-card__meta-item {
  display: grid;
  gap: 2px;
}

.examprep-state-product-card__meta-label {
  color: var(--color-text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.examprep-state-product-card__meta-value {
  color: var(--color-brand-primary);
  font-weight: 800;
}

.examprep-state-product-card__rail {
  display: grid;
  align-content: start;
  gap: var(--sp-3);
  padding: clamp(1.25rem, 2.2vw, 1.75rem);
  background: linear-gradient(180deg, #f8fafc 0%, #eff6ff 100%);
  border-left: 1px solid rgba(16, 44, 89, 0.08);
}

.examprep-state-product-card--custom .examprep-state-product-card__rail {
  color: #fff;
  background: linear-gradient(180deg, #002e62 0%, #0c71c3 100%);
}

.examprep-state-rail-label {
  color: var(--color-text-muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.examprep-state-rail-next {
  display: grid;
  gap: 4px;
}

.examprep-state-rail-next__date {
  color: var(--color-brand-primary);
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1.1;
}

.examprep-state-rail-next__meta {
  color: var(--color-text-muted);
  font-size: 0.88rem;
}

.examprep-state-rail-note {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  padding: 4px 10px;
  color: var(--color-success);
  font-size: 0.78rem;
  font-weight: 800;
  background: var(--color-success-bg);
  border-radius: var(--radius-pill);
}

.examprep-state-rail-price {
  display: flex;
  gap: 10px;
  align-items: baseline;
  padding: var(--sp-3) 0;
  margin: var(--sp-2) 0;
  border-top: 1px solid rgba(16, 44, 89, 0.08);
  border-bottom: 1px solid rgba(16, 44, 89, 0.08);
}

.examprep-state-rail-price__amount {
  color: var(--color-brand-primary);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.examprep-state-rail-price__per {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.examprep-state-rail-actions,
.examprep-state-rail-custom {
  display: grid;
  gap: 8px;
}

.examprep-state-rail-actions .btn,
.examprep-state-rail-custom .btn {
  width: 100%;
  white-space: normal;
}

.examprep-state-rail-secondary {
  display: inline-flex;
  justify-content: center;
  padding: 6px;
  color: var(--color-brand-action);
  font-size: 0.86rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.examprep-state-rail-secondary:hover {
  color: var(--color-brand-primary);
  text-decoration: underline;
}

.examprep-state-rail-custom__label {
  width: max-content;
  padding: 4px 10px;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
}

.examprep-state-rail-custom__headline {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.25;
}

.examprep-state-rail-custom p,
.examprep-state-product-card--custom .examprep-state-rail-label,
.examprep-state-product-card--custom .examprep-state-rail-secondary {
  color: #c7dcf4;
}

.examprep-state-rail-custom .btn-primary {
  color: var(--color-brand-primary);
  background: #fff;
  border-color: #fff;
}

.examprep-state-rail-custom .btn-primary:hover {
  background: var(--color-surface-muted);
}

.examprep-state-product-card--custom .examprep-state-rail-secondary:hover {
  color: #fff;
}

.examprep-state-cat__footer {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
  justify-content: space-between;
  margin-top: var(--sp-5);
  padding: var(--sp-4) var(--sp-5);
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
  border: 1px solid rgba(12, 113, 195, 0.15);
  border-radius: var(--radius-md);
}

.examprep-state-cat__footer-copy {
  display: flex;
  gap: var(--sp-3);
  align-items: center;
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 600;
}

.examprep-state-cat__footer-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-brand-primary), var(--color-brand-action));
  border-radius: 50%;
}

.examprep-state-cat__footer-cta {
  color: var(--color-brand-action);
  font-weight: 800;
  text-decoration: none;
}

.examprep-state-cat__footer-cta:hover {
  color: var(--color-brand-primary);
  text-decoration: underline;
}

.examprep-state-sticky-mobile {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 80;
  display: none;
  gap: 10px;
  align-items: center;
  padding: 10px 16px env(safe-area-inset-bottom, 12px);
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(16, 44, 89, 0.12);
  box-shadow: 0 -8px 32px rgba(16, 44, 89, 0.12);
  backdrop-filter: blur(12px);
}

.examprep-state-sticky-mobile .btn {
  flex: 1;
  padding: 12px;
  font-size: 0.95rem;
  text-align: center;
}

@media (max-width: 1024px) {
  .examprep-state-product-card {
    grid-template-columns: 1fr;
  }

  .examprep-state-product-card__rail {
    border-top: 1px solid rgba(16, 44, 89, 0.08);
    border-left: 0;
  }
}

@media (max-width: 900px) {
  .examprep-state-hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .examprep-state-seminars-heading h2 {
    font-size: 2.1rem;
    white-space: normal;
  }
}

@media (max-width: 800px) {
  .examprep-state-sticky-mobile {
    display: flex;
  }

  .examprep-state-template {
    padding-bottom: 80px;
  }
}

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

  .offer-grid,
  .trade-card-grid,
  .examprep-service-card-grid,
  .examprep-product-teaser-grid,
  .examprep-location-grid,
  .examprep-nascla-state-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1100px) {
  .header-inner {
    gap: var(--sp-3);
  }

  .nav-primary {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .nav-utility {
    gap: var(--sp-3);
  }

  .nav-phone span {
    display: none;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 60px;
  }

  .container,
  .col-full {
    padding: 0 16px;
  }

  .nav-primary {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  #masthead.site-header {
    height: var(--header-height);
  }

  .nav-phone span {
    display: none;
  }

  .footer-brand,
  .footer-grid,
  .trade-band-layout,
  .testimonial-grid,
  .location-grid,
  .examprep-link-grid,
  .examprep-intro-card,
  .examprep-popular-state-grid,
  .examprep-offer-grid,
  .examprep-shop-layout,
  .product-detail-grid,
  .examprep-book-bundle-hero-grid,
  .examprep-book-bundle-overview-grid,
  .examprep-book-bundle-ready .container,
  .examprep-seminar-feature-grid,
  .examprep-book-detail-grid,
  .examprep-step-grid,
  .examprep-format-grid,
  .examprep-check-grid,
  .examprep-prep-card-grid,
  .examprep-exam-panel-grid,
  .examprep-state-overview-grid,
  .examprep-state-index__tools,
  .examprep-nascla-callout,
  .examprep-service-hero__grid,
  .examprep-request-grid,
  .examprep-contact-grid,
  .examprep-map-panel,
  .examprep-platform-card,
  .examprep-state-video-row__grid,
  .examprep-step-grid--three {
    grid-template-columns: 1fr;
  }

  .footer-search {
    grid-template-columns: 1fr;
  }

  .footer-support-card {
    justify-self: start;
    max-width: 520px;
  }

  .examprep-state-hero__grid,
  .examprep-state-layout {
    grid-template-columns: 1fr;
  }

  .examprep-state-hero h1 {
    max-width: 100%;
    font-size: clamp(1.55rem, 5vw, 2.45rem);
  }

  .examprep-state-hero h1 .h1-anchor {
    margin-left: 0.25em;
  }

  .examprep-state-hero h1 .h1-anchor__sub {
    margin-left: 0.45em;
  }

  .examprep-state-sub-nav .container {
    justify-content: flex-start;
  }

  .examprep-state-video-row__media {
    max-width: none;
  }

  .single-product .examprep-product-kind-seminar .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .examprep-product-media {
    padding-bottom: 0;
  }

  .single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .examprep-product-summary {
    border-radius: var(--radius-md);
  }

  .single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .examprep-book-detail-grid {
    grid-template-columns: 1fr;
  }

  .single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .examprep-product-media .woocommerce-product-gallery__wrapper {
    min-height: clamp(340px, 58vw, 480px);
  }

  .single-product .examprep-book-bundle-hero-grid {
    grid-template-columns: 1fr;
  }

  .single-product .examprep-book-bundle-product h1 {
    overflow-wrap: anywhere;
  }

  .examprep-state-sidebar,
  .examprep-shop-filters {
    position: static;
  }

  .examprep-shop-filter-toggle {
    display: flex;
  }

  .examprep-shop-filters .examprep-shop-filter-panel {
    display: none;
    margin-top: var(--sp-3);
  }

  .examprep-shop-filters.is-open .examprep-shop-filter-panel {
    display: block;
  }

  .examprep-shop-filter-panel h2 {
    display: none;
  }

  .offer-grid,
  .trade-card-grid,
  .examprep-shop-template ul.products,
  .examprep-book-bundle-grid,
  .examprep-book-bundle-includes,
  .examprep-seminar-state-grid,
  .examprep-nascla-chip-grid,
  .examprep-service-card-grid,
  .examprep-product-teaser-grid,
  .examprep-location-grid,
  .examprep-nascla-state-list,
  .examprep-office-mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .examprep-finder-bar {
    grid-template-columns: 1fr 1fr;
  }

  .examprep-seminar-row {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .seminar-actions {
    grid-column: 1 / -1;
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-items: stretch;
  }

  .state-az-shell {
    columns: 3 150px;
  }
}

@media (max-width: 600px) {
  .hero-home {
    padding: 24px 0 36px;
  }

  .examprep-service-metric-panel.examprep-service-metric-panel--inline {
    grid-template-columns: 1fr;
    max-width: 310px;
    margin-top: var(--sp-4);
  }

  .examprep-service-metric-panel.examprep-service-metric-panel--inline div {
    min-height: 54px;
    padding: 10px 12px;
  }

  .examprep-service-metric-panel.examprep-service-metric-panel--inline strong {
    min-width: 58px;
  }

  .hero-bg-photo::after {
    background: linear-gradient(
      to bottom,
      rgba(0, 32, 80, 0.92) 0%,
      rgba(0, 32, 80, 0.78) 42%,
      rgba(0, 32, 80, 0.56) 100%
    );
  }

  .examprep-state-hero h1 {
    font-size: clamp(1.28rem, 8vw, 1.95rem);
  }

  .examprep-state-hero h1 .h1-anchor {
    margin-left: 0;
  }

  .examprep-state-hero h1 .h1-anchor__sub {
    margin-left: 0;
    white-space: normal;
  }

  .examprep-state-hero h1 .h1-suffix {
    margin-left: 1.2em;
  }

  .hero-eyebrow-strip {
    display: grid;
    width: 100%;
    max-width: 320px;
  }

  .trust-pill + .trust-pill {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .state-selector-bar,
  .search-bar,
  .examprep-search-form {
    flex-direction: column;
  }

  .state-selector-bar button,
  .search-bar button,
  .examprep-search-form .search-submit {
    min-height: 46px;
  }

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

  .examprep-state-hero__stats {
    grid-template-columns: 1fr;
  }

  .offer-grid,
  .trade-card-grid,
  .examprep-shop-template ul.products,
  .examprep-finder-bar,
  .examprep-book-bundle-grid,
  .examprep-book-bundle-ready__facts,
  .examprep-seminar-state-grid,
  .examprep-nascla-chip-grid,
  .examprep-service-card-grid,
  .examprep-product-teaser-grid,
  .examprep-location-grid,
  .examprep-nascla-state-list,
  .examprep-office-mini-grid,
  .examprep-form-grid-2,
  .examprep-service-metric-row {
    grid-template-columns: 1fr;
  }

  .examprep-service-card-grid.examprep-custom-training-benefit-grid {
    grid-template-columns: 1fr;
  }

  .examprep-state-index {
    padding: var(--sp-4);
  }

  .state-az-shell {
    columns: 2 130px;
  }

  .hero-actions,
  .cta-banner .btn-group,
  .location-actions,
  .examprep-state-hero__actions,
  .examprep-state-card__commerce,
  .examprep-state-video-row__actions,
  .mobile-nav-utility,
  .examprep-inline-actions,
  .examprep-book-bundle__header,
  .examprep-companion-course {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .cta-banner .btn,
  .location-actions .btn,
  .examprep-state-hero__actions .btn,
  .examprep-state-card__commerce .btn,
  .examprep-state-video-row__actions .btn,
  .mobile-nav-utility .btn,
  .examprep-inline-actions .btn,
  .examprep-book-bundle__add-all,
  .examprep-book-bundle-tab-add-all {
    width: 100%;
  }

  .single-product .examprep-book-bundle-grouped-form table.group_table tr {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .single-product .examprep-book-bundle-grouped-form table.group_table .woocommerce-grouped-product-list-item__price {
    grid-column: 2;
  }

  .single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .examprep-product-hero {
    padding-top: 20px;
  }

  .single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .examprep-product-breadcrumb-container,
  .single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .product-detail-grid {
    padding-left: 16px;
    padding-right: 16px;
  }

  .single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .examprep-product-media .woocommerce-product-gallery__wrapper {
    min-height: 320px;
    padding: 18px;
    border-radius: var(--radius-md);
  }

  .single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .examprep-product-media .woocommerce-product-gallery__wrapper::before {
    right: 12px;
    bottom: 12px;
    padding: 6px 10px;
    font-size: 0.68rem;
  }

  .single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .examprep-product-media .woocommerce-product-gallery__image img {
    width: clamp(190px, 56vw, 300px) !important;
    max-height: 360px;
  }

  .single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) .examprep-product-summary {
    padding: var(--sp-4);
  }

  .single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) form.cart {
    grid-template-columns: minmax(84px, 104px) minmax(0, 1fr);
  }

  .examprep-state-card {
    grid-template-columns: 1fr;
  }

  .examprep-state-card__marker {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    font-size: 1.35rem;
  }

  .examprep-seminar-row {
    grid-template-columns: 1fr;
  }

  .seminar-date-block {
    width: 82px;
  }

  .seminar-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .single-product .examprep-product-kind-book:not(.examprep-book-bundle-product) form.cart {
    grid-template-columns: 1fr;
  }
}

.examprep-account-courses {
  display: grid;
  gap: var(--sp-5);
}

.examprep-account-courses h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.04em;
}

.examprep-learndash-page .site-main,
.woocommerce-account .examprep-account-courses {
  max-width: min(1180px, calc(100vw - var(--sp-6)));
  margin-inline: auto;
}

.examprep-learndash-page .entry-title,
.examprep-account-courses .ld-profile-heading,
.examprep-account-courses .ld-section-heading {
  color: var(--navy);
}

.examprep-learndash-shell {
  display: grid;
  gap: var(--sp-5);
  margin: var(--sp-5) 0;
}

.examprep-learndash-header,
.examprep-learndash-guidance {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.32fr);
  gap: var(--sp-5);
  align-items: stretch;
}

.examprep-hub-hero--about .hero-bg-photo img {
  object-position: center 47%;
}

.examprep-about-story,
.examprep-about-support-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.44fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.examprep-about-proof-card,
.examprep-about-detail-card,
.examprep-about-support-panel {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.examprep-about-proof-card,
.examprep-about-detail-card {
  padding: var(--sp-5);
}

.examprep-about-proof-card {
  border-top: 5px solid var(--color-brand-accent);
}

.examprep-about-proof-card ul {
  display: grid;
  gap: var(--sp-3);
  margin: var(--sp-4) 0 0;
  padding: 0;
  list-style: none;
}

.examprep-about-proof-card li {
  padding: var(--sp-3);
  color: var(--color-brand-primary);
  background: #f6f9fc;
  border-left: 4px solid var(--color-brand-action);
  border-radius: var(--radius-md);
  font-weight: 700;
}

.examprep-about-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.examprep-about-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-5);
}

.examprep-about-detail-card h3 {
  font-size: 1.15rem;
}

.examprep-about-support-panel {
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1fr);
  padding: var(--sp-6);
}

.examprep-about-support-panel .examprep-step-list li {
  box-shadow: none;
}

@media (max-width: 1200px) {
  .examprep-about-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .examprep-about-story,
  .examprep-about-support-panel,
  .examprep-about-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .examprep-about-card-grid {
    grid-template-columns: 1fr;
  }

  .examprep-about-proof-card,
  .examprep-about-detail-card,
  .examprep-about-support-panel {
    padding: var(--sp-4);
  }
}

.examprep-learndash-header {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(217, 33, 34, 0.18), transparent 42%),
    linear-gradient(135deg, #001a3d, #002e62 62%, #0c71c3);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.examprep-learndash-header h2,
.examprep-learndash-header h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
}

.examprep-learndash-header p {
  max-width: 760px;
  margin: var(--sp-3) 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.examprep-learndash-status-card {
  display: grid;
  align-content: center;
  gap: var(--sp-2);
  padding: var(--sp-4);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
}

.examprep-learndash-status-card span,
.examprep-learndash-status-card small {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.examprep-learndash-status-card strong {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1;
}

.examprep-learndash-guidance {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.examprep-learndash-guidance article,
.examprep-learndash-legacy-body {
  padding: var(--sp-5);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.examprep-learndash-guidance strong {
  display: block;
  color: var(--color-brand-primary);
  font-size: 1.05rem;
}

.examprep-learndash-guidance p {
  margin: var(--sp-2) 0 0;
}

.examprep-learndash-legacy-body #learndash_course_status,
.examprep-learndash-legacy-body .learndash_profile_heading,
.examprep-learndash-legacy-body #lesson_heading,
.examprep-learndash-legacy-body #quiz_heading,
.examprep-learndash-legacy-body .learndash_profile_quiz_heading {
  display: block;
  padding: var(--sp-3) var(--sp-4);
  color: #fff;
  background: var(--color-brand-primary);
  border-radius: var(--radius-md);
  font-weight: 800;
}

.examprep-learndash-legacy-body .learndash_content,
.examprep-learndash-legacy-body #learndash_lessons,
.examprep-learndash-legacy-body #learndash_quizzes,
.examprep-learndash-legacy-body .profile_info,
.examprep-learndash-legacy-body #course_list {
  margin-top: var(--sp-4);
}

.examprep-learndash-legacy-body #lessons_list > div,
.examprep-learndash-legacy-body #quiz_list > div,
.examprep-learndash-legacy-body #course_list > div {
  margin: var(--sp-3) 0;
  padding: var(--sp-4);
  background: var(--color-surface-muted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.examprep-learndash-legacy-body h4 {
  margin: 0;
  color: var(--color-brand-primary);
  font-size: 1rem;
}

.examprep-learndash-legacy-body a {
  color: var(--color-brand-action);
  font-weight: 700;
}

.examprep-learndash-legacy-body .course_progress,
.examprep-learndash-legacy-body .course_progress_blue {
  border-radius: 999px;
}

.examprep-learndash-legacy-body .course_progress {
  background: #dbeafe;
}

.examprep-learndash-legacy-body .course_progress_blue {
  min-height: 12px;
  background: var(--color-brand-action);
}

@media (max-width: 900px) {
  .examprep-learndash-header,
  .examprep-learndash-guidance {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .js-ready .hero-anim,
  .js-ready .hero-anim-in,
  .js-ready .scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* -------------------------------------------------------------------------
 * Narrow-mobile fix (iPhone Pro 390px and friends).
 *
 * At the standard 900px-down mobile breakpoint, the header utility cluster
 * (.nav-utility) + the hamburger button were measuring 406px wide in a
 * 390px viewport — 16px of horizontal overflow on the most common mobile
 * device. The overflow came from default 16px container padding × 2 sides
 * + the utility gap + ~36px icon buttons. Tighten everything for sub-420px
 * viewports so the header stays inside the viewport with no scroll.
 *
 * Targets: documentElement.scrollWidth ≤ window.innerWidth on /checkout/
 * and every other route at 390x844.
 * ------------------------------------------------------------------------- */
@media (max-width: 420px) {
  .container,
  .col-full {
    padding-left: 12px;
    padding-right: 12px;
  }

  .header-inner {
    gap: var(--sp-3);
  }

  .nav-utility {
    gap: var(--sp-2);
  }

  .nav-icon-btn {
    width: 32px;
    height: 32px;
  }

  .nav-phone {
    /* Visually anchored icon only at 390px; the number text is
     * already hidden by .nav-phone span { display: none } at 900px
     * down. Reduce the touch target to claw back the missing 16px. */
    gap: 4px;
  }
}
