/* =========================================================
   Mind Soar Limited - mindsoar.buzz
   Light fresh-mint systems integration theme
   Body: mint-white #F2FAF7 | Text: green-teal #22403A
   Accent: fresh-mint #2E9E8F | Deep: #142E28
   ========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background-color: #F2FAF7;
  color: #22403A;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: #1E8A7B;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #142E28;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  color: #142E28;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.01em;
}

h2 {
  font-size: 34px;
}

h3 {
  font-size: 22px;
}

/* ---------- Reusable helpers ---------- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  background-color: #1E8A7B;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-head p {
  margin-top: 14px;
  font-size: 17px;
  color: #5E7A72;
}

.strip-intro {
  font-size: 17px;
  color: #22403A;
  max-width: 880px;
  margin-bottom: 32px;
}

.section-note {
  margin-top: 40px;
  font-size: 16px;
  color: #22403A;
  max-width: 880px;
}

.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  font-family: inherit;
}

.btn-primary {
  background-color: #1E8A7B;
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: #142E28;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border-color: #22403A;
  color: #22403A;
}

.btn-outline:hover {
  background-color: #142E28;
  border-color: #142E28;
  color: #FFFFFF;
}

/* =========================================================
   SIDE NAV - slim vertical rail fixed on the left
   ========================================================= */
.side-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 240px;
  height: 100%;
  background-color: #F2FAF7;
  border-right: 1px solid #CFE6DE;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 24px;
  z-index: 100;
}

.side-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bird-mark {
  position: relative;
  width: 34px;
  height: 26px;
  flex-shrink: 0;
}

.bird-wing-a {
  position: absolute;
  top: 4px;
  left: 1px;
  width: 18px;
  height: 10px;
  background-color: #2E9E8F;
  border-radius: 10px 2px 10px 2px;
  transform: rotate(-14deg);
}

.bird-wing-b {
  position: absolute;
  bottom: 4px;
  right: 1px;
  width: 18px;
  height: 10px;
  background-color: #2E9E8F;
  border-radius: 2px 10px 2px 10px;
  transform: rotate(-14deg);
}

.bird-node {
  position: absolute;
  top: 11px;
  left: 13px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 2px solid #2E9E8F;
}

.side-nav-wordmark {
  font-size: 18px;
  font-weight: 800;
  color: #142E28;
  letter-spacing: 0.12em;
}

.side-nav-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.side-nav-links a {
  position: relative;
  display: block;
  padding: 12px 14px;
  font-size: 16px;
  font-weight: 600;
  color: #22403A;
  border-radius: 6px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.side-nav-links a:hover,
.side-nav-links a.is-active {
  color: #142E28;
  background-color: #E3F4EF;
}

.side-nav-links a:hover::before,
.side-nav-links a.is-active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background-color: #2E9E8F;
  border-radius: 2px;
}

.status-line {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #5E7A72;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #2E9E8F;
  animation: status-pulse 1.8s ease-in-out infinite;
}

@keyframes status-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 #2E9E8F;
  }
  50% {
    box-shadow: 0 0 0 7px #E3F4EF;
  }
}

/* Mobile top bar (slide-down menu) */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
}

.mobile-menu {
  display: none;
}

/* =========================================================
   MAIN CONTENT - offset to clear the fixed left sidebar
   ========================================================= */
.main-content {
  margin-left: 240px;
}

/* =========================================================
   SOAR HERO
   ========================================================= */
.soar-hero {
  background-color: #F2FAF7;
  position: relative;
  padding: 88px 0 76px;
  overflow: hidden;
}

.thought-flow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.thought-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-top: 2px dashed #CFE6DE;
}

.thought-line-a {
  top: 18%;
}

.thought-line-b {
  top: 58%;
}

.thought-line-c {
  bottom: 14%;
}

.bubble {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #2E9E8F;
}

.bubble-tail {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 0 0 7px 0;
  background-color: #2E9E8F;
  transform: rotate(45deg);
}

.bubble-1 {
  top: 16%;
  left: 22%;
}

