/* Tours Hub — main.css
   Brand prefix: thb
   Palette: #0D4F6B brand primary, #F0EDE7 cream, #F5F9FC light bg, #0D3046 dark bg
   Fonts: Plus Jakarta Sans (headings) + Inter (body) + JetBrains Mono (mono)
*/

/* =====================================================================
   0. CUSTOM PROPERTIES
   ===================================================================== */
:root {
  /* Brand palette */
  --thb-brand-primary:      #0D4F6B;
  --thb-brand-mid:          #1A6E8F;
  --thb-accent-dec:         #00B4D8;
  --thb-accent-light:       #48CAE4;
  --thb-accent-aa-light:    #0A6A8F;

  /* Foreground tokens */
  --thb-fg-light-primary:   #0D1F2D;
  --thb-fg-light-secondary: #4A6070;
  --thb-fg-dark-primary:    #F0F7FA;
  --thb-fg-dark-secondary:  #94BAC8;

  /* Background tokens */
  --thb-bg-light:           #F5F9FC;
  --thb-bg-white:           #FFFFFF;
  --thb-bg-cream:           #F0EDE7;
  --thb-bg-dark:            #0D3046;
  --thb-bg-dark-alt:        #0A2233;

  /* Accent */
  --thb-success:            #15803D;
  --thb-warm:               #E8A838;

  /* Spacing */
  --thb-section-pad:        96px;
  --thb-container-max:      1200px;
  --thb-gap:                24px;

  /* Typography */
  --thb-font-heading:       'Plus Jakarta Sans', sans-serif;
  --thb-font-body:          'Inter', sans-serif;
  --thb-font-mono:          'JetBrains Mono', 'Fira Code', 'Consolas', monospace;

  /* Radius */
  --thb-r-card:             12px;
  --thb-r-btn:              8px;
  --thb-r-pill:             100px;

  /* Shadows */
  --thb-shadow-card:        0 2px 8px rgba(13,79,107,0.08);
  --thb-shadow-hover:       0 6px 24px rgba(13,79,107,0.14);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--thb-font-body);
  font-size: 1rem;
  line-height: 1.625;
  color: var(--thb-fg-light-primary);
  background: var(--thb-bg-white);
  -webkit-font-smoothing: antialiased;
}

body.thb-page--dark-top {
  background: var(--thb-bg-dark);
}

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

a {
  color: var(--thb-accent-aa-light);
  text-decoration: none;
  transition: color 0.18s;
}
a:hover { color: var(--thb-brand-primary); }

ul { list-style: none; }

address { font-style: normal; }

/* =====================================================================
   2. TYPOGRAPHY SCALE
   ===================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--thb-font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--thb-fg-light-primary);
}

h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; }
h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); line-height: 1.2; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); line-height: 1.3; }

p { line-height: 1.7; }

.thb-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Dark context typography */
section.thb-section--dark h1,
section.thb-section--dark h2,
section.thb-section--dark h3,
section.thb-section--dark p,
.thb-hero--dark h1,
.thb-hero--dark h2,
.thb-hero--dark p {
  color: var(--thb-fg-dark-primary);
}

.thb-section--dark .thb-eyebrow,
.thb-hero--dark .thb-eyebrow {
  color: var(--thb-accent-light);
}

body.thb-page--light-top h1,
body.thb-page--light-top h2,
body.thb-page--light-top h3 {
  color: var(--thb-fg-light-primary);
}
body.thb-page--light-top .thb-section--dark h1,
body.thb-page--light-top .thb-section--dark h2,
body.thb-page--light-top .thb-section--dark h3,
body.thb-page--light-top .thb-section--dark p {
  color: var(--thb-fg-dark-primary);
}
body.thb-page--light-top .thb-footer h1,
body.thb-page--light-top .thb-footer h2,
body.thb-page--light-top .thb-footer h3 {
  color: var(--thb-fg-dark-primary);
}
body.thb-page--light-top .thb-footer p,
body.thb-page--light-top .thb-footer a,
body.thb-page--light-top .thb-footer span {
  color: var(--thb-fg-dark-secondary);
}
body.thb-page--light-top .thb-footer a:hover {
  color: var(--thb-fg-dark-primary);
}

/* =====================================================================
   3. LAYOUT UTILITIES
   ===================================================================== */
