:root {
  --tmv2-bg: #05070b;
  --tmv2-bg-soft: #0a1018;
  --tmv2-surface: rgba(10, 16, 24, 0.78);
  --tmv2-surface-strong: rgba(8, 13, 20, 0.92);
  --tmv2-border: rgba(130, 177, 255, 0.18);
  --tmv2-border-strong: rgba(124, 182, 255, 0.42);
  --tmv2-text: #f4f7fb;
  --tmv2-text-soft: rgba(244, 247, 251, 0.72);
  --tmv2-accent: #3f95ff;
  --tmv2-accent-soft: rgba(63, 149, 255, 0.2);
  --tmv2-accent-glow: rgba(63, 149, 255, 0.55);
  --tmv2-radius: 24px;
  --tmv2-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
  --tmv2-container: 1280px;
}

html {
  scroll-behavior: smooth;
}

body.tmv2-body {
  margin: 0;
  color: var(--tmv2-text);
  background:
    radial-gradient(circle at top center, rgba(60, 149, 255, 0.12), transparent 24%),
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.04), transparent 24%),
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.03), transparent 20%),
    linear-gradient(180deg, #04060a 0%, #070b12 36%, #04060a 100%);
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

body.tmv2-body * {
  box-sizing: border-box;
}

body.tmv2-body a {
  color: inherit;
  text-decoration: none;
}

body.tmv2-body img {
  max-width: 100%;
  height: auto;
  display: block;
}

.tmv2-site {
  position: relative;
  isolation: isolate;
}

.tmv2-noise,
.tmv2-noise::before,
.tmv2-noise::after {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.tmv2-noise {
  opacity: 0.2;
  z-index: -1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 0.6px, transparent 0.6px);
  background-size: 7px 7px;
  mix-blend-mode: soft-light;
}

.tmv2-noise::before,
.tmv2-noise::after {
  content: '';
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.06), transparent 20%),
    radial-gradient(circle at 80% 15%, rgba(255, 255, 255, 0.05), transparent 18%),
    radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.04), transparent 18%);
}

.tmv2-top-glow {
  position: fixed;
  inset-inline: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(63, 149, 255, 0.8), transparent);
  filter: blur(1px);
  opacity: 0.35;
  z-index: -1;
}

.tmv2-top-glow--one { top: 210px; }
.tmv2-top-glow--two { top: 65%; }

.tmv2-container {
  width: min(calc(100% - 40px), var(--tmv2-container));
  margin-inline: auto;
}

.tmv2-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(4, 7, 11, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-bar .tmv2-site-header {
  top: 32px;
}

.tmv2-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
}

.tmv2-brand {
  width: min(280px, 45vw);
}

.tmv2-brand img {
  width: 100%;
}

.tmv2-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.tmv2-nav a {
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.86);
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.tmv2-nav a:hover {
  color: #fff;
  text-shadow: 0 0 14px rgba(63, 149, 255, 0.65);
}

.tmv2-menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid var(--tmv2-border);
  border-radius: 14px;
  background: rgba(7, 12, 19, 0.84);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.tmv2-menu-toggle span {
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 99px;
}

.tmv2-main {
  position: relative;
  z-index: 1;
}

.tmv2-section {
  padding: 88px 0;
}

.tmv2-section--compact {
  padding: 36px 0 18px;
}

.tmv2-kicker,
.tmv2-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: #9ac5ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.tmv2-section-head {
  max-width: 920px;
  margin: 0 auto 34px;
  text-align: center;
}

.tmv2-section-head h2,
.tmv2-hero h1,
.tmv2-final-cta h2,
.tmv2-about-copy h2 {
  margin: 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 0.98;
}

.tmv2-hero h1 {
  font-size: clamp(44px, 8vw, 98px);
  max-width: 780px;
}

.tmv2-section-head h2,
.tmv2-final-cta h2,
.tmv2-about-copy h2 {
  font-size: clamp(30px, 5vw, 58px);
}

.tmv2-section-head p,
.tmv2-hero p,
.tmv2-final-cta p,
.tmv2-about-copy p,
.tmv2-card-body p,
.tmv2-method p,
.tmv2-stat p {
  margin: 0;
  font-size: clamp(15px, 2vw, 19px);
  line-height: 1.72;
  color: var(--tmv2-text-soft);
}

.tmv2-section-head p {
  max-width: 720px;
  margin: 14px auto 0;
}

.tmv2-hero {
  padding-top: 54px;
}

.tmv2-hero-grid,
.tmv2-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(380px, 0.97fr);
  align-items: center;
  gap: 42px;
}

.tmv2-hero-copy p {
  max-width: 670px;
  margin-top: 22px;
}

.tmv2-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.tmv2-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.tmv2-hero-points li {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tmv2-btn {
  --btn-bg: linear-gradient(180deg, rgba(19, 45, 90, 0.98) 0%, rgba(10, 27, 57, 0.99) 100%);
  --btn-border: rgba(102, 158, 238, 0.34);
  --btn-shadow: 0 0 0 1px rgba(160, 205, 255, 0.14) inset, 0 14px 28px rgba(0, 0, 0, 0.38), 0 0 18px rgba(63, 149, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 16px 28px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  background: var(--btn-bg);
  border: 1px solid var(--btn-border);
  clip-path: polygon(18px 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 18px 100%, 0 50%);
  box-shadow: var(--btn-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.tmv2-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 0 0 1px rgba(120, 186, 255, 0.28) inset, 0 18px 30px rgba(0, 0, 0, 0.42), 0 0 24px rgba(63, 149, 255, 0.28);
}

.tmv2-btn--ghost {
  --btn-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  --btn-border: rgba(255, 255, 255, 0.14);
  --btn-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.tmv2-btn--small {
  min-height: 46px;
  padding: 14px 22px;
  font-size: 12px;
}

.tmv2-center {
  text-align: center;
  margin-top: 30px;
}

.tmv2-media-card,
.tmv2-card,
.tmv2-method,
.tmv2-stat,
.tmv2-final-cta {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(5, 8, 13, 0.88), rgba(6, 10, 16, 0.96));
  border: 1px solid var(--tmv2-border);
  box-shadow: var(--tmv2-shadow);
  overflow: hidden;
}

.tmv2-media-card::before,
.tmv2-card::before,
.tmv2-method::before,
.tmv2-stat::before,
.tmv2-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top center, rgba(80, 145, 255, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 30%);
  pointer-events: none;
}

.tmv2-media-card {
  min-height: 620px;
  border-radius: 34px;
}

.tmv2-media-card--portrait {
  min-height: 760px;
}

.tmv2-media-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.52)),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.05), transparent 50%);
}

.tmv2-media-label,
.tmv2-media-sub {
  position: absolute;
  left: 34px;
  z-index: 2;
}

.tmv2-media-label {
  top: 34px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tmv2-media-sub {
  left: 34px;
  bottom: 34px;
  color: var(--tmv2-text-soft);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tmv2-glow-line {
  width: min(100%, 680px);
  height: 2px;
  margin: 0 auto 28px;
  background: linear-gradient(90deg, transparent, var(--tmv2-accent-glow), transparent);
  box-shadow: 0 0 28px rgba(63, 149, 255, 0.55);
}

.tmv2-stats-grid,
.tmv2-method-grid,
.tmv2-cards {
  display: grid;
  gap: 22px;
}

.tmv2-stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tmv2-stat,
.tmv2-method {
  padding: 34px 28px;
  border-radius: 24px;
  text-align: center;
}

.tmv2-stat-icon,
.tmv2-method-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 66px;
  min-height: 66px;
  margin-bottom: 16px;
  border-radius: 20px;
  border: 1px solid rgba(97, 170, 255, 0.24);
  background: rgba(63, 149, 255, 0.08);
  color: #cfe4ff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.tmv2-stat h3,
.tmv2-method h3,
.tmv2-card h3 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tmv2-cards--courses {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tmv2-cards--locations {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tmv2-card {
  border-radius: 26px;
}

.tmv2-card-media {
  position: relative;
  min-height: 420px;
  background:
    radial-gradient(circle at top center, rgba(92, 149, 255, 0.18), transparent 25%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    linear-gradient(180deg, rgba(9, 14, 22, 0.6), rgba(5, 8, 13, 0.96));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 24px;
}

.tmv2-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.45)),
    radial-gradient(circle at 50% 15%, rgba(255, 255, 255, 0.08), transparent 28%);
}

.tmv2-card-media span {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tmv2-card-body {
  padding: 24px 24px 28px;
}

.tmv2-badge {
  display: inline-block;
  margin-bottom: 14px;
  color: #9cc8ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.tmv2-card-body p {
  font-size: 15px;
  min-height: 78px;
  margin-bottom: 18px;
}

.tmv2-method-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tmv2-about-copy {
  max-width: 660px;
}

.tmv2-about-copy p {
  margin-top: 18px;
}

.tmv2-checks {
  list-style: none;
  padding: 0;
  margin: 22px 0 30px;
  display: grid;
  gap: 12px;
}

.tmv2-checks li {
  position: relative;
  padding-left: 30px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}

.tmv2-checks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #8fc1ff;
  font-weight: 800;
}

.tmv2-final-cta {
  padding: 48px 28px;
  border-radius: 32px;
  text-align: center;
}

.tmv2-final-logo {
  width: min(140px, 28vw);
  margin: 0 auto 18px;
  opacity: 0.92;
}

.tmv2-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1180px) {
  .tmv2-cards--courses {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tmv2-hero-grid,
  .tmv2-about-grid {
    grid-template-columns: 1fr;
  }

  .tmv2-media-card,
  .tmv2-media-card--portrait {
    min-height: 560px;
  }
}

@media (max-width: 900px) {
  .tmv2-menu-toggle {
    display: inline-flex;
  }

  .tmv2-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px;
    border-radius: 20px;
    background: rgba(6, 10, 16, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--tmv2-shadow);
  }

  .tmv2-nav.is-open {
    display: flex;
  }

  .tmv2-nav a {
    width: 100%;
    padding: 14px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .tmv2-nav a:last-child {
    border-bottom: 0;
  }

  .tmv2-stats-grid,
  .tmv2-method-grid,
  .tmv2-cards--locations {
    grid-template-columns: 1fr;
  }

  .tmv2-section {
    padding: 72px 0;
  }
}

@media (max-width: 680px) {
  .admin-bar .tmv2-site-header {
    top: 46px;
  }

  .tmv2-container {
    width: min(calc(100% - 24px), var(--tmv2-container));
  }

  .tmv2-header-row {
    min-height: 72px;
  }

  .tmv2-brand {
    width: min(220px, 58vw);
  }

  .tmv2-hero {
    padding-top: 30px;
  }

  .tmv2-hero h1 {
    line-height: 1;
  }

  .tmv2-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .tmv2-btn,
  .tmv2-btn--small {
    width: 100%;
  }

  .tmv2-media-card,
  .tmv2-media-card--portrait {
    min-height: 380px;
    border-radius: 24px;
  }

  .tmv2-media-label {
    top: 24px;
    left: 24px;
    font-size: 14px;
  }

  .tmv2-media-sub {
    left: 24px;
    bottom: 24px;
    font-size: 12px;
  }

  .tmv2-cards--courses {
    grid-template-columns: 1fr;
  }

  .tmv2-card-media {
    min-height: 300px;
  }

  .tmv2-card-body,
  .tmv2-stat,
  .tmv2-method,
  .tmv2-final-cta {
    padding-left: 18px;
    padding-right: 18px;
  }

  .tmv2-card-body p {
    min-height: 0;
  }

  .tmv2-checks li {
    font-size: 16px;
  }
}



/* === HERO PREMIUM FIX 2026-04-08 === */
.tmv2-hero {
  padding-top: 24px;
  overflow: clip;
}

.tmv2-hero-banner {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: clamp(420px, 44vw, 640px);
  overflow: hidden;
  background-color: #070c13;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
}

.tmv2-hero-banner::before,
.tmv2-hero-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tmv2-hero-banner::before {
  background:
    radial-gradient(circle at 50% 34%, rgba(58, 145, 255, 0.18), transparent 16%),
    linear-gradient(90deg, rgba(3, 7, 12, 0.38) 0%, rgba(3, 7, 12, 0.08) 24%, rgba(3, 7, 12, 0.08) 76%, rgba(3, 7, 12, 0.38) 100%),
    linear-gradient(180deg, rgba(4, 8, 14, 0.04) 0%, rgba(4, 8, 14, 0.16) 100%);
}

.tmv2-hero-banner::after {
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 0.6px, transparent 0.6px);
  background-size: 7px 7px;
  opacity: 0.14;
  mix-blend-mode: soft-light;
}

.tmv2-hero-copy--center {
  position: relative;
  z-index: 2;
  min-height: clamp(420px, 44vw, 640px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: clamp(34px, 5vw, 68px) 24px clamp(28px, 4vw, 52px);
  text-align: center;
}

.tmv2-hero-logo {
  width: min(52vw, 720px);
  max-width: 86%;
  margin: 0 auto;
  filter: brightness(0) invert(1) saturate(0) contrast(180%) drop-shadow(0 10px 24px rgba(0, 0, 0, 0.48));
}

.tmv2-hero-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.18em;
  margin: 0;
  font-size: clamp(26px, 3.2vw, 56px) !important;
  line-height: 1.02 !important;
  letter-spacing: 0.015em !important;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.55);
}

