/* ========================================
   ADHDaptive.web
======================================== */

/* ===== FONTS ===== */

@font-face {
  font-family: "Quicksand";
  src: url("assets/fonts/quicksand-regular-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Quicksand";
  src: url("assets/fonts/quicksand-medium-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Quicksand";
  src: url("assets/fonts/quicksand-semibold-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Quicksand";
  src: url("assets/fonts/quicksand-bold-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #001672;
  --navy-dark: #000d43;
  --green: #18501f;
  --green-light: #61ce70;
  --yellow: #ffd100;
  --orange: #ff9d4b;
  --ink: #1f2933;
  --muted: #596674;
  --page: #f3f8fc;
  --soft: #e8eef9;
  --white: #ffffff;
  --border: #d9e1ea;
  --shadow: 0 14px 40px rgba(0, 22, 114, 0.1);
  --radius: 18px;
  --content: 1160px;
}

/* ===== RESET ===== */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: "Quicksand", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--green);
  text-underline-offset: 0.18em;
}

a:hover,
a:focus {
  color: #267d36;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  color: var(--navy);
  line-height: 1.15;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.7rem, 7vw, 5.4rem);
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding: 0;
}

/* ===== ACCESSIBILITY ===== */

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  padding: 0.8rem 1rem;
  color: var(--white);
  background: var(--navy);
}

.skip-link:focus {
  top: 1rem;
}

/* ===== LAYOUT ===== */

.container {
  width: min(calc(100% - 2rem), var(--content));
  margin-inline: auto;
}

.narrow {
  max-width: 820px;
}

.section {
  padding: 5.5rem 0;
}

.section-soft {
  background: var(--soft);
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.section-heading-light h2,
.section-heading-light p {
  color: var(--white);
}

.eyebrow {
  margin-bottom: 0.65rem;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

/* ===== HEADER ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(243, 248, 252, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: 82px;
}

.brand {
  color: var(--navy);
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand:hover,
.brand:focus {
  color: var(--navy);
}

.brand-dot {
  color: var(--green);
}

.site-header nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
}

.nav-list a {
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-list a:hover,
.nav-list a:focus {
  color: var(--green);
  text-decoration: underline;
}

/* ===== BUTTONS ===== */

.button,
.button:link,
.button:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.3rem;
  color: var(--white);
  background: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 10px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.button:hover,
.button:focus {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.button-small {
  min-height: 42px;
  padding: 0.65rem 1rem;
  font-size: 0.92rem;
}

.button-light,
.button-light:link,
.button-light:visited {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.button-light:hover,
.button-light:focus {
  color: var(--navy);
  background: var(--yellow);
  border-color: var(--yellow);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2rem;
}

.text-link {
  font-weight: 800;
}

/* ===== HERO ===== */

.hero {
  padding: 6.5rem 0 5.5rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.85fr);
  align-items: center;
  gap: 4rem;
}

.hero-intro {
  max-width: 720px;
  color: var(--navy);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 700;
  line-height: 1.45;
}

.hero-copy>p:not(.eyebrow, .hero-intro) {
  max-width: 680px;
}

.hero-panel {
  position: relative;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel::before {
  position: absolute;
  top: -14px;
  right: 24px;
  width: 72px;
  height: 28px;
  background: var(--yellow);
  border-radius: 6px;
  content: "";
  transform: rotate(3deg);
}

.tick-list {
  display: grid;
  gap: 0.95rem;
  list-style: none;
}

.tick-list li {
  position: relative;
  padding-left: 1.8rem;
}

.tick-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--green);
  font-weight: 900;
  content: "✓";
}

/* ===== CARDS ===== */

.card-grid {
  display: grid;
  gap: 1.5rem;
}

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

.card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 22, 114, 0.06);
}

.card-number {
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

/* ===== INCLUDED ===== */

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 4rem;
}

.included-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.included-item {
  padding: 1.5rem;
  background: var(--white);
}

.included-item h3 {
  margin-bottom: 0.45rem;
  font-size: 1.1rem;
}

.included-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* ===== PRICING ===== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 1.5rem;
}

.price-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.price-card-featured {
  border: 3px solid var(--green-light);
  box-shadow: var(--shadow);
}

.price-label {
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card h3 {
  font-size: 2rem;
}

.plain-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.5rem;
  padding-left: 1.2rem;
}

.note-box {
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  background: var(--yellow);
  border-radius: var(--radius);
}

.note-box h3 {
  margin-bottom: 0.35rem;
}

.note-box p {
  margin: 0;
}

/* ===== PROCESS ===== */

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

.process-step {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius);
}

.process-step span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 1.2rem;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 50%;
  font-weight: 900;
  place-items: center;
}

.process-step h3 {
  color: var(--white);
}

.process-step p {
  margin: 0;
}

/* ===== ABOUT ===== */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 4rem;
}

/* ===== FAQ ===== */

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  padding: 1.2rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.faq-list summary {
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
}

.faq-list details p {
  margin: 1rem 0 0;
}

/* ===== CONTACT ===== */

.contact-section {
  padding: 4rem 0;
  background: var(--green);
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  color: var(--white);
}

.contact-panel h2,
.contact-panel .eyebrow {
  color: var(--white);
}

.contact-panel p {
  max-width: 700px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.contact-phone,
.contact-phone:link,
.contact-phone:visited {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.contact-phone:hover,
.contact-phone:focus {
  color: var(--yellow);
}

/* ===== FOOTER ===== */

.site-footer {
  padding: 2.5rem 0;
  color: var(--white);
  background: var(--navy-dark);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem 3rem;
  align-items: start;
}

.footer-brand {
  margin: 0 0 0.3rem;
  font-size: 1.35rem;
  font-weight: 900;
}

.footer-brand span {
  color: var(--green-light);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.2rem;
}

.footer-links a {
  color: var(--white);
}

.footer-company {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 960px) {
  .nav-list {
    display: none;
  }

  .site-header nav {
    margin-left: auto;
  }

  .hero-grid,
  .split-layout,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .card-grid-three,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-panel {
    max-width: 680px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 1rem;
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    padding: 4.5rem 0 4rem;
  }

  .header-inner {
    gap: 0.8rem;
    min-height: 70px;
  }

  .brand {
    font-size: 1.2rem;
  }

  .button-small {
    padding: 0.55rem 0.75rem;
    font-size: 0.82rem;
  }

  .included-list,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-actions {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-company {
    grid-column: 1;
  }
}