.thb-container {
  max-width: var(--thb-container-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

.thb-section {
  padding: var(--thb-section-pad) 0;
}

.thb-section--dark  { background: var(--thb-bg-dark); }
.thb-section--dark-alt { background: var(--thb-bg-dark-alt); }
.thb-section--light { background: var(--thb-bg-light); }
.thb-section--white { background: var(--thb-bg-white); }
.thb-section--cream { background: var(--thb-bg-cream); }

/* =====================================================================
   4. NAVIGATION
   ===================================================================== */
.thb-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.25s, box-shadow 0.25s;
  height: 68px;
  display: flex;
  align-items: center;
}

/* dark-top: transparent at top, solid on scroll */
body.thb-page--dark-top .thb-nav {
  background: var(--thb-bg-dark);
}
body.thb-page--dark-top .thb-nav.thb-nav--scrolled {
  background: var(--thb-bg-dark);
  box-shadow: 0 1px 0 rgba(0,180,216,0.12);
}

/* light-top: always solid dark */
body.thb-page--light-top .thb-nav {
  background: var(--thb-brand-primary);
  box-shadow: 0 1px 0 rgba(13,79,107,0.15);
}

.thb-nav__inner {
  max-width: var(--thb-container-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  width: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.thb-nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.thb-nav__logo img {
  height: 34px;
  width: auto;
  max-width: 160px;
}

.thb-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.thb-nav .thb-nav__link {
  font-family: var(--thb-font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(240,247,250,0.88);
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 0.18s, background 0.18s;
  text-decoration: none;
  white-space: nowrap;
}
.thb-nav .thb-nav__login { color: rgba(240,247,250,0.88); }
.thb-nav__link:hover {
  color: #FFFFFF;
  background: rgba(255,255,255,0.08);
}

.thb-nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.thb-nav__login {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(240,247,250,0.88);
  padding: 7px 16px;
  border-radius: var(--thb-r-btn);
  border: 1.5px solid rgba(255,255,255,0.28);
  transition: all 0.18s;
  text-decoration: none;
}
.thb-nav__login:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
}

.thb-nav__cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--thb-bg-dark);
  background: var(--thb-accent-light);
  padding: 8px 18px;
  border-radius: var(--thb-r-btn);
  transition: background 0.18s;
  text-decoration: none;
}
.thb-nav__cta:hover {
  background: #00D4E8;
  color: var(--thb-bg-dark);
}

/* Mobile hamburger */
.thb-nav__hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
}
.thb-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--thb-fg-dark-primary);
  border-radius: 2px;
  transition: all 0.2s;
}

.thb-nav__mobile {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--thb-bg-dark);
  z-index: 99;
  padding: 16px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.thb-nav__mobile.is-open { display: block; }
.thb-nav__mobile a {
  display: block;
  padding: 12px clamp(16px, 4vw, 48px);
  color: var(--thb-fg-dark-primary);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.thb-nav__mobile a:last-child { border-bottom: none; }
.thb-nav__mobile a:hover { background: rgba(255,255,255,0.05); }

@media (max-width: 820px) {
  .thb-nav__links,
  .thb-nav__actions { display: none; }
  .thb-nav__hamburger { display: flex; }
}

/* =====================================================================
   5. HERO (DARK)
   ===================================================================== */
.thb-hero--dark {
  background: var(--thb-bg-dark);
  padding: 148px 0 96px;
  position: relative;
  overflow: hidden;
}

.thb-hero--dark .thb-container {
  position: relative;
  z-index: 1;
}

.thb-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.thb-hero__content { max-width: 560px; }

.thb-hero__eyebrow {
  display: inline-block;
  color: var(--thb-accent-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.thb-hero--dark h1 {
  font-family: var(--thb-font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--thb-fg-dark-primary);
  margin-bottom: 20px;
}

.thb-hero--dark .thb-hero__subhead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--thb-fg-dark-secondary);
  margin-bottom: 36px;
  max-width: 480px;
}

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

.thb-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =====================================================================
   6. HERO (LIGHT / SUBPAGE)
   ===================================================================== */
.thb-subhero {
  padding: 120px 0 72px;
  background: var(--thb-bg-light);
}

.thb-subhero__inner {
  max-width: var(--thb-container-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

.thb-subhero__eyebrow {
  display: inline-block;
  color: var(--thb-accent-aa-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.thb-subhero h1 {
  font-family: var(--thb-font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--thb-fg-light-primary);
  margin-bottom: 16px;
  max-width: 760px;
}

.thb-subhero__sub {
  font-size: 1.125rem;
  color: var(--thb-fg-light-secondary);
  max-width: 640px;
  line-height: 1.7;
}

/* Split hero for for-operators / for-resellers */
.thb-hero--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* =====================================================================
   7. BUTTONS
   ===================================================================== */
.thb-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--thb-font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--thb-r-btn);
  padding: 11px 24px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.18s;
  text-decoration: none;
  white-space: nowrap;
}

.thb-btn--primary {
  background: var(--thb-accent-light);
  color: var(--thb-bg-dark);
  border-color: var(--thb-accent-light);
}
.thb-btn--primary:hover {
  background: #00D4E8;
  border-color: #00D4E8;
  color: var(--thb-bg-dark);
}

.thb-btn--outline-light {
  background: transparent;
  color: var(--thb-fg-dark-primary);
  border-color: rgba(255,255,255,0.5);
}
.thb-btn--outline-light:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.8);
  color: #fff;
}

.thb-btn--ghost-dark {
  background: transparent;
  color: var(--thb-fg-dark-primary);
  border-color: rgba(255,255,255,0.3);
}
.thb-btn--ghost-dark:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}

