/* ==========================================================================
   CoolCoach - styles.css
   Single shared stylesheet. All colors defined as CSS custom properties.
   Never hardcode hex/rgb values outside of :root.
   ========================================================================== */

/* ==========================================================================
   1. CUSTOM PROPERTIES
   ========================================================================== */

:root {
  /* Brand colors */
  --color-primary:    #0A0F1E;
  --color-accent:     #2B6FED;
  --color-white:      #FFFFFF;
  --color-bg-alt:     #F4F6FA;
  --color-text:       #FFFFFF;
  --color-text-dark:  #0A0F1E;
  --color-text-muted: #A0AABF;
  --color-border:     rgba(255, 255, 255, 0.12);

  /* Typography */
  --font-heading: 'DM Sans', 'Inter', sans-serif;
  --font-body:    'Inter', 'DM Sans', sans-serif;

  /* Sizing */
  --nav-height: 72px;
  --container-max: 1200px;
  --section-padding: 96px;
  --section-padding-mobile: 64px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
}

/* ==========================================================================
   2. RESET AND BASE
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ==========================================================================
   3. TYPOGRAPHY SCALE
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: inherit;
}

strong { font-weight: 600; }

/* ==========================================================================
   4. LAYOUT UTILITIES
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.section--alt {
  background-color: var(--color-bg-alt);
  color: var(--color-text-dark);
}

.section--dark {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.section--darker {
  background-color: #060A14;
  color: var(--color-white);
}

/* Grid systems */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Flex utilities */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

/* Text alignment */
.text-center { text-align: center; }
.text-left   { text-align: left; }

/* ==========================================================================
   5. BUTTONS (CTA)
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 6px;
  transition: background-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
}

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

/* Primary - electric blue */
.btn--primary {
  background-color: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.btn--primary:hover {
  background-color: #1A5CD8;
  border-color: #1A5CD8;
  transform: translateY(-1px);
}

/* Secondary - ghost/outline */
.btn--secondary {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--secondary:hover {
  border-color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

/* Secondary on light bg */
.btn--secondary-dark {
  background-color: transparent;
  color: var(--color-text-dark);
  border-color: rgba(10, 15, 30, 0.4);
}

.btn--secondary-dark:hover {
  border-color: var(--color-text-dark);
  background-color: rgba(10, 15, 30, 0.06);
}

.btn--lg {
  padding: 20px 40px;
  font-size: 1.0625rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* ==========================================================================
   6. NAVIGATION
   ========================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background-color: var(--color-primary);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base), background-color var(--transition-base);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-color: rgba(10, 15, 30, 0.92);
}

.nav--scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo img {
  height: 34px;
  width: 34px;
  border-radius: 8px;
  object-fit: contain;
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

/* Desktop links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 12px;
  border-radius: 4px;
  transition: color var(--transition-fast), background-color var(--transition-fast);
  white-space: nowrap;
}

.nav__link:hover,
.nav__link:focus-visible {
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.08);
  outline: none;
}

/* Services dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 12px;
  border-radius: 4px;
  transition: color var(--transition-fast), background-color var(--transition-fast);
  cursor: pointer;
  background: none;
  border: none;
  white-space: nowrap;
}

.nav__dropdown-toggle:hover,
.nav__dropdown-toggle[aria-expanded="true"] {
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.08);
}

.nav__dropdown-toggle:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

.nav__dropdown-icon {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.nav__dropdown-toggle[aria-expanded="true"] .nav__dropdown-icon {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background-color: #111827;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.nav__dropdown-menu--open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-item {
  display: block;
  padding: 10px 16px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  border-radius: 4px;
  transition: color var(--transition-fast), background-color var(--transition-fast);
  white-space: nowrap;
}

.nav__dropdown-item:hover,
.nav__dropdown-item:focus-visible {
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.08);
  outline: none;
}

/* Nav right area */
.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav__login {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  padding: 6px 10px;
  border-radius: 4px;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.nav__login:hover {
  color: var(--color-white);
}

.nav__cta {
  font-size: 0.875rem;
  padding: 10px 18px;
  white-space: nowrap;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 8px;
  border-radius: 6px;
  transition: background-color var(--transition-fast);
  cursor: pointer;
  background: none;
  border: none;
  position: relative;
  z-index: 1001;
}

.nav__hamburger:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.nav__hamburger:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

.nav__hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* Hamburger → X animation when menu is open */
.nav__hamburger--open .nav__hamburger-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav__hamburger--open .nav__hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__hamburger--open .nav__hamburger-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile overlay */
.nav__mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: var(--color-primary);
  z-index: 999;
  flex-direction: column;
  padding: 24px;
  padding-top: calc(var(--nav-height) + 16px);
  overflow-y: auto;
}

.nav__mobile-overlay--open {
  display: flex;
}

.nav__mobile-header {
  display: none;
}

.nav__mobile-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-white);
  background: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.nav__mobile-close:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.nav__mobile-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.nav__mobile-link {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-white);
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  display: block;
}

.nav__mobile-services-label {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-white);
  padding: 14px 0 10px;
  border-bottom: 1px solid var(--color-border);
  display: block;
}

.nav__mobile-sub {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}

.nav__mobile-sub-link {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 10px 0;
  display: block;
}

.nav__mobile-sub-link:hover {
  color: var(--color-white);
}

