/* ============================================================
   URIAH STRENGTH SYSTEMS — styles.css
   Section order:
   1.  Custom properties
   2.  Reset + base
   3.  Typography helpers
   4.  Buttons
   5.  Layout
   6.  Gold divider
   7.  Navigation
   8.  Footer
   9.  Homepage sections
   10. About page sections
   11. Reset page sections
   12. Results page sections
   13. Quiz page sections
   14. Apply page sections
   15. Responsive
   ============================================================ */


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

:root {
  /* Colors */
  --black:    #000000;
  --charcoal: #232323;
  --char-l:   #2C2C2C;
  --white:    #F5F5F5;
  --gold:     #C8A45D;
  --gold-l:   #E2C07A;
  --gold-d:   #9E7A3A;
  --dark:     #080808;

  /* Typography */
  --font-display: 'Montserrat', sans-serif;
  --font-body:    'Manrope', sans-serif;

  /* Spacing */
  --wrap-max:  1200px;
  --section-y: 100px;
  --gap:       24px;

  /* Transitions */
  --t-fast:   150ms ease;
  --t-base:   250ms ease;
  --t-slow:   400ms ease;

  /* Border radius */
  --radius:   4px;
}


/* ============================================================
   2. RESET + BASE
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background-color: var(--black);
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  width: 100%;
  overflow-x: hidden;
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

:focus-visible {
  outline: 2px solid #C8A45D;
  outline-offset: 3px;
}

/* Skip to main content link for screen readers */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: #C8A45D;
  color: #0D0D0D;
  padding: 10px 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 16px;
}

ul,
ol {
  list-style: none;
}

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

input,
select,
textarea {
  font-family: var(--font-body);
}


/* ============================================================
   3. TYPOGRAPHY HELPERS
   ============================================================ */

.eyebrow {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(0.78rem, 1.6vw, 1rem);
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  text-align: center;
}

.section-lead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(245, 245, 245, 0.75);
  max-width: 680px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-lead--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

h1,
h2 {
  text-align: center;
}

/* -- Exceptions: keep left-aligned -- */
.who-list,
.who-list li {
  text-align: left;
}
.pillar-content h3,
.pillar-content p,
.reset-pillar-body h3,
.reset-pillar-body p {
  text-align: left;
}
.faq-list summary,
.faq-answer {
  text-align: left;
}
.form-group label,
.form-group input,
.form-group select,
.form-group textarea {
  text-align: left;
}
.testimonial-card blockquote,
.testimonial-cite {
  text-align: left;
}
.phase-card {
  text-align: left;
}


/* ============================================================
   4. BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color var(--t-base), color var(--t-base),
              border-color var(--t-base), opacity var(--t-base);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-primary:hover {
  background-color: var(--gold-l);
  border-color: var(--gold-l);
}

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

.btn-secondary:hover {
  background-color: rgba(200, 164, 93, 0.08);
}

.btn-dark {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(245, 245, 245, 0.4);
}

.btn-dark:hover {
  border-color: var(--white);
}

.btn-text {
  background: none;
  border: none;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 0;
  text-decoration: none;
  transition: opacity var(--t-fast);
}

.btn-text:hover {
  opacity: 0.75;
}

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


/* ============================================================
   5. LAYOUT
   ============================================================ */

.wrap {
  width: 100%;
  max-width: var(--wrap-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gap);
  padding-right: var(--gap);
}

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

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

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

.section--gold {
  background-color: var(--gold);
  color: var(--black);
}

.section--gold .section-title,
.section--gold .section-lead,
.section--gold .eyebrow {
  color: var(--black);
}

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

.section--centered .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}

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

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


/* ============================================================
   6. GOLD DIVIDER
   ============================================================ */

.gold-divider {
  display: block;
  width: 80px;
  height: 1px;
  background-color: var(--gold);
  margin: 32px auto;
  border: none;
}

.gold-divider--left {
  margin-left: 0;
}


