/* =========================
   About Hero Section
   ========================= */

.tmd-about-hero {
  min-height: 100vh;
  /* 100vh minus total header space (92px height + 16px top) */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 5vh;
}

.tmd-about-hero-inner {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Hero Icon with Glow Effects */
.tmd-about-hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--tmd-white);
  border-radius: 50%;
  box-shadow:
    0 2px 8px rgba(0, 113, 227, 0.06),
    0 0 0 1px rgba(0, 113, 227, 0.08),
    0 0 12px rgba(0, 113, 227, 0.1);
  padding: 0.7rem;
  position: relative;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.tmd-about-hero-icon::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(0, 113, 227, 0.08) 0%,
      rgba(0, 113, 227, 0.04) 50%,
      transparent 80%);
  z-index: -1;
  animation: heroGlow 4s ease-in-out infinite alternate;
}

.tmd-about-hero-icon svg {
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 0 4px rgba(0, 113, 227, 0.15));
  animation: svgGlow 5s ease-in-out infinite alternate;
}

/* Hero Title with Drop-in Animation */
.tmd-about-hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: var(--font-xxxxxl);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 auto;
}

.tmd-about-hero-title .tmd-about-drop-word:nth-child(1) {
  font-size: calc(var(--font-xxxxxl) * 0.6);
  font-weight: 600;
  animation-delay: 0.2s;
  margin-bottom: 0.5rem;
}

.tmd-about-drop-word {
  opacity: 0;
  transform: translateY(-30px);
  animation: aboutDropIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.tmd-about-drop-word:nth-child(2) {
  animation-delay: 0.6s;
}

.tmd-about-hero-subtitle {
  font-size: 1.30rem;
  max-width: 600px;
}

/* =========================
   Hero Animations
   ========================= */

@keyframes heroGlow {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }

  100% {
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes svgGlow {
  0% {
    filter: drop-shadow(0 0 4px rgba(0, 113, 227, 0.15));
  }

  100% {
    filter: drop-shadow(0 0 6px rgba(0, 113, 227, 0.25));
  }
}

@keyframes aboutDropIn {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



/* =========================
   Tablet Responsive Design - Hero Section
   ========================= */

@media (min-width: 700px) and (max-width: 999px) {
  .tmd-about-hero {
    min-height: 100vh;
  }

  .tmd-about-hero-inner {
    max-width: 600px;
    padding: 0 1.5rem;
  }

  .tmd-about-hero-icon {
    margin-bottom: 1.5rem;
  }

  .tmd-about-hero-icon svg {
    width: 48px;
    height: 48px;
  }

  .tmd-about-hero-title {
    font-size: calc(var(--font-xxxxxl) * 0.9);
  }

  .tmd-about-hero-title .tmd-about-drop-word:nth-child(1) {
    font-size: calc(var(--font-xxxxxl) * 0.8 * 0.7);
  }
}

/* =========================
   Mobile Responsive Design - Hero Section
   ========================= */
@media (max-width: 699px) {
  .tmd-about-hero {
    min-height: calc(100vh - 60px);
    height: calc(100vh - 60px);
    padding: 0;
    margin: 0;
    justify-content: center;
  }

  .tmd-about-hero-inner {
    max-width: 100%;
    padding: 0 1rem;
    margin-top: -4vh;
    /* move content up */
  }

  .tmd-about-hero-icon {
    margin-top: 1rem;
    margin-bottom: 1.2rem;
  }

  .tmd-about-hero-icon svg {
    width: 40px;
    height: 40px;
  }

  .tmd-about-hero-title {
    font-size: calc(var(--font-xxxxxl) * 0.8);
  }

  .tmd-about-hero-title .tmd-about-drop-word:nth-child(1) {
    font-size: calc(var(--font-xxxxxl) * 0.7 * 0.6);
  }
}

/* =========================
   Landscape Mobile Orientation Fix
   ========================= */
@media (max-width: 999px) and (orientation: landscape) {
  .tmd-about-hero {
    min-height: calc(100vh - 80px);
    /* account for landscape header */
    height: calc(100vh - 80px);
    margin: 120px 0;
  }

  .tmd-about-hero-inner {
    margin-top: 0;
    /* remove negative margin in landscape */
    padding-top: 0;
    /* add positive padding instead */
  }
}

/* ================================================
   Split Feature Section (tmd-feature)
================================================ */
.tmd-feature {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 80.88rem;
  margin: 0 auto;
  padding: 5rem 1rem;
  overflow: hidden;
}

.tmd-feature__content {
  flex: 1 1 0;
  min-inline-size: 18.75rem;
}

.tmd-feature__eyebrow {
  color: var(--tmd-accent);
  font-size: var(--font-md);
  font-weight: 700;
  margin-block-end: 0.5rem;
}

.tmd-feature__brand {
  color: var(--tmd-accent);
  font-weight: 700;
}

.tmd-feature__heading {
  font-size: var(--font-xl);
  margin-block-end: 0.7rem !important;
}

.tmd-feature__desc {
  position: relative;
  padding-inline-start: 1rem;
  margin: 0;
}

.tmd-feature__desc::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4rem;
  bottom: 0.3rem;
  width: 0.0625rem;
  background: var(--tmd-accent);
}

.tmd-feature__image {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-inline-end: 2rem;
}

.tmd-feature__image img {
  max-width: 21.875rem;
  max-height: 21.875rem;
  height: auto;
}

/* --- Backdrop Filter Utility for Feature Images --- */
.tmd-img-backdrop {
  position: relative;
  display: inline-block;
  overflow: visible;
  /* allow glow to extend */
}

.tmd-img-backdrop::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse at 60% 40%,
      rgba(0, 188, 212, 0.4) 0%,
      rgba(0, 113, 227, 0.2) 60%,
      transparent 100%);
  filter: blur(1.75rem) brightness(1.12) saturate(1.15);
  opacity: 0.7;
  pointer-events: none;
  transition: opacity 0.3s;
}