.thb-btn--primary-outline {
  background: transparent;
  color: var(--thb-accent-aa-light);
  border-color: var(--thb-accent-aa-light);
}
.thb-btn--primary-outline:hover {
  background: var(--thb-accent-aa-light);
  color: #fff;
}

/* =====================================================================
   8. CARDS
   ===================================================================== */
.thb-card {
  background: var(--thb-bg-white);
  border-radius: var(--thb-r-card);
  box-shadow: var(--thb-shadow-card);
  padding: 32px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.thb-card:hover {
  box-shadow: var(--thb-shadow-hover);
  transform: translateY(-2px);
}

.thb-card--cream {
  background: var(--thb-bg-cream);
  box-shadow: none;
}

/* =====================================================================
   9. GRID PATTERNS
   ===================================================================== */
.thb-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--thb-gap);
}

.thb-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--thb-gap);
}

.thb-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--thb-gap);
}

@media (max-width: 1024px) {
  .thb-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .thb-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .thb-grid-4,
  .thb-grid-3,
  .thb-grid-2 { grid-template-columns: 1fr; }
}

/* =====================================================================
   10. SECTION HEADING PATTERN
   ===================================================================== */
.thb-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

body.thb-page--light-top .thb-section-label,
.thb-section--light  .thb-section-label,
.thb-section--white  .thb-section-label,
.thb-section--cream  .thb-section-label {
  color: var(--thb-accent-aa-light);
}

.thb-section--dark  .thb-section-label {
  color: var(--thb-accent-light);
}

.thb-section-heading {
  font-family: var(--thb-font-heading);
  font-weight: 700;
  margin-bottom: 16px;
}

.thb-section--light .thb-section-heading,
.thb-section--white .thb-section-heading,
.thb-section--cream .thb-section-heading {
  color: var(--thb-fg-light-primary);
}

.thb-section--dark .thb-section-heading {
  color: var(--thb-fg-dark-primary);
}

.thb-section-sub {
  color: var(--thb-fg-light-secondary);
  font-size: 1.0625rem;
  max-width: 640px;
  line-height: 1.7;
}

.thb-section--dark .thb-section-sub {
  color: var(--thb-fg-dark-secondary);
}

.thb-section__header {
  margin-bottom: 56px;
}

.thb-section__header--centered {
  text-align: center;
  margin-bottom: 56px;
}
.thb-section__header--centered .thb-section-sub {
  margin: 0 auto;
}

/* =====================================================================
   11. FEATURE / ICON ITEMS
   ===================================================================== */
.thb-feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.thb-feature-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.thb-section--light  .thb-feature-item__icon,
.thb-section--white  .thb-feature-item__icon,
.thb-section--cream  .thb-feature-item__icon {
  background: rgba(13,79,107,0.08);
  color: var(--thb-brand-primary);
}

.thb-section--dark .thb-feature-item__icon {
  background: rgba(72,202,228,0.12);
  color: var(--thb-accent-light);
}

.thb-feature-item h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.thb-section--light .thb-feature-item h3,
.thb-section--white .thb-feature-item h3,
.thb-section--cream .thb-feature-item h3 {
  color: var(--thb-fg-light-primary);
}

.thb-section--dark .thb-feature-item h3 {
  color: var(--thb-fg-dark-primary);
}

.thb-feature-item p {
  font-size: 0.9375rem;
  color: var(--thb-fg-light-secondary);
  line-height: 1.6;
}

.thb-section--dark .thb-feature-item p {
  color: var(--thb-fg-dark-secondary);
}

/* =====================================================================
   12. STATS BAND
   ===================================================================== */
.thb-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.thb-stats__item { padding: 8px 0; }

.thb-stats__value {
  font-family: var(--thb-font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--thb-accent-light);
  line-height: 1.1;
  display: block;
}

.thb-stats__label {
  font-size: 0.9375rem;
  color: var(--thb-fg-dark-secondary);
  margin-top: 6px;
  display: block;
}

@media (max-width: 768px) {
  .thb-stats { grid-template-columns: repeat(2, 1fr); }
}

/* =====================================================================
   13. TESTIMONIALS
   ===================================================================== */
.thb-testimonial {
  background: var(--thb-bg-white);
  border-radius: var(--thb-r-card);
  padding: 36px;
  box-shadow: var(--thb-shadow-card);
}

.thb-testimonial__quote {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--thb-fg-light-primary);
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
}