/* ============================================================
   7. NAVIGATION
   ============================================================ */

#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  overflow: visible;
  transition: background-color var(--t-base), border-color var(--t-base);
  border-bottom: 1px solid transparent;
}

#main-nav.scrolled {
  background-color: var(--black);
  border-bottom-color: var(--gold);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gap);
  max-width: var(--wrap-max);
  margin: 0 auto;
}

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

@media (min-width: 768px) {
  .nav-logo img {
    height: 64px;
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 36px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.75);
  transition: color var(--t-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cta {
  display: none;
}

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--white);
  transition: transform var(--t-base), opacity var(--t-fast);
  transform-origin: center;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  background-color: var(--black);
  z-index: 199;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  transform: translateX(100%);
  transition: transform var(--t-slow);
  padding: 72px 32px 48px;
}

.nav-drawer[aria-hidden="false"] {
  transform: translateX(0);
}

.nav-drawer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
}

.nav-drawer-links a {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--t-fast);
}

.nav-drawer-links a:hover,
.nav-drawer-links a.active {
  color: var(--gold);
}

.nav-drawer-cta {
  width: 100%;
  max-width: 320px;
}

.nav-drawer-cta .btn {
  width: 100%;
}


/* ============================================================
   8. FOOTER
   ============================================================ */

footer {
  background-color: var(--charcoal);
  border-top: 1px solid rgba(200, 164, 93, 0.16);
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 36px;
  padding: 64px var(--gap) 0;
  max-width: var(--wrap-max);
  margin: 0 auto 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.footer-brand img {
  width: 160px;
  margin: 0 auto 16px;
  display: block;
}

.footer-tagline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(245, 245, 245, 0.45);
  margin-top: 12px;
}

.footer-connect {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.footer-connect-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-connect-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-connect-links a {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: rgba(245, 245, 245, 0.65);
  transition: color var(--t-fast);
}

.footer-connect-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(245, 245, 245, 0.06);
  padding: 20px var(--gap);
  max-width: var(--wrap-max);
  margin: 0 auto;
  text-align: center;
}

.footer-bottom p {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: rgba(245, 245, 245, 0.3);
}


/* ============================================================
   9. HOMEPAGE SECTIONS
   ============================================================ */

/* Hero */
.hero {
  width: 100%;
  max-width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  padding-top: 120px;
  padding-bottom: 80px;
  padding-left: max(24px, env(safe-area-inset-left, 24px));
  padding-right: max(24px, env(safe-area-inset-right, 24px));
  background-color: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
}

.hero-hexagon {
  width: min(70vw, 600px);
  height: min(70vw, 600px);
  opacity: 0.04;
}

.hero-hexagon polygon {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  animation: pulse-hex 8s ease-in-out infinite;
}

@keyframes pulse-hex {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-hexagon polygon {
    animation: none;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-logo {
  width: 280px;
  margin: 0 auto 32px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 9vw, 5rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: none;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: rgba(245, 245, 245, 0.7);
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* Stats row */
.stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid rgba(200, 164, 93, 0.28);
  white-space: nowrap;
}

.stat-item:last-child {
  border-right: none;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(0.82rem, 2vw, 1rem);
  letter-spacing: 0.08em;
  color: var(--gold);
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.stat-label {
  display: block;
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: clamp(0.62rem, 1.5vw, 0.72rem);
  color: rgba(245, 245, 245, 0.5);
  margin-top: 4px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Problem section */
.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: 48px;
}

.problem-card {
  background-color: var(--charcoal);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 36px 28px;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.problem-card p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(245, 245, 245, 0.65);
}

/* Solution section */
.pillars-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pillar-item {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(245, 245, 245, 0.08);
}

.pillar-item:first-child {
  border-top: 1px solid rgba(245, 245, 245, 0.08);
}

.pillar-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  min-width: 80px;
  letter-spacing: -0.02em;
}

.pillar-content h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.pillar-content p {
  font-size: 0.9375rem;
  color: rgba(245, 245, 245, 0.6);
  line-height: 1.7;
}

.solution-link {
  margin-top: 40px;
}

.solution-link a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gold);
  transition: opacity var(--t-fast);
}

