/* MooMovers Media Group — site system (black / white / gold) */
/* Layout inspired by one-stop toolkit pattern; identity 100% MooMovers. */

:root {
  --tbt-bg: #090909;
  --tbt-surface: #111;
  --tbt-surface-2: #171717;
  --tbt-green: #d4a62a; /* legacy token → gold */
  --tbt-green-dim: #b8891f;
  --tbt-green-glow: rgba(212, 166, 42, 0.4);
  --tbt-gold: #d4a62a;
  --tbt-gold-2: #f2ca5b;
  --tbt-text: #f5f5f5;
  --tbt-muted: #b6b6b6;
  --tbt-border: #2a2a2a;
  --tbt-font: "Inter", system-ui, -apple-system, sans-serif;
  --tbt-max: 1180px;
  --tbt-radius: 16px;
  --tbt-radius-pill: 999px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.tbt-site {
  margin: 0;
  background: var(--tbt-bg);
  color: var(--tbt-text);
  font-family: var(--tbt-font);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.tbt-site.tbt-light {
  --tbt-bg: #f6f4ef;
  --tbt-surface: #fff;
  --tbt-surface-2: #efeae0;
  --tbt-text: #111;
  --tbt-muted: #5c5c5c;
  --tbt-border: rgba(0, 0, 0, 0.12);
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }

.tbt-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--tbt-gold);
  color: #111;
  padding: 0.6rem 1rem;
  z-index: 10000;
}
.tbt-skip:focus { left: 1rem; top: 1rem; }

/* Promo */
.tbt-promo {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem 0.25rem;
  flex-wrap: wrap;
}
.tbt-promo__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.95rem;
  border-radius: var(--tbt-radius-pill);
  border: 1px solid rgba(212, 166, 42, 0.55);
  background: rgba(212, 166, 42, 0.08);
  color: var(--tbt-gold-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tbt-promo__pill:hover { background: rgba(212, 166, 42, 0.18); }
.tbt-promo__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tbt-gold);
  box-shadow: 0 0 8px var(--tbt-gold);
}

/* Header */
.tbt-top {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 0.65rem 1rem 0.85rem;
  background: linear-gradient(180deg, rgba(9,9,9,0.95), rgba(9,9,9,0.78));
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
}
body.tbt-light .tbt-top {
  background: linear-gradient(180deg, rgba(246,244,239,0.96), rgba(246,244,239,0.85));
}
.tbt-top__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
}
.tbt-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.tbt-brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--tbt-gold-2), var(--tbt-gold));
  color: #111;
  font-weight: 1000;
  font-size: 14px;
}
.tbt-brand__name { font-size: 0.95rem; }
.tbt-brand__logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
.tbt-brand .custom-logo {
  height: 44px;
  width: auto;
}
.tbt-brand__name small {
  display: block;
  color: var(--tbt-muted);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.04em;
}
.tbt-card__media {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.85rem;
}
.tbt-foot__logo {
  display: block;
  height: 52px;
  width: auto;
  max-width: 220px;
  margin-bottom: 0.85rem;
  object-fit: contain;
}

.tbt-menu { justify-self: center; }
.tbt-menu__list {
  list-style: none;
  margin: 0;
  padding: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex-wrap: wrap;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--tbt-border);
  border-radius: var(--tbt-radius-pill);
}
.tbt-menu__list > li { position: relative; }
.tbt-menu__list > li > a,
.tbt-menu__list .moo-nav__toggle,
.tbt-menu__list > li > .moo-nav__toggle {
  display: inline-flex;
  padding: 0.5rem 0.7rem;
  border-radius: var(--tbt-radius-pill);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tbt-text);
  background: none;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
}
.tbt-menu__list > li.current-menu-item > a,
.tbt-menu__list > li > a:hover,
.tbt-menu__list > li.current-menu-parent > a {
  background: #fff;
  color: #111;
}
body.tbt-light .tbt-menu__list > li.current-menu-item > a,
body.tbt-light .tbt-menu__list > li > a:hover {
  background: #111;
  color: #fff;
}
.tbt-menu__list .sub-menu,
.tbt-menu__list .moo-nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #0d0d0d;
  border: 1px solid var(--tbt-border);
  border-radius: 14px;
  padding: 0.5rem;
  list-style: none;
  margin: 0;
  display: none;
  z-index: 70;
}
body.tbt-light .tbt-menu__list .sub-menu,
body.tbt-light .tbt-menu__list .moo-nav__dropdown {
  background: #fff;
}
.tbt-menu__list > li:hover > .sub-menu,
.tbt-menu__list > li:hover > .moo-nav__dropdown,
.tbt-menu__list > li.is-open > .sub-menu,
.tbt-menu__list > li.is-open > .moo-nav__dropdown {
  display: block;
}
.tbt-menu__list .sub-menu a,
.tbt-menu__list .moo-nav__dropdown a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  font-size: 13px;
  color: #ddd;
}
.tbt-menu__list .sub-menu a:hover,
.tbt-menu__list .moo-nav__dropdown a:hover {
  background: rgba(212, 166, 42, 0.12);
  color: var(--tbt-gold-2);
}