.bubble-1 .bubble-tail {
  top: 9px;
  left: 13px;
}

.bubble-2 {
  top: 56%;
  left: 64%;
}

.bubble-2 .bubble-tail {
  top: 9px;
  left: 13px;
}

.bubble-3 {
  bottom: 11%;
  left: 40%;
}

.bubble-3 .bubble-tail {
  top: 9px;
  left: 13px;
}

.trajectory {
  position: absolute;
  top: 34%;
  right: 10%;
  width: 150px;
  height: 150px;
}

.trajectory-line {
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 110px;
  height: 3px;
  background-color: #CFE6DE;
  transform: rotate(-45deg);
  transform-origin: left bottom;
}

.trajectory-arrow {
  position: absolute;
  left: 96px;
  bottom: 42px;
  width: 0;
  height: 0;
  border-left: 12px solid #2E9E8F;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  transform: rotate(-45deg);
}

.trajectory-node {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #2E9E8F;
}

.trajectory-node-a {
  left: 30px;
  bottom: 52px;
}

.trajectory-node-b {
  left: 64px;
  bottom: 70px;
}

.hero-content {
  position: relative;
  max-width: 760px;
}

.hero-title {
  font-size: 56px;
  line-height: 1.06;
  color: #142E28;
  margin-bottom: 24px;
  font-weight: 900;
}

.hero-title .accent {
  color: #2E9E8F;
}

.hero-sub {
  font-size: 19px;
  color: #22403A;
  max-width: 620px;
  margin-bottom: 34px;
}

.hero-sub strong {
  color: #142E28;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* System status bar */
.status-bar {
  display: inline-flex;
  align-items: center;
  background-color: #FFFFFF;
  border: 1px solid #CFE6DE;
  border-radius: 10px;
  padding: 10px 6px;
}

.status-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-right: 1px solid #CFE6DE;
}

.status-chip:last-child {
  border-right: none;
}

.status-chip-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #2E9E8F;
}

.status-chip-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5E7A72;
  white-space: nowrap;
}

/* =========================================================
   TOOL STRIP
   ========================================================= */
.tool-strip {
  background-color: #E3F4EF;
  padding: 76px 0;
}

.tool-strip-inner {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-color: #2E9E8F #E3F4EF;
}

.tool-strip-inner::-webkit-scrollbar {
  height: 8px;
}

.tool-strip-inner::-webkit-scrollbar-thumb {
  background-color: #2E9E8F;
  border-radius: 4px;
}

.tool-card {
  flex: 0 0 210px;
  background-color: #FFFFFF;
  border: 1px solid #CFE6DE;
  border-radius: 12px;
  padding: 26px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(46, 158, 143, 0.16);
}

.mind-node-icon {
  position: relative;
  width: 34px;
  height: 22px;
  margin-bottom: 18px;
}

.mind-node-icon .node {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #2E9E8F;
}

.mind-node-icon .node-a {
  left: 0;
  top: 6px;
}

.mind-node-icon .node-b {
  left: 12px;
  top: 0;
}

.mind-node-icon .node-c {
  left: 25px;
  top: 6px;
}

.mind-node-icon .node-link {
  position: absolute;
  height: 2px;
  background-color: #CFE6DE;
}

.mind-node-icon .link-a {
  width: 12px;
  left: 8px;
  top: 9px;
  transform: rotate(0deg);
}

.mind-node-icon .link-b {
  width: 12px;
  left: 13px;
  top: 9px;
}

.tool-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.tool-card p {
  font-size: 14px;
  color: #5E7A72;
}

/* =========================================================
   ENGAGEMENT RAIL
   ========================================================= */
.engagement-rail {
  background-color: #F2FAF7;
  padding: 84px 0;
}

.rail-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.rail-track::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 2px;
  border-top: 2px dashed #2E9E8F;
  z-index: 0;
}

.rail-step {
  position: relative;
  z-index: 1;
  background-color: #FFFFFF;
  border: 1px solid #CFE6DE;
  border-radius: 14px;
  padding: 26px 22px;
}