.tmd-img-backdrop img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.375rem;
  filter: brightness(1.03) saturate(1.08);
  transition: box-shadow 0.22s, filter 0.22s;
}

/* ================================================
   Responsive Design for tmd-feature
================================================ */

/* Tablet Optimization for tmd-feature */
@media (min-width: 700px) and (max-width: 999px) {
  .tmd-feature {
    gap: 1.5rem;
    padding: 4rem 1.5rem;
    max-width: 66.18rem;
    min-height: 60vh;
  }

  .tmd-feature__content {
    min-inline-size: 17.5rem;
  }

  .tmd-feature__eyebrow {
    font-size: var(--font-base);
  }

  .tmd-feature__heading {
    font-size: calc(var(--font-xl) * 0.9);
    margin-block-end: 0.6rem;
  }

  .tmd-feature__desc {
    font-size: calc(var(--font-md) * 0.9);
    padding-inline-start: 0.8rem;
  }

  .tmd-feature__image {
    margin-inline-end: 1.5rem;
    align-items: center;
    justify-content: flex-end;
  }

  .tmd-feature__image img {
    max-width: 18.75rem;
    max-height: 18.75rem;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

/* Mobile Optimization */
@media (max-width: 699px) {
  .tmd-feature {
    flex-direction: column;
    gap: 3rem;
    padding: 3rem 1rem;
    max-width: 100%;
    text-align: left;
  }

  .tmd-feature__content {
    min-inline-size: auto;
    order: 1;
    padding-inline-start: 0;
  }

  .tmd-feature__eyebrow {
    font-size: var(--font-base);
    margin-block-end: 0.5rem;
  }

  /* Add left spacing to eyebrows and headings on mobile */
  .tmd-feature__eyebrow,
  .tmd-feature__heading,
  .about-team-title,
  .tmd-grow-title {
    padding-left: 1rem;
  }

  .tmd-feature__heading {
    font-size: var(--font-xl);
    margin-block-end: 0.8rem;
    line-height: 1.2;
  }

  .tmd-feature__desc {
    border-inline-start: none;
    padding-inline-start: 1;
    text-align: left;
    max-width: 100%;
  }

  .tmd-feature__image {
    order: 2;
    margin-inline-end: 0;
    justify-content: center;
    align-items: center;
  }

  .tmd-feature__image img {
    max-width: 17.5rem;
    max-height: 17.5rem;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

/* Futuristic Minimal About Team Section */
.about-team {
  padding: 6rem 1rem 5rem 1rem;
  margin: 4rem auto 3rem auto;
  max-width: 1100px;
}

.about-team-header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-team-title {
  font-size: var(--font-xxxl);
  font-weight: 800;
  background: linear-gradient(90deg, #0071e3 0%, #00bcd4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.about-team-desc {
  max-width: 600px;
  margin: 0 auto;
}

.about-team-grid {
  display: flex;
  gap: 1.5rem;
  align-items: stretch;
}

.about-team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 24px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  padding: 2rem 1rem;
  min-width: 0;
  flex: 1 1 0;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid var(--tmd-border);
}

.about-team-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.1rem;
  border: 2.5px solid var(--tmd-border);
  box-shadow: 0 2px 16px rgba(0, 113, 227, 0.1);
  background: linear-gradient(135deg, var(--tmd-primary) 60%, #eaf6ff 100%);
}

.about-team-name {
  font-size: var(--font-md);
  font-weight: 700;
  margin-bottom: 0.12rem;
  letter-spacing: -0.01em;
}

.about-team-role {
  min-height: 2em;
  font-weight: 500;
  margin-bottom: 0.2rem;
  text-align: center;
  font-size: var(--font-base);
  line-height: 1.2;
}

.about-team-bio {
  font-size: var(--font-sm);
  line-height: 1.5;
  margin-bottom: 0;
  opacity: 0.95;
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-team-social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
  margin-top: auto;
  padding-top: 1rem;
}

.about-team-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  color: var(--tmd-accent);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 110, 225, 0.2);
}

.about-team-social-link:hover {
  background: var(--tmd-accent);
  color: var(--tmd-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 110, 225, 0.3);
}

.about-team-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* =========================
   Tablet Responsive Design - Team Section
   ========================= */

@media (min-width: 700px) and (max-width: 999px) {

  /* Team Section - Tablet Optimization */
  .about-team {
    padding: 4rem 1rem 3rem 1rem;
    margin: 3rem auto 2rem auto;
    max-width: 900px;
  }

  .about-team-header {
    margin-bottom: 2.5rem;
  }

  .about-team-title {
    font-size: calc(2.7rem * 0.85);
    margin-bottom: 0.5rem;
  }

  .about-team-desc {
    font-size: calc(var(--font-lg) * 0.95);
    max-width: 600px;
    line-height: 1.6;
  }

  .tmd-grow-subtitle {
    font-size: calc(var(--font-lg) * 0.95);
    max-width: 600px;
  }

  /* Team Grid - 2x2 Layout */
  .about-team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 0 2rem;
    align-items: stretch;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
  }

  .about-team-member {
    width: 100%;
    min-width: 0;
  }

  .about-team-member {
    padding: 1.5rem 1rem 1.8rem 1rem;
    border-radius: 20px;
  }

  .about-team-img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
  }

  .about-team-name {
    font-size: calc(var(--font-md) * 0.95);
    margin-bottom: 0.1rem;
  }

  .about-team-role {
    min-height: 2.2em;
    font-size: calc(var(--font-base) * 0.95);
    margin-bottom: 0.2rem;
    line-height: 1.3;
  }

  .about-team-bio {
    font-size: calc(0.91rem * 0.95);
    line-height: 1.4;
  }

  /* Grow Cards - Tablet Optimization */
  .tmd-grow-cards-staggered {
    display: flex;
    gap: 0.5rem !important;
    align-items: flex-start;
  }

  .tmd-grow-card {
    padding: 2.5rem 0.5rem;
    border-radius: 20px;
  }

  .tmd-grow-card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
  }

  .tmd-grow-card-title {
    font-size: var(--font-lg);
    margin-bottom: 0.8rem;
  }

  .tmd-grow-card-desc {
    padding: 0 !important;
    margin-bottom: 1rem;
  }

  .tmd-grow-list {
    font-size: var(--font-sm);
    padding: 0 0.2rem;
    line-height: 1.5;
  }

  .tmd-grow-list li {
    margin-bottom: 0.8rem;
  }

  /* Hide moving dots on tablet */
  .about-team-member .moving-dot,
  .tmd-grow-card .moving-dot {
    display: none !important;
  }
}