.tmv2-hero-title-white {
  color: #ffffff;
}

.tmv2-hero-title-accent {
  color: #4e98ff;
}

.tmv2-hero-actions--center {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 22px;
}

.tmv2-btn--hero {
  position: relative;
  isolation: isolate;
  min-width: min(100%, 356px);
  min-height: 48px;
  padding: 10px 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  clip-path: polygon(15px 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 15px 100%, 0 50%);
  --btn-bg:
    linear-gradient(180deg, rgba(20, 44, 89, 0.98) 0%, rgba(13, 33, 71, 0.99) 18%, rgba(9, 22, 49, 1) 52%, rgba(6, 15, 35, 1) 100%);
  --btn-border: rgba(102, 158, 238, 0.34);
  --btn-shadow:
    0 0 0 1px rgba(160, 205, 255, 0.12) inset,
    0 8px 20px rgba(0, 0, 0, 0.42),
    0 0 14px rgba(63, 149, 255, 0.10);
}

.tmv2-btn--hero::before,
.tmv2-btn--hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  clip-path: inherit;
}

.tmv2-btn--hero::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 18%, transparent 40%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.12) 50%, rgba(255, 255, 255, 0.02) 100%),
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.30) 0%, rgba(255, 255, 255, 0.14) 18%, rgba(255, 255, 255, 0.04) 34%, transparent 58%);
  opacity: 0.78;
  mix-blend-mode: screen;
}

.tmv2-btn--hero::after {
  inset: 1px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 26%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.10), transparent 12%, transparent 88%, rgba(255, 255, 255, 0.10)),
    linear-gradient(180deg, transparent 66%, rgba(92, 153, 232, 0.16) 100%);
  opacity: 0.86;
}

.tmv2-btn--hero:hover {
  box-shadow:
    0 0 0 1px rgba(176, 217, 255, 0.16) inset,
    0 12px 24px rgba(0, 0, 0, 0.46),
    0 0 18px rgba(63, 149, 255, 0.16);
}

@media (max-width: 1180px) {
  .tmv2-hero-banner,
  .tmv2-hero-copy--center {
    min-height: clamp(400px, 58vw, 580px);
  }

  .tmv2-hero-logo {
    width: min(62vw, 620px);
  }

  .tmv2-btn--hero {
    min-width: min(100%, 356px);
  }
}

@media (max-width: 680px) {
  .admin-bar .tmv2-site-header {
    top: 46px;
  }

  .tmv2-hero {
    padding-top: 8px;
  }

  .tmv2-hero-banner,
  .tmv2-hero-copy--center {
    min-height: clamp(420px, 118vw, 560px);
  }

  .tmv2-hero-banner {
    background-position: 33% center;
  }

  .tmv2-hero-copy--center {
    gap: 12px;
    padding: 24px 18px 30px;
  }

  .tmv2-hero-logo {
    width: min(84vw, 410px);
    max-width: 90%;
  }

  .tmv2-hero-title {
    max-width: 10.5ch;
    gap: 0;
    font-size: clamp(17px, 6.7vw, 30px) !important;
    line-height: 1.04 !important;
  }

  .tmv2-hero-title span {
    display: block;
  }

  .tmv2-hero-actions--center {
    justify-content: center;
    align-items: center;
  }

  .tmv2-btn--hero {
    min-width: 0;
    width: min(100%, 282px);
    min-height: 40px;
    padding: 8px 14px;
    font-size: 8.7px;
    letter-spacing: 0.11em;
    margin-inline: auto;
  }
}


/* === STATS SECTION REFINE 2026-04-08 === */
.tmv2-stats {
  padding-top: 42px;
}

.tmv2-stats-head {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 32px;
}

.tmv2-stats-head h2 {
  margin: 0;
  font-size: clamp(28px, 4.2vw, 54px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  font-weight: 700;
  text-transform: none;
}

.tmv2-stats-head h2 span {
  font-weight: 800;
}

.tmv2-stats-head p {
  margin: 10px 0 0;
  font-size: clamp(16px, 1.8vw, 24px);
  line-height: 1.35;
  color: var(--tmv2-text-soft);
  font-weight: 500;
}

.tmv2-stats-grid {
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.tmv2-stat {
  min-height: 0;
  padding: 44px 28px 40px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.008)),
    linear-gradient(180deg, rgba(6, 10, 16, 0.94), rgba(3, 6, 11, 0.98));
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.34);
}

.tmv2-stat::before {
  background:
    radial-gradient(circle at 50% 0%, rgba(80, 145, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 28%);
}

.tmv2-stat-icon {
  width: 88px;
  height: 88px;
  min-width: 88px;
  min-height: 88px;
  margin: 0 auto 22px;
  border-radius: 24px;
  border: 1px solid rgba(97, 170, 255, 0.26);
  background: linear-gradient(180deg, rgba(21, 43, 78, 0.68), rgba(10, 23, 43, 0.42));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 10px 26px rgba(0, 0, 0, 0.16);
}

.tmv2-stat-icon svg {
  width: 54px;
  height: 54px;
}

.tmv2-stat-icon svg path,
.tmv2-stat-icon svg rect {
  fill: none;
  stroke: #dce9ff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tmv2-stat-icon .tmv2-stat-glyph {
  fill: #dce9ff;
  stroke: none;
}

.tmv2-stat-icon .tmv2-stat-arrow {
  stroke: #dce9ff;
}

.tmv2-stat h3 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3vw, 52px);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.tmv2-stat p {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
  max-width: 16ch;
  margin-inline: auto;
}

@media (max-width: 900px) {
  .tmv2-stats {
    padding-top: 28px;
  }

  .tmv2-stats-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tmv2-stat {
    padding: 34px 22px 30px;
    border-radius: 28px;
  }
}

@media (max-width: 680px) {
  .tmv2-stats-head {
    margin-bottom: 22px;
  }

  .tmv2-stats-head h2 {
    font-size: clamp(24px, 8.2vw, 34px);
  }

  .tmv2-stats-head p {
    font-size: 17px;
  }

  .tmv2-stat-icon {
    width: 76px;
    height: 76px;
    min-width: 76px;
    min-height: 76px;
    margin-bottom: 18px;
    border-radius: 22px;
  }

  .tmv2-stat-icon svg {
    width: 46px;
    height: 46px;
  }

  .tmv2-stat h3 {
    font-size: clamp(24px, 9vw, 36px);
  }

  .tmv2-stat p {
    font-size: 16px;
  }
}


/* === STATS SECTION REFINE 2 2026-04-08 === */
.tmv2-stats {
  padding-top: 4px;
}

.tmv2-stats .tmv2-container {
  position: relative;
}

.tmv2-stats .tmv2-glow-line {
  margin-bottom: 18px;
}

.tmv2-stats-head {
  max-width: 820px;
  margin: 0 auto 22px;
}

.tmv2-stats-head h2 {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.06;
  letter-spacing: 0.01em;
  font-weight: 600;
}

.tmv2-stats-head-lite {
  font-weight: 600;
}

.tmv2-stats-head-strong {
  font-weight: 800;
  font-size: 1.34em;
  line-height: 0.9;
}

.tmv2-stats-head p {
  margin-top: 8px;
  font-size: clamp(14px, 1.15vw, 18px);
  letter-spacing: 0.01em;
}

.tmv2-stats-grid {
  gap: 22px;
}

.tmv2-stat {
  padding: 30px 24px 28px;
  border-radius: 30px;
}

.tmv2-stat-icon {
  width: 82px;
  height: 82px;
  min-width: 82px;
  min-height: 82px;
  margin: 0 auto 18px;
  border-radius: 24px;
  border: 1px solid rgba(89, 156, 255, 0.22);
  background:
    radial-gradient(circle at 50% 14%, rgba(132, 187, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(16, 34, 64, 0.82), rgba(7, 17, 34, 0.58));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -10px 18px rgba(0, 0, 0, 0.22),
    0 14px 34px rgba(0, 0, 0, 0.24),
    0 0 24px rgba(43, 120, 255, 0.08);
}

.tmv2-stat-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 34%);
  pointer-events: none;
}

.tmv2-stat-icon svg {
  width: 48px;
  height: 48px;
}

.tmv2-stat-icon svg path,
.tmv2-stat-icon svg rect {
  stroke: #e6f0ff;
  stroke-width: 2.3;
}

.tmv2-stat-icon .tmv2-stat-glyph,
.tmv2-stat-icon .tmv2-stat-glyph-line,
.tmv2-stat-icon .tmv2-stat-arrow,
.tmv2-stat-icon .tmv2-stat-dot {
  stroke: #ddebff;
}