.nav__mobile-ctas {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ==========================================================================
   7. HERO SECTION
   ========================================================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  background-color: var(--color-primary);
  position: relative;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.hero__title {
  color: var(--color-white);
}

.hero__sub {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
}

.hero__image {
  position: relative;
}

.hero__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
}

/* ==========================================================================
   8. SECTION HEADLINES
   ========================================================================== */

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.0625rem;
  opacity: 0.75;
  max-width: 600px;
}

/* Emphasized subtitle - used when the subtitle carries emotional weight */
.section-sub--emphasis {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 600;
  opacity: 1;
  color: var(--color-accent);
  letter-spacing: -0.01em;
  margin-top: 4px;
}

.section-header {
  margin-bottom: 56px;
}

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

.section-header--center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   9. CARDS
   ========================================================================== */

.card {
  background-color: #111827;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--transition-base), transform var(--transition-base);
}

.card:hover {
  border-color: rgba(43, 111, 237, 0.4);
  transform: translateY(-3px);
}

.card--alt {
  background-color: var(--color-white);
  border-color: #E2E8F0;
  color: var(--color-text-dark);
}

.card--alt:hover {
  border-color: var(--color-accent);
}

.card__icon {
  width: 48px;
  height: 48px;
  background-color: rgba(43, 111, 237, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card__title {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--color-white);
}

.card--alt .card__title {
  color: var(--color-text-dark);
}

.card__desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  flex: 1;
}

.card--alt .card__desc {
  color: rgba(10, 15, 30, 0.65);
}

.card__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition-fast);
}

.card__link:hover {
  gap: 8px;
}

/* ==========================================================================
   10. CHECKLIST / OUTCOMES
   ========================================================================== */

.checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.0625rem;
  line-height: 1.5;
}

.checklist__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.checklist__icon svg {
  width: 13px;
  height: 13px;
  stroke: var(--color-white);
  stroke-width: 2.5;
  fill: none;
}

/* ==========================================================================
   11. STATS BAR
   ========================================================================== */

.stats-bar {
  background-color: #060A14;
  padding: 48px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.stats-bar__inner {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat__number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.stat__label {
  display: block;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

/* ==========================================================================
   12. FAQ ACCORDION
   ========================================================================== */

.faq {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--color-border);
}

.faq__item {
  border-bottom: 1px solid var(--color-border);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-white);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.section--alt .faq__question {
  color: var(--color-text-dark);
}

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

.faq__question:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.faq__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform var(--transition-fast);
}

.faq__item--open .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  display: none;
  padding-bottom: 24px;
}

.faq__answer p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 720px;
}

.section--alt .faq__answer p {
  color: rgba(10, 15, 30, 0.65);
}

.faq__item--open .faq__answer {
  display: block;
}

/* ==========================================================================
   13. BOTTOM CTA SECTION
   ========================================================================== */

.cta-section {
  background-color: #060A14;
  padding: 96px 0;
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.cta-section__title {
  margin-bottom: 16px;
  color: var(--color-white);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section__sub {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
}

.cta-section__phone {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-white);
  margin-top: 32px;
  transition: color var(--transition-fast);
}

.cta-section__phone:hover {
  color: var(--color-accent);
}

.cta-section .btn-group {
  justify-content: center;
}

/* ==========================================================================
   14. BREADCRUMB
   ========================================================================== */

.breadcrumb {
  padding: calc(var(--nav-height) + 24px) 0 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb__item:not(:last-child)::after {
  content: '/';
  color: rgba(255, 255, 255, 0.3);
}

.breadcrumb__link {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.breadcrumb__link:hover {
  color: var(--color-white);
}

.breadcrumb__current {
  color: rgba(255, 255, 255, 0.75);
}

/* ==========================================================================
   15. FOOTER
   ========================================================================== */

.footer {
  background-color: #060A14;
  border-top: 1px solid var(--color-border);
  padding: 64px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__brand-logo {
  height: 32px;
  width: 32px;
  border-radius: 6px;
  object-fit: contain;
}

.footer__brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer__brand-logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
  display: block;
}

.footer__tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  max-width: 240px;
}

.footer__col-title {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition-fast);
  line-height: 1.4;
}

.footer__link:hover {
  color: var(--color-white);
}

.footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}

.footer__contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.footer__contact-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  transition: color var(--transition-fast);
}

.footer__contact-value:hover {
  color: var(--color-accent);
}

.footer__text-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent);
  transition: color var(--transition-fast);
}

.footer__text-cta:hover {
  color: #5A8FFF;
}

.footer__bar {
  border-top: 1px solid var(--color-border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copyright {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer__bar-links {
  display: flex;
  gap: 24px;
}

.footer__bar-link {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--transition-fast);
}

.footer__bar-link:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   16. PULL QUOTE
   ========================================================================== */

.pull-quote {
  position: relative;
  padding: 32px 40px;
  border-left: 4px solid var(--color-accent);
  background-color: rgba(43, 111, 237, 0.06);
  border-radius: 0 8px 8px 0;
  margin: 32px 0;
}

.pull-quote__text {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.375rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-white);
  font-style: italic;
}

/* Pull quote on light backgrounds */
.section--alt .pull-quote {
  background-color: rgba(43, 111, 237, 0.08);
}

.section--alt .pull-quote__text {
  color: var(--color-text-dark);
}

/* ==========================================================================
   17. CALLOUT BOXES
   ========================================================================== */

.callout {
  border-radius: 10px;
  padding: 32px;
  border: 1px solid var(--color-border);
}

.callout--accent {
  background-color: rgba(43, 111, 237, 0.08);
  border-color: rgba(43, 111, 237, 0.3);
}

.callout__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
}

