/* ═══════════════════════════════════════════════════════
   TuskMed — Home Page Styles
   style.css
   Palette: #F6EFEF cream · #D6A96E amber · #2C2018 ink
   ═══════════════════════════════════════════════════════ */

/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── VARIABLES ─────────────────────────────────────────── */
:root {
  --tm-c:    #f6efef;
  --tm-c2:   #ede3e3;
  --tm-c3:   #faf6f2;
  --tm-a:    #d6a96e;
  --tm-ad:   #b8844a;
  --tm-ag:   linear-gradient(135deg, #d6a96e, #b8844a);
  --tm-ap:   rgba(214, 169, 110, 0.1);
  --tm-ap2:  rgba(214, 169, 110, 0.18);
  --tm-ink:  #2c2018;
  --tm-ink2: #4a3828;
  --tm-ink3: #7a6858;
  --tm-ink4: #b0a090;
  --tm-w:    #ffffff;
  --tm-grn:  #2d9e6b;
  --tm-blu:  #4a7ec7;
  --tm-red:  #c0392b;
}

/* ── BASE ───────────────────────────────────────────────── */
body {
  background: var(--tm-c);
  color: var(--tm-ink);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── LOGO ───────────────────────────────────────────────── */
.logo-img {
  height: 70px;
  display: flex;
  align-items: center;
}
.logo-img img {
  height: 210px;
  width: auto;
  object-fit: contain;
}

/* ── UTILITY ────────────────────────────────────────────── */
.hidden { display: none !important; }

/* ── SCROLL REVEAL ─────────────────────────────────────── */
.tm-r {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.tm-r.in  { opacity: 1; transform: none; }
.tm-d1    { transition-delay: 0.08s; }
.tm-d2    { transition-delay: 0.16s; }
.tm-d3    { transition-delay: 0.24s; }
.tm-d4    { transition-delay: 0.32s; }

/* ── SHARED COMPONENTS ──────────────────────────────────── */
.tm-ey {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tm-ad);
  margin-bottom: 14px;
}
.tm-ey::before {
  content: "";
  width: 20px;
  height: 1.5px;
  background: var(--tm-a);
}

.tm-si {
  max-width: 1160px;
  margin: 0 auto;
  padding: 92px 48px;
}

.tm-st {
  font-family: "Poppins", sans-serif;
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.7px;
  color: var(--tm-ink);
  margin-bottom: 14px;
}
.tm-st em { font-style: italic; color: var(--tm-ad); }

.tm-sd {
  font-size: 16.5px;
  color: var(--tm-ink3);
  line-height: 1.75;
  max-width: 560px;
}

.tm-btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 99px;
  background: var(--tm-ag);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(214, 169, 110, 0.38);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.tm-btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(214, 169, 110, 0.45);
}

.tm-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 99px;
  background: transparent;
  color: var(--tm-ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid rgba(44, 32, 24, 0.17);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.tm-btn-ghost:hover {
  border-color: var(--tm-a);
  background: var(--tm-ap);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════════════ */
.tm-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  height: 66px;
  display: flex;
  align-items: center;
  padding: 0 48px;
  gap: 32px;
  background: rgba(246, 239, 239, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(44, 32, 24, 0.07);
}

.tm-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.tm-nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
  margin-left: auto;
}
.tm-nav-links a {
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--tm-ink3);
  position: relative;
  transition: color 0.2s;
  cursor: pointer;
}
.tm-nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--tm-a);
  transition: width 0.22s;
}
.tm-nav-links a:hover { color: var(--tm-ink); }
.tm-nav-links a:hover::after { width: 100%; }

.tm-nav-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 22px;
  border-radius: 99px;
  background: var(--tm-ink);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.tm-nav-login:hover {
  background: var(--tm-ad);
  transform: translateY(-1px);
}

.tm-nav-burger {
  display: none;
  width: 40px;
  height: 40px;
  background: none;
  border: 1.5px solid rgba(44, 32, 24, 0.14);
  border-radius: 10px;
  cursor: pointer;
  place-items: center;
  color: var(--tm-ink);
  margin-left: auto;
}

/* ════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════ */
.tm-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 66px 48px 0;
  position: relative;
  overflow: hidden;
  gap: 20px;
}
.tm-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    108deg,
    transparent,
    transparent 55px,
    rgba(214, 169, 110, 0.022) 55px,
    rgba(214, 169, 110, 0.022) 56px
  );
}