.step-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background-color: #2E9E8F;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 18px;
}

.rail-step h3 {
  margin-bottom: 10px;
}

.rail-step p {
  font-size: 15px;
  color: #22403A;
}

/* =========================================================
   QUOTE ROWS
   ========================================================= */
.quote-rows {
  background-color: #F2FAF7;
  padding: 20px 0 84px;
}

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

.quote-card {
  background-color: #FFFFFF;
  border: 1px solid #CFE6DE;
  border-left: 5px solid #2E9E8F;
  border-radius: 12px;
  padding: 28px 32px;
}

.quote-card blockquote {
  font-size: 18px;
  color: #22403A;
  margin-bottom: 12px;
  font-style: italic;
}

.quote-card cite {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2E9E8F;
  font-style: normal;
}

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
  background-color: #142E28;
  padding: 84px 0;
  text-align: center;
}

.cta-band h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-band p {
  color: #C9E4DA;
  font-size: 18px;
  max-width: 620px;
  margin: 0 auto 34px;
}

/* =========================================================
   BUS FOOTER
   ========================================================= */
.bus-footer {
  background-color: #142E28;
  border-top: 1px solid #2A4A40;
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  padding-bottom: 48px;
  border-bottom: 1px solid #2A4A40;
}

.footer-col h4 {
  color: #C9E4DA;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: #C9E4DA;
  font-size: 15px;
}

.footer-col a:hover {
  color: #FFFFFF;
  text-decoration: underline;
  text-decoration-color: #2E9E8F;
  text-underline-offset: 4px;
}

.footer-col p {
  color: #C9E4DA;
  font-size: 15px;
  line-height: 1.8;
}

.footer-col .footer-strong {
  color: #FFFFFF;
  font-weight: 700;
}

.legal-line {
  padding: 22px 0;
  font-size: 13px;
  color: #8FB8AC;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  align-items: center;
  justify-content: space-between;
}

.legal-line a {
  color: #8FB8AC;
}

.legal-line a:hover {
  color: #FFFFFF;
}

/* =========================================================
   SERVICES PAGE
   ========================================================= */
.page-head {
  padding: 88px 0 56px;
  background-color: #F2FAF7;
  position: relative;
}

.page-head .page-title {
  font-size: 44px;
  margin-bottom: 18px;
}

.page-head .page-lede {
  font-size: 18px;
  color: #22403A;
  max-width: 720px;
}

.service-list {
  background-color: #F2FAF7;
  padding: 0 0 40px;
}

.service-block {
  background-color: #FFFFFF;
  border: 1px solid #CFE6DE;
  border-radius: 14px;
  padding: 40px 44px;
  margin-bottom: 26px;
  position: relative;
}

.service-block .service-num {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #2E9E8F;
  margin-bottom: 8px;
}

.service-block h2 {
  margin-bottom: 14px;
}

.service-block p {
  margin-bottom: 14px;
  color: #22403A;
}

.service-block ul {
  margin: 6px 0 8px 2px;
}

.service-block ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  color: #22403A;
}

.service-block ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #2E9E8F;
}

.process-overview {
  background-color: #E3F4EF;
  padding: 76px 0;
}

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

.process-item {
  background-color: #FFFFFF;
  border: 1px solid #CFE6DE;
  border-radius: 12px;
  padding: 26px 22px;
}

.process-item .process-step {
  color: #2E9E8F;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.process-item h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.process-item p {
  font-size: 14px;
  color: #22403A;
}

.services-cta {
  background-color: #F2FAF7;
  padding: 70px 0 90px;
  text-align: center;
}

.services-cta h2 {
  margin-bottom: 12px;
}