.callout__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

/* Cost callout */
.cost-callout {
  text-align: center;
  padding: 48px;
  background-color: rgba(43, 111, 237, 0.08);
  border: 2px solid rgba(43, 111, 237, 0.3);
  border-radius: 12px;
}

.cost-callout__number {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.cost-callout__note {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   18. STEP / PROCESS VISUALS
   ========================================================================== */

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: steps;
}

.step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border);
  counter-increment: steps;
}

.step:last-child {
  border-bottom: none;
}

.step__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-white);
}

.step__content {
  flex: 1;
  padding-top: 8px;
}

.step__title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 4px;
}

.step__desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}

/* Certification progression */
.cert-levels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background-color: var(--color-border);
  border-radius: 10px;
  overflow: hidden;
}

.cert-level {
  background-color: #111827;
  padding: 28px 24px;
  position: relative;
}

.cert-level__num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.cert-level__name {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.cert-level__focus {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Pressure points grid */
.pressure-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pressure-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background-color: #111827;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.pressure-item::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background-color: var(--color-accent);
  border-radius: 50%;
}

/* Core principle callout */
.principle-callout {
  text-align: center;
  padding: 56px;
  background-color: var(--color-primary);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.principle-callout__text {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

/* ==========================================================================
   19. CONTACT FORM
   ========================================================================== */

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 14px 16px;
  background-color: #111827;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: var(--color-white);
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color var(--transition-fast);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form__textarea {
  min-height: 140px;
  resize: vertical;
}

.form__microcopy {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}

/* ==========================================================================
   20. CONTACT OPTIONS
   ========================================================================== */

.contact-option {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}

.contact-option__label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.contact-option__value {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-white);
  transition: color var(--transition-fast);
}

.contact-option__value:hover {
  color: var(--color-accent);
}

/* ==========================================================================
   21. PLACEHOLDER IMAGE BLOCKS
   ========================================================================== */

.img-placeholder {
  background-color: #1a2035;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 0.875rem;
  text-align: center;
  padding: 24px;
}

/* ==========================================================================
   22. PAGE HERO (interior pages)
   ========================================================================== */

.page-hero {
  padding-top: calc(var(--nav-height) + 64px);
  padding-bottom: 64px;
  background-color: var(--color-primary);
}

.page-hero__title {
  margin-bottom: 16px;
}

.page-hero__sub {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 640px;
  line-height: 1.65;
}

/* ==========================================================================
   23. OTHER SERVICES GRID
   ========================================================================== */

.other-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ==========================================================================
   24. RESPONSIVE - TABLET (≤ 1024px)
   ========================================================================== */

@media (max-width: 1024px) {
  :root {
    --section-padding: 72px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

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

  .nav__links {
    display: none;
  }

  .nav__login {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }
}

/* ==========================================================================
   25. RESPONSIVE - MOBILE (≤ 768px)
   ========================================================================== */

@media (max-width: 768px) {
  :root {
    --section-padding: var(--section-padding-mobile);
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 24px;
    padding-bottom: 48px;
  }

  .hero__image {
    order: -1;
  }

  .hero__img {
    aspect-ratio: 4/3;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-2-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-bar__inner {
    gap: 40px;
  }

  .cert-levels {
    grid-template-columns: 1fr;
  }

  .pressure-grid {
    grid-template-columns: 1fr;
  }

  .other-services {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .pull-quote {
    padding: 24px;
  }

  .cost-callout {
    padding: 32px 24px;
  }

  .principle-callout {
    padding: 40px 24px;
  }

  .cta-section {
    padding: 64px 0;
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-group .btn {
    width: 100%;
    text-align: center;
  }

  .nav__cta {
    display: none;
  }
}

/* ==========================================================================
   26. SCROLL-LOCK (applied via JS when mobile menu is open)
   ========================================================================== */

body.scroll-locked {
  overflow: hidden;
}

/* ==========================================================================
   27. ACCESSIBILITY HELPERS
   ========================================================================== */

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

/* Focus ring override for keyboard users */
:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* ==========================================================================
   28. HOMEPAGE - SPECIFIC COMPONENTS
   ========================================================================== */

/* Hero phone link */
.hero__phone-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
  letter-spacing: 0.02em;
}

.hero__phone-link:hover {
  color: var(--color-white);
}

/* Problem section cards */
.problem-grid {
  margin-bottom: 56px;
}

.problem-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  background-color: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(10, 15, 30, 0.08);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10, 15, 30, 0.1);
}

.problem-card__image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.problem-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.problem-card:hover .problem-card__image img {
  transform: scale(1.04);
}

.problem-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.problem-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

.problem-card__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(10, 15, 30, 0.65);
}

.problem-payoff {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
  background-color: rgba(43, 111, 237, 0.06);
  border: 1px solid rgba(43, 111, 237, 0.15);
  border-radius: 10px;
}

.problem-payoff p {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-text-dark);
}

/* What Changes section layout */
.what-changes-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.what-changes-footer {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  padding-top: 8px;
  border-top: 1px solid var(--color-border);
}

/* Services grid - 3 col on desktop, handled via grid utilities */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* About section */
.about__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 12px;
  min-height: 380px;
}

