/* ==============================================
   ADHDTACTICAL — Design System & Styles
   ============================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* --- Tokens --- */
:root {
  --navy:        #1e3a8a;
  --blue:        #2E6FD8;
  --blue-light:  #60a5fa;
  --blue-tint:   #eff6ff;
  --text:        #0f172a;
  --text-muted:  #475569;
  --bg:          #ffffff;
  --bg-subtle:   #f8fafc;
  --border:      #e2e8f0;
  --white:       #ffffff;

  --font: 'Inter', system-ui, -apple-system, sans-serif;

  --container:    1200px;
  --section-v:    96px;
  --radius:       6px;
  --radius-lg:    12px;
  --shadow:       0 1px 3px rgba(0,0,0,.10), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:    0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg:    0 10px 15px rgba(0,0,0,.10), 0 4px 6px rgba(0,0,0,.05);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Layout --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section        { padding: var(--section-v) 0; }
.section--subtle { background: var(--bg-subtle); }
.section--navy   { background: var(--navy); color: var(--white); }
.section--blue   { background: var(--blue); color: var(--white); }
.section--dark   { background: #0f172a; color: var(--white); }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.eyebrow {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  display: block;
}
.section--navy .eyebrow,
.section--blue .eyebrow,
.section--dark .eyebrow { color: var(--blue-light); }

.section-title {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
}
.section-header          { margin-bottom: 56px; }
.section-header--center  { text-align: center; }
.section-header--center .section-subtitle { margin: 0 auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .15s ease;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn-lg { padding: 16px 36px; font-size: 1.0625rem; }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover { background: #1d5bbf; border-color: #1d5bbf; }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: var(--white); }

.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-ghost-white:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

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

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo img { height: 34px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .15s;
}
.nav-links a:hover { color: var(--text); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-login {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .15s;
}
.nav-login:hover { color: var(--text); }
.nav-cta { padding: 10px 20px; font-size: .9375rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .25s;
}

/* =============================================
   HOMEPAGE — HERO
   ============================================= */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 100px 0 96px;
}
.hero-eyebrow {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 24px;
  display: block;
}
.hero-headline {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  max-width: 860px;
}
.hero-subheadline {
  font-size: 1.1875rem;
  color: rgba(255,255,255,.82);
  max-width: 620px;
  margin-bottom: 16px;
  line-height: 1.65;
  font-weight: 400;
}
.hero-tagline {
  font-size: 1.125rem;
  font-weight: 600;
  font-style: italic;
  color: var(--blue-light);
  margin-bottom: 48px;
}

/* =============================================
   HOMEPAGE — RECOGNITION
   ============================================= */
.recognition-label {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}
.recognition-intro {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 760px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.recognition-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.recognition-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 22px 24px;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.55;
  box-shadow: var(--shadow);
}
.recognition-closing {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 760px;
  line-height: 1.75;
}

/* =============================================
   HOMEPAGE — PROBLEM
   ============================================= */
.problem-content {
  max-width: 800px;
}
.problem-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.78;
}
.problem-content p:last-child { margin-bottom: 0; }

/* =============================================
   HOMEPAGE — SOLUTION
   ============================================= */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pillar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
}
.pillar-tag {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
  display: block;
}
.pillar-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}
.pillar ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pillar li {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}
.pillar li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-light);
}

/* =============================================
   HOMEPAGE — JOURNEY
   ============================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.67% + 16px);
  right: calc(16.67% + 16px);
  height: 2px;
  background: rgba(255,255,255,.18);
}
.step { text-align: center; }
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.step-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.step-desc {
  font-size: .9375rem;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
}
.journey-cta { text-align: center; margin-top: 56px; }

/* =============================================
   HOMEPAGE — ABOUT
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: center;
}
.about-content p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.78;
}
.about-content p:last-of-type { margin-bottom: 0; }
.about-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--blue);
  margin-top: 28px;
  font-size: 1rem;
  transition: gap .15s;
}
.about-link:hover { gap: 10px; }
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center top;
}

/* =============================================
   HOMEPAGE — SOCIAL PROOF
   ============================================= */