/* --- Futuristic Grow Together Section --- */
.tmd-grow-section {
  padding: 5rem 1rem 5rem 1rem;
  margin: 4rem auto 3rem auto;
  max-width: 1100px;
  position: relative;
  overflow: visible;
}

.tmd-grow-header {
  text-align: center;
  margin-bottom: 1rem;
}

.tmd-grow-title.gradient-text {
  font-size: var(--font-xxxl);
  font-weight: 900;
  background: linear-gradient(90deg, #0071e3 0%, #00bcd4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.tmd-grow-subtitle {
  max-width: 600px;
  margin: 0 auto;
}

.tmd-grow-cards-staggered {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.tmd-grow-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 24px;
  padding: 3rem 1.2rem;
  min-width: 0;
  flex: 1 1 0;
  transition: all 0.3s ease;
  position: relative;
}

/* Card positioning variants for staggered effect */
.tmd-grow-card--main {
  transform: translateY(0);
  position: relative;
}

.tmd-grow-card--main::before {
  content: '';
  position: absolute;
  left: 0;
  top: 100px;
  bottom: 50px;
  width: 1px;
  background: var(--tmd-border);
}

.tmd-grow-card--left {
  transform: translateY(40px);
  position: relative;
}

.tmd-grow-card--left::before {
  content: '';
  position: absolute;
  left: 0;
  top: 130px;
  bottom: 60px;
  width: 1px;
  background: var(--tmd-border);
}

.tmd-grow-card--right {
  transform: translateY(80px);
  position: relative;
}

.tmd-grow-card--right::before {
  content: '';
  position: absolute;
  left: 0;
  top: 150px;
  bottom: 60px;
  width: 1px;
  background: var(--tmd-border);
}

.tmd-grow-card-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tmd-grow-card-title {
  font-size: var(--font-lg);
  font-weight: 700;
  margin-bottom: 0.12rem;
  letter-spacing: -0.01em;
}

.tmd-grow-card-desc {
  font-size: var(--font-base);
  min-height: 2em;
  padding: 0 1.8rem;
  margin-bottom: 0.2rem;
  text-align: left;
}

.tmd-grow-list {
  font-size: var(--font-base);
  margin-bottom: 0;
  padding-right: 1rem;
  text-align: left;
}

.tmd-grow-list li {
  margin-bottom: 1rem;
}

/* Interactive card elements - shared hover effects */
.about-team-member,
.tmd-grow-card {
  overflow: visible;
}

/* Persistent glowing border on hover/focus */
.about-team-member:hover::after,
.about-team-member:focus-within::after,
.tmd-grow-card:hover::after,
.tmd-grow-card:focus-within::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  pointer-events: none;
  z-index: 3;
  box-shadow: 0 0 12px 4px rgba(0, 113, 227, 0.27), 0 0 0 2px rgba(0, 113, 227, 0.13);
  border: 1px solid rgba(0, 113, 227, 0.27);
  opacity: 1;
  transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animated glowing dot */
.about-team-member .moving-dot,
.tmd-grow-card .moving-dot {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle,
      var(--tmd-accent) 60%,
      rgba(0, 113, 227, 0.13) 100%,
      transparent 100%);
  box-shadow: 0 0 8px 4px rgba(0, 113, 227, 0.27);
  opacity: 0;
  pointer-events: none;
  z-index: 4;
  top: -4px;
  left: -4px;
  transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-team-member:hover .moving-dot,
.about-team-member:focus-within .moving-dot,
.tmd-grow-card:hover .moving-dot,
.tmd-grow-card:focus-within .moving-dot {
  opacity: 1;
  animation: tmd-dot-border 50s linear infinite;
  box-shadow: 0 0 24px 8px rgba(0, 113, 227, 0.53), 0 0 0 6px rgba(0, 113, 227, 0.13);
}

/* Keyframes for dot moving around the border (clockwise, perfectly aligned) */
@keyframes tmd-dot-border {
  0% {
    top: -4px;
    left: -4px;
  }

  25% {
    top: -4px;
    left: calc(100% - 4px);
  }

  50% {
    top: calc(100% - 4px);
    left: calc(100% - 4px);
  }

  75% {
    top: calc(100% - 4px);
    left: -4px;
  }

  100% {
    top: -4px;
    left: -4px;
  }
}


/* FAQ section container */
.tmd-faq-section {
  background: var(--tmd-white);
  padding-block-end: 2rem;
  padding-inline: 0.5rem;
  min-height: 60vh;
  height: auto;
  margin: 0;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-height: 2000px;
  width: 100%;
  box-sizing: border-box;
}

/* FAQ inner wrapper */
.tmd-faq-inner {
  max-width: 1050px;
  margin-inline: auto;
  margin-block: 0;
  padding-block-end: 0.5rem;
  padding-inline: 0;
  width: 100%;
}

/* FAQ title */
.tmd-faq-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--tmd-text);
  margin-block-end: 2.5rem;
  text-align: center;
  letter-spacing: -0.01em;
}