/* Mid-page phone/text CTA bar */
.mid-cta-bar {
  background-color: var(--color-accent);
  padding: 32px 0;
}

.mid-cta-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.mid-cta-bar__text {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-white);
}

.mid-cta-bar .btn--primary {
  background-color: var(--color-white);
  color: var(--color-accent);
  border-color: var(--color-white);
}

.mid-cta-bar .btn--primary:hover {
  background-color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.9);
}

.mid-cta-bar .btn--secondary {
  border-color: rgba(255,255,255,0.6);
  color: var(--color-white);
}

.mid-cta-bar .btn--secondary:hover {
  border-color: var(--color-white);
  background-color: rgba(255,255,255,0.1);
}

/* FAQ container max-width */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

/* ==========================================================================
   29. HOMEPAGE - RESPONSIVE OVERRIDES
   ========================================================================== */

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .mid-cta-bar__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .mid-cta-bar .btn-group {
    flex-direction: column;
    width: 100%;
  }

  .mid-cta-bar .btn {
    width: 100%;
    text-align: center;
  }

  .problem-grid {
    gap: 40px;
    margin-bottom: 40px;
  }
}

/* ==========================================================================
   30. SERVICE PAGES - SHARED COMPONENTS
   ========================================================================== */

/* Page hero inner spacing */
.page-hero__inner {
  padding-top: 24px;
}

/* Opening copy block */
.service-opening {
  max-width: 760px;
}

.service-opening__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-opening__text p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(10, 15, 30, 0.75);
}

/* Who Is This For section */
.who-section {
  max-width: 760px;
}

.who-callout {
  background-color: rgba(43, 111, 237, 0.1);
  border: 1px solid rgba(43, 111, 237, 0.25);
  border-radius: 10px;
  padding: 28px 32px;
  margin-bottom: 32px;
}

.who-callout__text {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.5;
}

.who-signals {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.who-signal {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.who-signal__check {
  flex-shrink: 0;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1rem;
  margin-top: 2px;
}

/* Five pillars grid */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background-color: #D1D9E6;
  border-radius: 12px;
  overflow: hidden;
}

.pillar-card {
  background-color: var(--color-white);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pillar-card__num {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-accent);
}

.pillar-card__title {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

.pillar-card__desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(10, 15, 30, 0.65);
  flex: 1;
}

.pillar-card .card__link {
  font-size: 0.875rem;
  margin-top: 4px;
}

/* Outcomes inner layout */
.outcomes-inner {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ==========================================================================
   31. SERVICE PAGES - RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .who-callout {
    padding: 20px 24px;
  }
}

/* ==========================================================================
   32. MARKETING PAGE
   ========================================================================== */

/* Why Traditional SEO Fails */
.seo-fail-inner {
  max-width: 960px;
}

.seo-fail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.seo-fail-card {
  background-color: #111827;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.seo-fail-card__icon {
  width: 44px;
  height: 44px;
  background-color: rgba(43, 111, 237, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.seo-fail-card__title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-white);
}

.seo-fail-card__desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
}

/* Callout link */
.callout__link {
  color: var(--color-accent);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.callout__link:hover {
  color: #5A8FFF;
}

@media (max-width: 1024px) {
  .seo-fail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .seo-fail-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   33. EASY OPERATING SYSTEM PAGE
   ========================================================================== */

/* Core screens list */
.screens-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background-color: var(--color-border);
  border-radius: 12px;
  overflow: hidden;
}

.screen-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px;
  background-color: #0E1628;
  transition: background-color var(--transition-base);
}

.screen-item:hover {
  background-color: #111827;
}

.screen-item__number {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(43, 111, 237, 0.25);
  line-height: 1;
  width: 48px;
  padding-top: 4px;
}

.screen-item__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.screen-item__header {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.screen-item__title {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--color-white);
}

.screen-item__tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  background-color: rgba(43, 111, 237, 0.1);
  border: 1px solid rgba(43, 111, 237, 0.2);
  border-radius: 100px;
  padding: 3px 12px;
}

.screen-item__desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

/* Checklist on light bg */
.checklist--dark .checklist__item {
  color: var(--color-text-dark);
}

/* Outcomes on alt bg */
.outcomes-inner-alt {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (max-width: 768px) {
  .screen-item {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }

  .screen-item__number {
    font-size: 1.5rem;
    width: auto;
  }
}

/* ==========================================================================
   34. CERTIFICATION PROGRAM PAGE
   ========================================================================== */

/* Certification progression - vertical timeline */
.cert-progression {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.cert-progression__item {
  display: flex;
  gap: 24px;
  position: relative;
  padding-bottom: 48px;
}

.cert-progression__item--last {
  padding-bottom: 0;
}

/* Vertical connector line */
.cert-progression__connector {
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-accent), rgba(43, 111, 237, 0.15));
}

.cert-progression__badge {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.cert-progression__level-num {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.04em;
}

.cert-progression__content {
  flex: 1;
  background-color: #111827;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.cert-progression__focus {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.cert-progression__title {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--color-white);
}

.cert-progression__desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

/* What every certification includes grid */
.cert-includes-inner {
  max-width: 960px;
}

.cert-includes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.cert-include-card {
  background-color: var(--color-white);
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--transition-base), transform var(--transition-base);
}