.thb-testimonial__quote::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--thb-accent-dec);
  line-height: 0;
  position: relative;
  top: 12px;
  margin-right: 4px;
  font-family: Georgia, serif;
}

.thb-testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.thb-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--thb-font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  background: var(--thb-brand-primary);
  color: #fff;
  flex-shrink: 0;
}

.thb-testimonial__name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--thb-fg-light-primary);
  display: block;
}

.thb-testimonial__role {
  font-size: 0.8125rem;
  color: var(--thb-fg-light-secondary);
  display: block;
}

/* =====================================================================
   14. BADGE / PILLS
   ===================================================================== */
.thb-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--thb-r-pill);
  padding: 3px 10px;
  background: rgba(13,79,107,0.08);
  color: var(--thb-accent-aa-light);
}

.thb-badge--operator { background: rgba(13,79,107,0.09); color: var(--thb-brand-primary); }
.thb-badge--reseller { background: rgba(0,180,216,0.1); color: #0069A8; }
.thb-badge--platform { background: rgba(21,128,61,0.08); color: var(--thb-success); }
.thb-badge--case     { background: rgba(232,168,56,0.12); color: #9A6800; }
.thb-badge--insight  { background: rgba(74,96,112,0.10); color: var(--thb-fg-light-secondary); }

/* =====================================================================
   15. FOOTER
   ===================================================================== */
.thb-footer {
  background: var(--thb-bg-dark);
  padding: 72px 0 0;
}

.thb-footer__inner {
  max-width: var(--thb-container-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

.thb-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.thb-footer__brand {
  max-width: 280px;
}

.thb-footer__logo {
  height: 30px;
  width: auto;
  margin-bottom: 16px;
}

.thb-footer__tagline {
  font-size: 0.9rem;
  color: var(--thb-fg-dark-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.thb-footer__col-title {
  font-family: var(--thb-font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--thb-fg-dark-primary);
  margin-bottom: 16px;
}

.thb-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.thb-footer__col ul li a {
  font-size: 0.9rem;
  color: var(--thb-fg-dark-secondary);
  text-decoration: none;
  transition: color 0.18s;
}
.thb-footer__col ul li a:hover {
  color: var(--thb-fg-dark-primary);
}

.thb-footer__bottom {
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.thb-footer__copy {
  font-size: 0.8125rem;
  color: var(--thb-fg-dark-secondary);
}

.thb-footer__links {
  display: flex;
  gap: 20px;
}

.thb-footer__links a {
  font-size: 0.8125rem;
  color: var(--thb-fg-dark-secondary);
  text-decoration: none;
  transition: color 0.18s;
}
.thb-footer__links a:hover { color: var(--thb-fg-dark-primary); }

@media (max-width: 900px) {
  .thb-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .thb-footer__grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   16. DUAL-AUDIENCE SPLIT
   ===================================================================== */
.thb-audience-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}

.thb-audience-panel {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.thb-audience-panel--operator {
  background: var(--thb-bg-cream);
}

.thb-audience-panel--reseller {
  background: #E0F3F8;
}

.thb-audience-panel__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.thb-audience-panel--operator .thb-audience-panel__icon {
  background: rgba(13,79,107,0.1);
  color: var(--thb-brand-primary);
}

.thb-audience-panel--reseller .thb-audience-panel__icon {
  background: rgba(13,79,107,0.1);
  color: var(--thb-brand-primary);
}

.thb-audience-panel h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--thb-fg-light-primary);
}

.thb-audience-panel__benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}

.thb-audience-panel__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--thb-fg-light-secondary);
}

.thb-audience-panel__benefits li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--thb-brand-primary);
  flex-shrink: 0;
  margin-top: 3px;
  position: relative;
}

.thb-audience-panel__benefits li::before {
  content: '\2713';
  width: auto;
  height: auto;
  background: none;
  color: var(--thb-brand-primary);
  font-weight: 700;
  font-size: 0.875rem;
  margin-top: 1px;
}

@media (max-width: 768px) {
  .thb-audience-split { grid-template-columns: 1fr; }
  .thb-audience-panel { padding: 48px 32px; }
  .thb-hero__inner { grid-template-columns: 1fr; }
  .thb-hero--split { grid-template-columns: 1fr; }
  .thb-subhero { padding: 100px 0 56px; }
}

/* =====================================================================
   17. HOW IT WORKS STEPS
   ===================================================================== */
.thb-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.thb-steps::after {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.67% + 28px);
  right: calc(16.67% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--thb-accent-dec), transparent);
  opacity: 0.3;
}

.thb-step {
  text-align: center;
  padding: 32px 24px;
}

.thb-step__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--thb-brand-primary);
  color: #fff;
  font-family: var(--thb-font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.thb-step h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--thb-fg-light-primary);
  margin-bottom: 10px;
}

