/* Drive2Thrive — Custom Styles + Component System */

/* ============================================================
   RESET & BASE
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1B2421;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
}

/* ============================================================
   BUTTON COMPONENT
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Primary — moss green fill */
.btn--primary {
  background: #3F5B49;
  color: #FFFFFF;
  border-color: #3F5B49;
}

.btn--primary:hover:not(:disabled) {
  background: #354D3D;
  border-color: #354D3D;
}

.btn--primary:active:not(:disabled) {
  background: #2B3F32;
}

/* Secondary — outline */
.btn--secondary {
  background: transparent;
  color: #1B2421;
  border-color: rgba(27, 36, 33, 0.2);
}

.btn--secondary:hover:not(:disabled) {
  background: rgba(27, 36, 33, 0.04);
  border-color: rgba(27, 36, 33, 0.35);
}

.btn--secondary:active:not(:disabled) {
  background: rgba(27, 36, 33, 0.08);
}

/* Ghost — no border */
.btn--ghost {
  background: transparent;
  color: #3F5B49;
  border-color: transparent;
}

.btn--ghost:hover:not(:disabled) {
  background: rgba(63, 91, 73, 0.08);
}

/* Sizes */
.btn--sm {
  font-size: 0.8125rem;
  padding: 0.5rem 1rem;
}

.btn--lg {
  font-size: 0.9375rem;
  padding: 0.875rem 2rem;
}

.btn--full {
  width: 100%;
}

/* Icon inside button */
.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ============================================================
   CARD COMPONENT
   ============================================================ */

.card {
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 6px;
  overflow: hidden;
}

.card--hover:hover {
  border-color: #D1D5C8;
}

.card__header {
  padding: 1.5rem 1.5rem 0;
}

.card__content {
  padding: 1.5rem;
}

.card__footer {
  padding: 0 1.5rem 1.5rem;
}

/* Card with top accent */
.card--accent-green {
  border-top: 3px solid #3F5B49;
}

.card--accent-gold {
  border-top: 3px solid #C99A4B;
}

/* ============================================================
   ACCORDION COMPONENT
   ============================================================ */

.accordion {
  border: 1px solid #E5E5E5;
  border-radius: 6px;
  overflow: hidden;
}

.accordion__item {
  border-bottom: 1px solid #E5E5E5;
}

.accordion__item:last-child {
  border-bottom: none;
}

.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1B2421;
  transition: background 0.15s ease;
}

.accordion__trigger:hover {
  background: rgba(27, 36, 33, 0.02);
}

.accordion__trigger:focus-visible {
  outline: 2px solid #3F5B49;
  outline-offset: -2px;
}

.accordion__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #1B2421;
  opacity: 0.5;
  transition: transform 0.2s ease;
}

.accordion__item[data-state="open"] .accordion__icon {
  transform: rotate(180deg);
}

.accordion__content {
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  max-height: 0;
  padding: 0 1.5rem;
}

.accordion__item[data-state="open"] .accordion__content {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem;
}

.accordion__body {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(27, 36, 33, 0.7);
}

/* ============================================================
   SHEET COMPONENT (Mobile Nav Drawer)
   ============================================================ */

.sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27, 36, 33, 0.4);
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.sheet-overlay[data-state="open"] {
  opacity: 1;
  pointer-events: auto;
}

.sheet {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 360px;
  background: #FFFFFF;
  z-index: 51;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.sheet[data-state="open"] {
  transform: translateX(0);
}

.sheet__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #E5E5E5;
}

.sheet__title {
  font-family: 'Fraunces', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1B2421;
}

.sheet__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #1B2421;
  transition: background 0.15s ease;
}

.sheet__close:hover {
  background: rgba(27, 36, 33, 0.06);
}

.sheet__close:focus-visible {
  outline: 2px solid #3F5B49;
  outline-offset: 2px;
}

.sheet__close svg {
  width: 18px;
  height: 18px;
}

