/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #0D1B2A;
  --teal: #1B4D3E;
  --lime: #D4F060;
  --off-white: #F5F4EE;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Figtree', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--navy);
  background-color: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  border: 2px solid transparent;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-lime {
  background-color: var(--lime);
  color: var(--navy);
  border-color: var(--lime);
}

.btn-ghost {
  background-color: transparent;
  color: var(--lime);
  border-color: var(--lime);
}

.btn-ghost:hover {
  background-color: rgba(212, 240, 96, 0.1);
}

.btn-navy {
  background-color: var(--navy);
  color: var(--lime);
  border-color: var(--navy);
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  box-sizing: border-box;
}

.section {
  padding: 96px 0;
}

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

.section--teal {
  background-color: var(--teal);
  color: var(--off-white);
}

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

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

/* ===== NAV ===== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--navy);
  box-sizing: border-box;
  width: 100%;
  transition: box-shadow 0.3s;
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--off-white);
  flex-shrink: 0;
}

.nav__logo img {
  height: 32px;
  margin-right: 8px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav__link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--off-white);
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--lime);
}

.nav__link--active {
  color: var(--lime);
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--off-white);
  background: none;
  border: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav__dropdown-toggle:hover {
  color: var(--lime);
}

.nav__dropdown-toggle svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
}

.nav__dropdown.open .nav__dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--navy);
  border: 1px solid rgba(245, 244, 238, 0.1);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.nav__dropdown.open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav__dropdown-item {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--off-white);
  transition: background-color 0.2s, color 0.2s;
}

.nav__dropdown-item:hover {
  background-color: rgba(212, 240, 96, 0.1);
  color: var(--lime);
}

.nav-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-buttons .btn {
  padding: 10px 24px;
  font-size: 0.9rem;
  flex-shrink: 0;
  white-space: nowrap;
  min-width: 100px;
  text-align: center;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--off-white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile overlay */
.nav__mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--navy);
  padding: 40px 24px;
  flex-direction: column;
  gap: 24px;
  z-index: 999;
  overflow-y: auto;
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile .nav__link {
  font-size: 1.25rem;
}

.nav__mobile .nav__dropdown-toggle {
  font-size: 1.25rem;
}

.nav__mobile .nav__dropdown-menu {
  position: static;
  transform: none;
  opacity: 1;
  visibility: visible;
  box-shadow: none;
  border: none;
  padding: 8px 0 0 16px;
  display: none;
}

.nav__mobile .nav__dropdown.open .nav__dropdown-menu {
  display: block;
}

.nav__mobile .nav-buttons {
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.nav__mobile .nav-buttons .btn {
  width: 100%;
  text-align: center;
}

/* ===== HERO ===== */
.hero {
  padding: 120px 0;
  background-color: var(--navy);
  color: var(--off-white);
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero p {
  max-width: 560px;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.85;
}

.hero--small,
.hero--compact {
  padding: 120px 0 48px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero__scroll-link {
  color: var(--lime);
  font-weight: 600;
  border-bottom: 1px solid var(--lime);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.hero__scroll-link:hover {
  opacity: 0.8;
}

/* ===== VERTICALS STRIP ===== */
.verticals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
}

.vertical-card {
  padding: 40px 32px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.06);
  transition: transform 0.2s;
}

.vertical-card:hover {
  transform: translateY(-4px);
}

.vertical-card h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.vertical-card p {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 24px;
  line-height: 1.6;
}

.vertical-card__link {
  color: var(--lime);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}

.vertical-card__link:hover {
  gap: 12px;
}

/* ===== THREE COLUMNS / HOW IT WORKS ===== */
.three-col,
.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  width: 100%;
  margin-top: 48px;
}

.mantras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  width: 100%;
  margin-top: 48px;
}

.three-col__item h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.three-col__item p {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.85;
}

.section__title {
  font-size: 2.5rem;
  margin-bottom: 56px;
}

.section__subtitle {
  font-size: 1.1rem;
  max-width: 640px;
  opacity: 0.85;
  margin-bottom: 56px;
  line-height: 1.7;
}

/* ===== TAB TOGGLE ===== */
.tabs {
  margin-top: 48px;
}

.tabs__controls {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
}

.tabs__btn {
  padding: 12px 32px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid var(--lime);
  background: transparent;
  color: var(--lime);
  transition: background-color 0.2s, color 0.2s;
}

.tabs__btn:first-child {
  border-radius: 6px 0 0 6px;
}

.tabs__btn:last-child {
  border-radius: 0 6px 6px 0;
}

.tabs__btn--active {
  background-color: var(--lime);
  color: var(--navy);
}

.section--off-white .tabs__btn {
  border-color: var(--navy);
  color: var(--navy);
}

.section--off-white .tabs__btn--active {
  background-color: var(--navy);
  color: var(--off-white);
}

.tabs__panel {
  display: none;
}

.tabs__panel--active {
  display: block;
}

.tabs__list {
  display: grid;
  gap: 20px;
}

.tabs__list li {
  position: relative;
  padding-left: 28px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.tabs__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  background-color: var(--lime);
  border-radius: 50%;
}

/* ===== FULL WIDTH BAND ===== */
.band {
  text-align: center;
}

.band h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.band p {
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto;
  opacity: 0.85;
  line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonials,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
  margin-top: 48px;
  align-items: stretch;
}