.cert-include-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.cert-include-card__icon {
  width: 48px;
  height: 48px;
  background-color: rgba(43, 111, 237, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-include-card__title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

.cert-include-card__desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(10, 15, 30, 0.65);
}

@media (max-width: 768px) {
  .cert-includes-grid {
    grid-template-columns: 1fr;
  }

  .cert-progression__content {
    padding: 20px;
  }
}

/* ==========================================================================
   35. PROVE IT PAGE
   ========================================================================== */

/* When It's Used callout */
.when-used-inner {
  max-width: 760px;
}

.when-used-callout {
  border-left: 4px solid var(--color-accent);
  padding: 40px 48px;
  background-color: rgba(43, 111, 237, 0.06);
  border-radius: 0 12px 12px 0;
}

.when-used-callout__label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.when-used-callout__text {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.when-used-callout__sub {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
}

/* Steps wrapper max-width */
.proveit-steps-wrap {
  max-width: 760px;
}

/* Step desc dark text (on alt bg) */
.section--alt .step__title {
  color: var(--color-text-dark);
}

.section--alt .step__desc {
  color: rgba(10, 15, 30, 0.65);
}

.section--alt .step__num {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.section--alt .step {
  border-bottom-color: rgba(10, 15, 30, 0.1);
}

@media (max-width: 768px) {
  .when-used-callout {
    padding: 28px 24px;
  }
}

/* ==========================================================================
   36. RESTORATION REALITY CHECK PAGE
   ========================================================================== */

/* Pressure points grid - override base with expanded cards */
.pressure-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  list-style: none;
}

.pressure-item {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
}

.pressure-item::before {
  display: none;
}

.pressure-item__content {
  width: 100%;
  background-color: #111827;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color var(--transition-base);
}

.pressure-item__content:hover {
  border-color: rgba(43, 111, 237, 0.4);
}

.pressure-item__title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pressure-item__title::before {
  content: '';
  display: inline-block;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background-color: var(--color-accent);
  border-radius: 50%;
}

.pressure-item__desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
}

.pressure-item__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-top: 4px;
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
}

.pressure-item__link:hover {
  color: #5A8FFF;
}

/* System section body copy */
.reality-check-system {
  max-width: 720px;
}

.reality-check-system__body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(10, 15, 30, 0.72);
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .pressure-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   37. ALEXAN PLAN PROCESS PAGE
   ========================================================================== */

/* Cost callout wrapper - centers it with max-width */
.plan-cost-wrap {
  max-width: 560px;
  margin: 0 auto;
}

.cost-callout__sub {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(10, 15, 30, 0.6);
  margin-top: 8px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* Service opening on dark bg */
.service-opening--dark {
  max-width: 760px;
}

.service-opening__text--dark p {
  color: rgba(255, 255, 255, 0.72);
}

/* Two-step plan process */
.plan-steps {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.plan-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding-bottom: 48px;
}

.plan-step--last {
  padding-bottom: 0;
}

.plan-step__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.plan-step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-white);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.plan-step__line {
  width: 2px;
  flex: 1;
  min-height: 40px;
  background: linear-gradient(to bottom, var(--color-accent), rgba(43, 111, 237, 0.15));
  margin-top: 4px;
}

.plan-step__content {
  flex: 1;
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-step__title {
  font-family: var(--font-heading);
  font-size: 1.3125rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

.plan-step__desc {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(10, 15, 30, 0.68);
}

.plan-step__cta {
  margin-top: 4px;
}

/* What's included grid */
.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.included-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background-color: #111827;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 24px;
  transition: border-color var(--transition-base);
}

.included-item:hover {
  border-color: rgba(43, 111, 237, 0.4);
}

.included-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: rgba(43, 111, 237, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.included-item__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 6px;
}

.included-item__desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .included-grid {
    grid-template-columns: 1fr;
  }

  .plan-step {
    gap: 20px;
  }

  .plan-step__num {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* ==========================================================================
   38. ABOUT PAGE
   ========================================================================== */

/* Story section - two column */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}

.about-story__img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  min-height: 480px;
}

.about-story__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-story__content p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(10, 15, 30, 0.72);
}

/* Lessons grid */
.lessons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lesson-card {
  background-color: #111827;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--transition-base);
}

.lesson-card:hover {
  border-color: rgba(43, 111, 237, 0.35);
}

/* Fifth card spans full width on the last row when 3-col */
.lessons-grid .lesson-card:last-child:nth-child(3n - 1) {
  grid-column: span 1;
}

.lesson-card__num {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-accent);
}

.lesson-card__title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
}

.lesson-card__desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
}

/* Why CoolCoach */
.why-coolcoach {
  max-width: 760px;
}

.why-coolcoach__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.why-coolcoach__body p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(10, 15, 30, 0.72);
}

