/* ============================================
   TESSA Tools: Global Stylesheet
   Dark theme, earthy palette, rounded modern feel
   ============================================ */

/* Screen-reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Grid Layouts --- */
.grid {
  display: grid;
  gap: 2rem;
}
.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .grid--2,
  .grid--3 {
    grid-template-columns: 1fr;
  }
}

/* CTA button groups */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* Blog card images */
.grid .card img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #000000;
  color: #bdb9a0;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

p {
  text-align: justify;
}

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

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

a:hover {
  color: #ffffff;
}

ul, ol {
  list-style: none;
}

/* --- Typography (Rounded — Poppins) --- */
h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.4rem;
  margin-bottom: 1.25rem;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

.accent {
  color: #a5be9b;
  background: linear-gradient(90deg, #a5be9b, #d4e8c4, #a5be9b);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 200% center; }
}

.label {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #a5be9b;
  margin-bottom: 0.75rem;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 5rem 0;
}

.section--dark {
  background-color: #0a0a0a;
}

#assessment {
  padding-top: 2.5rem;
  padding-bottom: 5rem;
}

#how-it-works {
  padding-top: 1rem;
}

/* --- Header / Nav --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(104, 102, 74, 0.3);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav__logo img {
  height: 48px;
  width: auto;
}

@media (min-width: 768px) {
  .nav__logo img {
    height: 36px;
  }
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: #bdb9a0;
  transition: all 0.3s ease;
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav__links {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.98);
  border-bottom: 1px solid rgba(104, 102, 74, 0.3);
  padding: 1rem 0;
}

.nav__links.active {
  display: block;
}

.nav__links a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: #bdb9a0;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.nav__links a:hover {
  color: #ffffff;
  background-color: rgba(107, 138, 114, 0.1);
}

.nav__cta {
  display: none;
  color: #000000 !important;
}

.nav__cta:hover {
  color: #bdb9a0 !important;
}

/* --- Hero (Full-width banner image) --- */
.hero {
  position: relative;
  padding-top: 60px; /* account for fixed nav */
  background-color: #000000;
}

.hero__banner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: block;
}

.hero__banner img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* --- Assessment Intro (sits right below hero) --- */
.assessment-intro {
  background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
  padding: 4rem 0;
  text-align: center;
}

.assessment-intro .label {
  margin-bottom: 1rem;
}