.sheet__body {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sheet__link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #1B2421;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.15s ease;
}

.sheet__link:hover {
  background: rgba(27, 36, 33, 0.04);
}

.sheet__link--active {
  color: #3F5B49;
  background: rgba(63, 91, 73, 0.06);
}

.sheet__footer {
  padding: 1.5rem;
  border-top: 1px solid #E5E5E5;
}

/* ============================================================
   FORM COMPONENT
   ============================================================ */

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1B2421;
}

.form-label--required::after {
  content: ' *';
  color: #DC2626;
}

.form-input,
.form-textarea,
.form-select {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: #1B2421;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(27, 36, 33, 0.35);
}

.form-input:hover,
.form-textarea:hover,
.form-select:hover {
  border-color: #D1D5C8;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: #3F5B49;
  box-shadow: 0 0 0 3px rgba(63, 91, 73, 0.1);
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%231B2421' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Error state */
.form-input--error,
.form-textarea--error,
.form-select--error {
  border-color: #DC2626;
}

.form-input--error:focus,
.form-textarea--error:focus,
.form-select--error:focus {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-error {
  font-size: 0.8125rem;
  color: #DC2626;
}

.form-hint {
  font-size: 0.8125rem;
  color: rgba(27, 36, 33, 0.5);
}

/* ============================================================
   NAV LINK UNDERLINE EFFECT
   ============================================================ */

.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #3F5B49;
  transition: width 0.25s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* ============================================================
   TWO-PATH SPLIT PANELS
   ============================================================ */

.track-split {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
}

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

.track-split__divider {
  display: none;
}

@media (min-width: 768px) {
  .track-split__divider {
    display: block;
    background: #D1D5C8;
    width: 1px;
    justify-self: center;
  }
}

.track-panel {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .track-panel {
    padding: 3.5rem 3rem;
  }
}

.track-panel--employers {
  background: #FFFFFF;
  border-top: 3px solid #3F5B49;
}

.track-panel--candidates {
  background: #F5F7F4;
  border-top: 3px solid #C99A4B;
}

@media (min-width: 768px) {
  .track-panel--employers {
    border-radius: 6px 0 0 6px;
  }

  .track-panel--candidates {
    border-radius: 0 6px 6px 0;
  }
}

@media (max-width: 767px) {
  .track-panel--candidates {
    border-top: none;
    border-left: 3px solid #C99A4B;
  }
}

.track-panel:hover {
  background: #FAFAFA;
}

.track-panel--candidates:hover {
  background: #EEF1EC;
}

.track-panel__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.track-panel--employers .track-panel__label {
  color: #3F5B49;
}

.track-panel--candidates .track-panel__label {
  color: #C99A4B;
}

.track-panel__heading {
  font-family: 'Fraunces', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #1B2421;
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .track-panel__heading {
    font-size: 2rem;
  }
}

.track-panel__body {
  color: rgba(27, 36, 33, 0.6);
  line-height: 1.7;
  margin-bottom: 2rem;
  flex: 1;
}

/* ============================================================
   TRACK INDICATOR BAR
   ============================================================ */

.nav-track-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
}

.nav-track-bar--employers {
  background: #3F5B49;
}

.nav-track-bar--candidates {
  background: #C99A4B;
}

/* ============================================================
   PAGE HERO TINTS
   ============================================================ */

.page-hero--employers {
  background: #FFFFFF;
}

.page-hero--candidates {
  background: #F9FAF8;
}

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

.process-step {
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 14px;
  right: -32px;
  width: 48px;
  height: 1.5px;
  background: #E5E5E5;
}

.process-step:last-child::after {
  display: none;
}

/* ============================================================
   STATS
   ============================================================ */

.stat-number {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1;
  color: #3F5B49;
}

/* ============================================================
   QUOTE
   ============================================================ */

.quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 72px;
  line-height: 1;
  color: #C99A4B;
  opacity: 0.3;
}

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