.tm-hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.tm-hb1 {
  width: 680px; height: 680px;
  top: -200px; right: -160px;
  background: radial-gradient(circle, rgba(214, 169, 110, 0.16), transparent 68%);
  animation: tm-bdrift 15s ease-in-out infinite alternate;
}
.tm-hb2 {
  width: 480px; height: 480px;
  bottom: -100px; left: -80px;
  background: radial-gradient(circle, rgba(214, 169, 110, 0.1), transparent 68%);
  animation: tm-bdrift 19s ease-in-out infinite alternate-reverse;
}
@keyframes tm-bdrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(28px, 18px) scale(1.06); }
}

.tm-hero-left {
  position: relative;
  z-index: 2;
  padding: 80px 32px 80px 0;
}
.tm-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--tm-ap);
  border: 1px solid rgba(214, 169, 110, 0.24);
  border-radius: 99px;
  padding: 7px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tm-ad);
  margin-bottom: 28px;
  animation: tm-fu 0.55s ease both;
}
.tm-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--tm-grn);
  animation: tm-pulse 2s ease-in-out infinite;
}
@keyframes tm-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.7); opacity: 0.4; }
}

.tm-hero-h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: -1.2px;
  color: var(--tm-ink);
  margin-bottom: 20px;
  animation: tm-fu 0.55s 0.07s ease both;
}
.tm-hero-h1 em { font-style: italic; color: var(--tm-ad); }

.tm-hero-sub {
  font-family: "Poppins", sans-serif;
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--tm-ink3);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 36px;
  animation: tm-fu 0.55s 0.14s ease both;
}

.tm-hero-btns {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  animation: tm-fu 0.55s 0.2s ease both;
}

.tm-hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}
.tm-hero-visual {
  position: relative;
  width: 460px;
  height: 560px;
}
.tm-hero-card {
  position: absolute;
  width: 360px; height: 480px;
  background: #fff;
  border-radius: 28px;
  border: 1px solid rgba(44, 32, 24, 0.07);
  box-shadow: 0 24px 64px rgba(44, 32, 24, 0.15);
  overflow: hidden;
  top: 20px; left: 20px;
  animation: tm-crise 0.8s 0.25s cubic-bezier(0.34, 1.3, 0.64, 1) both;
}
@keyframes tm-crise {
  from { opacity: 0; transform: translateY(36px) rotate(-1.5deg); }
  to   { opacity: 1; transform: translateY(0) rotate(-1.5deg); }
}
.tm-hero-card-inner {
  width: 100%; height: 100%;
  background: #b8dff0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.tm-hero-card-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--tm-ad);
  border: 1px solid rgba(214, 169, 110, 0.3);
  backdrop-filter: blur(8px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tm-hero-card-tag::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--tm-grn);
  flex-shrink: 0;
}
.tm-doc-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 0%;
  display: block;
}

.tm-hero-stat {
  position: absolute;
  background: #fff;
  border-radius: 15px;
  border: 1px solid rgba(44, 32, 24, 0.07);
  box-shadow: 0 10px 28px rgba(44, 32, 24, 0.1);
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  animation: tm-sfi 0.65s ease both;
  z-index: 10;
}
.tm-hs1 { bottom: 20px; right: 0;   animation-delay: 0.5s; }
.tm-hs2 { top: 20px;    right: -10px; animation-delay: 0.65s; }
@keyframes tm-sfi {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: none; }
}
.tm-hsico {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.tm-hig { background: rgba(45, 158, 107, 0.1); color: var(--tm-grn); }
.tm-hia { background: var(--tm-ap); color: var(--tm-ad); }
.tm-hsv {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--tm-ink);
  line-height: 1;
}
.tm-hsl { font-size: 10px; font-weight: 500; color: var(--tm-ink4); margin-top: 2px; }

.tm-hero-scroll {
  position: absolute;
  bottom: 28px; left: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tm-ink4);
  z-index: 2;
  animation: tm-fadeI 1s 1.2s ease both;
}
.tm-scroll-line {
  width: 36px; height: 1.5px;
  background: linear-gradient(90deg, var(--tm-a), transparent);
  animation: tm-sg 2s ease-in-out infinite;
}
@keyframes tm-sg {
  0%, 100% { width: 18px; opacity: 0.35; }
  50%       { width: 36px; opacity: 1; }
}