.why-coolcoach__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 1024px) {
  .lessons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-story {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-story__image {
    order: -1;
  }

  .about-story__img-placeholder {
    aspect-ratio: 4/3;
    min-height: auto;
  }

  .lessons-grid {
    grid-template-columns: 1fr;
  }

  .why-coolcoach__ctas {
    flex-direction: column;
  }

  .why-coolcoach__ctas .btn {
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   39. CONTACT PAGE
   ========================================================================== */

/* Two-column layout: options left, form right */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

/* Contact options column */
.contact-options-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 8px;
}

.contact-option {
  margin-bottom: 32px;
}

.contact-options-note {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(10, 15, 30, 0.65);
  margin-bottom: 32px;
}

.contact-options-divider {
  height: 1px;
  background-color: #D1D9E6;
  margin-bottom: 32px;
}

.contact-trust-block {
  display: flex;
  gap: 40px;
  margin-bottom: 28px;
}

.contact-trust-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-trust-stat__num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.contact-trust-stat__label {
  font-size: 0.8125rem;
  color: rgba(10, 15, 30, 0.5);
  font-weight: 500;
  line-height: 1.4;
}

.contact-options-sub {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(10, 15, 30, 0.55);
}

/* Form card */
.contact-form-card {
  background-color: var(--color-white);
  border: 1px solid #D1D9E6;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(10, 15, 30, 0.06);
}

.contact-form-card__title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 6px;
}

.contact-form-card__sub {
  font-size: 0.9375rem;
  color: rgba(10, 15, 30, 0.55);
  margin-bottom: 28px;
}

/* Form row - two fields side by side */
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Override form input styles for light bg */
.contact-form-card .form__label {
  color: rgba(10, 15, 30, 0.75);
}

.contact-form-card .form__input,
.contact-form-card .form__textarea {
  background-color: #F8FAFC;
  border-color: #D1D9E6;
  color: var(--color-text-dark);
}

.contact-form-card .form__input::placeholder,
.contact-form-card .form__textarea::placeholder {
  color: rgba(10, 15, 30, 0.3);
}

.contact-form-card .form__input:focus,
.contact-form-card .form__textarea:focus {
  border-color: var(--color-accent);
  background-color: var(--color-white);
}

.contact-form-card .form__microcopy {
  color: rgba(10, 15, 30, 0.4);
  margin-top: 12px;
}

.contact-submit {
  width: 100%;
  margin-top: 4px;
}

/* What to expect grid */
.expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.expect-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.expect-item__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-white);
  flex-shrink: 0;
}

.expect-item__title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-white);
}

.expect-item__desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
}

/* ==========================================================================
   40. PLACEHOLDER + PROSE PAGES
   ========================================================================== */

.placeholder-page {
  max-width: 640px;
}

.placeholder-page__text {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(10, 15, 30, 0.72);
  margin-bottom: 8px;
}

.placeholder-page__sub {
  margin-top: 24px;
  font-size: 0.9375rem;
  color: rgba(10, 15, 30, 0.55);
}

.placeholder-page__link {
  color: var(--color-accent);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.placeholder-page__link:hover {
  color: #1A5CD8;
}

/* Prose - privacy policy long-form content */
.prose {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.prose h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-top: 16px;
  margin-bottom: 0;
}

.prose p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(10, 15, 30, 0.72);
}

