/* =============================================
   DigSetSpike — Alternative Design
   ============================================= */

:root {
  --c-green-dark:  #005a4f;
  --c-green:       #007565;
  --c-green-mid:   #08a889;
  --c-green-light: #00c9a7;
  --c-gold:        #f59e0b;
  --c-gold-dark:   #d97706;
  --c-dark:        #0f1e1c;
  --c-dark2:       #1a2e2b;
  --c-slate:       #374151;
  --c-muted:       #6b7280;
  --c-border:      #e5e7eb;
  --c-light:       #f8fafb;
  --c-white:       #ffffff;

  --font-body:    'Inter', 'Mulish', sans-serif;
  --font-heading: 'Poppins', sans-serif;

  --max-w: 1160px;
  --r: 10px;
  --transition: 0.22s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--c-slate);
  background: var(--c-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--c-green); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: var(--font-heading); line-height: 1.2; color: var(--c-dark); }

.skip-link {
  position: absolute; left: -9999px; top: 5px; z-index: 999;
  background: #fff; color: #000; padding: .5rem 1rem;
}
.skip-link:focus { left: 5px; }

/* =============================================
   Utilities
   ============================================= */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.tag {
  display: inline-block;
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--c-green-mid); background: rgba(8,168,137,.1);
  padding: .3rem .8rem; border-radius: 999px; margin-bottom: .85rem;
}
.text-center { text-align: center; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

.h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); font-weight: 700; margin-bottom: 1rem; }
.lead { font-size: 1.1rem; color: var(--c-muted); max-width: 620px; line-height: 1.75; }
.lead-center { margin: 0 auto; text-align: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .75rem 1.75rem; border-radius: var(--r);
  font-family: var(--font-heading); font-weight: 600; font-size: .9rem;
  letter-spacing: .02em; cursor: pointer; border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none !important;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-green {
  background: var(--c-green); color: #fff; border-color: var(--c-green);
}
.btn-green:hover { background: var(--c-green-dark); border-color: var(--c-green-dark); box-shadow: 0 6px 20px rgba(0,117,101,.35); }

.btn-gold {
  background: var(--c-gold); color: #fff; border-color: var(--c-gold);
}
.btn-gold:hover { background: var(--c-gold-dark); border-color: var(--c-gold-dark); box-shadow: 0 6px 20px rgba(245,158,11,.4); }

.btn-outline-white {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.btn-outline-green {
  background: transparent; color: var(--c-green); border-color: var(--c-green);
}
.btn-outline-green:hover { background: var(--c-green); color: #fff; }

.btn-lg { padding: .9rem 2.2rem; font-size: 1rem; }

/* =============================================
   Header
   ============================================= */
.alt-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow var(--transition);
}
.alt-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.08); }

.alt-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 1.5rem;
}

.alt-logo { display: flex; align-items: center; text-decoration: none !important; }
.site-logo-img { height: 42px; width: auto; display: block; }

.alt-nav ul { display: flex; align-items: center; gap: 2rem; }
.alt-nav a {
  font-size: .85rem; font-weight: 600; color: var(--c-slate);
  text-transform: uppercase; letter-spacing: .06em; text-decoration: none;
  transition: color var(--transition);
}
.alt-nav a:hover { color: var(--c-green); text-decoration: none; }
.alt-nav a[aria-current="page"] { color: var(--c-green); }

.alt-nav-toggle, .alt-nav-close {
  display: none; background: none; border: none; cursor: pointer; color: var(--c-dark); padding: .25rem;
}
.alt-nav-toggle svg, .alt-nav-close svg { fill: currentColor; display: block; }

/* =============================================
   Hero
   ============================================= */
.alt-hero {
  position: relative; overflow: hidden;
  min-height: 92vh; display: flex; align-items: center;
  background: var(--c-dark);
}

.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 60% 40%, rgba(0,117,101,.65) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 20% 80%, rgba(8,168,137,.3) 0%, transparent 55%),
    var(--c-dark);
}