.tmv2-stat-icon .tmv2-stat-glyph-line {
  fill: none;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tmv2-stat-icon .tmv2-stat-dot {
  stroke-width: 4.4;
  stroke-linecap: round;
}

.tmv2-stat h3 {
  margin-bottom: 8px;
  font-size: clamp(18px, 1.65vw, 28px);
  letter-spacing: 0.03em;
  line-height: 1.04;
}

.tmv2-stat p {
  font-size: clamp(13px, 0.95vw, 16px);
  line-height: 1.45;
  max-width: 18ch;
  color: rgba(225, 235, 246, 0.76);
}

@media (max-width: 900px) {
  .tmv2-stats {
    padding-top: 2px;
  }

  .tmv2-stats-head {
    margin-bottom: 18px;
  }

  .tmv2-stats-head h2 {
    font-size: clamp(24px, 5vw, 34px);
  }

  .tmv2-stats-head p {
    font-size: 15px;
  }

  .tmv2-stat {
    padding: 28px 20px 24px;
  }
}

@media (max-width: 680px) {
  .tmv2-stats .tmv2-glow-line {
    margin-bottom: 14px;
  }

  .tmv2-stats-head {
    margin-bottom: 16px;
  }

  .tmv2-stats-head h2 {
    font-size: clamp(20px, 7.4vw, 30px);
    line-height: 1.1;
  }

  .tmv2-stats-head p {
    font-size: 14px;
  }

  .tmv2-stat-icon {
    width: 74px;
    height: 74px;
    min-width: 74px;
    min-height: 74px;
    margin-bottom: 16px;
    border-radius: 22px;
  }

  .tmv2-stat-icon svg {
    width: 43px;
    height: 43px;
  }

  .tmv2-stat h3 {
    font-size: clamp(18px, 6vw, 24px);
  }

  .tmv2-stat p {
    font-size: 14px;
  }
}


/* === HERO + STATS PREMIUM FIX 2026-04-08 === */
.tmv2-hero {
  padding: 18px 0 26px;
}

.tmv2-hero-banner {
  border-radius: 0;
}

.tmv2-stats {
  padding: 2px 0 28px;
  margin-top: -8px;
}

.tmv2-stats .tmv2-container {
  width: min(calc(100% - 18px), 1240px);
}

.tmv2-stats .tmv2-glow-line {
  width: min(100%, 900px);
  margin: 0 auto 14px;
  height: 1px;
  opacity: 0.82;
  box-shadow: 0 0 18px rgba(63, 149, 255, 0.28);
}

.tmv2-stats-head {
  max-width: 780px;
  margin: 0 auto 16px;
  text-align: center;
}

.tmv2-stats-head h2 {
  margin: 0;
  font-size: clamp(22px, 2.35vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.tmv2-stats-head-lite {
  font-weight: 600;
}

.tmv2-stats-head-strong {
  display: inline-block;
  font-weight: 800;
  font-size: 1.55em;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.tmv2-stats-head p {
  margin-top: 6px;
  font-size: clamp(13px, 1vw, 16px);
  color: rgba(236, 243, 252, 0.72);
  letter-spacing: 0.01em;
}

.tmv2-stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tmv2-stat {
  min-height: 248px;
  padding: 24px 20px 22px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018) 0%, rgba(255, 255, 255, 0.005) 14%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(8, 14, 24, 0.82) 0%, rgba(5, 10, 18, 0.94) 100%);
  border: 1px solid rgba(91, 155, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 16px 42px rgba(0, 0, 0, 0.28);
}

.tmv2-stat::before {
  background:
    radial-gradient(circle at 50% 0%, rgba(84, 149, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.018), transparent 30%);
}

.tmv2-stat-icon {
  position: relative;
  width: 84px;
  height: 84px;
  min-width: 84px;
  min-height: 84px;
  margin: 0 auto 16px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  clip-path: none;
}

.tmv2-stat-icon::before,
.tmv2-stat-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tmv2-stat-icon::before {
  clip-path: polygon(18% 2%, 82% 2%, 100% 18%, 100% 82%, 82% 98%, 18% 98%, 0 82%, 0 18%);
  background:
    linear-gradient(180deg, rgba(29, 58, 104, 0.70), rgba(6, 14, 28, 0.35));
  border: 1px solid rgba(95, 160, 255, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(95, 160, 255, 0.10),
    0 12px 26px rgba(0, 0, 0, 0.22),
    0 0 18px rgba(63, 149, 255, 0.14);
}

.tmv2-stat-icon::after {
  inset: 10px;
  clip-path: polygon(18% 2%, 82% 2%, 100% 18%, 100% 82%, 82% 98%, 18% 98%, 0 82%, 0 18%);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0)),
    linear-gradient(180deg, rgba(12, 28, 53, 0.46), rgba(9, 18, 35, 0.16));
  opacity: 0.88;
}

.tmv2-stat-icon svg {
  position: relative;
  z-index: 2;
  width: 50px;
  height: 50px;
  filter: drop-shadow(0 0 10px rgba(99, 160, 255, 0.12));
}

.tmv2-stat-icon .tmv2-stat-shell,
.tmv2-stat-icon .tmv2-stat-line {
  fill: none;
  stroke: #eff5ff;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tmv2-stat-icon .tmv2-stat-dot {
  fill: none;
  stroke: #eff5ff;
  stroke-width: 5;
  stroke-linecap: round;
}

.tmv2-stat h3 {
  margin: 0 0 8px;
  font-size: clamp(16px, 1.35vw, 24px);
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1.08;
  text-transform: uppercase;
}

.tmv2-stat:first-child h3 {
  font-size: clamp(24px, 2vw, 34px);
  letter-spacing: 0;
}

.tmv2-stat p {
  margin: 0 auto;
  max-width: 17ch;
  font-size: clamp(12px, 0.9vw, 14px);
  line-height: 1.45;
  color: rgba(231, 238, 247, 0.72);
}

@media (max-width: 1180px) {
  .tmv2-stats .tmv2-container {
    width: min(calc(100% - 26px), 1120px);
  }

  .tmv2-stats-head h2 {
    font-size: clamp(22px, 3.2vw, 32px);
  }
}

@media (max-width: 900px) {
  .tmv2-hero {
    padding: 12px 0 20px;
  }

  .tmv2-stats {
    padding: 0 0 22px;
    margin-top: 0;
  }

  .tmv2-stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tmv2-stat {
    min-height: 0;
    padding: 24px 20px 22px;
    border-radius: 24px;
  }

  .tmv2-stats-head {
    margin-bottom: 14px;
  }

  .tmv2-stats-head h2 {
    font-size: clamp(22px, 5.2vw, 30px);
  }

  .tmv2-stats-head p {
    font-size: 14px;
  }
}

@media (max-width: 680px) {
  .tmv2-stats .tmv2-container {
    width: min(calc(100% - 20px), 560px);
  }

  .tmv2-stats .tmv2-glow-line {
    width: min(100%, 360px);
    margin-bottom: 10px;
  }

  .tmv2-stats-head {
    margin-bottom: 12px;
  }

  .tmv2-stats-head h2 {
    font-size: clamp(20px, 7vw, 28px);
    line-height: 1.12;
  }

  .tmv2-stats-head-strong {
    font-size: 1.42em;
  }

  .tmv2-stats-head p {
    font-size: 13px;
  }

  .tmv2-stat {
    padding: 22px 18px 20px;
  }

  .tmv2-stat-icon {
    width: 78px;
    height: 78px;
    min-width: 78px;
    min-height: 78px;
    margin-bottom: 14px;
  }

  .tmv2-stat-icon svg {
    width: 46px;
    height: 46px;
  }

  .tmv2-stat h3 {
    font-size: clamp(16px, 6.4vw, 22px);
  }

  .tmv2-stat:first-child h3 {
    font-size: clamp(22px, 8vw, 30px);
  }

  .tmv2-stat p {
    font-size: 13px;
  }
}


/* === Stats icons from media library === */
.tmv2-stats-head h2 {
  font-size: clamp(24px, 2.8vw, 40px);
}

.tmv2-stats-head p {
  margin-top: 10px;
  font-size: clamp(18px, 1.35vw, 26px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: rgba(244, 247, 251, 0.86);
}

.tmv2-stat {
  min-height: 272px;
  padding: 26px 22px 24px;
}

.tmv2-stat-icon {
  width: 112px;
  height: 112px;
  min-width: 112px;
  min-height: 112px;
  margin: 0 auto 22px;
}

.tmv2-stat-icon::before,
.tmv2-stat-icon::after {
  display: none;
}

.tmv2-stat-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

.tmv2-stat-icon svg {
  display: none;
}

.tmv2-stat h3 {
  margin: 0 0 14px;
  font-size: clamp(28px, 2.25vw, 40px);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 800;
  color: #f7f9fc;
}

.tmv2-stat:first-child h3 {
  font-size: clamp(42px, 3.15vw, 56px);
  letter-spacing: -0.04em;
}

.tmv2-stat p {
  max-width: 20ch;
  font-size: clamp(18px, 1.15vw, 22px);
  line-height: 1.34;
  font-weight: 600;
  color: rgba(244, 247, 251, 0.8);
}

@media (max-width: 900px) {
  .tmv2-stats-head h2 {
    font-size: clamp(24px, 5.8vw, 34px);
  }

  .tmv2-stats-head p {
    font-size: clamp(18px, 3.2vw, 22px);
  }

  .tmv2-stat {
    min-height: 0;
    padding: 24px 20px 22px;
  }

  .tmv2-stat-icon {
    width: 104px;
    height: 104px;
    min-width: 104px;
    min-height: 104px;
    margin-bottom: 18px;
  }

  .tmv2-stat h3 {
    font-size: clamp(28px, 6.8vw, 36px);
  }

  .tmv2-stat:first-child h3 {
    font-size: clamp(40px, 9vw, 48px);
  }

  .tmv2-stat p {
    font-size: clamp(17px, 3vw, 20px);
  }
}

@media (max-width: 680px) {
  .tmv2-stats .tmv2-container {
    width: min(calc(100% - 20px), 560px);
  }

  .tmv2-stat {
    border-radius: 22px;
    padding: 22px 18px 20px;
  }

  .tmv2-stat-icon {
    width: 96px;
    height: 96px;
    min-width: 96px;
    min-height: 96px;
    margin-bottom: 16px;
  }

  .tmv2-stat h3 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .tmv2-stat:first-child h3 {
    font-size: clamp(40px, 10vw, 46px);
  }

  .tmv2-stat p {
    font-size: clamp(17px, 4.2vw, 19px);
  }
}


/* Courses heading closer to prototype */
.tmv2-section-head--courses {
  max-width: 980px;
  margin-bottom: 30px;
}

.tmv2-section-head--courses h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.01em;
  line-height: 1.06;
}

.tmv2-section-head--courses .tmv2-courses-subtitle {
  margin-top: 12px;
  font-size: clamp(16px, 2vw, 21px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.35;
  color: rgba(255,255,255,0.86);
}

.tmv2-section-head--courses .tmv2-courses-subtitle span {
  background: linear-gradient(180deg, #b8d9ff 0%, #69a9ff 45%, #3f95ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}

@media (max-width: 991px) {
  .tmv2-section-head--courses {
    margin-bottom: 24px;
  }

  .tmv2-section-head--courses h2 {
    font-size: clamp(26px, 6.4vw, 36px);
  }

  .tmv2-section-head--courses .tmv2-courses-subtitle {
    font-size: clamp(15px, 3.6vw, 18px);
  }
}

@media (max-width: 767px) {
  .tmv2-section-head--courses h2 {
    font-size: 34px;
  }

  .tmv2-section-head--courses .tmv2-courses-subtitle {
    font-size: 17px;
    line-height: 1.4;
  }
}


/* === COURSES SPACING + UNIFIED BUTTONS 2026-04-08 === */
#corsi.tmv2-section {
  padding-top: 42px;
}

.tmv2-btn,
.tmv2-btn--small,
.tmv2-btn--primary {
  position: relative;
  isolation: isolate;
  min-height: 48px;
  padding: 10px 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(102, 158, 238, 0.34);
  background:
    linear-gradient(180deg, rgba(20, 44, 89, 0.98) 0%, rgba(13, 33, 71, 0.99) 18%, rgba(9, 22, 49, 1) 52%, rgba(6, 15, 35, 1) 100%);
  box-shadow:
    0 0 0 1px rgba(160, 205, 255, 0.12) inset,
    0 8px 20px rgba(0, 0, 0, 0.42),
    0 0 14px rgba(63, 149, 255, 0.10);
  clip-path: polygon(15px 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 15px 100%, 0 50%);
}

.tmv2-btn::before,
.tmv2-btn::after,
.tmv2-btn--small::before,
.tmv2-btn--small::after,
.tmv2-btn--primary::before,
.tmv2-btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  clip-path: inherit;
}

.tmv2-btn::before,
.tmv2-btn--small::before,
.tmv2-btn--primary::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 18%, transparent 40%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.12) 50%, rgba(255, 255, 255, 0.02) 100%),
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.30) 0%, rgba(255, 255, 255, 0.14) 18%, rgba(255, 255, 255, 0.04) 34%, transparent 58%);
  opacity: 0.78;
  mix-blend-mode: screen;
}

.tmv2-btn::after,
.tmv2-btn--small::after,
.tmv2-btn--primary::after {
  inset: 1px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 26%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.10), transparent 12%, transparent 88%, rgba(255, 255, 255, 0.10)),
    linear-gradient(180deg, transparent 66%, rgba(92, 153, 232, 0.16) 100%);
  opacity: 0.86;
}