.testimonial-card {
  background-color: var(--navy);
  color: var(--off-white);
  padding: 40px 32px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.testimonial-card blockquote {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
  opacity: 0.9;
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  display: block;
}

.testimonial-card cite span {
  display: block;
  font-weight: 400;
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 4px;
}

/* ===== FAQ ===== */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid rgba(13, 27, 42, 0.15);
  padding: 24px 0;
}

.section--navy .faq__item {
  border-bottom-color: rgba(245, 244, 238, 0.15);
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: inherit;
  text-align: left;
  padding: 0;
  gap: 16px;
}

.faq__question svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}

.faq__item.open .faq__question svg {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__item.open .faq__answer {
  max-height: 300px;
  padding-top: 16px;
}

.faq__answer p {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.85;
}

/* ===== GEO PARAGRAPH ===== */
.geo {
  font-size: 0.85rem;
  opacity: 0.5;
  max-width: 800px;
  line-height: 1.6;
  margin: 0 auto;
  text-align: center;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  text-align: center;
  padding: 80px 0;
}

.cta-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 32px;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--navy);
  color: var(--off-white);
  padding: 64px 0 32px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(245, 244, 238, 0.1);
  margin-bottom: 32px;
}

.footer__logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--off-white);
  display: flex;
  align-items: center;
}

.footer__logo img {
  height: 28px;
  margin-right: 8px;
}

.footer__nav {
  display: flex;
  gap: 28px;
}

.footer__nav a {
  font-size: 0.95rem;
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}

.footer__nav a:hover {
  opacity: 1;
  color: var(--lime);
}

.footer__mid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(245, 244, 238, 0.1);
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__contact {
  display: flex;
  gap: 32px;
  align-items: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer__social a:hover {
  opacity: 1;
}

.footer__social svg {
  width: 20px;
  height: 20px;
  fill: var(--off-white);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.5;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a:hover {
  opacity: 0.8;
}

/* ===== ABOUT PAGE ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
}

.team-card {
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
}

.team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--teal);
  color: var(--lime);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.team-card h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.team-card p {
  font-size: 0.95rem;
  opacity: 0.7;
  margin-bottom: 16px;
}

.team-card__linkedin {
  color: var(--lime);
  transition: opacity 0.2s;
}

.team-card__linkedin:hover {
  opacity: 0.8;
}

.team-card__linkedin svg {
  width: 22px;
  height: 22px;
}

.partners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.partner-card {
  padding: 32px;
}

.partner-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.partner-card p {
  font-size: 0.95rem;
  opacity: 0.7;
  margin-bottom: 16px;
}

.partner-card a {
  color: var(--teal);
  font-weight: 600;
  transition: opacity 0.2s;
}

.partner-card a:hover {
  opacity: 0.7;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
}

.contact-info__item {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 1rem;
  align-items: center;
}

.contact-info__item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: var(--teal);
}

.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: var(--navy);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(13, 27, 42, 0.15);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  background-color: var(--off-white);
  color: var(--navy);
  margin-bottom: 20px;
  transition: border-color 0.2s;
}

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

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

.contact-form .btn {
  width: 100%;
}

.contact-form__success {
  display: none;
  padding: 16px;
  background-color: var(--teal);
  color: var(--off-white);
  border-radius: 6px;
  text-align: center;
  margin-top: 16px;
  font-weight: 600;
}

/* ===== BLOG PAGE ===== */
.blog-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.blog-filter {
  padding: 8px 20px;
  border: 2px solid var(--navy);
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  background: transparent;
  color: var(--navy);
  transition: background-color 0.2s, color 0.2s;
}

.blog-filter--active {
  background-color: var(--navy);
  color: var(--off-white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
}

.blog-card {
  background-color: var(--navy);
  border-radius: 12px;
  padding: 32px;
  color: var(--off-white);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-card__tag {
  display: inline-block;
  background-color: var(--lime);
  color: var(--navy);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  align-self: flex-start;
}

.blog-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card__date {
  font-size: 0.85rem;
  opacity: 0.5;
  margin-bottom: 12px;
}

.blog-card p {
  font-size: 0.95rem;
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-card__link {
  color: var(--lime);
  font-weight: 600;
  transition: opacity 0.2s;
}

.blog-card__link:hover {
  opacity: 0.8;
}

/* ===== LEGAL PAGES ===== */
.legal {
  max-width: 800px;
  margin: 0 auto;
}

.legal__notice {
  background-color: var(--teal);
  color: var(--off-white);
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.legal h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal h3 {
  font-size: 1.2rem;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
  opacity: 0.85;
}

.legal ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal ul li {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.85;
  margin-bottom: 8px;
}

.legal a {
  color: var(--teal);
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }

  .nav {
    padding: 0 24px;
  }

  .nav__links,
  .nav-buttons {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .hero {
    padding: 96px 0 64px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.05rem;
  }

  .section {
    padding: 64px 0;
  }

  .section__title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .verticals,
  .three-col,
  .how-it-works-grid,
  .testimonials,
  .testimonials-grid,
  .mantras-grid,
  .team-grid,
  .partners,
  .blog-grid {
    grid-template-columns: 1fr;
  }

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

  .footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer__nav {
    flex-wrap: wrap;
    gap: 16px;
  }

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

  .footer__contact {
    flex-direction: column;
    gap: 12px;
  }

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

  .cta-banner h2 {
    font-size: 2rem;
  }

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

  .tabs__controls {
    flex-wrap: wrap;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .verticals,
  .testimonials,
  .testimonials-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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