/* ===== Training ID - Custom Styles ===== */

:root {
  --tid-blue: #1A5276;
  --tid-blue-dark: #0E2F44;
  --tid-blue-mid: #1B6B9E;
  --tid-green: #27AE60;
  --tid-green-hover: #219A52;
  --tid-light-blue: #EBF5FB;
  --tid-light-green: #E8F8F0;
  --tid-off-white: #F7FAFA;
  --tid-dark: #1A2332;
  --tid-body: #4A5568;
  --tid-white: #FFFFFF;
  --tid-border: #E2E8F0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--tid-body);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--tid-dark);
}

/* ===== Scroll Animations ===== */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.35s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.4s; }

/* ===== Navbar ===== */

.tid-navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.3s ease, padding 0.3s ease;
  padding: 14px 0;
  z-index: 1000;
}

.tid-navbar.scrolled {
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
  padding: 10px 0;
}

.tid-navbar .navbar-brand img {
  height: 38px;
  transition: height 0.3s ease;
}

.tid-navbar.scrolled .navbar-brand img {
  height: 32px;
}

.tid-navbar .nav-link {
  color: var(--tid-dark);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 18px;
  transition: color 0.2s ease;
  position: relative;
}

.tid-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--tid-green);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: center;
}

.tid-navbar .nav-link:hover::after,
.tid-navbar .nav-link:focus::after {
  transform: scaleX(1);
}

.tid-navbar .nav-link:hover,
.tid-navbar .nav-link:focus {
  color: var(--tid-blue);
}

/* ===== Buttons ===== */

.btn-tid-green {
  background-color: var(--tid-green);
  color: var(--tid-white);
  border: 2px solid var(--tid-green);
  border-radius: 6px;
  font-weight: 600;
  padding: 12px 32px;
  font-size: 0.95rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.btn-tid-green:hover,
.btn-tid-green:focus {
  background-color: var(--tid-green-hover);
  border-color: var(--tid-green-hover);
  color: var(--tid-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.btn-tid-green:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-tid-blue {
  background-color: var(--tid-blue);
  color: var(--tid-white);
  border: 2px solid var(--tid-blue);
  border-radius: 6px;
  font-weight: 600;
  padding: 12px 32px;
  font-size: 0.95rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-tid-blue:hover,
.btn-tid-blue:focus {
  background-color: var(--tid-blue-dark);
  border-color: var(--tid-blue-dark);
  color: var(--tid-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 82, 118, 0.3);
}

.btn-tid-blue:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-tid-outline-blue {
  background-color: transparent;
  color: var(--tid-blue);
  border: 2px solid var(--tid-blue);
  border-radius: 6px;
  font-weight: 600;
  padding: 12px 32px;
  font-size: 0.95rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-tid-outline-blue:hover,
.btn-tid-outline-blue:focus {
  background-color: var(--tid-blue);
  color: var(--tid-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 82, 118, 0.2);
}

.btn-tid-outline-white {
  background-color: transparent;
  color: var(--tid-white);
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 6px;
  font-weight: 600;
  padding: 12px 32px;
  font-size: 0.95rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-tid-outline-white:hover,
.btn-tid-outline-white:focus {
  background-color: var(--tid-white);
  border-color: var(--tid-white);
  color: var(--tid-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

/* ===== HERO ===== */

.tid-hero {
  position: relative;
  padding: 80px 0 0;
  background: var(--tid-white);
  overflow: hidden;
}

.tid-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, rgba(235, 245, 251, 0.3));
  pointer-events: none;
}

.tid-hero-content {
  padding: 40px 0 100px;
}

.tid-hero .tid-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--tid-green);
  margin-bottom: 24px;
  background: var(--tid-light-green);
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid rgba(39, 174, 96, 0.12);
}

.tid-hero h1 {
  font-size: 3.8rem;
  line-height: 1.08;
  color: var(--tid-dark);
  margin-bottom: 24px;
  letter-spacing: -1.5px;
  font-weight: 800;
}

.tid-hero h1 .highlight {
  color: var(--tid-blue);
  position: relative;
}

.tid-hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 6px;
  background: rgba(39, 174, 96, 0.2);
  border-radius: 3px;
}

.tid-hero .tid-subheadline {
  font-size: 1.15rem;
  color: var(--tid-body);
  margin-bottom: 40px;
  max-width: 460px;
  line-height: 1.8;
}

.tid-hero-visual {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.tid-hero-photo-main {
  position: absolute;
  top: 0;
  right: -40px;
  width: 520px;
  height: 440px;
  object-fit: cover;
  border-radius: 16px 0 0 16px;
  box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.12);
}

.tid-hero-photo-secondary {
  position: absolute;
  bottom: 40px;
  right: 260px;
  width: 240px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  border: 5px solid var(--tid-white);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
  z-index: 2;
}

.tid-hero-floating-card {
  position: absolute;
  bottom: 80px;
  right: 60px;
  background: var(--tid-white);
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: floatCard 3s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.tid-hero-floating-card .fc-icon {
  width: 44px;
  height: 44px;
  background: var(--tid-light-green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tid-green);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.tid-hero-floating-card .fc-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--tid-dark);
}

.tid-hero-floating-card .fc-text span {
  font-size: 0.78rem;
  color: var(--tid-body);
}

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

.tid-trust-bar {
  background: var(--tid-blue);
  padding: 48px 0;
  position: relative;
}

.tid-trust-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 200px,
    rgba(255,255,255,0.02) 200px,
    rgba(255,255,255,0.02) 201px
  );
  pointer-events: none;
}

.tid-trust-bar .trust-stat {
  text-align: center;
  padding: 8px 20px;
  position: relative;
}

.tid-trust-bar .trust-stat::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

.tid-trust-bar .trust-stat:last-child::after {
  display: none;
}

.tid-trust-bar .trust-icon {
  display: block;
  font-size: 1.6rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
}

.tid-trust-bar .trust-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--tid-white);
  display: block;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.tid-trust-bar .trust-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  margin-top: 4px;
  display: block;
  letter-spacing: 0.5px;
}