/* FAQ list grid */
.tmd-faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 1.2rem;
  align-items: start;
  margin-block-start: 1.2rem;
}

/* Individual FAQ item */
.tmd-faq-item {
  background: var(--tmd-white);
  border-radius: var(--tmd-radius);
  box-shadow: 0 1px 6px rgba(0, 113, 227, 0.03);
  border: 1px solid var(--tmd-border);
  padding-block: 0.1rem;
  padding-inline: 0.7rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  min-width: 0;
  font-size: var(--font-sm);
  transform: translateZ(0);
}

/* FAQ item hover state */
.tmd-faq-item:hover {
  box-shadow: 0 2px 12px rgba(0, 113, 227, 0.05);
  border-color: var(--tmd-border);
}

/* FAQ item open state */
.tmd-faq-item[open] {
  box-shadow: 0 4px 18px rgba(0, 113, 227, 0.07);
  border-color: var(--tmd-accent);
  background: var(--tmd-primary);
}

/* FAQ question (summary) */
.tmd-faq-question {
  font-size: var(--font-base);
  font-weight: 600;
  cursor: pointer;
  padding-block: 0.9rem 0.7rem;
  padding-inline: 0;
  outline: none;
  transition: color 0.18s;
  position: relative;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
}

/* H3 styling within FAQ questions - ensures consistency */
.tmd-faq-question h3 {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
  line-height: inherit;
  letter-spacing: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  text-decoration: none;
  display: inline;
  flex: 1;
}