.solution-link a:hover {
  opacity: 0.75;
}

/* Promise block */
.promise-block {
  border: 1px solid rgba(200, 164, 93, 0.3);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  margin-top: 64px;
  background-color: rgba(200, 164, 93, 0.03);
}

.promise-block blockquote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.5vw, 1.375rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.4;
  margin: 16px 0;
}

.promise-block .promise-sub {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(245, 245, 245, 0.45);
  letter-spacing: 0.04em;
}

/* Testimonial cards (preview) */
.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: 48px;
}

.testimonial-card {
  background-color: var(--charcoal);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card blockquote {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(245, 245, 245, 0.8);
  font-style: italic;
  flex: 1;
}

.testimonial-card blockquote::before {
  content: '\201C';
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 0;
  vertical-align: -0.35em;
  margin-right: 4px;
}

.testimonial-cite {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.featured-testimonial-section {
  padding-top: 0;
}

.featured-testimonial {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 36px;
}

.featured-testimonial blockquote {
  font-size: 1.0625rem;
}

.results-link {
  margin-top: 40px;
  text-align: left;
}

/* Who It's For */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  margin-top: 48px;
}

.who-card {
  background-color: var(--charcoal);
  border-radius: var(--radius);
  padding: 36px 32px;
}

.who-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(245, 245, 245, 0.08);
}

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

.who-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(245, 245, 245, 0.75);
}

.who-list li::before {
  content: '·';
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 1px;
  flex-shrink: 0;
}

.who-card--no .who-list li::before {
  color: rgba(200, 80, 80, 0.75);
}

/* Gold Band CTA */
.gold-band {
  background-color: var(--gold);
  padding: 80px var(--gap);
  text-align: center;
}

.gold-band .section-title {
  color: var(--black);
}

.gold-band .section-lead {
  color: rgba(8, 8, 8, 0.75);
  margin: 0 auto 36px;
}

.gold-band .btn-primary {
  background-color: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.gold-band .btn-primary:hover {
  background-color: var(--dark);
  border-color: var(--dark);
}

/* Dark Apply CTA */
.apply-cta {
  background-color: var(--dark);
  padding: var(--section-y) var(--gap);
  text-align: center;
}

.apply-cta-note {
  margin-top: 24px;
  font-size: 0.8125rem;
  color: rgba(245, 245, 245, 0.3);
  letter-spacing: 0.08em;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
}


/* ============================================================
   10. ABOUT PAGE SECTIONS
   ============================================================ */

.page-hero {
  padding: 160px var(--gap) 100px;
  background-color: var(--black);
}

.page-hero .section-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
}

.page-hero .btn-group {
  justify-content: center;
}

.page-hero .btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.founder-section {
  padding: var(--section-y) var(--gap);
}

.founder-inner {
  max-width: var(--wrap-max);
  margin: 0 auto;
}

.founder-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(0.78rem, 1.4vw, 0.92rem);
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 32px;
}

.founder-body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(245, 245, 245, 0.75);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.founder-body p {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.4em;
  text-align: center;
}

.founder-body p + p {
  margin-top: 20px;
}

.founder-placeholder {
  background-color: var(--char-l);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin-top: 32px;
  font-size: 0.875rem;
  color: rgba(245, 245, 245, 0.4);
  font-style: italic;
}

.philosophy-callout {
  background-color: var(--charcoal);
  border: 1px solid rgba(200, 164, 93, 0.25);
  border-radius: var(--radius);
  padding: 48px 40px;
  margin-top: 64px;
}

.philosophy-callout blockquote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.5;
  margin: 16px 0 24px;
  text-align: center;
}

.philosophy-attribution {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  display: block;
  margin-top: 20px;
}