.thb-step p {
  font-size: 0.9375rem;
  color: var(--thb-fg-light-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .thb-steps { grid-template-columns: 1fr; }
  .thb-steps::after { display: none; }
}

/* =====================================================================
   18. PRICING CARDS
   ===================================================================== */
.thb-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.thb-pricing-card {
  background: var(--thb-bg-white);
  border: 2px solid rgba(13,79,107,0.1);
  border-radius: var(--thb-r-card);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow 0.2s;
}

.thb-pricing-card:hover { box-shadow: var(--thb-shadow-hover); }

.thb-pricing-card--highlight {
  border-color: var(--thb-brand-primary);
  background: var(--thb-bg-dark);
  box-shadow: 0 4px 24px rgba(13,79,107,0.18);
  position: relative;
}

.thb-pricing-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--thb-accent-light);
  color: var(--thb-bg-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.thb-pricing-card__tier {
  font-family: var(--thb-font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.thb-pricing-card:not(.thb-pricing-card--highlight) .thb-pricing-card__tier {
  color: var(--thb-fg-light-primary);
}
.thb-pricing-card--highlight .thb-pricing-card__tier {
  color: var(--thb-fg-dark-primary);
}

.thb-pricing-card__price {
  font-family: var(--thb-font-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 4px;
}

.thb-pricing-card:not(.thb-pricing-card--highlight) .thb-pricing-card__price {
  color: var(--thb-fg-light-primary);
}
.thb-pricing-card--highlight .thb-pricing-card__price {
  color: var(--thb-accent-light);
}

.thb-pricing-card__volume {
  font-size: 0.875rem;
  color: var(--thb-fg-light-secondary);
  margin-bottom: 24px;
}
.thb-pricing-card--highlight .thb-pricing-card__volume {
  color: var(--thb-fg-dark-secondary);
}

.thb-pricing-card__features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  border-top: 1px solid rgba(13,79,107,0.08);
  padding-top: 20px;
}
.thb-pricing-card--highlight .thb-pricing-card__features {
  border-top-color: rgba(255,255,255,0.1);
}

.thb-pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--thb-fg-light-secondary);
  line-height: 1.5;
}
.thb-pricing-card--highlight .thb-pricing-card__features li {
  color: var(--thb-fg-dark-secondary);
}

.thb-pricing-card__features li::before {
  content: '\2713';
  color: var(--thb-brand-primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.thb-pricing-card--highlight .thb-pricing-card__features li::before {
  color: var(--thb-accent-light);
}

.thb-pricing-card__note {
  font-size: 0.8125rem;
  color: var(--thb-fg-light-secondary);
  margin-top: 12px;
  text-align: center;
}
.thb-pricing-card--highlight .thb-pricing-card__note {
  color: var(--thb-fg-dark-secondary);
}

@media (max-width: 900px) {
  .thb-pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* =====================================================================
   19. FAQ ACCORDION
   ===================================================================== */
.thb-faq {
  max-width: 720px;
  margin: 0 auto;
}

.thb-faq__item {
  border-bottom: 1px solid rgba(13,79,107,0.12);
}

.thb-faq__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--thb-font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--thb-fg-light-primary);
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.thb-faq__question:hover { color: var(--thb-brand-primary); }

.thb-faq__icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--thb-brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s, background 0.2s;
  color: var(--thb-brand-primary);
  font-size: 0.75rem;
}

.thb-faq__item.is-open .thb-faq__icon {
  transform: rotate(45deg);
  background: var(--thb-brand-primary);
  color: #fff;
}

.thb-faq__answer {
  display: none;
  padding: 0 0 20px;
  font-size: 0.9375rem;
  color: var(--thb-fg-light-secondary);
  line-height: 1.7;
}

.thb-faq__item.is-open .thb-faq__answer { display: block; }

/* =====================================================================
   20. AUTH PAGES
   ===================================================================== */
.thb-auth-page {
  min-height: 100vh;
  background: var(--thb-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  padding-top: 100px;
}

.thb-auth-card {
  background: var(--thb-bg-white);
  border-radius: var(--thb-r-card);
  box-shadow: var(--thb-shadow-hover);
  padding: 48px 40px;
  width: 100%;
  max-width: 440px;
}

.thb-auth-card__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.thb-auth-card__logo img {
  height: 32px;
  width: auto;
}

.thb-auth-card h1 {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--thb-fg-light-primary);
  margin-bottom: 6px;
  text-align: center;
}

.thb-auth-card__sub {
  font-size: 0.9375rem;
  color: var(--thb-fg-light-secondary);
  text-align: center;
  margin-bottom: 32px;
}

.thb-auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.thb-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.thb-form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--thb-fg-light-primary);
}