.assessment-intro h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.assessment-intro p {
  font-size: 1.05rem;
  color: #bdbba1;
  max-width: 620px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.assessment-intro .hero__meta {
  font-size: 0.85rem;
  color: #68664a;
  margin-top: 1rem;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 1rem 2.25rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  border: none;
}

.btn--primary {
  background-color: #3d7769;
  color: #000000;
}

.btn--primary:hover {
  background-color: #2c5a4f;
  color: #bdb9a0;
  transform: translateY(-1px);
}

.btn--outline {
  background-color: transparent;
  color: #a5be9b;
  border: 2px solid rgba(165, 190, 155, 0.5);
}

.btn--outline:hover {
  background-color: #3d7769;
  color: #000000;
}

.btn--large {
  padding: 1.15rem 2.75rem;
  font-size: 1.05rem;
}

/* --- Two-Column Section --- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.split__image {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(104, 102, 74, 0.2);
}

.split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split__text .label {
  margin-bottom: 0.5rem;
}

.split__text h2 {
  margin-bottom: 1rem;
}

.split__text p {
  color: #bdb9a0;
  font-size: 1rem;
  line-height: 1.8;
}

.check-list {
  margin-top: 1rem;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.6rem;
  color: #bdbba1;
  font-size: 0.95rem;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #a5be9b;
  font-weight: 700;
}

/* --- Glass Cards --- */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

@media (max-width: 600px) {
  .card-grid--two {
    grid-template-columns: 1fr;
  }
}

.card {
  position: relative;
  background: linear-gradient(145deg, rgba(17, 17, 17, 0.9), rgba(10, 10, 10, 0.95));
  border: 1px solid rgba(104, 102, 74, 0.25);
  border-radius: 16px;
  padding: 2.25rem 1.75rem;
  transition: border-color 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
}

.card:hover {
  border-color: rgba(165, 190, 155, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(61, 119, 105, 0.15), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: rgba(59, 92, 77, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card h3 {
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.card p {
  color: #bdb9a0;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.card__note {
  display: block;
  margin-top: 0.75rem;
  font-style: italic;
  font-size: 0.85rem;
  color: #99764c;
}

.card__faq-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #a5be9b;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.card__faq-link:hover {
  color: #ffffff;
}

/* Outline button variant (light sections) */
.btn--outline {
  background: transparent;
  border: 2px solid;
  padding: 0.65rem 1.8rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}
.btn--outline:hover {
  background: #2a4238;
  color: #ffffff !important;
  border-color: #2a4238;
}

/* --- Card Popups --- */
.card--interactive {
  position: relative;
}

.card__popup {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  min-height: 100%;
  background: linear-gradient(145deg, rgba(59, 92, 77, 0.95), rgba(45, 70, 60, 0.95));
  border: 1px solid rgba(165, 190, 155, 0.3);
  border-radius: 16px;
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
  z-index: 10;
  box-sizing: border-box;
}

.card--interactive:hover .card__popup {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.card__popup h4 {
  color: #000000;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.card__popup p {
  color: #000000;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.popup-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.popup-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #000000;
  font-size: 0.9rem;
  line-height: 1.6;
}

.popup-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: 700;
}

/* --- Regulatory Tooltips --- */
.tooltip {
  position: relative;
  cursor: help;
  border-bottom: 1px dotted currentColor;
  transition: color 0.2s ease;
}

.tooltip:hover {
  color: #a5be9b;
}

.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(61, 119, 105, 0.95);
  color: #ffffff;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  white-space: nowrap;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
  font-weight: 500;
  line-height: 1.5;
  border: 1px solid rgba(165, 190, 155, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.tooltip::before {
  content: '';
  position: absolute;
  bottom: 118%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(61, 119, 105, 0.95);
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tooltip:hover::after,
.tooltip:hover::before {
  opacity: 1;
  visibility: visible;
}

/* --- Steps --- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 3.5rem;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(59, 92, 77, 0.5);
  border: 1px solid #6e8a72;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 {
  margin-bottom: 0.25rem;
}

.step p {
  font-size: 0.92rem;
  color: #bdbba1;
  margin-bottom: 0;
}

/* --- Testimonials --- */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.testimonial {
  background: linear-gradient(145deg, rgba(17, 17, 17, 0.8), rgba(10, 10, 10, 0.9));
  border-left: 3px solid #99764c;
  border-radius: 0 14px 14px 0;
  padding: 2rem 1.75rem;
}

.testimonial p {
  font-size: 1rem;
  color: #bdbba1;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.testimonial cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 0.82rem;
  color: #99764c;
  letter-spacing: 0.02em;
}

/* --- Team --- */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.team-member {
  text-align: center;
}

.team-member__photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid rgba(110, 138, 114, 0.5);
  filter: grayscale(20%);
}

.team-member h3 {
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}

.team-member__role {
  color: #a5be9b;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.team-member p {
  font-size: 0.9rem;
  color: #bdbba1;
  max-width: 340px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Badges --- */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 2rem;
}

.badge {
  background-color: rgba(150, 128, 84, 0.15);
  border: 1px solid rgba(150, 128, 84, 0.4);
  color: #968054;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

/* --- Audience card grid (4 cols × 2 rows) --- */
.audience-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.audience-card {
  background-color: rgba(59, 92, 77, 0.15);
  border: 1px solid rgba(59, 92, 77, 0.35);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.audience-tag {
  color: #a5be9b;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  background-color: rgba(59, 92, 77, 0.3);
  border: 1px solid rgba(59, 92, 77, 0.5);
}

/* Responsive: 2 cols on tablet, 1 col on mobile */
@media (max-width: 768px) {
  .audience-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .audience-card-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Light Section (Services) --- */
.section--light {
  background-color: #e9e9e9;
  color: #1a1a1a;
}

.section--light h2,
.section--light h3,
.section--light h4 {
  color: #1a1a1a;
}

.section--light p {
  color: #333333;
}

.section--light .label {
  color: #3d7769;
}

.section--light .accent {
  color: #3d7769;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #3d7769;
  animation: none;
}

.section--light .check-list li {
  color: #333333;
}

.section--light .check-list li::before {
  color: #3d7769;
}

/* Services split rows */
.services-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 4rem;
}

.services-split:last-child {
  margin-bottom: 0;
}

.services-split__image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.services-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/3;
}

.services-split__text {
  padding: 0.5rem 0;
}

.services-split__text h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.services-split__text p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.services-split__text .check-list {
  margin-top: 0.75rem;
}

.services-split__text .check-list li {
  font-size: 0.95rem;
  margin-bottom: 0.65rem;
  padding-left: 1.75rem;
}

@media (min-width: 768px) {
  .services-split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .services-split--reverse .services-split__image { order: 2; }
  .services-split--reverse .services-split__text { order: 1; }
}

/* --- Bridge / Transition CTA --- */
.bridge {
  background: linear-gradient(135deg, #2a4238 0%, #1a2e25 100%);
  padding: 3.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bridge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #3d7769, transparent);
}

.bridge h2 {
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.bridge p {
  color: #1a1a1a;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto 2rem;
}

.bridge .btn {
  font-size: 1.05rem;
}

.bridge__stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1.5rem auto 2.5rem;
  flex-wrap: wrap;
  max-width: 720px;
}

.bridge__stat {
  text-align: center;
  flex: 1;
  min-width: 140px;
  padding: 1rem 0.75rem;
  border: 1px solid rgba(165, 190, 155, 0.15);
  border-radius: 10px;
  background: #FCEAD0;
}

.bridge__stat-number {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.bridge__stat-label {
  font-size: 0.72rem;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .bridge h2 { font-size: 2.2rem; }
  .bridge { padding: 4rem 0; }
}

/* --- Post-testimonial mini CTA --- */
.mini-cta {
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid rgba(104, 102, 74, 0.2);
  margin-top: 2rem;
}

.mini-cta p {
  font-size: 1.05rem;
  color: #bdbba1;
  margin-bottom: 1.25rem;
}

/* --- Contact Page --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info__block h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.4rem;
}

.contact-info__link {
  color: #3d7769 !important;
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info__link:hover {
  color: #2c5a4f !important;
  text-decoration: underline;
}

.contact-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.contact-social__icon {
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-social__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-social__icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Contact form */
.contact-form-wrap {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.contact-form__field label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.4rem;
}

.contact-form__field .required {
  color: #c0392b;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background-color: #f9f8f5;
  border: 1px solid #d4d0c8;
  border-radius: 8px;
  color: #1a1a1a;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: #3d7769;
  box-shadow: 0 0 0 3px rgba(61, 119, 105, 0.1);
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: #999;
}

.contact-form__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-form__submit {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.contact-form__note {
  font-size: 0.82rem;
  color: #888;
  margin-bottom: 0;
}

.contact-success {
  text-align: center;
  padding: 3rem 2rem;
  animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.contact-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3d7769, #a5be9b);
  color: #fff;
  font-size: 2rem;
  line-height: 64px;
  margin: 0 auto 1.5rem;
}

.contact-success h3 {
  color: #3d7769;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.contact-success p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-success__note {
  font-size: 0.85rem !important;
  color: #888 !important;
  margin-top: 1rem !important;
}

/* Footer social icons */
.footer__social-icon {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.7;
}

.footer__social-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer__social-icon:hover {
  transform: translateY(-1px);
  opacity: 1;
}

.footer__back-to-top {
  display: block;
  text-align: center;
  padding: 1rem 0 0;
  margin-top: 1rem;
  border-top: 1px solid rgba(104, 102, 74, 0.2);
}

.footer__back-to-top a {
  color: #a5be9b;
  font-size: 0.85rem;
  text-decoration: none;
  letter-spacing: 0.03em;
}

.footer__back-to-top a:hover {
  color: #ffffff;
}

/* --- Policy Links --- */
.policy-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  background: #fff;
  border: 1px solid #e0d5c5;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.policy-link:hover {
  border-color: #2a4238;
  box-shadow: 0 2px 8px rgba(42, 66, 56, 0.1);
}

.policy-link__title {
  display: block;
  color: #1a1a1a;
  font-weight: 500;
  font-size: 1rem;
}

.policy-link__desc {
  display: block;
  color: #777;
  font-size: 0.85rem;
  margin-top: 0.2rem;
  line-height: 1.4;
}

.policy-link__type {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: #2a4238;
  background: #f0ebe3;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  letter-spacing: 0.03em;
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
  }

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

/* --- CTA Banner --- */
.cta-banner {
  text-align: center;
  padding: 5rem 1.25rem;
  background: linear-gradient(135deg, #3b5c4d 0%, #2a4238 100%);
}

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

.cta-banner p {
  color: #bdbba1;
  margin-bottom: 1.75rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner__privacy {
  font-size: 0.82rem;
  color: rgba(189, 185, 160, 0.6);
  margin-top: 1rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner__privacy a {
  color: rgba(165, 190, 155, 0.7);
}

/* --- Footer --- */
.footer {
  background-color: #000000;
  border-top: 1px solid rgba(104, 102, 74, 0.3);
  padding: 1rem 0 0.75rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.footer__left {
  text-align: left;
}

.footer__left h4 {
  margin: 0;
  font-size: 0.95rem;
}

.footer__center {
  text-align: center;
}

.footer__social {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  align-items: center;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: color 0.2s;
}

.footer__social a:hover {
  color: #a5be9b;
}

.footer__tagline {
  font-size: 0.9rem;
  color: #6e8a72;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.footer__links a {
  color: #68664a;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: #bdb9a0;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(104, 102, 74, 0.6);
}

/* --- Utility --- */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Footer responsive */
@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .footer__left {
    text-align: center;
  }

  .footer__social {
    justify-content: center;
  }
}

/* ============================================
   Tablet (768px+)
   ============================================ */
@media (min-width: 768px) {
  h1 { font-size: 3.2rem; }
  h2 { font-size: 2.2rem; }

  .assessment-intro h2 { font-size: 2.6rem; }
  .assessment-intro { padding: 5rem 0; }

  /* Nav — desktop horizontal */
  .nav__toggle { display: none; }

  .nav__links {
    display: flex;
    position: static;
    width: auto;
    background: none;
    border: none;
    padding: 0;
    gap: 0.25rem;
    align-items: center;
  }

  .nav__links a {
    padding: 0.5rem 0.9rem;
    border-radius: 4px;
    font-size: 0.9rem;
  }

  .nav__cta {
    display: inline-block;
    margin-left: 0.5rem;
  }

  /* Grids */
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr 1fr; gap: 4rem; }

  .split--reverse .split__image { order: 2; }
  .split--reverse .split__text { order: 1; }

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

/* Large screens */
@media (min-width: 1024px) {
  h1 { font-size: 3.8rem; }
  .container { padding: 0 2rem; }
}

/* ============================================
   DARK MODE (DEFAULT) AND LIGHT MODE TOGGLE
   ============================================ */

/* Light mode overrides */
[data-theme="light"] body {
  background-color: #ffffff;
  color: #444444;
}

[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] h3,
[data-theme="light"] h4 {
  color: #1a1a1a;
}

[data-theme="light"] a {
  color: #2a4238;
}

[data-theme="light"] a:hover {
  color: #3d7769;
}

/* Header */
[data-theme="light"] .header {
  background-color: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(200, 200, 200, 0.5);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .nav__toggle span {
  background-color: #333;
}

[data-theme="light"] .nav__links {
  background-color: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(200, 200, 200, 0.5);
}

[data-theme="light"] .nav__links a {
  color: #555555;
}

[data-theme="light"] .nav__links a:hover {
  color: #2a4238;
  background-color: rgba(42, 66, 56, 0.06);
}

[data-theme="light"] .nav__cta {
  color: #ffffff !important;
  background-color: #2a4238 !important;
}

[data-theme="light"] .nav__cta:hover {
  color: #ffffff !important;
  background-color: #3d7769 !important;
}

/* Hero */
[data-theme="light"] .hero {
  background-color: #f9f9f7;
}

/* Sections */
[data-theme="light"] .section {
  background-color: #ffffff;
}

[data-theme="light"] .section--light {
  background-color: #ffffff;
}

[data-theme="light"] .section--light p {
  color: #444;
}

[data-theme="light"] .section--dark {
  background-color: #f5f4f0;
}

[data-theme="light"] .section--dark h1,
[data-theme="light"] .section--dark h2,
[data-theme="light"] .section--dark h3 {
  color: #1a1a1a;
}

[data-theme="light"] .section--dark p,
[data-theme="light"] .section--dark .label {
  color: #555555;
}

/* Accent & label */
[data-theme="light"] .accent {
  color: #3d7769;
}

[data-theme="light"] .label {
  color: #2a4238;
}

/* Cards */
[data-theme="light"] .card {
  background-color: #ffffff;
  border: 1px solid #e0ddd6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .card h3 {
  color: #1a1a1a;
}

[data-theme="light"] .card p {
  color: #555555;
}

[data-theme="light"] .card__icon {
  background-color: rgba(61, 119, 105, 0.12) !important;
  color: #2a4238;
}

[data-theme="light"] .card__note {
  color: #888;
}

[data-theme="light"] .card__faq-link {
  color: #3d7769;
}

/* Services split */
[data-theme="light"] .services-split__text h3 {
  color: #1a1a1a;
}

[data-theme="light"] .services-split__text p {
  color: #444;
}

[data-theme="light"] .check-list li {
  color: #444;
}

[data-theme="light"] .check-list li::before {
  color: #3d7769;
}

/* Bridge */
[data-theme="light"] .bridge {
  background: linear-gradient(135deg, #2a4238 0%, #1a2e25 100%);
}

[data-theme="light"] .bridge h2 {
  color: #ffffff;
}

[data-theme="light"] .bridge p {
  color: #ddd;
}

/* Split / Our Story */
[data-theme="light"] .split__text p {
  color: #444;
}

[data-theme="light"] .split__text .label {
  color: #2a4238;
}

/* Audience cards */
[data-theme="light"] .audience-card {
  border-color: rgba(42, 66, 56, 0.15);
  background-color: rgba(42, 66, 56, 0.04);
}

[data-theme="light"] .audience-tag {
  background-color: rgba(61, 119, 105, 0.1);
  color: #2a4238;
}

/* Testimonials */
[data-theme="light"] .testimonial {
  background-color: #f9f9f7;
  border-color: #e0ddd6;
}

[data-theme="light"] .testimonial p {
  color: #333;
}

[data-theme="light"] .testimonial cite {
  color: #3d7769;
}

/* Mini CTA */
[data-theme="light"] .mini-cta {
  border-top-color: #e0ddd6;
}

[data-theme="light"] .mini-cta p {
  color: #444;
}

/* Team */
[data-theme="light"] .team-member p {
  color: #555;
}

[data-theme="light"] .team-member__role {
  color: #3d7769;
}

/* FAQ items in light sections */
[data-theme="light"] .faq-item--light {
  background-color: #f5f4f0;
  border-color: #e0ddd6;
}

[data-theme="light"] .faq-item--light summary {
  color: #1a1a1a;
}

[data-theme="light"] .faq-item--light p {
  color: #444;
}

[data-theme="light"] .faq-item--light summary::after {
  color: #3d7769;
}

/* Buttons */
[data-theme="light"] .btn--primary {
  background-color: #2a4238;
  color: #ffffff;
}

[data-theme="light"] .btn--primary:hover {
  background-color: #3d7769;
  color: #ffffff;
}

[data-theme="light"] .btn--outline {
  border-color: #2a4238;
  color: #2a4238;
}

[data-theme="light"] .btn--outline:hover {
  background-color: #2a4238;
  color: #ffffff;
}

/* Hero meta text */
[data-theme="light"] .hero__meta {
  color: #888;
}

/* Footer */
[data-theme="light"] .footer {
  background-color: #1a1a1a;
}

[data-theme="light"] .footer__inner,
[data-theme="light"] .footer p,
[data-theme="light"] .footer a,
[data-theme="light"] .footer h4 {
  color: #ccc;
}

[data-theme="light"] .footer a:hover {
  color: #a5be9b;
}

[data-theme="light"] .footer__back-to-top a {
  color: #999;
}

[data-theme="light"] .footer__back-to-top a:hover {
  color: #a5be9b;
}

/* Inline style overrides for light mode */
[data-theme="light"] .section--light p[style*="color: #555"] {
  color: #444 !important;
}

/* ============================================
   DROPDOWN MENU
   ============================================ */

.nav__dropdown {
  position: relative;
  display: inline-block;
}

.nav__dropdown-trigger {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.nav__dropdown-trigger::after {
  content: ' ▾';
  font-size: 0.7em;
  opacity: 0.6;
}

.nav__dropdown.open .nav__dropdown-trigger::after {
  content: ' ▴';
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(104, 102, 74, 0.3);
  border-radius: 8px;
  min-width: 150px;
  padding: 0.5rem 0;
  padding-top: 0.75rem;
  margin-top: 0;
  display: none;
  flex-direction: column;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.nav__dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: #bdb9a0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.nav__dropdown-menu a:hover {
  background-color: rgba(165, 190, 155, 0.1);
  color: #ffffff;
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.open .nav__dropdown-menu {
  display: flex;
}

[data-theme="light"] .nav__dropdown-menu {
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(200, 200, 200, 0.3);
}

[data-theme="light"] .nav__dropdown-menu a {
  color: #555555;
}

[data-theme="light"] .nav__dropdown-menu a:hover {
  background-color: rgba(42, 66, 56, 0.1);
  color: #2a4238;
}

/* Mobile dropdown behavior */
@media (max-width: 767px) {
  .nav__dropdown {
    display: block;
  }

  .nav__dropdown-menu {
    position: static;
    background-color: rgba(20, 20, 20, 0.8);
    border: none;
    border-radius: 0;
    min-width: auto;
    padding: 0;
    margin-top: 0;
    display: none;
    flex-direction: column;
    box-shadow: none;
  }

  .nav__dropdown-menu a {
    padding: 0.75rem 1rem;
    border-top: 1px solid rgba(104, 102, 74, 0.2);
  }

  .nav__links.active .nav__dropdown-menu,
  .nav__dropdown.open .nav__dropdown-menu {
    display: flex;
  }

  [data-theme="light"] .nav__dropdown-menu {
    background-color: rgba(245, 245, 245, 0.9);
  }

  [data-theme="light"] .nav__dropdown-menu a {
    border-top-color: rgba(200, 200, 200, 0.2);
  }
}

@media (min-width: 1200px) {
  .section { padding: 6rem 0; }
  .assessment-intro h2 { font-size: 2.8rem; }
}

/* ============================================
   SCORECARD QUIZ PAGE
   ============================================ */
.quiz-page {
  padding-top: 80px;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.quiz-page .container {
  max-width: 680px;
  padding: 2rem 1.25rem 4rem;
}

/* Progress bar */
.quiz-progress {
  margin-bottom: 2.5rem;
}

.quiz-progress__bar {
  width: 100%;
  height: 6px;
  background-color: rgba(104, 102, 74, 0.3);
  border-radius: 100px;
  overflow: hidden;
}

.quiz-progress__fill {
  height: 100%;
  background-color: #3d7769;
  border-radius: 100px;
  transition: width 0.4s ease;
}

.quiz-progress__text {
  font-size: 0.82rem;
  color: #68664a;
  margin-top: 0.5rem;
  text-align: center;
}

/* Quiz step */
.quiz-step {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-category {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #a5be9b;
  margin-bottom: 0.75rem;
}

.quiz-question {
  font-size: 1.4rem;
  line-height: 1.4;
  margin-bottom: 2rem;
  color: #ffffff;
}

/* Answer options */
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quiz-option {
  cursor: pointer;
  display: block;
}

.quiz-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.quiz-option__box {
  display: block;
  padding: 1.15rem 1.5rem;
  background: linear-gradient(145deg, rgba(17, 17, 17, 0.9), rgba(10, 10, 10, 0.95));
  border: 2px solid rgba(104, 102, 74, 0.3);
  border-radius: 12px;
  color: #bdb9a0;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s ease;
  text-align: center;
}

.quiz-option__box:hover {
  border-color: rgba(165, 190, 155, 0.5);
  color: #ffffff;
  transform: translateY(-1px);
}

.quiz-option input:checked + .quiz-option__box {
  border-color: #3d7769;
  background: rgba(61, 119, 105, 0.15);
  color: #ffffff;
}

/* Contact capture form */
.quiz-contact-note {
  color: #bdbba1;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.quiz-form-fields {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.quiz-field label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #bdb9a0;
  margin-bottom: 0.4rem;
}

.quiz-field .required {
  color: #c0392b;
}

.quiz-field .quiz-optional {
  font-weight: 400;
  color: #68664a;
  font-size: 0.82rem;
}

.quiz-field input[type="text"],
.quiz-field input[type="email"],
.quiz-field input[type="tel"],
.quiz-field select,
.quiz-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background-color: rgba(17, 17, 17, 0.9);
  border: 1px solid rgba(104, 102, 74, 0.4);
  border-radius: 8px;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}

.quiz-field input:focus,
.quiz-field select:focus,
.quiz-field textarea:focus {
  outline: none;
  border-color: #3d7769;
}

.quiz-field input::placeholder,
.quiz-field textarea::placeholder {
  color: rgba(189, 185, 160, 0.4);
}

.quiz-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23bdb9a0' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.quiz-field select option {
  background-color: #111;
  color: #bdb9a0;
}

/* Checkbox */
.quiz-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.quiz-checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.quiz-checkbox__mark {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(104, 102, 74, 0.5);
  border-radius: 4px;
  background: rgba(17, 17, 17, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  margin-top: 2px;
}

.quiz-checkbox input:checked + .quiz-checkbox__mark {
  background-color: #3d7769;
  border-color: #3d7769;
}

.quiz-checkbox input:checked + .quiz-checkbox__mark::after {
  content: '✓';
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
}

.quiz-checkbox__text {
  font-size: 0.82rem;
  color: #bdbba1;
  line-height: 1.6;
}

.quiz-checkbox__text a {
  color: #a5be9b;
}

/* Navigation buttons */
.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
  gap: 1rem;
}

.quiz-nav__next,
.quiz-nav__submit {
  margin-left: auto;
}

.quiz-nav__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Error message */
.quiz-error {
  color: #c0392b;
  font-size: 0.88rem;
  text-align: center;
  margin-top: 1rem;
  animation: fadeIn 0.3s ease;
}

/* ============================================
   SCORECARD RESULTS PAGE
   ============================================ */
.results-page {
  padding-top: 80px;
  min-height: 100vh;
}

.results-page .container {
  max-width: 780px;
  padding: 2rem 1.25rem 4rem;
}

/* Loading */
.results-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.results-loading__spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(104, 102, 74, 0.3);
  border-top-color: #3d7769;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 1.5rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.results-loading p {
  color: #68664a;
  font-size: 0.95rem;
}

/* Results hero */
.results-hero {
  text-align: center;
  margin-bottom: 3.5rem;
}

.results-hero h1 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

/* Score gauge */
.score-gauge {
  position: relative;
  width: 220px;
  margin: 0 auto 1.5rem;
}

.score-gauge__svg {
  width: 100%;
  height: auto;
}

.score-gauge__value {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.score-gauge__number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.score-gauge__max {
  font-size: 1rem;
  color: #68664a;
}

/* Tier badge */
.tier-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 2px solid #a5be9b;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.tier-badge__label {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.tier-description {
  font-size: 1rem;
  color: #bdbba1;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* Sub-score breakdown */
.results-breakdown {
  margin-bottom: 3.5rem;
}

.results-breakdown h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.subscore-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.subscore-card {
  background: linear-gradient(145deg, rgba(17, 17, 17, 0.9), rgba(10, 10, 10, 0.95));
  border: 1px solid rgba(104, 102, 74, 0.25);
  border-radius: 12px;
  padding: 1.5rem;
}

.subscore-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.subscore-card__header h3 {
  margin-bottom: 0;
  font-size: 1rem;
}

.subscore-card__score {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
}

.subscore-bar {
  width: 100%;
  height: 8px;
  background-color: rgba(104, 102, 74, 0.2);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.subscore-bar__fill {
  height: 100%;
  background-color: #3d7769;
  border-radius: 100px;
  transition: width 1.2s ease-out;
}

.subscore-card__detail {
  font-size: 0.85rem;
  color: #68664a;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Insights */
.results-insights {
  margin-bottom: 3.5rem;
}

.results-insights h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.insights-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.insight-card {
  background: linear-gradient(145deg, rgba(17, 17, 17, 0.9), rgba(10, 10, 10, 0.95));
  border-radius: 12px;
  padding: 1.5rem;
  border-left: 4px solid #68664a;
}

.insight-card--needs-attention {
  border-left-color: #c0392b;
}

.insight-card--partially {
  border-left-color: #e67e22;
}

.insight-card--good {
  border-left-color: #3d7769;
}

.insight-card__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.insight-card__icon {
  font-size: 1rem;
}

.insight-card__category {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a5be9b;
}

.insight-card p {
  font-size: 0.92rem;
  color: #bdbba1;
  line-height: 1.8;
  margin-bottom: 0;
}

/* Results CTA */
.results-cta {
  margin-bottom: 3.5rem;
}

.results-cta__card {
  background: linear-gradient(135deg, #3b5c4d 0%, #2a4238 100%);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  border-top: 4px solid #3d7769;
}

.results-cta__card h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.results-cta__card p {
  color: #bdbba1;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 1.75rem;
}

/* Qualifying form on results page */
.results-qualify {
  margin-bottom: 3.5rem;
  background: linear-gradient(145deg, rgba(17, 17, 17, 0.9), rgba(10, 10, 10, 0.95));
  border: 1px solid rgba(104, 102, 74, 0.25);
  border-radius: 16px;
  padding: 2.5rem 2rem;
}

.results-qualify h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.results-qualify > p {
  text-align: center;
  color: #68664a;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.qualify-form {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.qualify-form .btn {
  align-self: center;
  margin-top: 0.5rem;
}

.qualify-form__note {
  text-align: center;
  font-size: 0.8rem;
  color: #68664a;
  margin-bottom: 0;
}

.qualify-thanks {
  text-align: center;
  padding: 2rem 0;
}

.qualify-thanks h3 {
  color: #a5be9b;
  margin-bottom: 0.5rem;
}

.qualify-thanks p {
  color: #bdbba1;
}

/* Results footer actions */
.results-footer-section {
  text-align: center;
  padding: 2rem 0;
}

.results-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.results-share-note {
  font-size: 0.88rem;
  color: #68664a;
  margin-bottom: 0.25rem;
}

.results-share-url {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #a5be9b;
  margin-bottom: 0;
}

/* ============================================
   RESULTS PAGE — Tablet (768px+)
   ============================================ */
@media (min-width: 768px) {
  .results-hero h1 { font-size: 2.2rem; }
  .quiz-question { font-size: 1.6rem; }
  .score-gauge { width: 260px; }
  .subscore-grid { flex-direction: row; }
  .subscore-card { flex: 1; }
}

/* ============================================
   FRAMEWORK PAGE
   ============================================ */

/* VERA:H Letter Grid */
.verah-grid {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.verah-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.verah-letter {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.verah-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: #1a1a1a;
}

.verah-item p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: rgba(165, 190, 155, 0.08);
  border: 1px solid rgba(165, 190, 155, 0.15);
  border-radius: 10px;
  overflow: hidden;
}

.faq-item summary {
  padding: 1.1rem 1.25rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: #a5be9b;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-item p {
  padding: 0 1.25rem 1.1rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #d4d0c0;
  margin: 0;
}

/* Light-background FAQ variant */
.section--light .faq-item,
[style*="FCEAD0"] .faq-item {
  background: rgba(42, 66, 56, 0.05);
  border-color: rgba(42, 66, 56, 0.12);
}

.section--light .faq-item summary,
[style*="FCEAD0"] .faq-item summary {
  color: #1a1a1a;
}

.section--light .faq-item p,
[style*="FCEAD0"] .faq-item p {
  color: #444;
}

.section--light .faq-item summary::after,
[style*="FCEAD0"] .faq-item summary::after {
  color: #3d7769;
}

/* ============================================
   SERVICES PAGE
   ============================================ */

.service-block {
  background: #fff;
  border: 1px solid #e0d5c5;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.service-block__header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.service-block__number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #2a4238;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-block__body p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.service-block__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: #f0ebe3;
  border: 1px solid #e0d5c5;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #2a4238;
  font-family: 'Poppins', sans-serif;
}

/* Light FAQ variant (explicit class) */
.faq-item--light {
  background: rgba(42, 66, 56, 0.05) !important;
  border-color: rgba(42, 66, 56, 0.12) !important;
}

.faq-item--light summary {
  color: #1a1a1a !important;
}

.faq-item--light p {
  color: #444 !important;
}

.faq-item--light summary::after {
  color: #3d7769 !important;
}

/* Steps grid */
.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .steps-grid {
    flex-direction: row;
  }

  .step-card {
    flex: 1;
  }
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(165, 190, 155, 0.08);
  border: 1px solid rgba(165, 190, 155, 0.15);
  border-radius: 16px;
}

.step-card h3 {
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.92rem;
  color: #d4d0c0;
  margin: 0;
  line-height: 1.7;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(59, 92, 77, 0.5);
  border: 1px solid #6e8a72;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* ============================================
   Scroll-triggered fade-in animations
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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

/* Staggered children: cards, stats, split sections */
.fade-in-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.fade-in-stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
.fade-in-stagger.visible > *:nth-child(3) { transition-delay: 0.24s; }
.fade-in-stagger.visible > *:nth-child(4) { transition-delay: 0.36s; }
.fade-in-stagger.visible > *:nth-child(5) { transition-delay: 0.48s; }
.fade-in-stagger.visible > *:nth-child(6) { transition-delay: 0.6s; }

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .fade-in-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================
   Sticky CTA (scroll-triggered)
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #3d7769;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.sticky-cta a:hover {
  background-color: #2c5a4f;
  transform: translateY(-2px);
}

/* Hide on mobile to avoid blocking content */
@media (max-width: 480px) {
  .sticky-cta {
    bottom: 1rem;
    right: 1rem;
  }
  .sticky-cta a {
    padding: 0.65rem 1.25rem;
    font-size: 0.82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sticky-cta {
    transition: none;
  }
}

/* ============================================
   Scroll progress bar (top of page)
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #3d7769, #a5be9b, #d4e8c4);
  z-index: 1100;
  transition: width 0.1s linear;
}

/* ============================================
   Animated nav underline on hover (desktop)
   ============================================ */
@media (min-width: 769px) {
  .nav__links a:not(.nav__cta) {
    position: relative;
  }
  .nav__links a:not(.nav__cta)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3d7769, #a5be9b);
    transition: width 0.3s ease, left 0.3s ease;
    border-radius: 2px;
  }
  .nav__links a:not(.nav__cta):hover::after,
  .nav__links a:not(.nav__cta).active::after {
    width: 100%;
    left: 0;
  }
  .nav__links a:not(.nav__cta).active::after {
    background: #a5be9b;
  }
}

/* ============================================
   CTA button glow pulse
   ============================================ */
.btn--primary {
  position: relative;
  overflow: visible;
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(61, 119, 105, 0.4), rgba(165, 190, 155, 0.3));
  filter: blur(8px);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.btn--primary:hover::before {
  opacity: 1;
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { filter: blur(8px); opacity: 0.6; }
  50% { filter: blur(14px); opacity: 1; }
}

/* ============================================
   3D card tilt on hover (JS handles transform)
   ============================================ */
.card {
  perspective: 800px;
  transform-style: preserve-3d;
}

/* ============================================
   Logo marquee (Trusted By section)
   ============================================ */
.logo-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.logo-marquee__track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.logo-marquee__track:hover {
  animation-play-state: paused;
}

.logo-marquee__track img {
  height: 55px;
  width: auto;
  filter: grayscale(30%);
  opacity: 0.85;
  transition: opacity 0.3s ease, filter 0.3s ease;
  flex-shrink: 0;
}

.logo-marquee__track img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   Floating particles in hero (via JS)
   ============================================ */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(165, 190, 155, 0.3);
  border-radius: 50%;
  animation: float-up linear infinite;
}

@keyframes float-up {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  10% {
    opacity: 1;
    transform: translateY(-10vh) scale(1);
  }
  90% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: translateY(-100vh) scale(0.5);
  }
}

/* ============================================
   Animated border glow on focus area cards
   ============================================ */
.card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  background: linear-gradient(135deg, transparent, rgba(165, 190, 155, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  filter: blur(4px);
}

.card:hover::before {
  opacity: 1;
}

/* ============================================
   Smooth text reveal for headings
   ============================================ */
.text-reveal {
  overflow: hidden;
}

.text-reveal > * {
  animation: revealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transform: translateY(100%);
}

@keyframes revealUp {
  to { transform: translateY(0); }
}

/* ============================================
   Reduced motion: disable all new animations
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .accent {
    animation: none;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #a5be9b;
    background-clip: unset;
  }
  .scroll-progress { display: none; }
  .nav__links a::after { transition: none; }
  .btn--primary::before { display: none; }
  .logo-marquee__track { animation: none; }
  .hero-particle { animation: none; display: none; }
  .card:hover { animation: none; }
}