.tmv2-btn:hover,
.tmv2-btn--small:hover,
.tmv2-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(176, 217, 255, 0.16) inset,
    0 12px 24px rgba(0, 0, 0, 0.46),
    0 0 18px rgba(63, 149, 255, 0.16);
  filter: brightness(1.05);
}

.tmv2-card--course .tmv2-card-media {
  min-height: 320px;
  padding: 20px;
}

.tmv2-card--course .tmv2-card-body {
  padding: 18px 18px 22px;
}

.tmv2-card--course h3 {
  margin-bottom: 8px;
  font-size: clamp(22px, 2.2vw, 30px);
}

.tmv2-card--course .tmv2-card-body p {
  min-height: auto;
  margin-bottom: 0;
  font-size: 14px;
}

.tmv2-card--course .tmv2-badge {
  margin-bottom: 10px;
}

#corsi .tmv2-center {
  margin-top: 22px;
}

@media (max-width: 1180px) {
  #corsi.tmv2-section {
    padding-top: 34px;
  }

  .tmv2-card--course .tmv2-card-media {
    min-height: 280px;
  }
}

@media (max-width: 680px) {
  #corsi.tmv2-section {
    padding-top: 24px;
  }

  .tmv2-card--course .tmv2-card-media {
    min-height: 220px;
  }

  .tmv2-card--course .tmv2-card-body {
    padding: 16px 16px 18px;
  }

  #corsi .tmv2-center {
    margin-top: 18px;
  }
}


.tmv2-card--course .tmv2-card-media {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.tmv2-card--course:nth-child(3) .tmv2-card-media {
  background-position: center center;
}

@media (max-width: 680px) {
  .tmv2-card--course .tmv2-card-media {
    background-position: center 18%;
  }

  .tmv2-card--course:nth-child(3) .tmv2-card-media {
    background-position: center 10%;
  }
}


/* === COURSES CTA + LOCATIONS HEADING REFINE 2026-04-08 === */
#corsi .tmv2-center {
  margin-top: 38px;
}

#sedi.tmv2-section--locations-v2 {
  padding-top: 34px;
}

.tmv2-section-head--locations {
  max-width: 900px;
  margin: 0 auto 26px;
  text-align: center;
}

.tmv2-section-head--locations h2 {
  margin: 0;
  font-size: clamp(30px, 3.35vw, 44px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: none;
}

.tmv2-section-head--locations .tmv2-locations-subtitle {
  margin-top: 12px;
  font-size: clamp(17px, 1.75vw, 24px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.9);
}

.tmv2-section-head--locations .tmv2-locations-subtitle span {
  background: linear-gradient(180deg, #d6e7ff 0%, #77adff 50%, #4b97ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

#sedi .tmv2-cards--locations {
  margin-top: 4px;
}

@media (max-width: 991px) {
  #corsi .tmv2-center {
    margin-top: 32px;
  }

  #sedi.tmv2-section--locations-v2 {
    padding-top: 28px;
  }

  .tmv2-section-head--locations {
    margin-bottom: 22px;
  }

  .tmv2-section-head--locations h2 {
    font-size: clamp(28px, 6vw, 38px);
  }

  .tmv2-section-head--locations .tmv2-locations-subtitle {
    font-size: clamp(16px, 3.5vw, 20px);
  }
}

@media (max-width: 680px) {
  #corsi .tmv2-center {
    margin-top: 28px;
  }

  #sedi.tmv2-section--locations-v2 {
    padding-top: 24px;
  }

  .tmv2-section-head--locations {
    margin-bottom: 18px;
  }

  .tmv2-section-head--locations h2 {
    font-size: clamp(27px, 8vw, 34px);
  }

  .tmv2-section-head--locations .tmv2-locations-subtitle {
    font-size: 17px;
    line-height: 1.4;
  }
}


/* === LOCATIONS IMAGES INTEGRATED 2026-04-09 === */
.tmv2-card-media--location {
  min-height: 420px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 0;
}

.tmv2-card-media--location::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.01) 0%, rgba(0, 0, 0, 0.18) 60%, rgba(0, 0, 0, 0.28) 100%),
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.05), transparent 26%);
}

.tmv2-card--location .tmv2-card-body {
  text-align: center;
  padding-top: 18px;
}

.tmv2-card--location h3 {
  margin-bottom: 8px;
  font-size: clamp(28px, 2.7vw, 42px);
  line-height: 1;
  letter-spacing: 0.05em;
}

.tmv2-card--location p {
  min-height: 0;
  margin-bottom: 0;
  font-size: clamp(17px, 1.2vw, 22px);
  line-height: 1.45;
  color: rgba(232, 239, 248, 0.86);
}

@media (max-width: 991px) {
  .tmv2-card-media--location {
    min-height: 360px;
  }
}

@media (max-width: 680px) {
  .tmv2-card-media--location {
    min-height: 280px;
  }

  .tmv2-card--location h3 {
    font-size: clamp(24px, 7vw, 32px);
  }

  .tmv2-card--location p {
    font-size: 17px;
  }
}



/* === ABOUT / CHI SIAMO V2 2026-04-09 === */
.tmv2-gradient-text {
  background: linear-gradient(180deg, #e5f0ff 0%, #9ac5ff 48%, #3f95ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

#sedi .tmv2-card--location h3 {
  margin-bottom: 10px;
}

#chi-siamo.tmv2-section--about-v2 {
  padding-top: 34px;
  padding-bottom: 58px;
}

.tmv2-about-top {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.tmv2-about-top h2,
.tmv2-section-head--method-v2 h2,
.tmv2-about-bottom h2 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.01em;
  line-height: 1.06;
}

.tmv2-about-top-claim {
  margin: 12px 0 0;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 500;
  color: rgba(255,255,255,0.98);
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.tmv2-about-top-claim span {
  font-weight: 800;
  letter-spacing: 0.08em;
}

.tmv2-about-top-claim strong {
  font-weight: 800;
}

.tmv2-about-top-text {
  margin-top: 18px;
  font-size: clamp(18px, 1.8vw, 28px);
  color: rgba(245,248,252,0.92);
  line-height: 1.45;
}

.tmv2-about-top .tmv2-center {
  margin-top: 20px;
}

.tmv2-glow-line--about {
  margin: 34px auto 34px;
}

.tmv2-founder-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.95fr);
  align-items: stretch;
  gap: 34px;
}

.tmv2-founder-copy {
  padding: 18px 0 8px;
}

.tmv2-founder-copy h3 {
  margin: 0 0 20px;
  font-size: clamp(32px, 3.1vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: none;
}

.tmv2-founder-copy p {
  margin: 0 0 18px;
  font-size: clamp(18px, 1.75vw, 31px);
  line-height: 1.58;
  color: rgba(244,247,251,0.96);
}

.tmv2-checks--about {
  margin-top: 26px;
  gap: 16px;
}

.tmv2-checks--about li {
  font-size: clamp(18px, 1.62vw, 28px);
  font-weight: 500;
  color: rgba(245,248,252,0.96);
}

.tmv2-checks--about li strong {
  font-weight: 700;
}

.tmv2-founder-media {
  min-height: 100%;
}

.tmv2-founder-photo {
  min-height: 660px;
  border-radius: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  box-shadow: none;
  border: 0;
}

.tmv2-section-head--method-v2 {
  max-width: 960px;
  margin-bottom: 28px;
}

.tmv2-section-head--method-v2 p {
  margin-top: 12px;
  font-size: clamp(17px, 1.9vw, 25px);
  line-height: 1.45;
  color: rgba(255,255,255,0.9);
}

.tmv2-section-head--method-v2 p span {
  background: linear-gradient(180deg, #d6e7ff 0%, #77adff 50%, #4b97ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.tmv2-method-grid--about {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.tmv2-method-card {
  padding: 28px 20px 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  min-height: 0;
}

.tmv2-method-card-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tmv2-method-card-icon img,
.tmv2-method-card-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.tmv2-method-card h3 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tmv2-method-card p {
  margin: 0 auto;
  max-width: 280px;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.48;
  color: rgba(244,247,251,0.92);
}

.tmv2-about-philosophy {
  margin: 28px 0 0;
  text-align: center;
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 500;
  color: rgba(245,248,252,0.96);
  line-height: 1.35;
}

.tmv2-about-philosophy span {
  background: linear-gradient(180deg, #d6e7ff 0%, #77adff 50%, #4b97ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.tmv2-about-bottom {
  text-align: center;
  margin-top: 36px;
}

.tmv2-about-bottom .tmv2-btn {
  margin-top: 18px;
}

.tmv2-about-bottom-logo {
  width: min(160px, 28vw);
  margin: 34px auto 0;
  opacity: 0.95;
}

@media (max-width: 1180px) {
  .tmv2-founder-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tmv2-founder-photo {
    min-height: 560px;
    max-width: 620px;
    margin: 0 auto;
  }
}

@media (max-width: 991px) {
  #chi-siamo.tmv2-section--about-v2 {
    padding-top: 24px;
    padding-bottom: 46px;
  }

  .tmv2-about-top h2,
  .tmv2-section-head--method-v2 h2,
  .tmv2-about-bottom h2 {
    font-size: clamp(28px, 6vw, 40px);
  }

  .tmv2-about-top-claim {
    font-size: clamp(22px, 5vw, 34px);
  }

  .tmv2-about-top-text,
  .tmv2-founder-copy p,
  .tmv2-checks--about li,
  .tmv2-section-head--method-v2 p,
  .tmv2-method-card p,
  .tmv2-about-philosophy {
    font-size: clamp(17px, 2.7vw, 22px);
  }

  .tmv2-method-grid--about {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tmv2-method-card {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

@media (max-width: 680px) {
  #chi-siamo.tmv2-section--about-v2 {
    padding-top: 18px;
    padding-bottom: 38px;
  }

  .tmv2-about-top-claim {
    margin-top: 10px;
    font-size: clamp(24px, 7vw, 30px);
    line-height: 1.2;
  }

  .tmv2-about-top-text {
    margin-top: 14px;
    font-size: 17px;
  }

  .tmv2-glow-line--about {
    margin: 24px auto;
  }

  .tmv2-founder-copy {
    padding-top: 0;
  }

  .tmv2-founder-copy h3 {
    font-size: clamp(34px, 9vw, 42px);
    margin-bottom: 16px;
  }

  .tmv2-founder-copy p {
    font-size: 18px;
    line-height: 1.55;
  }

  .tmv2-checks--about {
    margin-top: 18px;
    gap: 12px;
  }

  .tmv2-checks--about li {
    font-size: 18px;
  }

  .tmv2-founder-photo {
    min-height: 430px;
    background-position: center 16%;
  }

  .tmv2-method-card-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 14px;
  }

  .tmv2-method-card h3 {
    font-size: 24px;
  }

  .tmv2-method-card p {
    font-size: 17px;
  }

  .tmv2-about-philosophy {
    font-size: 21px;
    line-height: 1.42;
  }

  .tmv2-about-bottom .tmv2-btn {
    width: 100%;
    margin-top: 16px;
  }

  .tmv2-about-bottom-logo {
    width: 128px;
    margin-top: 26px;
  }
}


/* === HEADER PREMIUM + BUTTON BRIGHTER + LOCATION LOGO CARDS 2026-04-16 === */
.tmv2-site-header {
  backdrop-filter: blur(16px);
  background:
    linear-gradient(180deg, rgba(5, 8, 13, 0.92) 0%, rgba(5, 8, 13, 0.78) 100%),
    radial-gradient(circle at center top, rgba(63, 149, 255, 0.10), transparent 48%);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.24);
}

.tmv2-site-header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(87, 151, 255, 0.0) 12%, rgba(118, 183, 255, 0.75) 50%, rgba(87, 151, 255, 0.0) 88%, transparent 100%);
  opacity: 0.9;
}

.tmv2-nav {
  gap: 10px;
}

.tmv2-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 15px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.20);
  transition: color 0.25s ease, text-shadow 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  overflow: hidden;
}