@media (max-width: 768px) {
  .process-step::after {
    display: none;
  }

  .stat-number {
    font-size: 32px;
  }
}

/* ============================================================
   LOGO
   ============================================================ */

.logo-text {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 20px;
  color: #1B2421;
  letter-spacing: -0.5px;
}

/* Logo image sizing */
.nav-logo {
  height: 44px;
  width: auto;
  display: block;
}

.sheet-logo {
  height: 36px;
  width: auto;
  display: block;
}

.footer-logo {
  height: 32px;
  width: auto;
  display: block;
}

/* Nav bar — fixed height, logo constrained within */
nav {
  height: 80px;
  display: flex;
  align-items: center;
}

nav > div {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

nav img {
  height: 100%;
  max-height: 80px;
  width: auto;
  display: block;
  background: #ffffff;
  object-fit: contain;
}

/* Mobile sheet — logo constrained */
.sheet__header img {
  max-height: 52px;
  width: auto;
  display: block;
}

/* Footer — logo constrained */
.footer-premium img {
  max-height: 60px;
  width: auto;
  display: block;
}

/* ============================================================
   SEPARATOR
   ============================================================ */

.separator {
  width: 48px;
  height: 2px;
  background: #C99A4B;
}

.separator--green {
  background: #3F5B49;
}

/* ============================================================
   FOCUS RING OVERRIDE (global)
   ============================================================ */

a:focus-visible,
button:focus-visible,
select:focus-visible {
  outline: 2px solid #3F5B49;
  outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* ============================================================
   HERO — Full-bleed photography with gradient overlay
   ============================================================ */

.hero-photo {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  min-height: 520px;
}

.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(27, 36, 33, 0.92) 0%,
    rgba(27, 36, 33, 0.78) 35%,
    rgba(27, 36, 33, 0.4) 65%,
    rgba(27, 36, 33, 0.1) 100%
  );
  z-index: 1;
}

.hero-photo > * {
  position: relative;
  z-index: 2;
}

.hero-photo .hero-headline,
.hero-photo .hero-subtext,
.hero-photo .hero-label {
  color: #FFFFFF;
}

.hero-photo .hero-cta {
  position: relative;
  z-index: 60;
}

.hero-photo .text-ink\/60 {
  color: rgba(255, 255, 255, 0.7) !important;
}

.hero-photo .separator {
  background: #C99A4B;
}

.hero-photo .tracking-widest {
  color: #C99A4B !important;
}

/* Hero headline — fluid sizing */
.hero-headline {
  font-size: clamp(1.75rem, 6vw, 3.75rem);
}

/* Shorter hero variant for inner pages */
.hero-photo--short {
  padding-top: 8rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .hero-photo--short {
    padding-top: 10rem;
    padding-bottom: 5rem;
  }
}

/* ── Mobile hero adjustments ── */
@media (max-width: 767px) {
  /* Index hero: shorter on mobile */
  .hero-photo:not(.hero-photo--short) {
    min-height: 420px !important;
  }

  /* Adjust focal point per photo on mobile */
  .hero-photo:not(.hero-photo--short) {
    background-position: 30% center;
  }

  .hero-photo--short {
    padding-top: 7rem;
    padding-bottom: 3rem;
  }

  /* Darker gradient on mobile for text contrast */
  .hero-photo::before {
    background: linear-gradient(
      180deg,
      rgba(27, 36, 33, 0.95) 0%,
      rgba(27, 36, 33, 0.85) 40%,
      rgba(27, 36, 33, 0.7) 100%
    );
  }
}

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

.testimonial-card {
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 6px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(27, 36, 33, 0.07);
}

.testimonial-card--compact {
  padding: 1.75rem;
}

.quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  line-height: 1;
  color: #C99A4B;
  opacity: 0.25;
  margin-bottom: 0.5rem;
}

.quote-mark--sm {
  font-size: 40px;
}