/* Hide default marker for summary */
.tmd-faq-question::-webkit-details-marker {
  display: none;
}

/* Add custom arrow to summary */
.tmd-faq-question::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-inline-start: auto;
  background: url('data:image/svg+xml;utf8,<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.5 7.5L9 12L13.5 7.5" stroke="%23007ae3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center/contain;
  vertical-align: middle;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: rotate(0deg);
}

/* Arrow rotates when open */
.tmd-faq-item[open] .tmd-faq-question::after {
  transform: rotate(180deg);
}

/* FAQ answer (content) */
.tmd-faq-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  will-change: max-height, opacity, transform;
}

/* FAQ answer visible when open */
.tmd-faq-item.open .tmd-faq-answer {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (min-width: 700px) and (max-width: 999px) {

  /* FAQ Section - Tablet */
  /* FAQ container */
  .tmd-faq-section {
    padding: 3rem 1rem 2rem 1rem;
  }

  /* FAQ inner container */
  .tmd-faq-inner {
    max-width: 700px;
    margin: 0 auto;
  }

  /* FAQ title */
  .tmd-faq-title {
    font-size: calc(var(--font-xl) * 0.9);
    margin-bottom: 2.5rem;
  }

  /* FAQ list grid */
  .tmd-faq-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  /* FAQ items - ensure consistent height */
  .tmd-faq-item {
    min-height: 80px;
    display: flex;
    flex-direction: column;
  }

  /* FAQ questions - prevent text wrapping */
  .tmd-faq-question {
    font-size: calc(var(--font-base) * 0.9);
    line-height: 1.4;
    padding: 1rem 1.2rem;
    white-space: normal;
    word-wrap: break-word;
    hyphens: auto;
    flex: 1;
    display: flex;
    align-items: center;
  }

  /* FAQ answers - proper alignment */
  .tmd-faq-answer {
    padding: 0 1.2rem 1rem 1.2rem;
    font-size: calc(var(--font-sm) * 0.95);
    line-height: 1.5;
    margin-top: 0.5rem;
  }
}



/* =========================
   Mobile Responsive Design - About Page
   ========================= */

/* =========================
   Mobile Responsive - Hero Section
   ========================= */

@media (max-width: 699px) {

  /* Team Section - Mobile */
  .about-team {
    padding: 2rem 1rem;
  }

  .about-team-header {
    margin-bottom: 2rem;
  }

  .about-team-title {
    font-size: var(--font-xxl);
    margin-bottom: 1rem;
  }

  .about-team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: stretch;
  }

  .about-team-member {
    padding: 1.5rem;
    min-height: auto;
  }

  .about-team-img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
  }

  .about-team-name {
    font-size: var(--font-lg);
    margin-bottom: 0.5rem;
  }

  .about-team-role {
    font-size: var(--font-base);
    margin-bottom: 0.2rem;
  }

  .about-team-bio {
    font-size: var(--font-sm);
    padding: 0 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  /* Hide moving dots on mobile */
  .about-team-member .moving-dot,
  .tmd-grow-card .moving-dot {
    display: none !important;
  }

  /* Grow Section - Mobile */
  .tmd-grow-section {
    padding: 2rem 1rem;
  }

  .tmd-grow-header {
    margin-bottom: 2rem;
  }

  .tmd-grow-title {
    font-size: var(--font-xxl);
    margin-bottom: 1rem;
  }

  .tmd-grow-subtitle {
    line-height: 1.6;
  }

  .tmd-grow-cards-staggered {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
  }

  .tmd-grow-card {
    padding: 1.5rem 1rem 1.8rem 1rem;
    border-radius: 20px;
    transform: none !important;
  }

  .tmd-grow-card--main {
    text-align: center;
  }

  .tmd-grow-card--main .tmd-grow-card-title,
  .tmd-grow-card--main .tmd-grow-card-desc {
    text-align: center;
  }

  /* Hide left borders on mobile */
  .tmd-grow-card--main::before,
  .tmd-grow-card--left::before,
  .tmd-grow-card--right::before {
    display: none;
  }

  .tmd-grow-card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .tmd-grow-card-title {
    font-size: var(--font-xl);
    margin-bottom: 0.5rem;
  }

  .tmd-grow-card-desc {
    font-size: var(--font-base);
    margin-bottom: 1rem;
  }

  .tmd-grow-list {
    font-size: var(--font-sm);
    line-height: 1.5;
  }

  .tmd-grow-list li {
    margin-bottom: 0.5rem;
  }

  /* FAQ */
  .tmd-faq-section {
    padding: 2rem 0.5 1.5rem 0.5;
  }

  .tmd-faq-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0.5rem;
  }

  .tmd-faq-title {
    font-size: calc(var(--font-xl) * 0.8);
    margin-bottom: 2.5rem;
    text-align: center;
  }

  .tmd-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }

  .tmd-faq-item {
    min-height: auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .tmd-faq-question {
    font-size: calc(var(--font-base) * 0.85);
    line-height: 1.3;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .tmd-faq-answer {
    padding: 0 1rem 0.8rem 1rem;
    font-size: calc(var(--font-sm) * 0.9);
    line-height: 1.4;
    margin-top: 0.3rem;
  }
}


/* =========================
   CTA Section Styles
   ========================= */

.tmd-cta-section {
  background: var(--tmd-white);
  padding: 4rem 1rem 3rem 1rem;
  text-align: center;
}

.tmd-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--tmd-border);
}