/* Subtle volleyball net lines */
.hero-grid {
  position: absolute; inset: 0; opacity: .04;
  background-image:
    linear-gradient(0deg, rgba(255,255,255,.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-circle {
  position: absolute; right: -200px; top: 50%; transform: translateY(-50%);
  width: 700px; height: 700px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
  pointer-events: none;
}
.hero-circle::before {
  content: ''; position: absolute; inset: 60px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
}
.hero-circle::after {
  content: ''; position: absolute; inset: 130px; border-radius: 50%;
  border: 1px solid rgba(8,168,137,.15);
}

.hero-body {
  position: relative; z-index: 1;
  padding: 6rem 1.5rem;
  max-width: var(--max-w); margin: 0 auto; width: 100%;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em;
  color: var(--c-green-light); margin-bottom: 1.75rem;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--c-green-light); border-radius: 2px;
}

.hero-headline {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: #fff; line-height: 1.05;
  margin-bottom: 1.5rem; max-width: 820px;
}
.hero-headline em { font-style: normal; color: var(--c-green-light); }

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.72); max-width: 520px;
  margin-bottom: 2.5rem; line-height: 1.75;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 4rem; }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 2rem;
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 2rem;
}
.hero-trust-item {
  display: flex; align-items: center; gap: .6rem;
}
.hero-trust-item svg { width: 18px; height: 18px; fill: var(--c-green-light); flex-shrink: 0; }
.hero-trust-item span { font-size: .85rem; color: rgba(255,255,255,.7); }

/* =============================================
   Stats Strip
   ============================================= */
.stats-strip {
  background: linear-gradient(135deg, var(--c-green) 0%, var(--c-green-mid) 100%);
  padding: 2.5rem 0;
}
.stats-strip .wrap {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1rem; text-align: center;
}
.stat-item {}
.stat-n {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.75rem); color: #fff;
  line-height: 1;
}
.stat-l { font-size: .85rem; color: rgba(255,255,255,.8); margin-top: .3rem; }

/* =============================================
   Approach
   ============================================= */
.approach-bg { background: var(--c-light); }

.approach-steps {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 0; margin-top: 3.5rem; position: relative;
}
/* connector line */
.approach-steps::before {
  content: ''; position: absolute;
  top: 40px; left: calc(16.66% + 1rem); right: calc(16.66% + 1rem);
  height: 2px; background: linear-gradient(90deg, var(--c-green), var(--c-green-mid));
  z-index: 0;
}

.step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 2rem 2rem; position: relative; z-index: 1;
}
.step-num {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-green), var(--c-green-mid));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; color: #fff;
  margin-bottom: 1.5rem; flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0,117,101,.3);
}
.step h3 { font-size: 1.2rem; margin-bottom: .6rem; color: var(--c-dark); }
.step p { color: var(--c-muted); font-size: .95rem; line-height: 1.7; }

/* =============================================
   Programs
   ============================================= */
.programs-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 2rem; margin-top: 3.5rem;
}

.program-card {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--c-border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.program-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,.1); transform: translateY(-4px); }