.testimonial-text {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(27, 36, 33, 0.7);
  margin-bottom: 1.5rem;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  border-top: 1px solid #F0F0F0;
  padding-top: 1.25rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #3F5B49;
  color: #FFFFFF;
  font-family: 'Fraunces', serif;
  font-size: 0.8125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-name {
  font-family: 'Fraunces', serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1B2421;
}

.testimonial-role {
  font-size: 0.8125rem;
  color: rgba(27, 36, 33, 0.5);
}

.testimonial-card--compact .testimonial-name {
  margin-top: 0;
}

.testimonial-card--compact .testimonial-role {
  margin-top: 0.125rem;
}

/* ============================================================
   TESTIMONIAL CAROUSEL
   ============================================================ */

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem 0;
  flex: 1;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-track .testimonial-card {
  flex: 0 0 calc(50% - 0.75rem);
  scroll-snap-align: start;
  min-width: 320px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #E5E5E5;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  color: #1B2421;
  flex-shrink: 0;
}

.carousel-arrow:hover {
  background: #3F5B49;
  border-color: #3F5B49;
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(63, 91, 73, 0.2);
}

.carousel-arrow--prev {
  left: -22px;
}

.carousel-arrow--next {
  right: -22px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  position: absolute;
  bottom: -2rem;
  left: 0;
  right: 0;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D1D5C8;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-dot.active {
  background: #3F5B49;
  transform: scale(1.3);
}

.carousel-dot:hover {
  background: #3F5B49;
}

@media (max-width: 768px) {
  .carousel-track .testimonial-card {
    flex: 0 0 85%;
    min-width: 260px;
  }

  .carousel-arrow {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .carousel-track {
    scroll-behavior: auto;
  }
}

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

/* ============================================================
   SERVICES GRID
   ============================================================ */

.svc-grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.25rem;
  border-radius: 6px;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.svc-grid-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(27, 36, 33, 0.08);
  border-color: #D1D5C8;
}

.svc-grid-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(63, 91, 73, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.25s ease, transform 0.25s ease;
}

.svc-grid-item:hover .svc-grid-icon {
  background: #3F5B49;
  transform: scale(1.08);
}

.svc-grid-icon svg {
  width: 24px;
  height: 24px;
  color: #3F5B49;
  transition: color 0.25s ease;
}

.svc-grid-item:hover .svc-grid-icon svg {
  color: #FFFFFF;
}

.svc-grid-label {
  font-family: 'Fraunces', serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1B2421;
  margin-bottom: 0.5rem;
}

.svc-grid-desc {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(27, 36, 33, 0.55);
}

@media (prefers-reduced-motion: reduce) {
  .svc-grid-item {
    transition: none;
  }
  .svc-grid-icon {
    transition: none;
  }
  .svc-grid-icon svg {
    transition: none;
  }
}

/* ============================================================
   MARQUEE BAND
   ============================================================ */

.marquee-band {
  background: #1B2421;
  overflow: hidden;
  white-space: nowrap;
  padding: 0.75rem 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 20s linear infinite;
}

.marquee-content {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  padding: 0 0.5rem;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.marquee-track:hover {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

/* ============================================================
   TRUST CALLOUT BAR
   ============================================================ */

.trust-bar {
  border-bottom: 1px solid #E5E5E5;
  background: #FFFFFF;
}

.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 0;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(27, 36, 33, 0.6);
  letter-spacing: 0.01em;
}

.trust-bar__item svg {
  width: 14px;
  height: 14px;
  color: #3F5B49;
  flex-shrink: 0;
}

.trust-bar__divider {
  width: 1px;
  height: 16px;
  background: #E5E5E5;
  margin: 0 1.5rem;
}

@media (max-width: 768px) {
  .trust-bar__divider {
    display: none;
  }

  .trust-bar__inner {
    gap: 0.75rem;
  }
}

/* ============================================================
   SERVICE CARDS — "Why Choose Us" and "What's Included"
   ============================================================ */

.service-card {
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-top: 2px solid #3F5B49;
  border-radius: 6px;
  padding: 1.75rem 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(27, 36, 33, 0.08);
}

.service-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: rgba(63, 91, 73, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-card__icon svg {
  width: 20px;
  height: 20px;
  color: #3F5B49;
}

.service-card__heading {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1B2421;
  margin-bottom: 0.5rem;
}

.service-card__body {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(27, 36, 33, 0.6);
}

@media (prefers-reduced-motion: reduce) {
  .service-card:hover {
    transform: none;
    box-shadow: none;
  }
}

/* ============================================================
   FOOTER — Premium depth
   ============================================================ */

.footer-premium {
  border-top: 2px solid #C99A4B;
  background: #1B2421;
  color: rgba(255, 255, 255, 0.7);
  padding: 3.5rem 1.5rem 2rem;
}

.footer-premium .logo-text {
  color: #FFFFFF;
}

.footer-premium a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.15s ease;
}

.footer-premium a:hover {
  color: #FFFFFF;
}

.footer-premium .footer-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1rem;
}

.footer-premium .footer-link {
  display: block;
  font-size: 0.8125rem;
  padding: 0.3rem 0;
  color: rgba(255, 255, 255, 0.55);
}

.footer-premium .footer-link:hover {
  color: #FFFFFF;
}

.footer-premium .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-premium .footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-premium .footer-bottom a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-premium .footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.6);
}