.tmd-cta-title {
  font-size: var(--font-xxl);
  font-weight: 700;
  color: var(--tmd-heading);
  margin-bottom: 1.1rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.tmd-cta-subtitle {
  max-width: 500px;
  margin: 0 auto 2.2rem auto;
  line-height: 1.6;
}

.tmd-cta-subtitle strong {
  font-weight: 700;
  color: var(--tmd-accent);
}

.tmd-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}

.tmd-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--font-base);
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 16px rgba(0, 110, 225, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  border: 2px solid var(--tmd-accent);
  background: var(--tmd-accent);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.tmd-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.tmd-cta-btn:hover::before {
  left: 100%;
}

.tmd-cta-btn:hover,
.tmd-cta-btn:focus {
  background: #005bb5;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 110, 225, 0.2);
  outline: none;
  transform: translateY(-2px);
}

.tmd-cta-btn--secondary {
  background: #fff;
  color: var(--tmd-accent);
  border: 2px solid var(--tmd-accent);
}

.tmd-cta-btn--secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.tmd-cta-btn--secondary:hover::before {
  left: 100%;
}

.tmd-cta-btn--secondary:hover,
.tmd-cta-btn--secondary:focus {
  background: var(--tmd-accent);
  color: #fff;
  border-color: var(--tmd-accent);
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 110, 225, 0.2);
}

.tmd-cta-arrow {
  display: inline-block;
  margin-left: 0.6em;
  transition: transform 0.3s ease;
  font-size: 1.1em;
  vertical-align: middle;
}

.tmd-cta-btn--secondary:hover .tmd-cta-arrow,
.tmd-cta-btn--secondary:focus .tmd-cta-arrow {
  transform: translateX(4px);
}

/* Mobile Responsive CTA */
@media (max-width: 699px) {
  .tmd-cta-section {
    padding: 3.5rem 1rem 3rem 1rem;
  }

  .tmd-cta-title {
    font-size: var(--font-xl);
    font-weight: 700;
    color: var(--tmd-heading);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.01em;
  }

  .tmd-cta-subtitle {
    max-width: 98vw;
    margin: 0 auto 1.5rem auto;
  }

  .tmd-cta-buttons {
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0.8rem;
  }

  .tmd-cta-btn {
    width: 80%;
    padding: 0.8rem 0;
    font-size: var(--font-sm);
    margin: 0 auto 0.3rem auto;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}