.tbt-top__tools {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

/* Language switcher — always visible, functional */
.tbt-lang {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid var(--tbt-border);
  background: var(--tbt-surface);
}
.tbt-lang__item {
  min-width: 34px;
  height: 30px;
  padding: 0 0.45rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--tbt-muted);
  text-decoration: none;
}
.tbt-lang__item:hover {
  color: var(--tbt-gold-2);
}
.tbt-lang__item.is-active {
  background: var(--tbt-gold);
  color: #111;
}
body.tbt-light .tbt-lang__item.is-active {
  color: #111;
}

.tbt-search-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.25rem 0 1.75rem;
  max-width: 640px;
}
.tbt-search-inline input[type="search"] {
  flex: 1 1 220px;
  min-height: 46px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--tbt-border);
  background: var(--tbt-surface);
  color: var(--tbt-text);
}
.tbt-search-results {
  display: grid;
  gap: 0.85rem;
  margin: 0 0 2rem;
}
.tbt-search-hit {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--tbt-border);
  background: var(--tbt-surface);
  text-decoration: none;
  color: inherit;
}
.tbt-search-hit:hover {
  border-color: rgba(212, 166, 42, 0.55);
}
.tbt-search-hit strong { color: var(--tbt-gold-2); }
.tbt-search-hit span { color: var(--tbt-muted); font-size: 0.92rem; }
.tbt-search-hit em {
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--tbt-muted);
}

.tbt-menu__list > li.menu-item-has-children {
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.tbt-menu__list .moo-nav__toggle {
  width: 28px;
  height: 28px;
  margin-left: -0.15rem;
  border: 0;
  background: transparent;
  color: var(--tbt-muted);
  cursor: pointer;
  font-size: 12px;
  line-height: 1;
}
.tbt-phone {
  display: none;
  flex-direction: column;
  line-height: 1.15;
  padding: 0.25rem 0.5rem;
  text-align: right;
}
.tbt-phone__kicker {
  font-size: 10px;
  color: var(--tbt-muted);
  letter-spacing: 0.04em;
}
.tbt-phone strong {
  color: var(--tbt-gold-2);
  font-size: 13px;
}
.tbt-icon-btn,
.tbt-theme-toggle,
.tbt-burger {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--tbt-border);
  background: var(--tbt-surface);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  color: var(--tbt-text);
  position: relative;
}
.tbt-icon-btn:hover,
.tbt-theme-toggle:hover { border-color: rgba(212, 166, 42, 0.55); }
.tbt-theme-toggle__knob {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--tbt-gold);
  box-shadow: 0 0 10px var(--tbt-green-glow);
}
.tbt-burger { display: none; gap: 4px; }
.tbt-burger span {
  display: block;
  width: 16px;
  height: 2px;
  background: currentColor;
}
.tbt-cart-badge,
.tbt-icon-btn .tbt-cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--tbt-gold);
  color: #111;
  font-size: 10px;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.tbt-search {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 90;
  display: grid;
  place-items: start center;
  padding-top: 12vh;
}
.tbt-search[hidden] { display: none !important; }
.tbt-search__form {
  width: min(560px, calc(100% - 2rem));
  background: var(--tbt-surface);
  border: 1px solid var(--tbt-border);
  border-radius: 16px;
  padding: 1rem;
  display: grid;
  gap: 0.75rem;
}
.tbt-search__form input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--tbt-border);
  background: var(--tbt-bg);
}