/* Why Systems section */
.why-systems-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.why-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.why-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  min-width: 64px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.why-content h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.0625rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.why-content p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(245, 245, 245, 0.65);
}


/* ============================================================
   11. RESET PAGE SECTIONS
   ============================================================ */

/* Pillar cards (full detail) */
.reset-pillars {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
}

.reset-pillar-card {
  background-color: var(--charcoal);
  border-radius: var(--radius);
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  align-items: start;
}

.reset-pillar-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.reset-pillar-body h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.reset-pillar-body p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(245, 245, 245, 0.7);
  margin-bottom: 24px;
}

.reset-pillar-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reset-pillar-details li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(245, 245, 245, 0.6);
  line-height: 1.5;
}

.reset-pillar-details li::before {
  content: '·';
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
}

/* Phase cards */
.phase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  margin-top: 48px;
}

.phase-card {
  background-color: var(--charcoal);
  border-radius: var(--radius);
  padding: 32px 24px;
  border-top: 2px solid var(--gold);
}

.phase-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.phase-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.phase-card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(245, 245, 245, 0.6);
}

/* Checklist */
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  margin-top: 48px;
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
  text-align: left;
}

.checklist li {
  text-align: left;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(245, 245, 245, 0.8);
}

.checklist li::before {
  content: '✓';
  color: #C9A84C;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
  min-width: 1.2em;
}

/* FAQ accordion */
.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(245, 245, 245, 0.08);
}

.faq-list details {
  border-bottom: 1px solid rgba(245, 245, 245, 0.08);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  color: var(--white);
  gap: 24px;
  transition: color var(--t-fast);
  user-select: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: '+';
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--t-base);
  line-height: 1;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details[open] summary {
  color: var(--gold);
}

.faq-answer {
  padding: 0 0 28px;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(245, 245, 245, 0.65);
  max-width: 680px;
}


/* ============================================================
   12. RESULTS PAGE SECTIONS
   ============================================================ */

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  margin-top: 48px;
}

.testimonial-grid .testimonial-card {
  background-color: var(--charcoal);
}

/* Stats row (large) */
.stats-large {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: rgba(245, 245, 245, 0.06);
  border: 1px solid rgba(245, 245, 245, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
}

.stat-large-item {
  background-color: var(--charcoal);
  padding: 48px 24px;
  text-align: center;
}

.stat-large-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.stat-large-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.5);
}

.stats-note {
  margin-top: 20px;
  font-size: 0.8125rem;
  color: rgba(245, 245, 245, 0.3);
  text-align: center;
  font-style: italic;
}


/* ============================================================
   13. QUIZ PAGE SECTIONS
   ============================================================ */

.quiz-page {
  min-height: 100svh;
  background-color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px var(--gap);
}

.quiz-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

/* Progress bar */
.quiz-progress {
  margin-bottom: 48px;
}

.quiz-progress-track {
  height: 3px;
  background-color: rgba(245, 245, 245, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  background-color: var(--gold);
  border-radius: 2px;
  transition: width 0.4s ease;
  width: 0%;
}

.quiz-progress-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.35);
  margin-top: 10px;
  text-align: right;
}

/* Steps */
.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
}

.quiz-step--intro {
  text-align: center;
}

.quiz-icon-logo {
  width: 120px;
  margin: 0 auto 32px;
}

.quiz-question {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 32px;
}

/* Answer options */
.quiz-answers {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quiz-answer-btn {
  display: block;
  width: 100%;
  padding: 20px 24px;
  background-color: var(--charcoal);
  border: 2px solid rgba(245, 245, 245, 0.08);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: rgba(245, 245, 245, 0.8);
  line-height: 1.5;
  transition: border-color var(--t-fast), background-color var(--t-fast), color var(--t-fast);
  min-height: 64px;
}

.quiz-answer-btn:hover {
  border-color: var(--gold);
  background-color: rgba(200, 164, 93, 0.06);
  color: var(--white);
}

/* Result screen */
.quiz-step--result {
  text-align: center;
}

.quiz-result-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.quiz-result-body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(245, 245, 245, 0.75);
  max-width: 520px;
  margin: 0 auto 32px;
}