.program-card-top {
  padding: 2.5rem 2.5rem 2rem;
  background: linear-gradient(135deg, var(--c-green-dark) 0%, var(--c-green) 100%);
  color: #fff;
}
.program-card-top.gold {
  background: linear-gradient(135deg, #92400e, var(--c-gold));
}

.program-type {
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.7); margin-bottom: .5rem;
}
.program-card-top h3 { font-size: 1.6rem; color: #fff; margin-bottom: .5rem; }
.program-card-top .tagline { color: rgba(255,255,255,.8); font-size: .95rem; }

.program-card-body { padding: 2rem 2.5rem 2.5rem; background: #fff; }

.program-features { margin-bottom: 2rem; }
.program-features li {
  display: flex; align-items: flex-start; gap: .6rem;
  padding: .55rem 0; border-bottom: 1px solid var(--c-border);
  font-size: .93rem; color: var(--c-slate);
}
.program-features li:last-child { border-bottom: none; }
.program-features li::before {
  content: ''; display: block; width: 18px; height: 18px; border-radius: 50%;
  background-color: var(--c-green);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='white' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
  flex-shrink: 0; margin-top: 2px;
}

/* =============================================
   Coach
   ============================================= */
.coach-section { background: var(--c-dark); color: #fff; overflow: hidden; }

.coach-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}

.coach-photo-wrap { position: relative; }
.coach-photo {
  border-radius: 16px; overflow: hidden;
  aspect-ratio: 3/4; background: var(--c-dark2);
  display: flex; align-items: center; justify-content: center;
}
.coach-photo-placeholder {
  text-align: center; padding: 3rem; color: rgba(255,255,255,.2);
}
.coach-photo-placeholder svg { width: 80px; height: 80px; fill: rgba(255,255,255,.15); margin: 0 auto 1rem; }
.coach-photo-placeholder p { font-size: .85rem; }
.coach-photo img { width: 100%; height: 100%; object-fit: cover; }

.coach-card {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: linear-gradient(135deg, var(--c-green), var(--c-green-mid));
  border-radius: 12px; padding: 1.25rem 1.5rem; min-width: 200px;
}
.coach-card .years { font-family: var(--font-heading); font-weight: 800; font-size: 2rem; color: #fff; }
.coach-card .years-label { font-size: .8rem; color: rgba(255,255,255,.8); }

.coach-content .tag { background: rgba(0,201,167,.15); color: var(--c-green-light); }
.coach-content .h2 { color: #fff; }
.coach-content .lead { color: rgba(255,255,255,.7); max-width: none; }

.coach-bio { color: rgba(255,255,255,.6); font-size: .95rem; line-height: 1.8; margin: 1.5rem 0 2rem; }

.cert-badges { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2rem; }
.cert-badge {
  display: flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; padding: .6rem 1rem;
  font-size: .8rem; color: rgba(255,255,255,.8); font-weight: 600;
}
.cert-badge svg { width: 16px; height: 16px; fill: var(--c-green-light); }

/* =============================================
   Upcoming Clinic
   ============================================= */
.clinic-section { background: var(--c-light); }

.clinic-card {
  background: #fff; border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,.08);
  overflow: hidden; display: grid; grid-template-columns: 5fr 3fr;
  margin-top: 3rem;
}

.clinic-main { padding: 3rem; }
.clinic-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(245,158,11,.1); color: var(--c-gold-dark);
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  padding: .35rem .9rem; border-radius: 999px; margin-bottom: 1.25rem;
}
.clinic-main h3 { font-size: 1.75rem; color: var(--c-dark); margin-bottom: .5rem; }
.clinic-main .clinic-sub { color: var(--c-muted); font-size: .95rem; margin-bottom: 2rem; }

.clinic-meta { display: flex; flex-direction: column; gap: .9rem; margin-bottom: 2rem; }
.clinic-meta-item {
  display: flex; align-items: flex-start; gap: .75rem; font-size: .9rem;
}
.clinic-meta-item svg { width: 18px; height: 18px; fill: var(--c-green); flex-shrink: 0; margin-top: 2px; }
.clinic-meta-item strong { color: var(--c-dark); }
.clinic-meta-item span { color: var(--c-muted); }

.clinic-aside {
  background: linear-gradient(160deg, var(--c-green) 0%, var(--c-green-mid) 100%);
  padding: 3rem 2rem;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
}
.clinic-aside .price-label { color: rgba(255,255,255,.75); font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .5rem; }
.clinic-aside .price { font-family: var(--font-heading); font-weight: 800; font-size: 2.5rem; color: #fff; margin-bottom: 2rem; }
.clinic-aside .btn { width: 100%; justify-content: center; }
.clinic-aside .note { color: rgba(255,255,255,.6); font-size: .78rem; margin-top: 1rem; line-height: 1.5; }

/* =============================================
   Features / Why us
   ============================================= */
.features-alt {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2rem; margin-top: 3.5rem;
}

/* Homepage resources/guides grid (3 cards in a 2-col layout, collapses on mobile) */
.resource-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 2rem; margin-top: 3rem;
}
.resource-grid > * { min-width: 0; }
@media (max-width: 768px) {
  .resource-grid { grid-template-columns: 1fr; }
}
.feature-alt {
  padding: 2.25rem; border-radius: 14px;
  border: 1px solid var(--c-border);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.feature-alt:hover {
  border-color: var(--c-green-mid);
  box-shadow: 0 8px 32px rgba(0,117,101,.1);
}
.feature-alt-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,117,101,.12), rgba(8,168,137,.12));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.feature-alt-icon svg { width: 26px; height: 26px; fill: var(--c-green); }
.feature-alt h3 { font-size: 1.05rem; margin-bottom: .5rem; color: var(--c-dark); }
.feature-alt p { font-size: .9rem; color: var(--c-muted); line-height: 1.7; }

/* =============================================
   Testimonials
   ============================================= */
.testimonials-bg { background: var(--c-light); }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.testimonial-card {
  background: #fff; border-radius: 14px;
  padding: 2rem; border: 1px solid var(--c-border);
}
.stars { color: var(--c-gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: .05em; }
.testimonial-text { font-size: .93rem; color: var(--c-slate); line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--c-green), var(--c-green-mid));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; color: #fff; font-size: .9rem;
}
.author-name { font-weight: 700; font-size: .88rem; color: var(--c-dark); }
.author-role { font-size: .78rem; color: var(--c-muted); }

/* =============================================
   FAQ
   ============================================= */
.faq-list { max-width: 780px; margin: 3rem auto 0; }
details {
  border-bottom: 1px solid var(--c-border); padding: 1.25rem 0;
}
details:first-child { border-top: 1px solid var(--c-border); }
details summary {
  font-family: var(--font-heading); font-weight: 600; font-size: 1rem;
  color: var(--c-dark); cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--c-green);
  flex-shrink: 0; transition: transform var(--transition);
}
details[open] summary::after { transform: rotate(45deg); }
details .faq-body { padding-top: .85rem; color: var(--c-muted); font-size: .95rem; line-height: 1.8; }