/* Buttons */
.tbt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.35rem;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.tbt-btn:hover { transform: translateY(-1px); }
.tbt-btn--green,
.tbt-btn--gold {
  background: linear-gradient(135deg, var(--tbt-gold-2), var(--tbt-gold));
  color: #111;
  box-shadow: 0 0 24px rgba(212, 166, 42, 0.28);
}
.tbt-btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.28);
  color: #fff;
}
body.tbt-light .tbt-btn--ghost {
  border-color: rgba(0,0,0,0.28);
  color: #111;
}
.tbt-btn--sm { padding: 0.65rem 1.1rem; font-size: 11px; }

.tbt-kicker-green,
.tbt-kicker {
  color: var(--tbt-gold-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}
.tbt-h1 {
  font-size: clamp(2.4rem, 6.5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 900;
  margin: 0 0 1.1rem;
}
.tbt-h1__accent { color: var(--tbt-gold-2); }
.tbt-h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.035em;
  font-weight: 800;
  margin: 0 0 1rem;
  line-height: 1.08;
}
.tbt-lead {
  color: var(--tbt-muted);
  font-size: 1.05rem;
  max-width: 42rem;
  margin: 0 0 1.25rem;
}
.tbt-lead--narrow { max-width: 40rem; }

/* Hero */
.tbt-hero {
  position: relative;
  padding: 3.5rem 1.25rem 2.5rem;
  overflow: hidden;
}
.tbt-hero__glow {
  position: absolute;
  inset: -20% 40% auto -10%;
  height: 60%;
  background: radial-gradient(circle, rgba(212,166,42,0.16), transparent 60%);
  pointer-events: none;
}
.tbt-hero__grid {
  position: relative;
  max-width: var(--tbt-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}
.tbt-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}
.tbt-proof { display: grid; gap: 0.75rem; }
.tbt-proof__stars,
.tbt-proof__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.tbt-proof__stars,
.tbt-proof__pills span {
  background: var(--tbt-surface);
  border: 1px solid var(--tbt-border);
  border-radius: var(--tbt-radius-pill);
  padding: 0.45rem 0.85rem;
  font-size: 12px;
}
.tbt-proof__rating { color: var(--tbt-gold-2); letter-spacing: 0.08em; }

.tbt-hero__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.tbt-tile {
  position: relative;
  min-height: 150px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--tbt-border);
  background: var(--tbt-surface-2);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.tbt-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 166, 42, 0.5);
}
.tbt-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 150px;
}
.tbt-tile__placeholder {
  display: block;
  min-height: 150px;
  background:
    linear-gradient(145deg, rgba(212,166,42,0.18), transparent 50%),
    linear-gradient(180deg, #1a1a1a, #0d0d0d);
}
.tbt-tile__label {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  background: rgba(0,0,0,0.65);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

/* Sections */
.tbt-block {
  padding: 4rem 1.25rem;
  border-top: 1px solid var(--tbt-border);
}
.tbt-wrap {
  max-width: var(--tbt-max);
  margin: 0 auto;
}
.tbt-wrap--center { text-align: center; }
.tbt-wrap--center .tbt-lead { margin-left: auto; margin-right: auto; }

.tbt-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.tbt-cat {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-height: 140px;
  padding: 1.15rem;
  border-radius: 16px;
  border: 1px solid var(--tbt-border);
  background: linear-gradient(180deg, #151515, #111);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
body.tbt-light .tbt-cat { background: #fff; }
.tbt-cat:hover {
  border-color: rgba(212, 166, 42, 0.5);
  transform: translateY(-2px);
}
.tbt-cat strong { font-size: 1.05rem; }
.tbt-cat span { color: var(--tbt-muted); font-size: 13px; flex: 1; }
.tbt-cat em {
  font-style: normal;
  color: var(--tbt-gold-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tbt-feature-grid,
.tbt-pkg-grid,
.tbt-ai-grid,
.tbt-quote-grid,
.tbt-media-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
.tbt-feature-grid { grid-template-columns: repeat(4, 1fr); }
.tbt-pkg-grid { grid-template-columns: repeat(3, 1fr); }
.tbt-ai-grid { grid-template-columns: repeat(2, 1fr); }
.tbt-quote-grid { grid-template-columns: repeat(2, 1fr); }
.tbt-media-grid { grid-template-columns: repeat(3, 1fr); }

.tbt-card {
  background: linear-gradient(180deg, #151515, #111);
  border: 1px solid var(--tbt-border);
  border-radius: 16px;
  padding: 1.25rem;
}
body.tbt-light .tbt-card { background: #fff; }
.tbt-card.is-featured {
  border-color: rgba(212, 166, 42, 0.55);
  box-shadow: 0 0 0 1px rgba(212, 166, 42, 0.12), 0 0 28px rgba(212, 166, 42, 0.1);
}
.tbt-card h3 { margin: 0 0 0.5rem; font-size: 1.15rem; }
.tbt-card p { margin: 0 0 0.75rem; color: var(--tbt-muted); font-size: 14px; }
.tbt-card__meta {
  display: block;
  color: var(--tbt-gold-2);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.tbt-steps {
  counter-reset: moo-step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin: 1.5rem 0;
  list-style: none;
  padding: 0;
}
.tbt-steps li {
  counter-increment: moo-step;
  background: var(--tbt-surface);
  border: 1px solid var(--tbt-border);
  border-radius: 14px;
  padding: 1rem;
  display: grid;
  gap: 0.35rem;
}
.tbt-steps li::before {
  content: counter(moo-step, decimal-leading-zero);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--tbt-gold);
  color: #111;
  font-weight: 1000;
  display: grid;
  place-items: center;
  font-size: 13px;
}
.tbt-steps strong { color: #fff; }
body.tbt-light .tbt-steps strong { color: #111; }
.tbt-steps span { color: var(--tbt-muted); font-size: 13px; }

.tbt-product-list {
  columns: 2;
  column-gap: 2rem;
  margin: 1.25rem 0 1.5rem;
  padding-left: 1.1rem;
  color: var(--tbt-muted);
}
.tbt-product-list li { break-inside: avoid; margin: 0.4rem 0; }

.tbt-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--tbt-border);
  border-radius: 16px;
  margin: 1.25rem 0;
  background: #101010;
}
body.tbt-light .tbt-table-wrap { background: #fff; }
.tbt-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.tbt-table th,
.tbt-table td {
  text-align: left;
  vertical-align: top;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--tbt-border);
  font-size: 14px;
}
.tbt-table th {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tbt-gold-2);
  background: #151515;
}
body.tbt-light .tbt-table th { background: #f3efe6; }
.tbt-table td { color: var(--tbt-muted); }

.tbt-form {
  display: grid;
  gap: 0.85rem;
  max-width: 640px;
  margin: 1.25rem auto 0;
  text-align: left;
}
.tbt-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 13px;
  font-weight: 700;
}
.tbt-form input,
.tbt-form select,
.tbt-form textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border-radius: 10px;
  border: 1px solid var(--tbt-border);
  background: var(--tbt-bg);
}
.tbt-form textarea { min-height: 120px; resize: vertical; }
.tbt-form__status { min-height: 1.25rem; font-size: 13px; color: var(--tbt-gold-2); }
.tbt-form.is-error .tbt-form__status { color: #f87171; }

/* Auth shortcodes inside cards */
.tbt-card .tbt-auth,
.tbt-card form,
.tbt-card .tbt-auth-form,
.tbt-card .moo-form {
  display: grid;
  gap: 0.85rem;
}
.tbt-card form p,
.tbt-card .moo-form p { margin: 0; }
.tbt-card form label,
.tbt-card .moo-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}
.tbt-card form input[type="text"],
.tbt-card form input[type="email"],
.tbt-card form input[type="password"],
.tbt-card form input[type="tel"],
.tbt-card .moo-form input[type="text"],
.tbt-card .moo-form input[type="email"],
.tbt-card .moo-form input[type="password"] {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border-radius: 10px;
  border: 1px solid var(--tbt-border);
  background: var(--tbt-bg);
}
.tbt-card form input[type="submit"],
.tbt-card form button[type="submit"],
.tbt-card .moo-form button[type="submit"] {
  display: inline-flex;
  justify-content: center;
  padding: 0.9rem 1.35rem;
  border-radius: 12px;
  border: 0;
  background: linear-gradient(135deg, var(--tbt-gold-2), var(--tbt-gold));
  color: #111;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
.tbt-card .tbt-auth-remember,
.tbt-card .login-remember,
.tbt-card .forgetmenot {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.tbt-phone-lg {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin: 0.5rem 0 1.25rem;
}
.tbt-phone-lg a { color: var(--tbt-gold-2); }

/* Footer */
.tbt-foot {
  border-top: 1px solid var(--tbt-border);
  background: #050505;
  padding: 3.5rem 1.25rem 1.5rem;
}
body.tbt-light .tbt-foot { background: #111; color: #f5f5f5; }
body.tbt-light .tbt-foot a { color: #ddd; }
.tbt-foot__grid {
  max-width: var(--tbt-max);
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 2rem;
}
.tbt-foot__name { display: block; font-size: 1.15rem; margin-bottom: 0.75rem; }
.tbt-foot__brand p,
.tbt-foot__col p {
  color: #9a9a9a;
  font-size: 14px;
  margin: 0 0 1rem;
}
.tbt-foot__col h4 {
  margin: 0 0 0.85rem;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tbt-gold-2);
}
.tbt-foot__col ul,
.tbt-foot__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.tbt-foot__col a:hover,
.tbt-foot__menu a:hover { color: var(--tbt-gold-2); }
.tbt-foot__phone a {
  color: var(--tbt-gold-2);
  font-weight: 800;
  font-size: 1.1rem;
}
.tbt-foot__bar {
  max-width: var(--tbt-max);
  margin: 0 auto;
  padding-top: 1.25rem;
  border-top: 1px solid #2a2a2a;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  color: #888;
  font-size: 12px;
}

/* Hide legacy yellow chrome */
.tbt-site .tbt-notice,
.tbt-site .moo-ticker,
.tbt-site .moo-hero { display: none !important; }

.tbt-site .tbt-ai__fab {
  background: var(--tbt-gold);
  color: #111;
}
.tbt-site .tbt-cookie__accept {
  background: var(--tbt-gold);
  color: #111;
}

@media (min-width: 1100px) {
  .tbt-phone { display: flex; }
}

@media (max-width: 1100px) {
  .tbt-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .tbt-feature-grid,
  .tbt-pkg-grid,
  .tbt-steps,
  .tbt-media-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .tbt-top__inner { grid-template-columns: auto auto; }
  .tbt-menu {
    position: fixed;
    inset: 120px 0 auto 0;
    background: #090909;
    border-bottom: 1px solid var(--tbt-border);
    padding: 0.75rem;
    display: none;
    max-height: 70vh;
    overflow: auto;
    z-index: 55;
  }
  body.tbt-light .tbt-menu { background: #f6f4ef; }
  body.tbt-nav-open .tbt-menu { display: block; }
  .tbt-menu__list {
    flex-direction: column;
    border-radius: 14px;
    align-items: stretch;
  }
  .tbt-menu__list .sub-menu,
  .tbt-menu__list .moo-nav__dropdown {
    position: static;
    display: none;
    margin-top: 0.35rem;
  }
  .tbt-menu__list > li.is-open > .sub-menu,
  .tbt-menu__list > li.is-open > .moo-nav__dropdown { display: block; }
  .tbt-burger { display: grid; }
  .tbt-menu__list > li.menu-item-has-children {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .tbt-menu__list > li.menu-item-has-children > a { flex: 1 1 auto; }
  .tbt-menu__list > li.menu-item-has-children > .sub-menu,
  .tbt-menu__list > li.menu-item-has-children > .moo-nav__dropdown {
    flex: 1 1 100%;
  }
  .tbt-lang__item { min-width: 30px; height: 28px; font-size: 10px; }
  .tbt-hero__grid,
  .tbt-cat-grid,
  .tbt-feature-grid,
  .tbt-pkg-grid,
  .tbt-ai-grid,
  .tbt-quote-grid,
  .tbt-media-grid,
  .tbt-steps,
  .tbt-foot__grid,
  .tbt-product-list { grid-template-columns: 1fr; columns: 1; }
  .tbt-hero__visual { grid-template-columns: 1fr 1fr; }
  .tbt-phone { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .tbt-btn:hover,
  .tbt-tile:hover,
  .tbt-cat:hover { transform: none; }
}