/* ════════════════════════════════════════════════════════
   POST A QUERY — FIXED CIRCLE ALIGNMENT
   ════════════════════════════════════════════════════════ */
.tm-qsec {
  background: var(--tm-c2);
  border-top:    1px solid rgba(44, 32, 24, 0.06);
  border-bottom: 1px solid rgba(44, 32, 24, 0.06);
}

.tm-qin {
  max-width: 1160px;
  margin: 0 auto;
  padding: 110px 48px;
  display: flex;
  align-items: center;
  gap: 80px;
}

.tm-qleft { flex: 0 0 360px; }

.tm-qcwrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Orbit wrapper — sized to the circle */
.tm-qco {
  position: relative;
  width: 520px;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Spinning dashed ring */
.tm-qorb {
  position: absolute;
  inset: -32px;
  border-radius: 50%;
  border: 1.5px dashed rgba(214, 169, 110, 0.3);
  animation: tm-ospin 22s linear infinite;
  pointer-events: none;
}
.tm-qorb::before {
  content: "";
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--tm-a);
  box-shadow: 0 0 0 4px rgba(214, 169, 110, 0.22);
}

/* Outer faint ring */
.tm-qorb2 {
  position: absolute;
  inset: -64px;
  border-radius: 50%;
  border: 1px solid rgba(214, 169, 110, 0.1);
  animation: tm-ospin 38s linear infinite reverse;
  pointer-events: none;
}

@keyframes tm-ospin { to { transform: rotate(360deg); } }

/* The main circle */
.tm-qc {
  position: relative;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(214, 169, 110, 0.2);
  box-shadow:
    0 0 0 22px rgba(214, 169, 110, 0.05),
    0 0 0 44px rgba(214, 169, 110, 0.023),
    0 32px 72px rgba(44, 32, 24, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s, border-color 0.3s;
  animation: tm-cpop 0.85s 0.4s cubic-bezier(0.34, 1.2, 0.64, 1) both;
}
@keyframes tm-cpop {
  from { opacity: 0; transform: scale(0.84); }
  to   { opacity: 1; transform: scale(1); }
}
.tm-qc:focus-within {
  border-color: var(--tm-a);
  box-shadow:
    0 0 0 22px rgba(214, 169, 110, 0.1),
    0 0 0 44px rgba(214, 169, 110, 0.04),
    0 36px 80px rgba(44, 32, 24, 0.15);
}

/* Inner content wrapper — keeps flex column centered */
.tm-qc-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 56px;
  text-align: center;
}

/* Icon */
.tm-qcico {
  width: 80px; height: 80px;
  border-radius: 22px;
  background: rgba(214, 169, 110, 0.08);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}
.tm-qcico:hover {
  background: rgba(214, 169, 110, 0.14);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(214, 169, 110, 0.2);
}
.tm-qlogo {
  width: 62px;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(214, 169, 110, 0.15));
}