.tmv2-nav a::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.02) 22%, rgba(255, 255, 255, 0.00) 100%),
    linear-gradient(90deg, rgba(55, 119, 214, 0.08), rgba(105, 167, 255, 0.14), rgba(55, 119, 214, 0.08));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.tmv2-nav a::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 8px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 196, 255, 0.95), transparent);
  opacity: 0;
  transform: scaleX(0.68);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.tmv2-nav a:hover {
  color: #ffffff;
  transform: translateY(-1px);
  text-shadow: 0 0 14px rgba(63, 149, 255, 0.58);
  box-shadow: inset 0 0 0 1px rgba(122, 183, 255, 0.16), 0 0 24px rgba(63, 149, 255, 0.12);
}

.tmv2-nav a:hover::before,
.tmv2-nav a:hover::after {
  opacity: 1;
}

.tmv2-nav a:hover::after {
  transform: scaleX(1);
}

.tmv2-btn,
.tmv2-btn--small,
.tmv2-btn--primary,
.tmv2-btn--hero {
  border-color: rgba(122, 182, 255, 0.46) !important;
  background:
    linear-gradient(180deg, rgba(26, 63, 132, 0.98) 0%, rgba(17, 48, 111, 0.99) 18%, rgba(12, 39, 97, 1) 48%, rgba(8, 28, 74, 1) 100%) !important;
  box-shadow:
    0 0 0 1px rgba(194, 226, 255, 0.15) inset,
    0 10px 24px rgba(0, 0, 0, 0.42),
    0 0 16px rgba(63, 149, 255, 0.16) !important;
}

.tmv2-btn::before,
.tmv2-btn--small::before,
.tmv2-btn--primary::before,
.tmv2-btn--hero::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.04) 18%, transparent 42%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.14) 50%, rgba(255, 255, 255, 0.02) 100%),
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.18) 16%, rgba(255, 255, 255, 0.05) 32%, transparent 58%) !important;
  opacity: 0.92 !important;
}

.tmv2-btn::after,
.tmv2-btn--small::after,
.tmv2-btn--primary::after,
.tmv2-btn--hero::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.11), transparent 12%, transparent 88%, rgba(255, 255, 255, 0.11)),
    linear-gradient(180deg, transparent 66%, rgba(104, 175, 255, 0.18) 100%) !important;
}

.tmv2-btn:hover,
.tmv2-btn--small:hover,
.tmv2-btn--primary:hover,
.tmv2-btn--hero:hover {
  box-shadow:
    0 0 0 1px rgba(210, 232, 255, 0.18) inset,
    0 14px 28px rgba(0, 0, 0, 0.48),
    0 0 22px rgba(77, 164, 255, 0.22) !important;
  filter: brightness(1.08);
}

#sedi .tmv2-cards--locations {
  gap: 18px;
  align-items: stretch;
}

.tmv2-location-link {
  display: block;
}

.tmv2-location-link .tmv2-card--location {
  height: 100%;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(12, 18, 28, 0.90) 0%, rgba(8, 13, 20, 0.94) 100%);
  border: 1px solid rgba(108, 165, 245, 0.14);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.tmv2-location-link:hover .tmv2-card--location {
  transform: translateY(-4px);
  border-color: rgba(128, 186, 255, 0.28);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.34), 0 0 28px rgba(63, 149, 255, 0.08);
}

.tmv2-card-media--location-logo {
  min-height: 146px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 26px 18px;
  background:
    radial-gradient(circle at 50% 14%, rgba(79, 149, 255, 0.12), transparent 46%),
    linear-gradient(180deg, rgba(16, 24, 38, 0.96) 0%, rgba(9, 14, 22, 0.98) 100%);
}

.tmv2-card-media--location-logo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 40%, rgba(91, 154, 255, 0.06) 100%);
  pointer-events: none;
}

.tmv2-card-media--location-logo img {
  width: min(100%, 240px);
  max-height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.05));
}

#sedi .tmv2-card--location .tmv2-card-body {
  text-align: center;
  padding: 16px 18px 18px;
}

#sedi .tmv2-card--location h3 {
  margin-bottom: 6px;
  font-size: clamp(24px, 2vw, 31px);
  letter-spacing: 0.03em;
}

#sedi .tmv2-card--location p {
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(238, 243, 251, 0.78);
}

@media (max-width: 991px) {
  .tmv2-card-media--location-logo {
    min-height: 132px !important;
    padding: 18px 22px 14px;
  }

  .tmv2-card-media--location-logo img {
    width: min(100%, 210px);
    max-height: 62px;
  }
}

@media (max-width: 680px) {
  #sedi .tmv2-cards--locations {
    gap: 14px;
  }

  .tmv2-card-media--location-logo {
    min-height: 116px !important;
    padding: 18px 18px 12px;
  }

  .tmv2-card-media--location-logo img {
    width: min(100%, 190px);
    max-height: 56px;
  }

  #sedi .tmv2-card--location .tmv2-card-body {
    padding: 14px 16px 16px;
  }

  #sedi .tmv2-card--location h3 {
    font-size: 24px;
  }

  #sedi .tmv2-card--location p {
    font-size: 12px;
  }
}


/* === MENU TRANSPARENT + SCROLL STATE + SEDI ADDRESS 2026-04-16 === */
.tmv2-site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background: transparent !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  transition: background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, backdrop-filter 0.28s ease;
}

.tmv2-site-header::after {
  opacity: 0;
  transition: opacity 0.28s ease;
}

.tmv2-site-header.is-scrolled {
  background:
    linear-gradient(180deg, rgba(5, 8, 13, 0.92) 0%, rgba(5, 8, 13, 0.78) 100%),
    radial-gradient(circle at center top, rgba(63, 149, 255, 0.10), transparent 48%) !important;
  border-bottom: 1px solid rgba(255,255,255,0.05) !important;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.24) !important;
  backdrop-filter: blur(16px) !important;
}

.tmv2-site-header.is-scrolled::after {
  opacity: 0.9;
}

.tmv2-main {
  padding-top: 0;
}

.tmv2-hero {
  padding-top: 0;
}

.tmv2-header-row {
  min-height: 88px;
}

.tmv2-brand {
  order: 2;
  margin-left: auto;
  width: min(210px, 26vw);
}

.tmv2-brand img {
  filter: drop-shadow(0 0 16px rgba(255,255,255,0.05));
}

.tmv2-nav {
  order: 1;
  gap: 12px;
}

.tmv2-menu-toggle {
  order: 3;
}

.tmv2-nav a {
  min-height: 44px;
  padding: 11px 16px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.035);
}

.tmv2-nav a:hover {
  color: #ffffff;
  background: rgba(66, 130, 232, 0.12);
  box-shadow: inset 0 0 0 1px rgba(122, 183, 255, 0.16), 0 0 24px rgba(63, 149, 255, 0.14);
}

.tmv2-btn,
.tmv2-btn--small,
.tmv2-btn--primary,
.tmv2-btn--hero {
  border-color: rgba(128, 191, 255, 0.54) !important;
  background:
    linear-gradient(180deg, rgba(39, 96, 196, 0.99) 0%, rgba(27, 78, 176, 0.99) 18%, rgba(20, 64, 154, 1) 48%, rgba(10, 36, 98, 1) 100%) !important;
  box-shadow:
    0 0 0 1px rgba(211, 234, 255, 0.16) inset,
    0 12px 28px rgba(0, 0, 0, 0.42),
    0 0 18px rgba(72, 165, 255, 0.18) !important;
}

.tmv2-btn::before,
.tmv2-btn--small::before,
.tmv2-btn--primary::before,
.tmv2-btn--hero::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.06) 20%, transparent 42%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.18) 50%, rgba(255, 255, 255, 0.03) 100%),
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.20) 16%, rgba(255, 255, 255, 0.06) 32%, transparent 60%) !important;
}

.tmv2-btn:hover,
.tmv2-btn--small:hover,
.tmv2-btn--primary:hover,
.tmv2-btn--hero:hover {
  box-shadow:
    0 0 0 1px rgba(215, 236, 255, 0.18) inset,
    0 16px 30px rgba(0, 0, 0, 0.46),
    0 0 24px rgba(76, 170, 255, 0.24) !important;
}

.tmv2-card-media--location-logo {
  min-height: 168px !important;
  padding: 18px 16px 14px;
}

.tmv2-card-media--location-logo img {
  width: min(100%, 290px);
  max-height: 98px;
  object-fit: contain;
}

#sedi .tmv2-card--location .tmv2-card-body {
  padding: 16px 18px 20px;
}

#sedi .tmv2-card--location h3 {
  margin-bottom: 8px;
}

#sedi .tmv2-card--location p {
  font-size: 14px;
  line-height: 1.52;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255, 255, 255, 0.88);
  max-width: 280px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .tmv2-site-header {
    background: rgba(5, 8, 13, 0.30) !important;
    backdrop-filter: blur(8px) !important;
  }

  .tmv2-site-header.is-scrolled {
    background:
      linear-gradient(180deg, rgba(5, 8, 13, 0.96) 0%, rgba(5, 8, 13, 0.86) 100%),
      radial-gradient(circle at center top, rgba(63, 149, 255, 0.10), transparent 48%) !important;
  }

  .tmv2-header-row {
    min-height: 78px;
  }

  .tmv2-brand {
    order: 1;
    margin-left: 0;
    width: min(176px, 52vw);
  }

  .tmv2-menu-toggle {
    order: 2;
    margin-left: auto;
  }

  .tmv2-nav {
    order: 3;
    gap: 0;
  }

  .tmv2-card-media--location-logo {
    min-height: 146px !important;
  }

  .tmv2-card-media--location-logo img {
    width: min(100%, 250px);
    max-height: 86px;
  }
}

@media (max-width: 680px) {
  .tmv2-brand {
    width: min(160px, 54vw);
  }

  .tmv2-card-media--location-logo {
    min-height: 132px !important;
    padding: 16px 14px 12px;
  }

  .tmv2-card-media--location-logo img {
    width: min(100%, 224px);
    max-height: 76px;
  }

  #sedi .tmv2-card--location h3 {
    font-size: 24px;
  }

  #sedi .tmv2-card--location p {
    font-size: 13px;
    max-width: 260px;
  }
}


/* === HEADER LEFT + WHITE LOGO + HERO FOCUS LOWER 2026-04-16 v3 === */
.tmv2-header-row {
  justify-content: flex-start !important;
}

.tmv2-site-header .tmv2-brand {
  order: 1 !important;
  margin-left: 0 !important;
  margin-right: 26px !important;
  width: min(188px, 22vw) !important;
  flex: 0 0 auto !important;
}

.tmv2-site-header .tmv2-brand img {
  filter: brightness(0) invert(1) saturate(0) contrast(260%) drop-shadow(0 0 10px rgba(255,255,255,0.08)) !important;
  opacity: 1 !important;
}

.tmv2-site-header .tmv2-nav {
  order: 2 !important;
  margin-left: auto !important;
  gap: 12px !important;
}

.tmv2-site-header .tmv2-menu-toggle {
  order: 3 !important;
  margin-left: 18px !important;
}

.tmv2-hero-banner {
  min-height: clamp(392px, 39vw, 560px) !important;
  background-position: center 24% !important;
}

.tmv2-hero-copy--center {
  min-height: clamp(392px, 39vw, 560px) !important;
  padding: clamp(30px, 4.2vw, 56px) 24px clamp(18px, 2.4vw, 34px) !important;
}

.tmv2-hero-actions--center {
  margin-top: 30px !important;
}

@media (max-width: 1180px) {
  .tmv2-hero-banner {
    background-position: center 22% !important;
  }
}