/* ===== AUDIENCE ROWS (alternating) ===== */

.tid-audience-row {
  padding: 110px 0;
  position: relative;
}

.tid-audience-row:nth-child(odd) {
  background: var(--tid-white);
}

.tid-audience-row:nth-child(even) {
  background: var(--tid-off-white);
}

.tid-audience-row .aud-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--tid-green);
  margin-bottom: 16px;
  display: block;
}

.tid-audience-row h2 {
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
  font-weight: 800;
}

.tid-audience-row p {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 480px;
  color: var(--tid-body);
}

.tid-audience-row .aud-image {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tid-audience-row .aud-image:hover {
  transform: scale(1.01) translateY(-4px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.12);
}

/* ===== HOW IT WORKS ===== */

.tid-how-it-works {
  background: var(--tid-blue);
  padding: 110px 0;
  color: var(--tid-white);
  position: relative;
  overflow: hidden;
}

.tid-how-it-works::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  pointer-events: none;
}

.tid-how-it-works .tid-section-heading h2 {
  color: var(--tid-white);
  font-size: 2.8rem;
  letter-spacing: -1px;
  font-weight: 800;
}

.tid-how-it-works .tid-section-heading p {
  color: rgba(255,255,255,0.6);
}

.tid-step {
  position: relative;
  padding: 40px 32px;
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  height: 100%;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.tid-step:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.12);
}

.tid-step .step-num {
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: 24px;
  font-variant-numeric: tabular-nums;
  transition: color 0.35s ease;
}

.tid-step:hover .step-num {
  color: rgba(39, 174, 96, 0.2);
}

.tid-step h4 {
  color: var(--tid-white);
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.tid-step p {
  color: rgba(255,255,255,0.55);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.7;
}

/* ===== FEATURES ===== */

.tid-features {
  background: var(--tid-white);
  padding: 110px 0;
}

.tid-section-heading {
  margin-bottom: 60px;
}

.tid-section-heading h2 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  letter-spacing: -1px;
  font-weight: 800;
}

.tid-section-heading p {
  font-size: 1.05rem;
  max-width: 540px;
  color: var(--tid-body);
}

.tid-section-heading.text-center p {
  margin: 0 auto;
}