.quiz-result-cta-text {
  font-size: 0.9375rem;
  color: rgba(245, 245, 245, 0.55);
  margin-bottom: 32px;
  line-height: 1.6;
}

.quiz-result-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.quiz-back-link {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.35);
  transition: color var(--t-fast);
  margin-top: 8px;
}

.quiz-back-link:hover {
  color: rgba(245, 245, 245, 0.65);
}


/* ============================================================
   14. APPLY PAGE SECTIONS
   ============================================================ */

.apply-page {
  padding-top: 140px;
  padding-bottom: var(--section-y);
  min-height: 100svh;
}

.apply-hero {
  margin-bottom: 64px;
}

.apply-sub-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 10px;
  margin-top: 24px;
  padding: 0;
}

.apply-sub-points li {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(245, 245, 245, 0.55);
}

.apply-sub-points li::before {
  content: '·';
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
}

/* Form */
#apply-form-wrapper {
  max-width: 640px;
  margin: 0 auto;
}

.apply-form {
  max-width: 640px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 28px;
}

.form-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.6);
  margin-bottom: 8px;
}

.form-label span {
  color: var(--gold);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  display: block;
  width: 100%;
  background-color: var(--charcoal);
  border: 1px solid rgba(245, 245, 245, 0.1);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 18px;
  transition: border-color var(--t-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(245, 245, 245, 0.25);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C8A45D' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-select option {
  background-color: var(--charcoal);
  color: var(--white);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-submit {
  width: 100%;
  background-color: var(--gold);
  color: var(--black);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 20px 32px;
  cursor: pointer;
  transition: background-color var(--t-base);
  margin-top: 8px;
}

.form-submit:hover {
  background-color: var(--gold-l);
}

.form-error {
  display: block;
  font-size: 0.8125rem;
  color: rgba(200, 80, 80, 0.9);
  margin-top: 6px;
}

/* Thank-you state */
.apply-thankyou {
  display: none;
  text-align: center;
  padding: 48px 0;
  max-width: 560px;
  margin: 0 auto;
}

.apply-thankyou.visible {
  display: block;
}

.thankyou-logo {
  width: 140px;
  margin: 0 auto 32px;
}

.thankyou-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 20px;
}

.thankyou-body {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(245, 245, 245, 0.7);
  margin-bottom: 0;
}

.thankyou-next {
  margin-top: 40px;
  text-align: left;
  background-color: var(--charcoal);
  border-radius: var(--radius);
  padding: 28px 32px;
}

.thankyou-next-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.4);
  margin-bottom: 16px;
}

.thankyou-next-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.thankyou-next-links a {
  font-size: 0.9375rem;
  color: rgba(245, 245, 245, 0.7);
  transition: color var(--t-fast);
}

.thankyou-next-links a:hover {
  color: var(--gold);
}

.thankyou-back {
  display: inline-block;
  margin-top: 32px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.3);
  transition: color var(--t-fast);
}

.thankyou-back:hover {
  color: rgba(245, 245, 245, 0.6);
}

/* Scroll-to-top button */
#scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background-color: var(--charcoal);
  border: 1px solid rgba(200, 164, 93, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--t-base), transform var(--t-base), border-color var(--t-fast);
  z-index: 100;
  pointer-events: none;
}

#scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#scroll-top:hover {
  border-color: var(--gold);
}

#scroll-top svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ============================================================
   15. RESPONSIVE — mobile-first, 480px and 768px breakpoints
   ============================================================ */

/* -- Mobile defaults (< 480px) -- */

.problem-cards {
  grid-template-columns: 1fr;
}

.testimonial-cards {
  grid-template-columns: 1fr;
}

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

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

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

.stats-large {
  grid-template-columns: 1fr 1fr;
}

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