@media (max-width: 991px) {
  .tmv2-site-header .tmv2-brand {
    order: 1 !important;
    margin-right: 18px !important;
    margin-left: 0 !important;
    width: min(176px, 50vw) !important;
  }

  .tmv2-site-header .tmv2-menu-toggle {
    order: 2 !important;
    margin-left: auto !important;
  }

  .tmv2-site-header .tmv2-nav {
    order: 3 !important;
    margin-left: 0 !important;
  }
}

@media (max-width: 680px) {
  .tmv2-site-header .tmv2-brand {
    width: min(156px, 52vw) !important;
    margin-right: 14px !important;
  }

  .tmv2-hero-banner,
  .tmv2-hero-copy--center {
    min-height: clamp(396px, 106vw, 510px) !important;
  }

  .tmv2-hero-banner {
    background-position: center 30% !important;
  }

  .tmv2-hero-copy--center {
    padding: 18px 18px 24px !important;
  }

  .tmv2-hero-actions--center {
    margin-top: 24px !important;
  }
}
/* === CHI SIAMO + TRAINERS ABOVE SEDI 2026-04-16 === */
#chi-siamo.tmv2-section--about-v2 {
  padding-top: 34px;
  padding-bottom: 54px;
}

#chi-siamo .tmv2-about-top {
  max-width: 980px;
}

#chi-siamo .tmv2-about-top h2 {
  margin-bottom: 12px;
}

#chi-siamo .tmv2-about-top-claim {
  max-width: 1000px;
  margin: 0 auto;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.22;
  letter-spacing: 0;
}

#chi-siamo .tmv2-about-top-claim span,
#chi-siamo .tmv2-about-top-claim strong {
  font-weight: 700;
  letter-spacing: 0;
}

.tmv2-about-copy-rich {
  max-width: 920px;
  margin: 18px auto 0;
}

.tmv2-about-copy-rich p {
  margin: 0 0 16px;
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.62;
  color: rgba(244, 247, 251, 0.9);
}

.tmv2-about-copy-rich p:last-child {
  margin-bottom: 0;
}

.tmv2-trainers-carousel {
  position: relative;
  margin-top: 30px;
  padding: 0 58px;
}

.tmv2-trainers-viewport {
  overflow: hidden;
}

.tmv2-trainers-track {
  display: flex;
  gap: 22px;
  will-change: transform;
  transition: transform 0.45s ease;
}

.tmv2-trainer-link {
  display: block;
  flex: 0 0 calc((100% - 44px) / 3);
  min-width: 0;
}

.tmv2-trainer-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(8, 14, 24, 0.88), rgba(6, 10, 16, 0.96));
  border: 1px solid rgba(112, 170, 255, 0.16);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.tmv2-trainer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top center, rgba(80, 145, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 32%);
  pointer-events: none;
}

.tmv2-trainer-link .tmv2-trainer-card {
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.tmv2-trainer-link:hover .tmv2-trainer-card {
  transform: translateY(-4px);
  border-color: rgba(128, 186, 255, 0.28);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.34), 0 0 28px rgba(63, 149, 255, 0.08);
}

.tmv2-trainer-photo {
  min-height: 320px;
  background-size: cover;
  background-position: center 18%;
  background-repeat: no-repeat;
}

.tmv2-trainer-body {
  padding: 16px 18px 18px;
  text-align: center;
}

.tmv2-trainer-body h3 {
  margin: 0 0 6px;
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.tmv2-trainer-body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(239, 244, 251, 0.76);
}

.tmv2-carousel-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(128, 191, 255, 0.34);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(19, 38, 71, 0.92), rgba(9, 18, 34, 0.92));
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28), 0 0 18px rgba(63, 149, 255, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease, opacity 0.25s ease;
  z-index: 3;
}

.tmv2-carousel-arrow span {
  font-size: 28px;
  line-height: 1;
  margin-top: -2px;
}

.tmv2-carousel-arrow:hover {
  filter: brightness(1.08);
  box-shadow: 0 16px 26px rgba(0, 0, 0, 0.34), 0 0 22px rgba(72, 165, 255, 0.18);
}

.tmv2-carousel-arrow:disabled {
  opacity: 0.35;
  cursor: default;
  filter: grayscale(0.15);
}

.tmv2-carousel-arrow--prev {
  left: 0;
}

.tmv2-carousel-arrow--next {
  right: 0;
}

#chi-siamo .tmv2-glow-line--about {
  margin: 32px auto 28px;
}

#chi-siamo .tmv2-section-head--method-v2 {
  margin-bottom: 22px;
}

#chi-siamo .tmv2-about-bottom {
  margin-top: 34px;
}

#sedi.tmv2-section--locations-v2 {
  padding-top: 20px;
}

@media (max-width: 991px) {
  .tmv2-trainers-carousel {
    padding: 0 50px;
  }

  .tmv2-trainers-track {
    gap: 18px;
  }

  .tmv2-trainer-link {
    flex: 0 0 calc((100% - 18px) / 2);
  }

  .tmv2-trainer-photo {
    min-height: 280px;
  }
}

@media (max-width: 680px) {
  #chi-siamo.tmv2-section--about-v2 {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  #chi-siamo .tmv2-about-top-claim {
    font-size: clamp(24px, 6.6vw, 30px);
    line-height: 1.28;
  }

  .tmv2-about-copy-rich {
    margin-top: 16px;
  }

  .tmv2-about-copy-rich p {
    font-size: 16px;
    line-height: 1.58;
  }

  .tmv2-trainers-carousel {
    margin-top: 24px;
    padding: 0 40px;
  }

  .tmv2-trainers-track {
    gap: 16px;
  }

  .tmv2-trainer-link {
    flex: 0 0 100%;
  }

  .tmv2-trainer-photo {
    min-height: 260px;
    background-position: center 14%;
  }

  .tmv2-trainer-body {
    padding: 14px 16px 16px;
  }

  .tmv2-trainer-body h3 {
    font-size: 22px;
  }

  .tmv2-trainer-body p {
    font-size: 12px;
  }

  #chi-siamo .tmv2-glow-line--about {
    margin: 24px auto 22px;
  }

  #chi-siamo .tmv2-about-bottom {
    margin-top: 28px;
  }

  #sedi.tmv2-section--locations-v2 {
    padding-top: 30px;
  }
}


/* === SHOP CAROUSEL V2 2026-04-16 === */
#shop.tmv2-section--shop-v2 {
  padding-top: 20px;
  padding-bottom: 42px;
}

.tmv2-section-head--shop {
  max-width: 960px;
  margin-bottom: 24px;
}

.tmv2-section-head--shop h2 {
  font-size: clamp(30px, 3.3vw, 46px);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.01em;
  line-height: 1.06;
}

.tmv2-shop-subtitle {
  margin-top: 12px;
  font-size: clamp(17px, 1.7vw, 24px);
  line-height: 1.35;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.tmv2-shop-subtitle span {
  background: linear-gradient(180deg, #d6e7ff 0%, #77adff 50%, #4b97ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.tmv2-shop-marquee {
  position: relative;
  overflow: hidden;
  padding: 8px 0 6px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}

.tmv2-shop-track {
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: max-content;
  animation: tmv2-shop-scroll 42s linear infinite;
  will-change: transform;
}

.tmv2-shop-marquee:hover .tmv2-shop-track {
  animation-play-state: paused;
}

.tmv2-shop-card {
  width: clamp(188px, 18vw, 246px);
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.022) 0%, rgba(255,255,255,0.006) 14%, rgba(255,255,255,0) 100%),
    linear-gradient(180deg, rgba(8,14,24,0.88) 0%, rgba(5,10,18,0.96) 100%);
  border: 1px solid rgba(104, 168, 255, 0.16);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.tmv2-shop-card:hover {
  transform: translateY(-4px);
  border-color: rgba(128, 190, 255, 0.28);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.34), 0 0 24px rgba(63, 149, 255, 0.08);
}

.tmv2-shop-card-media {
  min-height: 214px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.tmv2-shop-card-body {
  padding: 16px 16px 18px;
  text-align: center;
}

.tmv2-shop-card h3 {
  margin: 0;
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #f5f8fc;
}

.tmv2-shop-card-price,
.tmv2-shop-card-price .amount,
.tmv2-shop-card-price bdi {
  color: #ffffff;
}

.tmv2-shop-card-price {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(255,255,255,0.9);
}

.tmv2-shop-card-price del,
.tmv2-shop-card-price del .amount,
.tmv2-shop-card-price del bdi {
  opacity: 0.55;
  color: rgba(255,255,255,0.62);
}

#shop .tmv2-center {
  margin-top: 28px;
}

@keyframes tmv2-shop-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}

@media (max-width: 991px) {
  #shop.tmv2-section--shop-v2 {
    padding-top: 14px;
    padding-bottom: 34px;
  }

  .tmv2-section-head--shop {
    margin-bottom: 20px;
  }

  .tmv2-shop-track {
    gap: 14px;
    animation-duration: 34s;
  }

  .tmv2-shop-card {
    width: 204px;
  }

  .tmv2-shop-card-media {
    min-height: 196px;
  }
}

@media (max-width: 680px) {
  #shop.tmv2-section--shop-v2 {
    padding-top: 10px;
    padding-bottom: 28px;
  }

  .tmv2-section-head--shop h2 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .tmv2-shop-subtitle {
    font-size: 17px;
    line-height: 1.4;
  }

  .tmv2-shop-marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 2%, #000 98%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 2%, #000 98%, transparent 100%);
  }

  .tmv2-shop-track {
    gap: 12px;
    animation-duration: 30s;
  }

  .tmv2-shop-card {
    width: 176px;
    border-radius: 18px;
  }

  .tmv2-shop-card-media {
    min-height: 164px;
  }

  .tmv2-shop-card-body {
    padding: 14px 12px 16px;
  }

  .tmv2-shop-card h3 {
    font-size: 13px;
  }

  .tmv2-shop-card-price {
    font-size: 13px;
  }

  #shop .tmv2-center {
    margin-top: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tmv2-shop-track {
    animation: none;
  }
}


/* === TRAINERS CAROUSEL CONTROLS 2026-04-16 === */
.tmv2-trainers-carousel.is-paused .tmv2-carousel-arrow {
  opacity: 1;
}

@media (max-width: 680px) {
  .tmv2-carousel-arrow {
    top: auto;
    bottom: -46px;
    transform: none;
    width: 40px;
    height: 40px;
  }

  .tmv2-carousel-arrow span {
    font-size: 24px;
  }

  .tmv2-carousel-arrow--prev {
    left: calc(50% - 48px);
  }

  .tmv2-carousel-arrow--next {
    right: calc(50% - 48px);
  }

  .tmv2-trainers-carousel {
    padding-bottom: 86px;
  }

  #chi-siamo .tmv2-section-head--method-v2 {
    margin-top: 24px;
  }
}


/* === CONTACTS SECTION + SOCIAL NAV 2026-04-21 === */
.tmv2-nav-social-link {
  font-size: 11px !important;
  letter-spacing: 0.14em !important;
}

.tmv2-section--contact-v2 {
  padding-top: 18px;
  padding-bottom: 60px;
}

.tmv2-section-head--contact {
  max-width: 940px;
  margin-bottom: 26px;
}

.tmv2-section-head--contact h2 {
  font-size: clamp(30px, 3.3vw, 46px);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.01em;
  line-height: 1.06;
}