/* =============================================
   CTA Section
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--c-green-dark) 0%, var(--c-green) 50%, var(--c-green-mid) 100%);
  padding: 6rem 0; text-align: center; overflow: hidden; position: relative;
}
.cta-section::before {
  content: '🏐'; position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  font-size: 14rem; opacity: .04; line-height: 1;
}
.cta-section .h2 { color: #fff; max-width: 650px; margin: 0 auto 1rem; }
.cta-section .lead { color: rgba(255,255,255,.8); }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; }

/* =============================================
   Footer
   ============================================= */
.alt-footer { background: var(--c-dark); padding: 4rem 0 1.5rem; }

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}

.footer-brand-block .fn {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem;
  color: #fff; margin-bottom: .6rem;
}
.footer-brand-block p { font-size: .88rem; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 1.25rem; }

.footer-socials { display: flex; gap: .6rem; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.6);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.footer-socials a:hover { background: var(--c-green-mid); color: #fff; }
.footer-socials svg { width: 16px; height: 16px; fill: currentColor; }

.footer-col-head {
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--c-green-light); margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-links a:hover { color: #fff; text-decoration: none; }

.footer-bar {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .5rem;
  font-size: .8rem; color: rgba(255,255,255,.35);
}
.footer-bar a { color: rgba(255,255,255,.35); }
.footer-bar a:hover { color: rgba(255,255,255,.7); text-decoration: none; }

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 960px) {
  .programs-grid { grid-template-columns: 1fr; }
  .coach-grid { grid-template-columns: 1fr; }
  .coach-photo-wrap { max-width: 380px; margin: 0 auto; }
  .coach-card { left: 0; }
  .clinic-card { grid-template-columns: 1fr; }
  .clinic-aside { padding: 2rem; }
  .features-alt { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .approach-steps::before { display: none; }
}

/* Nav collapses to hamburger at 768px — desktop links overflow below that */
@media (max-width: 768px) {
  .alt-nav-toggle { display: block; }
  .alt-nav { display: none; }
}

/* Mobile nav drawer — lives in <body>, not inside the sticky header,
   so position:fixed inset:0 always covers the full viewport */
.mobile-nav-drawer { display: none; }

@media (max-width: 768px) {
  .mobile-nav-drawer {
    display: flex; flex-direction: column;
    position: fixed; inset: 0; z-index: 9999;
    background: #fff;
    padding: 2rem 1.5rem;
    transform: translateX(100%); transition: transform .25s ease;
    overflow-y: auto; overscroll-behavior: contain;
  }
  .mobile-nav-drawer.is-open { transform: translateX(0); }
  .mobile-nav-drawer .alt-nav-close {
    display: block; align-self: flex-end; margin-bottom: 2rem;
    background: none; border: none; cursor: pointer; color: var(--c-dark); padding: .25rem;
  }
  .mobile-nav-drawer .alt-nav-close svg { fill: currentColor; display: block; }
  .mobile-nav-drawer nav ul { display: flex; flex-direction: column; gap: 1.5rem; }
  .mobile-nav-drawer nav a {
    font-size: 1.1rem; font-weight: 600; color: var(--c-dark);
    text-transform: uppercase; letter-spacing: .06em; text-decoration: none;
  }
  .mobile-nav-drawer nav a:hover { color: var(--c-green); }
  .mobile-nav-drawer .btn { display: block; text-align: center; margin-top: .5rem; }
}

@media (max-width: 640px) {
  .stats-strip .wrap { grid-template-columns: repeat(2,1fr); }
  .approach-steps { grid-template-columns: 1fr; }
  .features-alt { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* =============================================
   Guide / Resource Pages
   ============================================= */

/* Page hero (smaller than landing hero) */
.guide-hero {
  background: linear-gradient(135deg, var(--c-green-dark) 0%, var(--c-green) 100%);
  padding: 4rem 0 3.5rem; color: #fff;
}
.guide-breadcrumb {
  display: flex; align-items: center; gap: .4rem;
  font-size: .8rem; color: rgba(255,255,255,.6);
  margin-bottom: 1.25rem;
}
.guide-breadcrumb a { color: rgba(255,255,255,.6); text-decoration: none; }
.guide-breadcrumb a:hover { color: #fff; }
.guide-breadcrumb span { color: rgba(255,255,255,.35); }
.guide-hero h1 {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.75rem); color: #fff;
  max-width: 780px; margin-bottom: 1rem; line-height: 1.15;
}
.guide-hero .subtitle {
  font-size: 1.05rem; color: rgba(255,255,255,.8); max-width: 620px; line-height: 1.7;
}
.guide-meta {
  display: flex; flex-wrap: wrap; gap: 1.25rem;
  margin-top: 1.5rem;
}
.guide-meta-item {
  display: flex; align-items: center; gap: .4rem;
  font-size: .8rem; color: rgba(255,255,255,.6);
}
.guide-meta-item svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }

/* Guide body layout */
.guide-body {
  padding: 4rem 0 6rem;
}
.guide-layout {
  display: grid; grid-template-columns: 1fr 300px;
  gap: 4rem; align-items: start;
}

/* Guide prose */
.guide-prose h2 {
  font-size: 1.5rem; color: var(--c-dark);
  margin: 2.5rem 0 .75rem;
  padding-top: 2rem; border-top: 1px solid var(--c-border);
}
.guide-prose h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.guide-prose h3 { font-size: 1.1rem; color: var(--c-dark); margin: 1.5rem 0 .5rem; }
.guide-prose p { color: var(--c-slate); line-height: 1.8; margin-bottom: 1rem; font-size: .97rem; }
.guide-prose ul, .guide-prose ol {
  margin: .75rem 0 1rem 1.25rem; color: var(--c-slate); font-size: .97rem;
}
.guide-prose ul { list-style: disc; }
.guide-prose ol { list-style: decimal; }
.guide-prose li { margin-bottom: .5rem; line-height: 1.7; }
.guide-prose a { color: var(--c-green); font-weight: 600; }
.guide-prose a:hover { color: var(--c-green-dark); }
.guide-prose strong { color: var(--c-dark); font-weight: 600; }

/* Callout boxes */
.callout {
  border-radius: 12px; padding: 1.5rem 1.75rem; margin: 1.75rem 0;
}
.callout-green {
  background: rgba(0,117,101,.07); border-left: 4px solid var(--c-green);
}
.callout-gold {
  background: rgba(245,158,11,.08); border-left: 4px solid var(--c-gold);
}
.callout-slate {
  background: var(--c-light); border-left: 4px solid #cbd5e0;
}
.callout-title {
  font-family: var(--font-heading); font-weight: 700; font-size: .85rem;
  text-transform: uppercase; letter-spacing: .07em; margin-bottom: .5rem;
}
.callout-green .callout-title { color: var(--c-green); }
.callout-gold  .callout-title { color: var(--c-gold-dark); }
.callout-slate .callout-title { color: var(--c-slate); }
.callout p, .callout ul { font-size: .92rem; color: var(--c-slate); line-height: 1.7; }
.callout ul { margin: .5rem 0 0 1.2rem; list-style: disc; }
.callout li { margin-bottom: .35rem; }

/* Disclaimer / updated notice */
.updated-notice {
  display: inline-flex;
  align-items: flex-start;
  gap: .5rem;
  background: rgba(245,158,11,.1);
  color: var(--c-gold-dark);
  font-size: .82rem;
  font-weight: 500;
  line-height: 1.6;
  padding: .75rem 1rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}
.updated-notice svg { width: 15px; height: 15px; fill: currentColor; flex-shrink: 0; margin-top: 2px; }

/* Age group lookup widget */
.ag-widget {
  background: var(--c-dark); border-radius: 16px; padding: 2rem;
  margin: 2rem 0;
}
.ag-widget-title {
  font-family: var(--font-heading); font-weight: 700; font-size: 1rem;
  color: #fff; margin-bottom: .35rem;
}
.ag-widget-sub { font-size: .82rem; color: rgba(255,255,255,.9); margin-bottom: 1.25rem; }
.ag-tabs { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.25rem; }
.ag-tab {
  padding: .45rem 1rem; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.3);
  background: transparent; color: #fff;
  font-size: .82rem; font-weight: 600; cursor: pointer;
  text-decoration: none; transition: all .18s ease;
  display: inline-block;
}
.ag-tab:hover, .ag-tab.active {
  background: var(--c-green); border-color: var(--c-green); color: #fff;
  text-decoration: none;
}
.ag-link-area { }
.ag-main-link {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; padding: 1rem 1.25rem;
  color: #fff; text-decoration: none; font-size: .9rem; font-weight: 600;
  transition: background .18s ease;
}
.ag-main-link:hover { background: rgba(0,117,101,.4); text-decoration: none; }
.ag-main-link svg { width: 18px; height: 18px; fill: var(--c-green-light); flex-shrink: 0; }
.ag-powered { font-size: .72rem; color: rgba(255,255,255,.75); margin-top: .75rem; }
.ag-powered a { color: #fff; }

/* Comparison table */
.compare-table {
  width: 100%; border-collapse: collapse; margin: 1.75rem 0;
  font-size: .9rem;
}
.compare-table th {
  background: var(--c-dark); color: #fff;
  font-family: var(--font-heading); font-weight: 600; font-size: .85rem;
  padding: .85rem 1rem; text-align: left;
}
.compare-table th:first-child { border-radius: 8px 0 0 0; }
.compare-table th:last-child  { border-radius: 0 8px 0 0; }
.compare-table td {
  padding: .75rem 1rem; border-bottom: 1px solid var(--c-border);
  color: var(--c-slate); line-height: 1.55; vertical-align: top;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--c-light); }
.compare-table .row-label { font-weight: 600; color: var(--c-dark); white-space: nowrap; }
.cell-pro  { color: #059669; font-weight: 600; }
.cell-con  { color: #dc2626; font-weight: 600; }
.cell-note { color: var(--c-muted); font-size: .85rem; }

/* Check/cross lists */
.check-list { margin: .5rem 0 1rem; padding-left: 0; list-style: none; }
.check-list li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .93rem; color: var(--c-slate); margin-bottom: .5rem; line-height: 1.6;
}
.check-list li::before {
  content: ''; flex-shrink: 0; width: 20px; height: 20px;
  border-radius: 50%; background-size: 12px; background-repeat: no-repeat;
  background-position: center; margin-top: 2px;
}
.check-list.pros li::before {
  background-color: #d1fae5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23059669' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
}
.check-list.cons li::before {
  background-color: #fee2e2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23dc2626' d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
}

/* Guide sidebar */
.guide-sidebar { position: sticky; top: 84px; }
.sidebar-card {
  background: #fff; border-radius: 14px; border: 1px solid var(--c-border);
  overflow: hidden; margin-bottom: 1.5rem;
}
.sidebar-card-head {
  background: linear-gradient(135deg, var(--c-green), var(--c-green-mid));
  padding: 1.25rem 1.5rem; color: #fff;
  font-family: var(--font-heading); font-weight: 700; font-size: .95rem;
}
.sidebar-card-body { padding: 1.25rem 1.5rem; }
.sidebar-card-body p { font-size: .88rem; color: var(--c-muted); line-height: 1.7; margin-bottom: 1rem; }
.sidebar-card-body .btn { width: 100%; justify-content: center; font-size: .85rem; padding: .6rem 1rem; }
.sidebar-nav { display: flex; flex-direction: column; gap: .1rem; }
.sidebar-nav a {
  font-size: .85rem; color: var(--c-muted); padding: .45rem .5rem;
  border-radius: 6px; display: flex; align-items: center; gap: .4rem;
  transition: background .15s, color .15s; text-decoration: none;
}
.sidebar-nav a::before { content: '#'; color: var(--c-green); font-weight: 700; }
.sidebar-nav a:hover { background: var(--c-light); color: var(--c-dark); text-decoration: none; }

.related-guide {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .9rem 1.5rem; border-top: 1px solid var(--c-border);
  text-decoration: none;
}
.related-guide:first-child { border-top: none; }
.related-guide:hover { background: var(--c-light); text-decoration: none; }
.related-guide-icon {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(0,117,101,.12), rgba(8,168,137,.12));
  display: flex; align-items: center; justify-content: center;
}
.related-guide-icon svg { width: 18px; height: 18px; fill: var(--c-green); }
.related-guide-title { font-size: .83rem; font-weight: 600; color: var(--c-dark); line-height: 1.35; }
.related-guide-tag { font-size: .72rem; color: var(--c-muted); margin-top: .15rem; }

/* Talent score badge */
.talent-score-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  background: linear-gradient(135deg, var(--c-green), var(--c-green-mid));
  color: #fff; font-family: var(--font-heading); font-weight: 700;
  font-size: .8rem; padding: .35rem .9rem; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .05em;
}

/* Guide page responsive */
@media (max-width: 860px) {
  .guide-layout { grid-template-columns: 1fr; }
  .guide-sidebar { position: static; }
}
@media (max-width: 580px) {
  .guide-hero { padding: 2.5rem 0 2rem; }
  .compare-table { font-size: .82rem; }
  .compare-table td, .compare-table th { padding: .6rem .7rem; }
}