.reset-pillar-card {
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 32px 24px;
}

.reset-pillar-number {
  font-size: 2.5rem;
}

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

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

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

.hero-logo {
  width: 200px;
}

.hero-ctas {
  flex-direction: column;
  align-items: stretch;
}

.hero-ctas .btn {
  width: 100%;
  justify-content: center;
}

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

.btn-group .btn {
  width: 100%;
  justify-content: center;
}

.pillar-item {
  flex-direction: column;
  gap: 8px;
}

.pillar-number {
  font-size: 2.25rem;
  min-width: unset;
}

.why-item {
  flex-direction: column;
  gap: 8px;
}

.why-number {
  font-size: 2rem;
  min-width: unset;
}

.quiz-result-ctas {
  align-items: stretch;
}

.quiz-result-ctas .btn {
  width: 100%;
  justify-content: center;
}

/* -- 480px and up -- */

@media (min-width: 480px) {
  .hero-ctas {
    flex-direction: row;
    align-items: center;
  }

  .hero-ctas .btn {
    width: auto;
  }

  .btn-group {
    flex-direction: row;
    align-items: center;
  }

  .btn-group .btn {
    width: auto;
  }

  .problem-cards {
    grid-template-columns: 1fr;
  }
}

/* -- 768px and up (desktop) -- */

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: inline-flex;
  }

  .nav-hamburger {
    display: none;
  }

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

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

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

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

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

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

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

  .reset-pillar-card {
    grid-template-columns: 120px 1fr;
    gap: 40px;
    padding: 48px 40px;
  }

  .reset-pillar-number {
    font-size: 4rem;
  }

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

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

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

  .hero-logo {
    width: 280px;
  }

  .pillar-item {
    flex-direction: row;
    align-items: baseline;
    gap: 24px;
  }

  .pillar-number {
    font-size: 3rem;
    min-width: 80px;
  }

  .why-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 28px;
  }

  .why-number {
    font-size: 2.5rem;
    min-width: 64px;
  }

  .quiz-result-ctas {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .quiz-result-ctas .btn {
    width: auto;
  }

  #scroll-top {
    bottom: 40px;
    right: 40px;
  }
}

@media (max-width: 480px) {
  .wrap {
    padding-left: max(20px, env(safe-area-inset-left, 20px));
    padding-right: max(20px, env(safe-area-inset-right, 20px));
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .stats-row {
    display: flex;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 0;
  }

  .stat-item {
    flex: 1 1 0%;
    min-width: 0;
    padding: 12px 6px;
    overflow: hidden;
  }

  .stat-value {
    font-size: 0.68rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
  }

  .stat-label {
    font-size: 0.54rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
  }

  .btn {
    display: block;
    width: calc(100% - 48px);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    box-sizing: border-box;
  }

  .hero-ctas,
  .btn-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0 24px;
    box-sizing: border-box;
  }
}


/* ============================================================
   16. MOBILE FIXES  (merged from styles/mobile-fixes.css,
   selectors mapped to this site's actual classes)
   ============================================================ */

/* Mobile-only line break helper (e.g. "Everything You Need.<br>...") */
.mobile-br { display: none; }