.tmv2-contact-subtitle {
  margin-top: 12px;
  font-size: clamp(17px, 1.7vw, 24px);
  line-height: 1.35;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.tmv2-contact-subtitle span {
  background: linear-gradient(180deg, #d6e7ff 0%, #77adff 50%, #4b97ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.tmv2-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.tmv2-contact-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 28px 24px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.022) 0%, rgba(255,255,255,0.006) 16%, rgba(255,255,255,0) 100%),
    linear-gradient(180deg, rgba(8,14,24,0.88) 0%, rgba(5,10,18,0.96) 100%);
  border: 1px solid rgba(104, 168, 255, 0.16);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.tmv2-contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top center, rgba(80,145,255,0.12), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 32%);
  pointer-events: none;
}

.tmv2-contact-card > * { position: relative; z-index: 1; }

.tmv2-contact-card h3 {
  margin: 0 0 10px;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tmv2-contact-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.62;
  color: rgba(244,247,251,0.84);
}

.tmv2-contact-links {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.tmv2-contact-line {
  display: block;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(122, 183, 255, 0.12);
}

.tmv2-contact-line strong {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
}

.tmv2-contact-line span {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.tmv2-contact-wa {
  width: 100%;
}

.tmv2-contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tmv2-contact-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(122, 183, 255, 0.18);
  background: rgba(255,255,255,0.035);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tmv2-contact-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.tmv2-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tmv2-form-field {
  display: grid;
  gap: 8px;
}

.tmv2-form-field span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
}

.tmv2-form-field input,
.tmv2-form-field textarea {
  width: 100%;
  border: 1px solid rgba(122, 183, 255, 0.14);
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  color: #fff;
  padding: 14px 16px;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.tmv2-form-field input:focus,
.tmv2-form-field textarea:focus {
  border-color: rgba(122, 183, 255, 0.36);
  box-shadow: 0 0 0 3px rgba(63, 149, 255, 0.10);
  background: rgba(255,255,255,0.05);
}

.tmv2-form-field textarea {
  resize: vertical;
  min-height: 148px;
}

.tmv2-form-alert {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.45;
}

.tmv2-form-alert--success {
  background: rgba(49, 171, 102, 0.12);
  border: 1px solid rgba(49, 171, 102, 0.22);
  color: #dcffeb;
}

.tmv2-form-alert--error {
  background: rgba(204, 76, 76, 0.12);
  border: 1px solid rgba(204, 76, 76, 0.22);
  color: #ffe5e5;
}

@media (max-width: 991px) {
  .tmv2-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .tmv2-section--contact-v2 {
    padding-top: 12px;
    padding-bottom: 36px;
  }

  .tmv2-section-head--contact h2 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .tmv2-contact-subtitle {
    font-size: 17px;
    line-height: 1.4;
  }

  .tmv2-contact-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .tmv2-contact-card h3 {
    font-size: 24px;
  }

  .tmv2-form-grid {
    grid-template-columns: 1fr;
  }

  .tmv2-contact-socials {
    gap: 8px;
  }

  .tmv2-contact-socials a {
    width: 100%;
  }
}


/* === MENU SOCIAL ICONS ONLY 2026-04-21 === */
.tmv2-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.tmv2-nav-social-link {
  width: 42px;
  min-width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0 !important;
  border-radius: 999px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-size: 0 !important;
  line-height: 0 !important;
}

.tmv2-nav-social-link svg {
  width: 18px;
  height: 18px;
  display: block;
}

.tmv2-nav-social-link--instagram svg rect,
.tmv2-nav-social-link--instagram svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.tmv2-nav-social-link--instagram svg .tmv2-nav-social-dot {
  fill: currentColor;
  stroke: none;
}

.tmv2-nav-social-link--facebook svg path,
.tmv2-nav-social-link--youtube svg path,
.tmv2-nav-social-link--tiktok svg path {
  fill: currentColor;
}

.tmv2-nav-social-link {
  color: #ffffff !important;
}

@media (max-width: 900px) {
  .tmv2-nav-social-link {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    margin-top: 6px;
  }
}


/* === HOME BATCH UPDATE 2026-05-04 === */
.tmv2-method-card p {
  max-width: 360px;
  font-size: clamp(15px, 1.08vw, 18px);
}

.tmv2-card-media--location-logo img {
  mix-blend-mode: screen;
}

@media (max-width: 680px) {
  .tmv2-method-card p {
    max-width: 100%;
    font-size: 16px;
  }
}


/* === TRANSFORMATIONS SECTION 2026-05-04 === */
#trasformazioni.tmv2-section--transformations-v2 {
  padding-top: 14px;
  padding-bottom: 44px;
}

.tmv2-section-head--transformations {
  max-width: 960px;
  margin-bottom: 24px;
}

.tmv2-section-head--transformations h2 {
  font-size: clamp(30px, 3.3vw, 46px);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.01em;
  line-height: 1.06;
}

.tmv2-transformations-subtitle {
  margin-top: 12px;
  font-size: clamp(17px, 1.7vw, 24px);
  line-height: 1.35;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.tmv2-transformations-subtitle span {
  background: linear-gradient(180deg, #d6e7ff 0%, #77adff 50%, #4b97ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.tmv2-transformations-carousel {
  position: relative;
  padding: 0 58px;
}

.tmv2-transformations-viewport {
  overflow: hidden;
}

.tmv2-transformations-track {
  display: flex;
  gap: 22px;
  will-change: transform;
  transition: transform 0.45s ease;
}

.tmv2-transformation-card {
  flex: 0 0 calc((100% - 44px) / 3);
  border-radius: 26px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.022) 0%, rgba(255,255,255,0.006) 16%, rgba(255,255,255,0) 100%),
    linear-gradient(180deg, rgba(8,14,24,0.88) 0%, rgba(5,10,18,0.96) 100%);
  border: 1px solid rgba(104, 168, 255, 0.16);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.tmv2-transformation-media {
  position: relative;
}

.tmv2-transformation-media img {
  width: 100%;
  aspect-ratio: 4 / 5.2;
  object-fit: cover;
  display: block;
}

.tmv2-transformation-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.52), rgba(255,255,255,0.08));
  box-shadow: 0 0 14px rgba(255,255,255,0.12);
  transform: translateX(-0.5px);
}

.tmv2-transformation-badge {
  position: absolute;
  top: 14px;
  z-index: 2;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(6, 13, 22, 0.62);
  border: 1px solid rgba(124, 182, 255, 0.22);
  box-shadow: 0 10px 20px rgba(0,0,0,0.18);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.tmv2-transformation-badge--before { left: 14px; }
.tmv2-transformation-badge--after { right: 14px; }

.tmv2-transformation-body {
  padding: 16px 18px 18px;
  text-align: center;
}

.tmv2-transformation-body h3 {
  margin: 0 0 8px;
  font-size: clamp(18px, 1.4vw, 24px);
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.tmv2-transformation-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(244,247,251,0.8);
}

@media (max-width: 991px) {
  #trasformazioni.tmv2-section--transformations-v2 {
    padding-top: 10px;
    padding-bottom: 36px;
  }

  .tmv2-transformations-carousel {
    padding: 0 50px;
  }

  .tmv2-transformations-track {
    gap: 18px;
  }

  .tmv2-transformation-card {
    flex-basis: 100%;
  }
}

@media (max-width: 680px) {
  #trasformazioni.tmv2-section--transformations-v2 {
    padding-top: 6px;
    padding-bottom: 28px;
  }

  .tmv2-section-head--transformations h2 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .tmv2-transformations-subtitle {
    font-size: 17px;
    line-height: 1.4;
  }

  .tmv2-transformations-carousel {
    padding: 0 40px 86px;
  }

  .tmv2-transformation-badge {
    top: 12px;
    min-height: 30px;
    padding: 7px 10px;
    font-size: 10px;
  }

  .tmv2-transformation-badge--before { left: 12px; }
  .tmv2-transformation-badge--after { right: 12px; }

  .tmv2-transformation-body {
    padding: 14px 16px 16px;
  }

  .tmv2-transformation-body h3 {
    font-size: 19px;
  }

  .tmv2-transformation-body p {
    font-size: 13px;
  }
}


/* === GLOBAL FOOTER 2026-07 === */
.tmv2-site-footer {
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(6,10,16,0.84) 0%, rgba(4,8,13,0.96) 100%),
    radial-gradient(circle at center top, rgba(63,149,255,0.10), transparent 46%);
}

.tmv2-site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.tmv2-site-footer p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(244,247,251,0.74);
}

.tmv2-site-footer__nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tmv2-site-footer__nav a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.tmv2-site-footer__nav a:hover {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(63,149,255,0.42);
}

@media (max-width: 680px) {
  .tmv2-site-footer {
    padding: 18px 0 24px;
  }

  .tmv2-site-footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .tmv2-site-footer p {
    font-size: 12px;
  }

  .tmv2-site-footer__nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .tmv2-site-footer__nav a {
    font-size: 11px;
  }
}


/* === CONTACT FORM REASON + TRIAL BOOKING === */
.tmv2-form-field select {
  width: 100%;
  border: 1px solid rgba(122, 183, 255, 0.14);
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  color: #fff;
  padding: 14px 44px 14px 16px;
  font: inherit;
  outline: none;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.78) 50%),
    linear-gradient(135deg, rgba(255,255,255,0.78) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.tmv2-form-field select:focus {
  border-color: rgba(122, 183, 255, 0.36);
  box-shadow: 0 0 0 3px rgba(63, 149, 255, 0.10);
  background-color: rgba(255,255,255,0.05);
}

.tmv2-form-field select option {
  background: #080e18;
  color: #fff;
}

.tmv2-trial-fields {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(122, 183, 255, 0.16);
  border-radius: 20px;
  background:
    radial-gradient(circle at top center, rgba(63,149,255,0.10), transparent 48%),
    rgba(255,255,255,0.025);
}

.tmv2-trial-fields[hidden] {
  display: none !important;
}

.tmv2-trial-note {
  margin: 0 !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
  color: rgba(244,247,251,0.68) !important;
}

@media (max-width: 680px) {
  .tmv2-trial-fields {
    padding: 16px 14px;
    border-radius: 18px;
  }
}


/* =========================================================
   TITAN HOME - HERO DESKTOP/MOBILE SEPARATE + COURSE COVERS
   + SPONSORS
   ========================================================= */

/* HERO: due immagini distinte.
   Desktop legge tmv2_hero_image, mobile tmv2_hero_image_mobile. */
.tmv2-hero-banner {
  background-image:
    linear-gradient(180deg,
      rgba(2, 6, 11, 0.14) 0%,
      rgba(3, 7, 12, 0.34) 36%,
      rgba(3, 7, 12, 0.62) 72%,
      rgba(3, 7, 12, 0.84) 100%),
    var(--tmv2-hero-desktop) !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

@media (max-width: 680px) {
  .tmv2-hero-banner {
    background-image:
      linear-gradient(180deg,
        rgba(2, 6, 11, 0.10) 0%,
        rgba(3, 7, 12, 0.28) 38%,
        rgba(3, 7, 12, 0.58) 74%,
        rgba(3, 7, 12, 0.82) 100%),
      var(--tmv2-hero-mobile) !important;
    background-position: center center !important;
  }
}

/* COPERTINE CORSI DEFINITIVE:
   visualizzazione completa, senza crop, sia desktop che mobile. */
#corsi .tmv2-card--course .tmv2-card-media {
  background-size: contain !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-color: #03070c !important;
}

@media (max-width: 680px) {
  #corsi .tmv2-card--course .tmv2-card-media {
    min-height: 0 !important;
    aspect-ratio: 4 / 5;
    background-size: contain !important;
    background-position: center center !important;
  }
}

/* SPONSOR */
.tmv2-section--sponsors {
  position: relative;
  overflow: hidden;
  padding-top: clamp(52px, 6vw, 82px);
  padding-bottom: clamp(52px, 6vw, 82px);
  background:
    radial-gradient(circle at 50% 0%, rgba(15,111,171,0.10), transparent 42%),
    linear-gradient(180deg, rgba(5,9,15,0.92), rgba(3,7,12,0.98));
  border-top: 1px solid rgba(110,177,255,0.08);
  border-bottom: 1px solid rgba(110,177,255,0.08);
}