.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.footer-social a:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

.footer-social a svg {
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-social a:hover svg {
  color: #FFFFFF;
}

/* ============================================================
   COMPARISON LAYOUT (Our Focus → Your Benefit)
   ============================================================ */

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
}

.comparison__col {
  padding: 0;
}

.comparison__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(27, 36, 33, 0.4);
  margin-bottom: 1.25rem;
}

.comparison__item {
  padding: 1rem 0;
  border-bottom: 1px solid #E5E5E5;
}

.comparison__item:last-child {
  border-bottom: none;
}

.comparison__item-title {
  font-family: 'Fraunces', serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1B2421;
  margin-bottom: 0.25rem;
}

.comparison__item-desc {
  font-size: 0.8125rem;
  color: rgba(27, 36, 33, 0.55);
  line-height: 1.5;
}

.comparison__arrow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #3F5B49;
  background: #FFFFFF;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E5E5E5;
  z-index: 2;
}

.comparison__arrow svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 767px) {
  .comparison__arrow {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 1rem auto;
  }

  .comparison__arrow svg {
    transform: rotate(90deg);
  }
}

/* ============================================================
   TRUST STATEMENT BLOCK (Fee terms)
   ============================================================ */

.trust-statement {
  border: 1px solid #E5E5E5;
  border-left: 3px solid #3F5B49;
  border-radius: 6px;
  padding: 1.5rem 1.75rem;
  background: #FFFFFF;
}

.trust-statement__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.trust-statement__item:not(:last-child) {
  border-bottom: 1px solid #F0F0F0;
}

.trust-statement__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #3F5B49;
}

.trust-statement__text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(27, 36, 33, 0.7);
}

/* ============================================================
   HORIZONTAL PROCESS STRIP (About page 5-step)
   ============================================================ */

.process-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 768px) {
  .process-strip {
    grid-template-columns: repeat(5, 1fr);
  }
}

.process-strip__step {
  position: relative;
  padding: 1.5rem 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .process-strip__step {
    padding: 0 0.75rem;
  }

  .process-strip__step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 22px;
    right: -4px;
    width: 8px;
    height: 1.5px;
    background: #D1D5C8;
    z-index: 1;
  }
}

.process-strip__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #3F5B49;
  color: #FFFFFF;
  font-family: 'Fraunces', serif;
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 auto 1rem;
}