.tid-feature-highlight {
  background: linear-gradient(145deg, var(--tid-light-blue) 0%, #DAE8F3 100%);
  border-radius: 20px;
  padding: 52px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.tid-feature-highlight::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(26, 82, 118, 0.04);
  pointer-events: none;
}

.tid-feature-highlight .fh-icon {
  width: 64px;
  height: 64px;
  background: var(--tid-blue);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tid-white);
  font-size: 1.6rem;
  margin-bottom: 28px;
  box-shadow: 0 8px 24px rgba(26, 82, 118, 0.2);
}

.tid-feature-highlight h3 {
  font-size: 1.7rem;
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.tid-feature-highlight p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--tid-body);
}

.tid-feature-list-item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--tid-border);
  transition: all 0.25s ease;
}

.tid-feature-list-item:hover {
  padding-left: 8px;
}

.tid-feature-list-item:last-child {
  border-bottom: none;
}

.tid-feature-list-item .fli-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--tid-light-green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tid-green);
  font-size: 1.2rem;
  transition: all 0.25s ease;
}

.tid-feature-list-item:hover .fli-icon {
  background: var(--tid-green);
  color: var(--tid-white);
  transform: scale(1.05);
}

.tid-feature-list-item h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.tid-feature-list-item p {
  font-size: 0.88rem;
  color: var(--tid-body);
  margin: 0;
  line-height: 1.6;
}

/* ===== PROBLEM / SOLUTION ===== */

.tid-problem-solution {
  padding: 110px 0;
  background: var(--tid-off-white);
}

.tid-problem-solution .tid-section-heading h2 {
  font-size: 2.8rem;
}

.tid-ps-problem {
  background: var(--tid-white);
  border-radius: 16px;
  padding: 48px;
  border: 1px solid var(--tid-border);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.tid-ps-problem::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #E74C3C;
  border-radius: 16px 16px 0 0;
}

.tid-ps-problem h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
  color: #C0392B;
  font-weight: 800;
}

.tid-ps-problem .strike-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--tid-body);
  font-size: 0.95rem;
  line-height: 1.6;
}

.tid-ps-problem .strike-item i {
  color: #E74C3C;
  margin-top: 4px;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.tid-ps-solution {
  background: var(--tid-blue);
  border-radius: 16px;
  padding: 48px;
  height: 100%;
  color: var(--tid-white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(26, 82, 118, 0.2);
}

.tid-ps-solution::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--tid-green);
  border-radius: 16px 16px 0 0;
}

.tid-ps-solution::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(39, 174, 96, 0.08);
  pointer-events: none;
}

.tid-ps-solution h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
  color: var(--tid-white);
  font-weight: 800;
}

.tid-ps-solution .check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.6;
}

.tid-ps-solution .check-item i {
  color: var(--tid-green);
  margin-top: 4px;
  flex-shrink: 0;
  font-size: 0.85rem;
}

/* ===== INDUSTRY MOSAIC ===== */

.tid-mosaic {
  padding: 0;
  overflow: hidden;
}

.tid-mosaic-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 4px;
}

.tid-mosaic-grid .mosaic-item {
  overflow: hidden;
  position: relative;
}

.tid-mosaic-grid .mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.tid-mosaic-grid .mosaic-item:hover img {
  transform: scale(1.06);
}

.tid-mosaic-grid .mosaic-item.tall {
  grid-row: span 2;
}

.tid-mosaic-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 32px 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
  color: var(--tid-white);
}

.tid-mosaic-overlay span {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ===== FINAL CTA ===== */

.tid-final-cta {
  background: linear-gradient(135deg, var(--tid-blue-dark) 0%, var(--tid-blue) 60%, var(--tid-blue-mid) 100%);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.tid-final-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(39, 174, 96, 0.06);
}

.tid-final-cta::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
}

.tid-final-cta h2 {
  color: var(--tid-white);
  font-size: 2.8rem;
  margin-bottom: 16px;
  letter-spacing: -1px;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.tid-cta-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  height: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.tid-cta-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
}

.tid-cta-card .cta-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.6rem;
  color: var(--tid-white);
}