.tmv2-section-head--sponsors {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.tmv2-section-head--sponsors h2 {
  margin-bottom: 12px;
}

.tmv2-section-head--sponsors > p {
  margin: 0 auto;
  max-width: 720px;
  color: rgba(244,247,251,0.72);
}

.tmv2-section-head--sponsors > p span {
  color: #8ec7ff;
}

.tmv2-sponsors-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.tmv2-sponsor-card {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 30px 24px 26px;
  border: 1px solid rgba(124,185,255,0.14);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018)),
    rgba(6,11,18,0.78);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.035),
    0 18px 48px rgba(0,0,0,0.24);
  color: #f8fbff;
  text-decoration: none !important;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.tmv2-sponsor-card:hover {
  transform: translateY(-5px);
  border-color: rgba(124,185,255,0.32);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 22px 54px rgba(0,0,0,0.34),
    0 0 28px rgba(15,111,171,0.13);
}

.tmv2-sponsor-logo {
  min-height: 92px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(72,166,255,0.14);
}

.tmv2-sponsor-logo--prozis {
  font-size: clamp(37px, 3vw, 50px);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -3px;
}

.tmv2-sponsor-logo--blor {
  font-size: clamp(42px, 3.3vw, 56px);
  font-weight: 900;
  letter-spacing: 7px;
}

.tmv2-sponsor-logo--spartaco {
  font-size: clamp(30px, 2.6vw, 43px);
  font-weight: 800;
  letter-spacing: 4px;
}

.tmv2-sponsor-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
  color: #fff;
}

.tmv2-sponsor-card p {
  margin: 0;
  color: rgba(244,247,251,0.68);
  font-size: 14px;
  line-height: 1.65;
}

.tmv2-sponsor-link {
  margin-top: auto;
  padding-top: 20px;
  color: #8ec7ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .tmv2-sponsors-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  .tmv2-sponsor-card {
    min-height: 260px;
  }
}

@media (max-width: 680px) {
  .tmv2-section--sponsors {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .tmv2-sponsors-grid {
    gap: 16px;
    margin-top: 26px;
  }

  .tmv2-sponsor-card {
    min-height: 238px;
    padding: 24px 18px 22px;
    border-radius: 20px;
  }

  .tmv2-sponsor-logo {
    min-height: 70px;
    margin-bottom: 10px;
  }
}


/* SPONSOR - LOGHI UFFICIALI / BRAND ASSETS */
.tmv2-sponsor-logo img {
  display: block;
  width: auto;
  max-width: min(230px, 82%);
  max-height: 82px;
  object-fit: contain;
}

.tmv2-sponsor-logo--prozis img {
  max-width: 220px;
  filter: brightness(0) invert(1);
}

.tmv2-sponsor-logo--blor img {
  width: 112px;
  height: 112px;
  max-height: 112px;
  filter: invert(1);
}

.tmv2-sponsor-logo--spartaco {
  gap: 12px;
}

.tmv2-sponsor-logo--spartaco img {
  width: 64px;
  height: 64px;
  max-width: 64px;
  max-height: 64px;
  border-radius: 14px;
}

.tmv2-sponsor-logo--spartaco strong {
  font-size: clamp(25px, 2.2vw, 36px);
  letter-spacing: 4px;
  font-weight: 800;
  color: #fff;
}

@media (max-width: 680px) {
  .tmv2-sponsor-logo--blor img {
    width: 92px;
    height: 92px;
  }

  .tmv2-sponsor-logo--spartaco img {
    width: 54px;
    height: 54px;
  }
}


/* =========================================================
   SPONSOR FIX DEFINITIVO 2026-08-23
   ========================================================= */
#sponsor.tmv2-section--sponsors {
  padding: 58px 0 66px !important;
}

#sponsor .tmv2-section-head--sponsors {
  max-width: 940px !important;
  margin: 0 auto 30px !important;
  text-align: center !important;
}

#sponsor .tmv2-section-head--sponsors .tmv2-badge {
  margin-bottom: 14px !important;
}

#sponsor .tmv2-section-head--sponsors h2 {
  margin: 0 !important;
  font-size: clamp(30px, 3.3vw, 46px) !important;
  font-weight: 700 !important;
  text-transform: none !important;
  letter-spacing: 0.01em !important;
  line-height: 1.06 !important;
}

#sponsor .tmv2-section-head--sponsors > p {
  max-width: 760px !important;
  margin: 12px auto 0 !important;
  padding: 0 !important;
  font-size: clamp(17px, 1.7vw, 24px) !important;
  line-height: 1.4 !important;
  color: rgba(255,255,255,.82) !important;
}

#sponsor .tmv2-sponsors-grid {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
  margin: 34px 0 0 !important;
  align-items: stretch !important;
}

#sponsor .tmv2-sponsor-card {
  box-sizing: border-box !important;
  width: auto !important;
  min-width: 0 !important;
  min-height: 330px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: center !important;
  padding: 28px 24px 24px !important;
  border: 1px solid rgba(117,180,255,.20) !important;
  border-radius: 24px !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(22,120,190,.12), transparent 38%),
    linear-gradient(180deg, rgba(13,22,35,.94), rgba(5,10,17,.97)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.035),
    0 18px 45px rgba(0,0,0,.28) !important;
  color: #fff !important;
  text-decoration: none !important;
  overflow: hidden !important;
}

#sponsor .tmv2-sponsor-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(117,180,255,.38) !important;
  box-shadow:
    0 22px 50px rgba(0,0,0,.34),
    0 0 26px rgba(15,111,171,.12) !important;
}

#sponsor .tmv2-sponsor-logo {
  width: 100% !important;
  height: 105px !important;
  min-height: 105px !important;
  margin: 0 0 15px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fff !important;
}

#sponsor .tmv2-brand-prozis {
  display: inline-block;
  font-size: clamp(38px, 3vw, 52px);
  line-height: 1;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -3px;
  transform: skewX(-8deg);
}

#sponsor .tmv2-brand-blor {
  display: inline-block;
  font-size: clamp(40px, 3.2vw, 56px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: .13em;
}

#sponsor .tmv2-brand-spartaco {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: clamp(28px, 2.4vw, 40px);
  line-height: .95;
  font-weight: 900;
  letter-spacing: .08em;
}

#sponsor .tmv2-brand-spartaco span {
  margin-top: 7px;
  font-size: .42em;
  letter-spacing: .35em;
  color: #8ec7ff;
}

#sponsor .tmv2-sponsor-card h3 {
  margin: 0 0 10px !important;
  font-size: 21px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
  color: #fff !important;
}

#sponsor .tmv2-sponsor-card p {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
  color: rgba(244,247,251,.70) !important;
}

#sponsor .tmv2-sponsor-link {
  display: block !important;
  margin-top: auto !important;
  padding-top: 22px !important;
  color: #8ec7ff !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: .10em !important;
  text-transform: uppercase !important;
}

@media (max-width: 900px) {
  #sponsor .tmv2-sponsors-grid {
    grid-template-columns: 1fr !important;
    max-width: 620px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  #sponsor .tmv2-sponsor-card {
    min-height: 270px !important;
  }
}

@media (max-width: 680px) {
  #sponsor.tmv2-section--sponsors {
    padding: 46px 0 52px !important;
  }

  #sponsor .tmv2-section-head--sponsors {
    margin-bottom: 24px !important;
  }

  #sponsor .tmv2-section-head--sponsors h2 {
    font-size: clamp(30px, 9vw, 40px) !important;
  }

  #sponsor .tmv2-section-head--sponsors > p {
    font-size: 17px !important;
  }

  #sponsor .tmv2-sponsors-grid {
    gap: 16px !important;
    margin-top: 24px !important;
  }

  #sponsor .tmv2-sponsor-card {
    min-height: 250px !important;
    padding: 24px 18px 22px !important;
    border-radius: 20px !important;
  }

  #sponsor .tmv2-sponsor-logo {
    height: 82px !important;
    min-height: 82px !important;
  }
}
\n/* FINAL CLIENT BATCH */\n\n.tmv2-location-logo-fallback{display:inline-flex;align-items:center;justify-content:center;min-height:90px;padding:12px 18px;color:#fff;font-size:clamp(24px,2.6vw,38px);font-weight:800;letter-spacing:.08em;text-align:center;}\n#sponsor .tmv2-sponsor-logo img{display:block!important;width:auto!important;max-width:78%!important;max-height:82px!important;object-fit:contain!important;}\n@media(max-width:680px){\n#chi-siamo .tmv2-trainers-carousel,#trasformazioni .tmv2-transformations-carousel{position:relative!important;padding-left:40px!important;padding-right:40px!important;padding-bottom:82px!important;}\n#chi-siamo .tmv2-trainers-carousel .tmv2-carousel-arrow,#trasformazioni .tmv2-transformations-carousel .tmv2-carousel-arrow{top:auto!important;bottom:18px!important;transform:none!important;width:40px!important;height:40px!important;margin:0!important;}\n#chi-siamo .tmv2-trainers-carousel .tmv2-carousel-arrow--prev,#trasformazioni .tmv2-transformations-carousel .tmv2-carousel-arrow--prev{left:calc(50% - 48px)!important;right:auto!important;}\n#chi-siamo .tmv2-trainers-carousel .tmv2-carousel-arrow--next,#trasformazioni .tmv2-transformations-carousel .tmv2-carousel-arrow--next{right:calc(50% - 48px)!important;left:auto!important;}\n#chi-siamo .tmv2-section-head--method-v2{margin-top:14px!important;}\n#trasformazioni.tmv2-section--transformations-v2{padding-bottom:34px!important;}\n}\n

/* ==========================================================
   SPONSOR LOGOS - FIX UNIFORME 2026-08-26
   Rimuove filtri/dimensioni legacy che alteravano i PNG.
   ========================================================== */
#sponsor .tmv2-sponsor-logo {
  height: 150px !important;
  min-height: 150px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
}

#sponsor .tmv2-sponsor-logo img,
#sponsor .tmv2-sponsor-logo--prozis img,
#sponsor .tmv2-sponsor-logo--blor img,
#sponsor .tmv2-sponsor-logo--spartaco img {
  display: block !important;
  width: min(320px, 86%) !important;
  height: auto !important;
  max-width: 320px !important;
  max-height: 135px !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 0 !important;
  filter: none !important;
  transform: none !important;
}

@media (max-width: 680px) {
  #sponsor .tmv2-sponsor-logo {
    height: 125px !important;
    min-height: 125px !important;
  }

  #sponsor .tmv2-sponsor-logo img,
  #sponsor .tmv2-sponsor-logo--prozis img,
  #sponsor .tmv2-sponsor-logo--blor img,
  #sponsor .tmv2-sponsor-logo--spartaco img {
    width: min(290px, 88%) !important;
    max-width: 290px !important;
    max-height: 110px !important;
  }
}


/* === YOUTUBE ICON FIX 2026-08-26 v2 === */
.tmv2-nav-social-link--youtube svg {
  width: 22px !important;
  height: 22px !important;
  overflow: visible;
}

.tmv2-nav-social-link--youtube .tmv2-youtube-frame {
  fill: transparent !important;
  stroke: #ffffff !important;
  stroke-width: 2.6 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 1px rgba(255,255,255,.55));
}

.tmv2-nav-social-link--youtube .tmv2-youtube-play {
  fill: #ffffff !important;
  stroke: none !important;
}

/* === LOCATION LOGOS SIZE FIX 2026-08-26 === */
#sedi .tmv2-card-media--location-logo {
  padding: 10px 14px !important;
}

#sedi .tmv2-card-media--location-logo img {
  width: min(92%, 390px) !important;
  max-width: 390px !important;
  max-height: 128px !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center !important;
}

@media (max-width: 991px) {
  #sedi .tmv2-card-media--location-logo img {
    width: min(90%, 340px) !important;
    max-width: 340px !important;
    max-height: 118px !important;
  }
}

@media (max-width: 680px) {
  #sedi .tmv2-card-media--location-logo {
    padding: 8px 12px !important;
  }

  #sedi .tmv2-card-media--location-logo img {
    width: min(92%, 300px) !important;
    max-width: 300px !important;
    max-height: 104px !important;
  }
}