.services-cta p {
  color: #5E7A72;
  margin-bottom: 28px;
  font-size: 17px;
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-wrap {
  background-color: #F2FAF7;
  padding: 76px 0 90px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.contact-form-panel {
  background-color: #FFFFFF;
  border: 1px solid #CFE6DE;
  border-radius: 14px;
  padding: 38px 36px;
}

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

.form-group label {
  display: block;
  font-weight: 700;
  color: #142E28;
  font-size: 14px;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #CFE6DE;
  border-radius: 8px;
  background-color: #F2FAF7;
  color: #22403A;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2E9E8F;
  box-shadow: 0 0 0 3px #E3F4EF;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 13px;
  color: #5E7A72;
  margin-top: 10px;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-card {
  background-color: #FFFFFF;
  border: 1px solid #CFE6DE;
  border-radius: 12px;
  padding: 26px 28px;
}

.contact-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: #142E28;
}

.contact-card p {
  color: #22403A;
  font-size: 15px;
  line-height: 1.8;
}

.contact-card p a {
  font-weight: 700;
}

.contact-card.panel {
  background-color: #E3F4EF;
  border-color: #BBDCD2;
}

.hours-list {
  margin-top: 8px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid #CFE6DE;
  font-size: 15px;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row span:first-child {
  color: #5E7A72;
  font-weight: 600;
}

.hours-row span:last-child {
  color: #22403A;
  font-weight: 700;
}

.faq-item {
  margin-bottom: 0;
}

.faq-item:not(:last-child) {
  border-bottom: 1px solid #CFE6DE;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: #142E28;
  padding: 16px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-q .faq-icon {
  color: #2E9E8F;
  font-size: 18px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a p {
  padding-bottom: 16px;
  color: #22403A;
  font-size: 15px;
}

/* =========================================================
   FORM MESSAGE
   ========================================================= */
.form-message {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
}

.form-message.success {
  display: block;
  background-color: #E3F4EF;
  color: #1E8A7B;
  border: 1px solid #BBDCD2;
}

.form-message.error {
  display: block;
  background-color: #FDEAEA;
  color: #A33;
  border: 1px solid #F3C1C1;
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE - MOBILE
   ========================================================= */
@media (max-width: 900px) {
  .side-nav {
    position: relative;
    width: 100%;
    height: auto;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-right: none;
    border-bottom: 1px solid #CFE6DE;
  }

  .side-nav-links {
    display: none;
  }

  .status-line {
    display: none;
  }

  .nav-toggle-label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 34px;
    cursor: pointer;
    padding: 6px 0;
  }

  .nav-toggle-label span {
    display: block;
    height: 3px;
    border-radius: 2px;
    background-color: #142E28;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .mobile-menu {
    display: none;
    background-color: #FFFFFF;
    border-bottom: 1px solid #CFE6DE;
    padding: 8px 20px 16px;
  }

  .nav-toggle:checked ~ .mobile-menu {
    display: block;
  }

  .mobile-menu a {
    display: block;
    padding: 13px 6px;
    font-weight: 700;
    color: #22403A;
    border-bottom: 1px solid #E3F4EF;
  }

  .mobile-menu a:last-child {
    border-bottom: none;
  }

  .mobile-menu a:hover {
    color: #1E8A7B;
  }

  .main-content {
    margin-left: 0 !important;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-sub {
    font-size: 17px;
  }

  .status-bar {
    flex-wrap: wrap;
    width: 100%;
  }

  .status-chip {
    border-right: none;
    border-bottom: 1px solid #CFE6DE;
    width: 100%;
    justify-content: flex-start;
  }

  .status-chip:last-child {
    border-bottom: none;
  }

  .rail-track {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .rail-track::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .legal-line {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

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

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

  .page-head {
    padding: 56px 0 40px;
  }

  .page-head .page-title {
    font-size: 32px;
  }
}

@media (max-width: 560px) {
  .tool-card {
    flex: 0 0 180px;
  }

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

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

  .hero-title {
    font-size: 32px;
  }

  .cta-band {
    padding: 60px 0;
  }
}

/* =========================================================
   NOSCRIPT - fade-up must stay visible without JS
   ========================================================= */
noscript {
  display: none;
}

@media print {
  .side-nav,
  .nav-toggle-label {
    display: none !important;
  }

  .main-content {
    margin-left: 0 !important;
  }
}