.thb-form-input,
.thb-form-select {
  font-family: var(--thb-font-body);
  font-size: 1rem;
  color: var(--thb-fg-light-primary);
  background: var(--thb-bg-white);
  border: 1.5px solid rgba(13,79,107,0.2);
  border-radius: var(--thb-r-btn);
  padding: 10px 14px;
  width: 100%;
  max-width: 360px;
  transition: border-color 0.18s;
  -webkit-appearance: none;
  appearance: none;
}

.thb-form-input:focus,
.thb-form-select:focus {
  outline: none;
  border-color: var(--thb-brand-primary);
  box-shadow: 0 0 0 3px rgba(13,79,107,0.1);
}

.thb-form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A6070' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.thb-form-select option {
  background: #fff;
  color: var(--thb-fg-light-primary);
}

.thb-auth-form .thb-btn { width: 100%; justify-content: center; }

.thb-auth-card__footer {
  margin-top: 20px;
  text-align: center;
  font-size: 0.875rem;
  color: var(--thb-fg-light-secondary);
}

.thb-auth-card__footer a {
  color: var(--thb-accent-aa-light);
  font-weight: 500;
}

.thb-auth-link {
  display: block;
  text-align: right;
  font-size: 0.8125rem;
  color: var(--thb-accent-aa-light);
  margin-top: -8px;
}

/* =====================================================================
   21. CONTACT FORM
   ===================================================================== */
.thb-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.thb-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.thb-contact-form .thb-form-input,
.thb-contact-form .thb-form-select {
  max-width: 100%;
}

.thb-form-textarea {
  font-family: var(--thb-font-body);
  font-size: 1rem;
  color: var(--thb-fg-light-primary);
  background: var(--thb-bg-white);
  border: 1.5px solid rgba(13,79,107,0.2);
  border-radius: var(--thb-r-btn);
  padding: 10px 14px;
  width: 100%;
  min-height: 120px;
  resize: vertical;
  transition: border-color 0.18s;
}

.thb-form-textarea:focus {
  outline: none;
  border-color: var(--thb-brand-primary);
  box-shadow: 0 0 0 3px rgba(13,79,107,0.1);
}

.thb-contact-info {
  padding-top: 8px;
}

.thb-contact-info h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--thb-fg-light-primary);
  margin-bottom: 20px;
}

.thb-contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 0.9375rem;
  color: var(--thb-fg-light-secondary);
}

.thb-contact-detail i {
  color: var(--thb-brand-primary);
  width: 20px;
  text-align: center;
  margin-top: 2px;
}

.thb-contact-detail a {
  color: var(--thb-accent-aa-light);
}

@media (max-width: 768px) {
  .thb-contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* =====================================================================
   22. BLOG
   ===================================================================== */
.thb-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--thb-gap);
}

.thb-blog-card {
  background: var(--thb-bg-white);
  border-radius: var(--thb-r-card);
  box-shadow: var(--thb-shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.thb-blog-card:hover {
  box-shadow: var(--thb-shadow-hover);
  transform: translateY(-3px);
}

.thb-blog-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  height: auto;
}

.thb-blog-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.thb-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.thb-blog-card__cat {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--thb-r-pill);
  padding: 3px 9px;
  background: rgba(13,79,107,0.08);
  color: var(--thb-accent-aa-light);
}

.thb-blog-card__date {
  font-size: 0.8125rem;
  color: var(--thb-fg-light-secondary);
}

.thb-blog-card h2 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--thb-fg-light-primary);
  line-height: 1.4;
  margin-bottom: 10px;
}

.thb-blog-card__summary {
  font-size: 0.9rem;
  color: var(--thb-fg-light-secondary);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.thb-blog-card__author {
  font-size: 0.8125rem;
  color: var(--thb-fg-light-secondary);
  margin-bottom: 14px;
}

.thb-blog-card__read {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--thb-accent-aa-light);
  text-decoration: none;
}
.thb-blog-card__read:hover { color: var(--thb-brand-primary); }

@media (max-width: 1024px) { .thb-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .thb-blog-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   23. BLOG ARTICLE PAGE
   ===================================================================== */
.thb-blog-article-layout {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

.thb-blog-article__cover {
  width: 100%;
  height: auto;
  border-radius: var(--thb-r-card);
  margin-bottom: 40px;
  max-width: 760px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.thb-blog-article__header {
  margin-bottom: 36px;
}

.thb-blog-article__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.thb-blog-article__title {
  font-family: var(--thb-font-heading);
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--thb-fg-light-primary);
  margin-bottom: 16px;
}

.thb-blog-article__byline {
  font-size: 0.9rem;
  color: var(--thb-fg-light-secondary);
}

.thb-blog-article__content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--thb-fg-light-primary);
}

body.thb-page--light-top .thb-blog-article__content h2,
body.thb-page--light-top .thb-blog-article__content h3 {
  color: var(--thb-fg-light-primary);
  font-family: var(--thb-font-heading);
  margin: 32px 0 16px;
}