@media (max-width: 768px) {
  /* -- Global heading scale: no heading wraps past 2 lines -- */
  h1 { font-size: clamp(2rem, 7vw, 4rem); line-height: 1.1; }
  h2 { font-size: clamp(1.4rem, 5.5vw, 2.8rem); line-height: 1.15; }
  h3 { font-size: clamp(1.1rem, 4vw, 1.8rem); line-height: 1.2; }

  /* Apply the same baseline to the site's heading classes (they set
     their own font-size, so they need an explicit mobile override). */
  .hero-title  { font-size: clamp(2rem, 7vw, 4rem); line-height: 1.1; }
  .section-title { font-size: clamp(1.4rem, 5.5vw, 2.8rem); line-height: 1.15; }

  /* .page-hero .section-title has higher specificity than .section-title,
     so it needs its own mobile override or it stays at clamp(2rem,5vw,3.25rem). */
  .page-hero .section-title {
    font-size: clamp(1.4rem, 5.5vw, 2.4rem);
    line-height: 1.1;
  }

  /* -- "Not Sure Where to Start?" (gold assessment band) -- */
  .gold-band .section-title {
    font-size: clamp(1.3rem, 5.5vw, 2rem);
    line-height: 1.2;
    letter-spacing: 0.02em;
  }

  /* -- "Apply for the 12-Week Reset." (dark apply CTA) -- */
  .apply-cta .section-title {
    font-size: clamp(1.6rem, 6vw, 2.5rem);
    line-height: 1.15;
    overflow: visible;
  }

  /* -- "Everything You Need. Nothing You Don't." (What's Included) -- */
  .wrap:has(> .checklist-grid) > .section-title {
    font-size: clamp(1.5rem, 5.5vw, 2.2rem);
    line-height: 1.2;
  }
  .mobile-br { display: inline; }

  /* -- Section breathing room on mobile -- */
  section {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

@media (max-width: 480px) {
  /* -- Nav "Book a Call" CTA: keep compact on small screens -- */
  .nav-cta {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
  }
}


/* ============================================================
   17. TASK-ROUND MOBILE FIXES
   (centering, hero-stat un-clip, nav logo, logo backgrounds,
    CTA spacing) — selectors mapped to real classes.
   ============================================================ */

/* -- Fix 3.6 C/D: logos never sit on a background box -- */
.nav-logo,
.nav-logo img,
.footer-brand,
.footer-brand img {
  background: transparent;
}

/* -- Fix 5.2 / 6.1: "Ready to Reset" Apply button breathing room
      (applies to every dark apply-cta band) -- */
.apply-cta .btn-group {
  margin-top: 2rem;
  padding-top: 1rem;
}

/* -- Fix 7.1: apply-page logo emblem centered -- */
.apply-hero { text-align: center; }
.apply-hero img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* -- Fix 3.1: "Real Results" = hero stats row. Remove the ellipsis
      clipping added earlier so "Train · Fuel · Recover" and
      "Measurable. Documented." are fully visible. -- */
@media (max-width: 480px) {
  .stats-row {
    flex-wrap: wrap;
    overflow: visible;
  }
  .stat-item {
    overflow: visible;
    flex: 1 1 30%;
  }
  .stat-value,
  .stat-label {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
  }
}

@media (max-width: 768px) {
  /* -- Fix 3.1: hero breathing room so stats are not crowded/cropped -- */
  .hero { padding-bottom: 2rem; }

  /* -- Fix 3.5: nav logo not compressed on mobile -- */
  .nav-logo img {
    height: 40px;
    width: auto;
    max-width: none;
    object-fit: contain;
    flex-shrink: 0;
  }
  .nav-inner { align-items: center; }
  .nav-logo { flex-shrink: 0; }

  /* -- Fix 3.2: "You Train Inconsistently" Problem section centered -- */
  .problem-card,
  .problem-card h3,
  .problem-card p { text-align: center; }

  /* -- Fix 3.3: "The Solution" headers + pillar content centered -- */
  .pillar-item { align-items: center; text-align: center; }
  .pillar-content h3,
  .pillar-content p { text-align: center; }
  .solution-link { text-align: center; }

  /* -- Fix 3.4: "Take the Free Assessment" button centered -- */
  .gold-band .btn {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
  }

  /* -- Fix 4.1: About "Approach" section centered -- */
  .why-item { align-items: center; text-align: center; }
  .why-content h3,
  .why-content p { text-align: center; }

  /* -- Fix 5.1: Reset page text centered (checklist stays left) -- */
  .reset-page p,
  .reset-page h2,
  .reset-page h3 { text-align: center; }
  .reset-page .checklist,
  .reset-page .checklist li {
    text-align: left;
    align-items: flex-start;
  }
}