.tid-cta-card h3 {
  color: var(--tid-white);
  font-size: 1.5rem;
  margin-bottom: 14px;
  font-weight: 800;
}

.tid-cta-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.tid-cta-card .store-badge-img {
  height: 48px;
  opacity: 0.85;
  transition: all 0.25s ease;
}

.tid-cta-card .store-badge-img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */

.tid-footer {
  background: var(--tid-blue-dark);
  padding: 64px 0 28px;
  color: rgba(255, 255, 255, 0.6);
}

.tid-footer h6 {
  color: var(--tid-white);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.tid-footer a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: all 0.2s ease;
}

.tid-footer a:hover {
  color: var(--tid-white);
  padding-left: 2px;
}

.tid-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tid-footer ul li {
  margin-bottom: 10px;
}

.tid-footer .footer-logo img {
  height: 34px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.tid-footer .footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}

.tid-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  margin-top: 48px;
  font-size: 0.82rem;
}

.tid-footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255,255,255,0.6);
  margin-right: 6px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 0.9rem;
}

.tid-footer .social-links a:hover {
  background: var(--tid-green);
  color: var(--tid-white);
  transform: translateY(-3px);
}

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

@media (max-width: 991.98px) {
  .tid-hero h1 {
    font-size: 2.6rem;
  }

  .tid-hero-content {
    padding: 20px 0 50px;
  }

  .tid-hero-visual {
    position: relative;
    min-height: 360px;
    margin-bottom: 40px;
  }

  .tid-hero-photo-main {
    position: relative;
    right: auto;
    width: 100%;
    height: 340px;
    border-radius: 12px;
  }

  .tid-hero-photo-secondary {
    position: absolute;
    bottom: -20px;
    right: auto;
    left: 20px;
    width: 160px;
    height: 140px;
  }

  .tid-hero-floating-card {
    bottom: -10px;
    right: 20px;
  }

  .tid-audience-row {
    padding: 70px 0;
  }

  .tid-audience-row h2 {
    font-size: 2rem;
  }

  .tid-audience-row .aud-image {
    height: 320px;
    margin-bottom: 32px;
  }

  .tid-section-heading h2,
  .tid-how-it-works .tid-section-heading h2,
  .tid-problem-solution .tid-section-heading h2,
  .tid-audience-row h2 {
    font-size: 2rem;
  }

  .tid-mosaic-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px;
  }

  .tid-mosaic-grid .mosaic-item.tall {
    grid-row: span 1;
  }

  .tid-final-cta h2 {
    font-size: 2.2rem;
  }

  .tid-trust-bar .trust-stat::after {
    display: none;
  }

  /* Disable motion for reveal on tablet */
  .reveal-left, .reveal-right {
    transform: translateY(32px);
  }
}

@media (max-width: 767.98px) {
  .tid-hero h1 {
    font-size: 2.1rem;
    letter-spacing: -0.5px;
  }

  .tid-hero .tid-subheadline {
    font-size: 1rem;
  }

  .tid-audience-row {
    padding: 50px 0;
  }

  .tid-audience-row h2 {
    font-size: 1.8rem;
  }

  .tid-audience-row .aud-image {
    height: 240px;
  }

  .tid-audience-row p {
    max-width: none;
  }

  .tid-feature-highlight {
    padding: 32px;
    margin-bottom: 24px;
  }

  .tid-ps-problem,
  .tid-ps-solution {
    padding: 32px;
  }

  .tid-mosaic-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px;
  }

  .tid-final-cta {
    padding: 70px 0;
  }

  .tid-final-cta h2 {
    font-size: 1.8rem;
  }

  .tid-trust-bar .trust-number {
    font-size: 1.3rem;
  }

  .tid-trust-bar .trust-label {
    font-size: 0.75rem;
  }

  .tid-section-heading h2,
  .tid-how-it-works .tid-section-heading h2,
  .tid-problem-solution .tid-section-heading h2 {
    font-size: 1.8rem;
  }

  /* Reduce animation distance on mobile */
  .reveal { transform: translateY(20px); }
  .reveal-left, .reveal-right { transform: translateY(20px); }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .tid-hero-floating-card {
    animation: none;
  }

  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