.proof-lead {
  text-align: center;
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.proof-lead strong { color: var(--navy); }
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.testimonial-quote {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.78;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  font-weight: 700;
  color: var(--navy);
  font-size: .9375rem;
}

/* =============================================
   HOMEPAGE — CLOSING CTA
   ============================================= */
.cta-headline {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 680px;
}
.cta-body {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 16px;
  max-width: 600px;
  line-height: 1.75;
}
.cta-body-2 {
  font-size: 1rem;
  color: rgba(255,255,255,.72);
  margin-bottom: 44px;
  max-width: 560px;
  line-height: 1.7;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #0f172a;
  color: rgba(255,255,255,.55);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-logo img { height: 26px; width: auto; opacity: .75; }
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  transition: color .15s;
}
.footer-links a:hover { color: var(--white); }
.footer-copy {
  font-size: .8125rem;
  color: rgba(255,255,255,.3);
  width: 100%;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0 72px;
}
.page-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.page-hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,.75);
  max-width: 600px;
  line-height: 1.65;
}

/* =============================================
   COACHING PAGE
   ============================================= */
.coaching-includes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 72px;
}
.include-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.include-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--blue-tint);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.include-text h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}
.include-text p {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.pricing-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  text-align: center;
  max-width: 460px;
  margin: 0 auto 72px;
}
.pricing-price {
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}
.pricing-period {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 36px;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
  text-align: left;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9375rem;
  color: rgba(255,255,255,.85);
  line-height: 1.5;
}
.pricing-features li::before {
  content: '✓';
  color: var(--blue-light);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-note {
  font-size: .8125rem;
  color: rgba(255,255,255,.45);
  margin-top: 16px;
  line-height: 1.5;
}

.cacc-embed { max-width: 760px; margin: 0 auto; }

.not-ready {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  max-width: 600px;
  margin: 48px auto 0;
}
.not-ready p { color: var(--text-muted); margin-bottom: 16px; font-size: 1rem; }
.not-ready a { color: var(--blue); font-weight: 600; }

/* =============================================
   FAQ / ACCORDION
   ============================================= */
.faq { max-width: 800px; margin: 0 auto; }
details.faq-item { border-bottom: 1px solid var(--border); }
details.faq-item:first-of-type { border-top: 1px solid var(--border); }

summary.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  list-style: none;
  user-select: none;
}
summary.faq-question::-webkit-details-marker { display: none; }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-tint);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform .2s;
  line-height: 1;
}
details[open] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding-bottom: 24px;
  color: var(--text-muted);
  font-size: .9375rem;
  line-height: 1.78;
}

/* =============================================
   STRATEGY CALL PAGE
   ============================================= */
.deliverables {
  max-width: 680px;
  margin: 0 auto 64px;
}
.deliverable {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.deliverable:first-child { border-top: 1px solid var(--border); }
.deliverable-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-tint);
  color: var(--blue);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.deliverable-text h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}
.deliverable-text p {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =============================================
   ABOUT FULL PAGE
   ============================================= */
.about-full-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 72px;
  align-items: start;
}
.about-full-content p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.8;
}
.about-full-content p:last-of-type { margin-bottom: 0; }
.about-full-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 96px;
}
.about-full-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
}
.about-full-cta {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.about-full-cta h3 {
  font-size: 1.75rem;
  margin-bottom: 12px;
  color: var(--navy);
}
.about-full-cta p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1rem;
}

/* =============================================
   BLOG PAGE
   ============================================= */
.blog-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.blog-content p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.78;
}

/* =============================================
   CLIENT LOGIN PAGE
   ============================================= */
.login-centered {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.login-card {
  max-width: 440px;
}
.login-card h2 {
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.login-card p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1rem;
}

/* =============================================
   UTILITIES
   ============================================= */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .pillar:last-child { grid-column: 1 / -1; max-width: calc(50% - 14px); }
  .about-grid { grid-template-columns: 1fr 340px; gap: 56px; }
  .about-full-grid { grid-template-columns: 1fr 280px; gap: 56px; }
}

@media (max-width: 768px) {
  :root { --section-v: 64px; }

  /* Nav mobile */
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-actions { display: none; }
  .nav-toggle { display: flex; }

  /* Sections */
  .hero { padding: 72px 0 64px; }

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

  .pillars { grid-template-columns: 1fr; }
  .pillar:last-child { grid-column: auto; max-width: none; }

  .steps {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .steps::before { display: none; }
  .step {
    text-align: left;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    align-items: start;
  }
  .step-number { margin: 0; }
  .step-title, .step-desc { text-align: left; }

  .about-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .about-image img { height: 320px; }

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

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

  .pricing-card { padding: 40px 28px; }

  .about-full-grid { grid-template-columns: 1fr; }
  .about-full-image { position: static; order: -1; }
  .about-full-image img { height: 280px; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
}