body.thb-page--light-top .thb-blog-article__content p {
  color: var(--thb-fg-light-primary);
  margin-bottom: 20px;
}

body.thb-page--light-top .thb-blog-article__content a {
  color: var(--thb-accent-aa-light);
}

/* =====================================================================
   24. LEGAL PAGES
   ===================================================================== */
.thb-legal-page { background: var(--thb-bg-white); }

.thb-legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  padding-bottom: 80px;
}

.legal-article { font-size: 1rem; }

.legal-header { margin-bottom: 40px; }

.legal-header h1 {
  font-family: var(--thb-font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--thb-fg-light-primary);
  margin-bottom: 8px;
}

.legal-meta {
  font-size: 0.875rem;
  color: var(--thb-fg-light-secondary);
  margin-bottom: 4px;
}

.legal-article section {
  margin-bottom: 36px;
}

body.thb-page--light-top .thb-legal-content .legal-article section h2 {
  font-family: var(--thb-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--thb-fg-light-primary);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(13,79,107,0.08);
}

body.thb-page--light-top .thb-legal-content .legal-article section p {
  color: var(--thb-fg-light-primary);
  line-height: 1.75;
  margin-bottom: 12px;
}

body.thb-page--light-top .thb-legal-content .legal-article section ul {
  list-style: disc;
  padding-left: 24px;
  color: var(--thb-fg-light-secondary);
}

body.thb-page--light-top .thb-legal-content .legal-article section ul li {
  margin-bottom: 6px;
  line-height: 1.6;
}

body.thb-page--light-top .thb-legal-content .legal-article section a {
  color: var(--thb-accent-aa-light);
}

body.thb-page--light-top .thb-legal-content .legal-article address {
  background: var(--thb-bg-light);
  padding: 16px 20px;
  border-radius: var(--thb-r-btn);
  border-left: 3px solid var(--thb-brand-primary);
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--thb-fg-light-primary);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 16px 0;
}

.legal-table th,
.legal-table td {
  border: 1px solid rgba(13,79,107,0.1);
  padding: 10px 14px;
  text-align: left;
  color: var(--thb-fg-light-primary);
}

.legal-table th {
  background: var(--thb-bg-light);
  font-weight: 600;
}

/* =====================================================================
   25. INTEGRATIONS
   ===================================================================== */
.thb-integration-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--thb-bg-white);
  border: 1.5px solid rgba(13,79,107,0.08);
  border-radius: var(--thb-r-card);
  padding: 24px;
  transition: box-shadow 0.2s;
}

.thb-integration-card:hover { box-shadow: var(--thb-shadow-hover); }

.thb-integration-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(13,79,107,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--thb-brand-primary);
  flex-shrink: 0;
}

.thb-integration-card h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--thb-fg-light-primary);
  margin-bottom: 4px;
}

.thb-integration-card p {
  font-size: 0.875rem;
  color: var(--thb-fg-light-secondary);
  line-height: 1.5;
}

/* =====================================================================
   26. API CODE MOCK
   ===================================================================== */
.thb-api-code {
  background: var(--thb-bg-dark-alt);
  border-radius: var(--thb-r-card);
  overflow: hidden;
  border: 1px solid rgba(72,202,228,0.12);
}