/* Titles */
.tm-qctitle {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--tm-ink);
  margin-bottom: 8px;
}
.tm-qchint {
  font-size: 14px;
  color: var(--tm-ink4);
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Textarea */
.tm-qcta {
  width: 100%;
  background: var(--tm-c);
  border: 1.5px solid rgba(44, 32, 24, 0.1);
  border-radius: 14px;
  padding: 13px 15px;
  resize: none;
  height: 100px;
  font-family: "Poppins", sans-serif;
  font-size: 13.5px;
  color: var(--tm-ink);
  line-height: 1.6;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.tm-qcta::placeholder { color: var(--tm-ink4); }
.tm-qcta:focus {
  outline: none;
  border-color: var(--tm-a);
  box-shadow: 0 0 0 3px rgba(214, 169, 110, 0.12);
}

/* Submit button */
.tm-qpost {
  margin-top: 16px;
  width: 80%;
  height: 46px;
  border-radius: 14px;
  border: none;
  background: var(--tm-ag);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(214, 169, 110, 0.35);
  transition: all 0.18s ease;
}
.tm-qpost:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(214, 169, 110, 0.45);
}
.tm-qpost:active { transform: scale(0.97); }

/* Success state */

.hidden {
  display: none !important;
}

.tm-qsuccess-icon--info {
  background: rgba(214, 169, 110, 0.12);
  border: 1.5px solid rgba(214, 169, 110, 0.35);
  color: #D6A96E;
}

.tm-redirect-bar {
  width: 100%;
  height: 3px;
  background: rgba(214, 169, 110, 0.15);
  border-radius: 99px;
  margin-top: 14px;
  overflow: hidden;
}

.tm-redirect-fill {
  height: 100%;
  width: 100%;
  background: #D6A96E;
  border-radius: 99px;
  transform-origin: left;
  animation: drain 5s linear forwards;
}

@keyframes drain {
  from { width: 100%; }
  to   { width: 0%; }
}

/* ════════════════════════════════════════════════════════
   WHAT WE DO
   ════════════════════════════════════════════════════════ */
.tm-what {
  background: var(--tm-c3);
  border-bottom: 1px solid rgba(44, 32, 24, 0.06);
}
.tm-what-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.tm-what-stats { display: flex; flex-direction: column; gap: 16px; }
.tm-wstat {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(44, 32, 24, 0.07);
  border-radius: 16px;
  padding: 18px 22px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.tm-wstat:hover {
  transform: translateX(5px);
  border-color: var(--tm-a);
  box-shadow: 0 6px 20px rgba(214, 169, 110, 0.1);
}
.tm-wstat-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.tm-wstat-val { font-size: 15px; font-weight: 700; color: var(--tm-ink); line-height: 1.2; }
.tm-wstat-lbl { font-size: 12px; color: var(--tm-ink4); margin-top: 2px; }

/* ════════════════════════════════════════════════════════
   HOW WE ARE DIFFERENT
   ════════════════════════════════════════════════════════ */
.tm-diff { background: var(--tm-ink); overflow: hidden; }
.tm-din  { max-width: 1160px; margin: 0 auto; padding: 92px 48px; }

.tm-diff .tm-ey        { color: var(--tm-a); }
.tm-diff .tm-ey::before { background: var(--tm-a); }
.tm-diff .tm-st        { color: #fff; }
.tm-diff .tm-st em     { color: var(--tm-a); }

.tm-dgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 52px;
}
.tm-dc {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 34px 28px;
  transition: background 0.22s, border-color 0.22s, transform 0.22s;
  position: relative;
  overflow: hidden;
}
.tm-dc::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--tm-ag);
  border-radius: 0 0 3px 0;
  transition: height 0.3s;
}
.tm-dc:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(214, 169, 110, 0.2);
  transform: translateY(-3px);
}
.tm-dc:hover::before { height: 100%; }
.tm-dci {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: rgba(214, 169, 110, 0.1);
  border: 1px solid rgba(214, 169, 110, 0.16);
  display: grid;
  place-items: center;
  color: var(--tm-a);
  margin-bottom: 18px;
}
.tm-dct { font-family: "Poppins", sans-serif; font-size: 17px; font-weight: 700; color: #fff; }

/* ════════════════════════════════════════════════════════
   BELIEF + FOCUS
   ════════════════════════════════════════════════════════ */
.tm-bf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.tm-belief-pills {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
  list-style: none;
}
.tm-bp {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(44, 32, 24, 0.08);
  border-radius: 14px;
  padding: 17px 20px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.tm-bp:hover {
  transform: translateX(5px);
  border-color: var(--tm-a);
  box-shadow: 0 4px 18px rgba(214, 169, 110, 0.12);
}
.tm-bpi {
  width: 40px; height: 40px;
  border-radius: 11px;
  flex-shrink: 0;
  background: var(--tm-ap);
  display: grid;
  place-items: center;
  color: var(--tm-ad);
}
.tm-bpt { font-size: 15px; font-weight: 600; color: var(--tm-ink); }

.tm-fgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.tm-fc {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(44, 32, 24, 0.07);
  padding: 22px 20px;
  transition: transform 0.24s, box-shadow 0.24s, border-color 0.24s;
}
.tm-fc:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(44, 32, 24, 0.08);
  border-color: var(--tm-a);
}
.tm-fci {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}
.tm-ia { background: rgba(214, 169, 110, 0.11); color: var(--tm-ad); }
.tm-ig { background: rgba(45, 158, 107, 0.1);   color: var(--tm-grn); }
.tm-ib { background: rgba(74, 126, 199, 0.1);   color: var(--tm-blu); }
.tm-ir { background: rgba(192, 57, 43, 0.08);   color: var(--tm-red); }
.tm-fct { font-family: "Poppins", sans-serif; font-size: 14px; font-weight: 700; color: var(--tm-ink); }

/* ════════════════════════════════════════════════════════
   FOUNDERS
   ════════════════════════════════════════════════════════ */
.tm-fsec {
  background: #1a0e08;
  position: relative;
  overflow: hidden;
}
.tm-fsec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 55% at 50% 0%, rgba(214, 169, 110, 0.08), transparent);
  pointer-events: none;
}
.tm-fin {
  max-width: 980px;
  margin: 0 auto;
  padding: 96px 48px;
  position: relative;
  z-index: 1;
}
.tm-fsec .tm-ey        { color: var(--tm-a); }
.tm-fsec .tm-ey::before { display: none; }
.tm-fsec .tm-ey::after  { content: ""; width: 20px; height: 1.5px; background: var(--tm-a); }