.prose__list {
  padding-left: 20px;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.prose__list li {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(10, 15, 30, 0.72);
}

.prose__link {
  color: var(--color-accent);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.prose__link:hover {
  color: #1A5CD8;
}

@media (max-width: 1024px) {
  .contact-layout {
    gap: 48px;
  }

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

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-card {
    padding: 28px 24px;
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .contact-trust-block {
    gap: 24px;
  }

  .expect-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   41. LAUNCH REBUILD (2026) - FUNNEL COPY COMPONENTS
   Added for the new 8-page funnel structure. Tokens only; on-brand.
   ========================================================================== */

/* Hero long-form intro paragraph */
.hero__body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  max-width: 540px;
}

.hero__body strong { color: var(--color-white); font-weight: 600; }

/* Centered section intro paragraph */
.section-intro {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
}

.section--alt .section-intro { color: rgba(10, 15, 30, 0.72); }

/* Generic lead / prose block */
.lead-block {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lead-block p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
}

.section--alt .lead-block p { color: rgba(10, 15, 30, 0.75); }

.lead-block strong { color: var(--color-white); font-weight: 600; }
.section--alt .lead-block strong { color: var(--color-text-dark); }

/* --------------------------------------------------------------------------
   PAIN-POINT LIST (problems / "this is not for")
-------------------------------------------------------------------------- */
.pain-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 760px;
}

.pain-list--center { margin: 0 auto; }

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.pain-item__mark {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.pain-item__mark svg {
  width: 12px;
  height: 12px;
  stroke: var(--color-text-muted);
  stroke-width: 2.5;
  fill: none;
}

.pain-item__text {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.pain-item__text strong { color: var(--color-white); font-weight: 600; }

.section--alt .pain-item__mark {
  background-color: rgba(10, 15, 30, 0.04);
  border-color: rgba(10, 15, 30, 0.15);
}

.section--alt .pain-item__mark svg { stroke: rgba(10, 15, 30, 0.5); }
.section--alt .pain-item__text { color: rgba(10, 15, 30, 0.75); }
.section--alt .pain-item__text strong { color: var(--color-text-dark); }

/* --------------------------------------------------------------------------
   PRICING / TIER CARDS ("Three ways to work with me")
-------------------------------------------------------------------------- */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.tier-card {
  background-color: #111827;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tier-card--featured {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px var(--color-accent), 0 20px 48px rgba(43, 111, 237, 0.15);
}

.tier-card__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.tier-card__name {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
}

.tier-card__price {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.tier-card__price-note {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.tier-card__desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
}

.tier-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
  margin-bottom: 8px;
  flex: 1;
}

.tier-card__list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
}

.tier-card__list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 3px;
  width: 6px;
  height: 11px;
  border: solid var(--color-accent);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.tier-card .btn { width: 100%; margin-top: auto; }

/* --------------------------------------------------------------------------
   TESTIMONIALS
-------------------------------------------------------------------------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial {
  background-color: #111827;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section--alt .testimonial {
  background-color: var(--color-white);
  border-color: #E2E8F0;
}

.testimonial__mark {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 0.4;
  color: var(--color-accent);
  height: 22px;
}

.testimonial__quote {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  flex: 1;
}

.section--alt .testimonial__quote { color: rgba(10, 15, 30, 0.8); }

.testimonial__author {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-white);
  font-size: 1rem;
}

.section--alt .testimonial__author { color: var(--color-text-dark); }

.testimonial__company {
  font-size: 0.875rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-top: -14px;
}

/* --------------------------------------------------------------------------
   OPT-IN / EMAIL-CAPTURE CARD (lead magnet)
-------------------------------------------------------------------------- */
.optin-card {
  max-width: 540px;
  margin: 0 auto;
  background-color: #111827;
  border: 1px solid rgba(43, 111, 237, 0.4);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 20px 48px rgba(43, 111, 237, 0.12);
}

.optin-card__title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 6px;
}

.optin-card__sub {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.optin-card .form__microcopy { margin-top: 14px; }

/* --------------------------------------------------------------------------
   EMBED PLACEHOLDER (calendar booking / future embeds)
-------------------------------------------------------------------------- */
.embed-placeholder {
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 56px 24px;
  text-align: center;
  color: var(--color-text-muted);
  background-color: rgba(255, 255, 255, 0.02);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.section--alt .embed-placeholder {
  border-color: rgba(10, 15, 30, 0.2);
  background-color: rgba(10, 15, 30, 0.02);
  color: rgba(10, 15, 30, 0.5);
}

/* --------------------------------------------------------------------------
   INVESTMENT / PRICE ROW helpers on offer pages
-------------------------------------------------------------------------- */
.cost-callout__cadence {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

/* Simple contact detail rows (contact page) */
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
}

.contact-detail__label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.contact-detail__value {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

a.contact-detail__value { transition: color var(--transition-fast); }
a.contact-detail__value:hover { color: var(--color-accent); }

/* --------------------------------------------------------------------------
   RESPONSIVE
-------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .tiers {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonials { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .tier-card { padding: 28px 24px; }
  .testimonial { padding: 28px 24px; }
  .optin-card { padding: 28px 24px; }
}

/* ==========================================================================
   42. EDGE + LAYOUT REVISIONS (client feedback)
   1) Square every corner - rounded edges are off-brand.
   2) Kill the narrow "mobile column on a big screen" look: widen the content
      bands, center them, and run outcome lists in two columns on desktop.
   ========================================================================== */

/* 1) Sharp edges everywhere */
*,
*::before,
*::after {
  border-radius: 0 !important;
}

/* 2) Left-align + widen the content bands so every section shares the same
      left edge instead of some drifting to the middle of the page. */
.what-changes-inner {
  max-width: 1080px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.lead-block {
  max-width: 820px;
}

/* Keep prose inside a wide band at a readable measure, flush left. */
.what-changes-inner .lead-block p {
  max-width: 720px;
}

/* Numbered step lists stay centered - their headings are centered too. */
.proveit-steps-wrap {
  margin-left: auto;
  margin-right: auto;
}

/* Remove the doubled gap under a heading inside a band: .section-header
   carried 56px margin-bottom on top of the band's own flex gap. */
.what-changes-inner > .section-header,
.lead-block > .section-header {
  margin-bottom: 0;
}

/* Outcome/pain lists run in two columns on desktop instead of one lonely column */
@media (min-width: 800px) {
  .what-changes-inner .checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 56px;
  }

  .pain-list--center {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 56px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ==========================================================================
   43. FIX - breadcrumb/nav gap on interior pages
   .page-hero already offsets content below the fixed nav (nav-height + 64px).
   .breadcrumb ALSO added (nav-height + 24px), double-counting the nav and
   leaving a large empty band under the header. Remove the duplicate offset.
   ========================================================================== */
.page-hero .breadcrumb {
  padding-top: 0;
}

/* ==========================================================================
   44. TWO-COLUMN CONTENT BANDS + CONTRAST / SPACING FIXES
   Heading sits in a left column, content fills the right column, so sections
   use the full width on desktop and stack cleanly on mobile. Replaces the
   narrow single-column bands that read as "mobile on a big screen".
   ========================================================================== */
.band {
  display: grid;
  grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  gap: 40px 80px;
  align-items: start;
}

.band__head {
  display: flex;
  flex-direction: column;
}

.band__head .section-title { margin-bottom: 0; }
.band__head .section-sub { margin-top: 18px; }

.band__body {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0;
}

.band__body p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
}

.section--alt .band__body p { color: rgba(10, 15, 30, 0.75); }

.band__body strong { color: var(--color-white); font-weight: 600; }
.section--alt .band__body strong { color: var(--color-text-dark); }

.band__footer {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
}

.section--alt .band__footer { color: rgba(10, 15, 30, 0.5); }

.band__cta { margin-top: 4px; }

@media (max-width: 900px) {
  .band {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* --- Cost callout: dark panel so the sub-text keeps contrast on light
       sections (it was rendering white text on a near-white box). --- */
.cost-callout {
  background-color: var(--color-primary);
  border-color: rgba(43, 111, 237, 0.45);
}

.cost-callout__note,
.cost-callout__sub {
  color: rgba(255, 255, 255, 0.78);
}

/* --- Tighter heading-to-content gap on centered showcase sections --- */
.section-header {
  margin-bottom: 40px;
}

/* Page-hero price line (offer pages) */
.page-hero__price {
  margin-top: 16px;
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-accent);
}

/* ==========================================================================
   45. FIX - checklist rows read as one flowing sentence
   .checklist__item was display:flex, so each text run and each <strong> became
   a separate flex column and the sentence broke into staggered chunks. Pin the
   icon on the left and let the text flow normally as a single block.
   ========================================================================== */
.checklist__item {
  display: block;
  position: relative;
  padding-left: 40px;
  line-height: 1.6;
}

.checklist__icon {
  position: absolute;
  left: 0;
  top: 2px;
  margin-top: 0;
}

/* ==========================================================================
   46. NAV - fit the full-length menu labels
   Matt asked for the full "Indoor Air Intelligence" and "Free Profitability
   Tracker" labels. Tighten the horizontal nav and drop to the hamburger a bit
   earlier so eight longer labels never cram or overflow.
   ========================================================================== */
.nav__inner { gap: 16px; }
.nav__links { gap: 2px; }
.nav__link { padding: 8px 9px; font-size: 0.9rem; }
.nav__cta { padding: 10px 14px; }

@media (max-width: 1200px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
}

/* ==========================================================================
   47. LEAD-MAGNET FORM EMBED (Free Profitability Tracker)
   White panel so the embedded GoHighLevel form is readable on the dark section
   regardless of how the form itself is themed.
   ========================================================================== */
.optin-embed {
  position: relative;
  overflow: hidden;
  max-width: 620px;
  min-height: 660px;
  margin: 0 auto;
  background: #ffffff;
  padding: 8px;
  border: 1px solid #E2E8F0;
}

.optin-embed iframe {
  display: block;
  width: 100%;
  min-height: 660px;
}

.optin-note {
  max-width: 620px;
  margin: 18px auto 0;
  text-align: center;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.optin-note__link { color: var(--color-accent); }
.optin-note__link:hover { color: #5A8FFF; }

/* ==========================================================================
   48. BOOKING CALENDAR EMBED (Contact page)
   ========================================================================== */
.calendar-embed {
  position: relative;
  overflow: hidden;
  min-height: 780px;
  background: #ffffff;
  border: 1px solid #E2E8F0;
  padding: 8px;
}

.calendar-embed iframe {
  display: block;
  width: 100%;
  border: none;
  min-height: 780px;
}

.calendar-embed__fallback {
  margin-top: 16px;
  font-size: 0.9375rem;
  color: rgba(10, 15, 30, 0.6);
}

.calendar-embed__fallback a {
  color: var(--color-accent);
  font-weight: 600;
}

/* Give the scheduler the wider column on desktop; it still stacks on mobile. */
@media (min-width: 769px) {
  .contact-layout--book {
    grid-template-columns: 1.6fr 1fr;
  }
}

/* ==========================================================================
   49. EMBED LOADING SKELETON (tracker form + booking calendar)
   Sits on top of the embed wrapper until the third-party iframe fires its
   load event; script.js then adds .embed-loader--hidden to fade it out.
   Squared blocks only, to match the site's sharp-edged design language.
   ========================================================================== */
.embed-loader {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 30px 24px;
  background: #ffffff;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.embed-loader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.embed-loader__text {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-text-muted);
}

.embed-skeleton {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

/* Shared shimmer for every skeleton block. */
.embed-skeleton__field,
.embed-skeleton__line,
.embed-skeleton__button,
.embed-skeleton__grid > span {
  background: linear-gradient(90deg, #E6EBF2 25%, #F1F4F8 37%, #E6EBF2 63%);
  background-size: 400% 100%;
  animation: embed-shimmer 1.5s ease infinite;
}

.embed-skeleton__field { height: 44px; }
.embed-skeleton__line { height: 12px; }
.embed-skeleton__line--label { width: 40%; }
.embed-skeleton__line--title { height: 20px; width: 55%; }

.embed-skeleton__button {
  height: 48px;
  margin-top: 6px;
  background: linear-gradient(90deg, #C3D4F5 25%, #DAE5FB 37%, #C3D4F5 63%);
  background-size: 400% 100%;
}

.embed-skeleton__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin: 4px 0;
}

.embed-skeleton__grid > span {
  aspect-ratio: 1 / 1;
}

@keyframes embed-shimmer {
  0%   { background-position: 100% 50%; }
  100% { background-position: 0 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .embed-skeleton__field,
  .embed-skeleton__line,
  .embed-skeleton__button,
  .embed-skeleton__grid > span {
    animation: none;
  }
}