.thb-api-code__chrome {
  background: #07161F;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.thb-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.thb-dot--red    { background: #FF5F56; }
.thb-dot--yellow { background: #FFBD2E; }
.thb-dot--green  { background: #27C93F; }

.thb-api-code__title {
  font-size: 0.75rem;
  color: rgba(240,247,250,0.5);
  font-family: var(--thb-font-mono);
  margin-left: 8px;
}

.thb-api-code__body {
  padding: 20px 24px;
  font-family: var(--thb-font-mono);
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--thb-fg-dark-secondary);
  white-space: normal;
  overflow-x: auto;
}

.thb-api-code__body code {
  white-space: pre;
  display: block;
  line-height: 1.5;
}

.thb-tt-method  { color: #48CAE4; font-weight: 600; }
.thb-tt-url     { color: #90E0EF; }
.thb-tt-key     { color: #80CBC4; }
.thb-tt-str     { color: #C3E88D; }
.thb-tt-num     { color: #F78C6C; }
.thb-tt-bool    { color: #89DDFF; }
.thb-tt-comment { color: rgba(148,186,200,0.5); font-style: italic; }
.thb-tt-punct   { color: rgba(148,186,200,0.6); }

/* =====================================================================
   27. COMMISSION FLOW SVG SECTION
   ===================================================================== */
.thb-commission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 768px) {
  .thb-commission-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* =====================================================================
   28. COOKIE BANNER
   ===================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--thb-bg-dark);
  border-top: 1px solid rgba(72,202,228,0.15);
  padding: 16px 0;
}

.cookie-banner__inner {
  max-width: var(--thb-container-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 0.875rem;
  color: var(--thb-fg-dark-secondary);
  flex: 1;
  min-width: 200px;
}

.cookie-banner__text a {
  color: var(--thb-accent-light);
}

.cookie-banner__btn {
  font-family: var(--thb-font-body);
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--thb-accent-light);
  color: var(--thb-bg-dark);
  border: none;
  border-radius: var(--thb-r-btn);
  padding: 9px 20px;
  cursor: pointer;
  transition: background 0.18s;
  white-space: nowrap;
}
.cookie-banner__btn:hover { background: #00D4E8; }

/* =====================================================================
   29. PLATFORM PREVIEW / DASHBOARD SECTION
   ===================================================================== */
.thb-platform-preview {
  background: var(--thb-bg-white);
}

.thb-dashboard-frame {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(13,79,107,0.14);
  border: 1px solid rgba(13,79,107,0.08);
  position: relative;
}

.thb-dashboard-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.thb-booking-notif {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--thb-bg-white);
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(13,79,107,0.15);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
}

.thb-booking-notif__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--thb-success);
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.7; }
}

.thb-booking-notif__text {
  font-weight: 600;
  color: var(--thb-fg-light-primary);
}

/* =====================================================================
   30. FADE-IN (with failsafe)
   ===================================================================== */
.thb-fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.thb-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Failsafe: 1.5s after load, force visible */
@keyframes thb-reveal {
  to { opacity: 1; transform: translateY(0); }
}

/* =====================================================================
   31. MISC UTILITIES
   ===================================================================== */
.thb-text-center { text-align: center; }
.thb-text-dark   { color: var(--thb-fg-dark-primary); }
.thb-mt-0        { margin-top: 0; }
.thb-mb-8        { margin-bottom: 8px; }
.thb-mb-16       { margin-bottom: 16px; }
.thb-mb-24       { margin-bottom: 24px; }
.thb-mb-32       { margin-bottom: 32px; }
.thb-mb-48       { margin-bottom: 48px; }

.thb-trust-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: var(--thb-fg-dark-secondary);
}

.thb-trust-strip i {
  color: var(--thb-accent-light);
}

/* =====================================================================
   32. TEAM CARDS
   ===================================================================== */
.thb-team-card {
  text-align: center;
}

.thb-team-card__portrait {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  display: block;
  border: 3px solid var(--thb-bg-light);
  box-shadow: 0 2px 8px rgba(13,79,107,0.12);
}

.thb-team-card .thb-avatar--large {
  width: 120px;
  height: 120px;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.thb-team-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--thb-fg-light-primary);
  margin-bottom: 4px;
}

.thb-team-card__title {
  font-size: 0.875rem;
  color: var(--thb-accent-aa-light);
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.thb-team-card__bio {
  font-size: 0.875rem;
  color: var(--thb-fg-light-secondary);
  line-height: 1.6;
}

/* =====================================================================
   33. RESPONSIVE ADJUSTMENTS
   ===================================================================== */
@media (max-width: 768px) {
  :root { --thb-section-pad: 60px; }
  .thb-hero--dark { padding: 120px 0 72px; }
  .thb-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .thb-hero__visual { display: none; }
  .thb-steps { grid-template-columns: 1fr; }
  .thb-hero--split { grid-template-columns: 1fr; gap: 40px; }
  .thb-hero--split .thb-hero__visual-raster { display: none; }
}

/* =====================================================================
   34. PLATFORM FEATURE SECTION
   ===================================================================== */
.thb-platform-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.thb-platform-feature--reverse {
  direction: rtl;
}
.thb-platform-feature--reverse > * {
  direction: ltr;
}

.thb-feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.thb-feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--thb-fg-light-secondary);
}

.thb-feature-list__item i {
  color: var(--thb-brand-primary);
  margin-top: 2px;
}

@media (max-width: 860px) {
  .thb-platform-feature { grid-template-columns: 1fr; }
  .thb-platform-feature--reverse { direction: ltr; }
}

/* =====================================================================
   35. ABOUT VALUES
   ===================================================================== */
.thb-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.thb-value-card {
  padding: 36px 28px;
  border-radius: var(--thb-r-card);
  background: var(--thb-bg-white);
  border: 1.5px solid rgba(13,79,107,0.08);
}

.thb-value-card__icon {
  font-size: 1.75rem;
  color: var(--thb-brand-primary);
  margin-bottom: 16px;
}

.thb-value-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--thb-fg-light-primary);
  margin-bottom: 10px;
}

.thb-value-card p {
  font-size: 0.9375rem;
  color: var(--thb-fg-light-secondary);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .thb-values-grid { grid-template-columns: 1fr; }
}