.process-strip__title {
  font-family: 'Fraunces', serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1B2421;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.process-strip__body {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(27, 36, 33, 0.6);
}

/* ============================================================
   SECTION ALTERNATING BACKGROUNDS
   ============================================================ */

.section-moss {
  background: #F4F7F5;
}

/* ============================================================
   TALENT NETWORK SVG
   ============================================================ */

.talent-network {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.talent-network--mobile {
  display: none;
}

@media (max-width: 767px) {
  .talent-network--desktop {
    display: none;
  }
  .talent-network--mobile {
    display: block;
    max-width: 400px;
  }
}

/* ============================================================
   SCROLL OFFSET — Account for sticky nav height
   ============================================================ */

[id] {
  scroll-margin-top: 100px;
}

/* ============================================================
   HERO ENTRANCE ANIMATION
   ============================================================ */

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

.hero-headline .word {
  display: inline-block;
  opacity: 0;
  animation: fadeUp 0.5s ease-out forwards;
}

.hero-subtext,
.hero-cta {
  opacity: 0;
  animation: fadeUp 0.5s ease-out forwards;
}

.hero-label {
  opacity: 0;
  animation: fadeUp 0.5s ease-out forwards;
}

@media (prefers-reduced-motion: reduce) {
  .word,
  .hero-subtext,
  .hero-cta,
  .hero-label {
    animation: none;
    opacity: 1;
  }
}

/* ============================================================
   SCROLL-TRIGGERED REVEALS
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-child {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible .reveal-child {
  opacity: 1;
  transform: translateY(0);
}

.reveal.visible .reveal-child:nth-child(1) { transition-delay: 0ms; }
.reveal.visible .reveal-child:nth-child(2) { transition-delay: 80ms; }
.reveal.visible .reveal-child:nth-child(3) { transition-delay: 160ms; }
.reveal.visible .reveal-child:nth-child(4) { transition-delay: 240ms; }
.reveal.visible .reveal-child:nth-child(5) { transition-delay: 320ms; }
.reveal.visible .reveal-child:nth-child(6) { transition-delay: 400ms; }

.reveal.visible .carousel-track .testimonial-card {
  opacity: 0;
  transform: translateY(20px) scale(0.97);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal.visible .carousel-track .testimonial-card:nth-child(1) { transition-delay: 100ms; }
.reveal.visible .carousel-track .testimonial-card:nth-child(2) { transition-delay: 180ms; }
.reveal.visible .carousel-track .testimonial-card:nth-child(3) { transition-delay: 260ms; }
.reveal.visible .carousel-track .testimonial-card:nth-child(4) { transition-delay: 340ms; }
.reveal.visible .carousel-track .testimonial-card:nth-child(5) { transition-delay: 420ms; }
.reveal.visible .carousel-track .testimonial-card:nth-child(6) { transition-delay: 500ms; }
.reveal.visible .carousel-track .testimonial-card:nth-child(7) { transition-delay: 580ms; }
.reveal.visible .carousel-track .testimonial-card:nth-child(8) { transition-delay: 660ms; }
.reveal.visible .carousel-track .testimonial-card:nth-child(9) { transition-delay: 740ms; }

.reveal.visible .carousel-track .testimonial-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal.visible .carousel-arrow {
  opacity: 0;
  transform: translateY(-50%) scale(0.8);
  transition: opacity 0.4s ease-out 0.3s, transform 0.4s ease-out 0.3s, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.reveal.visible .carousel-arrow.visible {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.reveal.visible .carousel-dots {
  opacity: 0;
  transition: opacity 0.4s ease-out 0.5s;
}

.reveal.visible .carousel-dots.visible {
  opacity: 1;
}

/* --- Button hover scale --- */
.btn {
  transition: all 0.15s ease;
}

.btn:hover:not(:disabled) {
  transform: scale(1.02);
}

.btn:active:not(:disabled) {
  transform: scale(0.98);
}

/* --- Prefers reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-child {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