.tm-founders-ey {
  justify-content: center;
  margin-bottom: 12px;
}

.tm-fgrid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.tm-fp {
  font-family: "Poppins", sans-serif;
  font-size: clamp(15px, 1.6vw, 18px);
  font-style: italic;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.85;
}
.tm-fp b      { font-style: normal; color: var(--tm-a); }
.tm-fp strong { font-style: normal; color: rgba(255, 255, 255, 0.9); font-weight: 600; }

.tm-fdiv {
  width: 56px; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--tm-a), transparent);
  margin: 0 auto 40px;
}
.tm-fconc {
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: clamp(18px, 2vw, 25px);
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 48px;
}
.tm-fconc b      { font-style: normal; color: #fff; font-weight: 600; }
.tm-fconc strong { font-style: normal; color: var(--tm-a); font-weight: 700; }

/* ════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════ */
.tm-footer { background: var(--tm-ink); padding: 48px; }
.tm-footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.tm-footer-logo   { display: flex; align-items: center; gap: 10px; }
.tm-footer-addr   { font-size: 13.5px; color: rgba(255, 255, 255, 0.45); line-height: 1.9; }

/* ════════════════════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════════════════════ */
@keyframes tm-fu {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
@keyframes tm-fadeI {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .tm-nav          { padding: 0 18px; }
  .tm-nav-links    { display: none; }
  .tm-nav-burger   { display: grid; }

  .tm-hero {
    grid-template-columns: 1fr;
    padding: 76px 20px 50px;
    text-align: center;
  }
  .tm-hero-left  { padding: 40px 0 0; }
  .tm-hero-sub   { margin: 0 auto 28px; }
  .tm-hero-btns  { justify-content: center; }
  .tm-hero-right { display: none; }
  .tm-hero-scroll { left: 20px; }

  .tm-si          { padding: 56px 20px; }
  .tm-what-inner  { grid-template-columns: 1fr; gap: 36px; }
  .tm-bf-grid     { grid-template-columns: 1fr; gap: 48px; }
  .tm-dgrid       { grid-template-columns: 1fr; }
  .tm-din         { padding: 56px 20px; }
  .tm-fgrid       { grid-template-columns: 1fr 1fr; }

  .tm-qin         { flex-direction: column; padding: 56px 20px; gap: 36px; }
  .tm-qleft       { flex: none; }
  .tm-qco         { width: 400px; height: 400px; }
  .tm-qc          { width: 400px; height: 400px; }
  .tm-qorb        { inset: -24px; }
  .tm-qorb2       { inset: -48px; }
  .tm-qc-content  { padding: 0 40px; }
  .tm-qcta        { height: 85px; }

  .tm-fin         { padding: 60px 20px; }
  .tm-fgrid2      { grid-template-columns: 1fr; gap: 28px; }
  .tm-footer      { padding: 40px 20px; }
}

@media (max-width: 580px) {
  .tm-fgrid       { grid-template-columns: 1fr; }
  .tm-qco         { width: 320px; height: 320px; }
  .tm-qc          { width: 320px; height: 320px; }
  .tm-qc-content  { padding: 0 28px; }
  .tm-qcico       { width: 62px; height: 62px; margin-bottom: 12px; }
  .tm-qlogo       { width: 46px; }
  .tm-qctitle     { font-size: 17px; }
  .tm-qchint      { font-size: 12px; margin-bottom: 12px; }
  .tm-qcta        { height: 72px; font-size: 12.5px; }
  .tm-qpost       { font-size: 13px; height: 40px; }
  .tm-hero-btns   { flex-direction: column; align-items: center; }
  .logo-img img   { height: 164px; }
}