/* THE CAGE — HOME V2 CINEMATIC HERO
   Cleaned version: duplicate rules merged, responsive behavior preserved.
*/

/* ==================================================
   1. VARIABLES & GLOBAL
   ================================================== */

:root {
  --tc-black: #020304;
  --tc-red: #e10d18;
  --tc-blue: #00a8ff;
  --tc-white: #f2f2f0;
  --tc-muted: #b7b7b7;
}

html {
  scroll-behavior: smooth;
}

body.tc-home-v2 {
  margin: 0;
  overflow-x: hidden;
  background: var(--tc-black);
  color: var(--tc-white);
  font-family: Arial, Helvetica, sans-serif;
}

body.tc-home-v2.admin-bar .tc-header {
  top: 32px;
}

.tc-skip-link {
  position: fixed;
  z-index: 99999;
  top: -100px;
  left: 16px;
  padding: 12px 16px;
  background: #fff;
  color: #000;
}

.tc-skip-link:focus {
  top: 16px;
}


/* ==================================================
   2. HEADER
   ================================================== */

.tc-header {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  height: 118px;
  padding: 0 42px;
  box-sizing: border-box;
}

.tc-menu-toggle {
  position: absolute;
  top: 30px;
  left: 42px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.tc-menu-toggle span {
  position: absolute;
  left: 0;
  width: 27px;
  height: 1px;
  background: #fff;
}

.tc-menu-toggle span:nth-child(1) {
  transform: translateY(-8px);
}

.tc-menu-toggle span:nth-child(2) {
  transform: translateY(0);
}

.tc-menu-toggle span:nth-child(3) {
  transform: translateY(8px);
}

.tc-menu-toggle b {
  margin-left: 43px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .24em;
}

.tc-top-logo {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: #f4f4f4;
  text-decoration: none;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1;
}

.tc-top-logo span {
  color: var(--tc-red);
}

.tc-main-nav {
  position: absolute;
  top: 92px;
  left: 50%;
  display: flex;
  gap: 48px;
  transform: translateX(-50%);
  white-space: nowrap;
}

.tc-main-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .08em;
}

.tc-header-right {
  position: absolute;
  top: 22px;
  right: 42px;
  display: flex;
  align-items: center;
  gap: 27px;
}

.tc-language {
  font-size: 12px;
  letter-spacing: .16em;
}

.tc-book-now {
  padding: 15px 22px;
  border: 1px solid var(--tc-red);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .18em;
  transition: .25s ease;
}

.tc-book-now:hover,
.tc-book-now:focus-visible {
  background: var(--tc-red);
}


/* ==================================================
   3. HERO BACKGROUND
   ================================================== */

.tc-hero {
  position: relative;
  min-height: 1024px;
  height: 100vh;
  max-height: 1120px;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--tc-black);
  background-image: url("../images/hero-bg.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.tc-hero-world {
  position: absolute;
  z-index: -4;
  top: 0;
  bottom: 0;
  display: none;
  width: 58%;
  background-repeat: no-repeat;
  background-size: cover;
}

.tc-hero-world--escape {
  left: 0;
  background-image:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, .08),
      rgba(0, 0, 0, .05) 64%,
      rgba(0, 0, 0, .98) 100%
    ),
    url("../images/escape-world.webp");
  background-position: center center;
}

.tc-hero-world--mr {
  right: 0;
  background-image:
    linear-gradient(
      270deg,
      rgba(0, 0, 0, .05),
      rgba(0, 0, 0, .05) 64%,
      rgba(0, 0, 0, .98) 100%
    ),
    url("../images/mr-world.webp");
  background-position: center center;
}

.tc-hero-overlay {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, .65) 0%,
      rgba(0, 0, 0, .08) 35%,
      rgba(0, 0, 0, .08) 65%,
      rgba(0, 0, 0, .65) 100%
    );
}


/* ==================================================
   4. CENTER BRAND
   ================================================== */

.tc-center-brand {
  position: absolute;
  z-index: 4;
  top: 154px;
  left: 50%;
  width: min(560px, 42vw);
  transform: translateX(-50%);
  text-align: center;
}

.tc-hero-claim {
  margin: 0 0 34px;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  opacity: .9;
  user-select: none;
  pointer-events: none;
}

.tc-logo-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: 230px;
  height: 230px;
  margin: 0 auto;
}

.tc-main-logo {
  position: relative;
  z-index: 2;
  width: 210px;
  height: 210px;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(225, 13, 24, .28));
}

.tc-logo-rings {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.tc-logo-rings span {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(225, 13, 24, .22);
  border-radius: 50%;
  animation: tc-ring-rotate 28s linear infinite;
}

.tc-logo-rings span:nth-child(2) {
  inset: 2%;
  border-color: rgba(225, 13, 24, .12);
  animation-duration: 42s;
  animation-direction: reverse;
}

.tc-logo-rings span:nth-child(3) {
  inset: 18%;
  border-color: rgba(225, 13, 24, .18);
  animation-duration: 34s;
}

@keyframes tc-ring-rotate {
  to {
    transform: rotate(360deg);
  }
}

.tc-brand-name {
  margin: 7px 0 0;
  font-size: 68px;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: .95;
  text-shadow: 0 4px 30px #000;
}

.tc-brand-name span {
  color: var(--tc-red);
}

.tc-brand-subtitle {
  margin: 13px 0 0;
  color: var(--tc-red);
  font-size: 18px;
  letter-spacing: .36em;
}

.tc-brand-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 24px auto 0;
}

.tc-brand-divider span {
  width: 125px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--tc-red));
}

.tc-brand-divider span:last-child {
  background: linear-gradient(90deg, var(--tc-red), transparent);
}

.tc-brand-divider i {
  width: 10px;
  height: 10px;
  border: 1px solid var(--tc-red);
  transform: rotate(45deg);
}

.tc-hero-title {
  margin: 24px 0 0;
  color: #ededed;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .22em;
  line-height: 1.5;
}


/* ==================================================
   5. EXPERIENCE BLOCKS
   ================================================== */

.tc-experience {
  position: absolute;
  z-index: 5;
  top: 620px;
  width: 42%;
  text-align: center;
}

.tc-experience--escape {
  left: 3.5%;
}

.tc-experience--mr {
  right: 3.5%;
}

.tc-experience h2 {
  margin: 0;
  color: #f5f5f5;
  font-size: 58px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .03em;
  text-shadow: 0 3px 26px #000;
}

.tc-experience p {
  margin: 18px 0 24px;
  color: #f2f2f2;
  font-size: 15px;
  letter-spacing: .12em;
}

.tc-experience p b {
  padding: 0 8px;
  color: var(--tc-red);
}

.tc-experience--mr p b {
  color: var(--tc-blue);
}

.tc-experience a {
  display: inline-flex;
  justify-content: center;
  min-width: 280px;
  padding: 17px 26px;
  box-sizing: border-box;
  border: 1px solid var(--tc-red);
  background: rgba(0, 0, 0, .32);
  color: var(--tc-red);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: .12em;
  backdrop-filter: blur(4px);
  transition: .25s ease;
}

.tc-experience--mr a {
  border-color: var(--tc-blue);
  color: var(--tc-blue);
}

.tc-experience--escape a:hover,
.tc-experience--escape a:focus-visible {
  background: var(--tc-red);
  color: #fff;
  box-shadow: 0 0 28px rgba(225, 13, 24, .45);
}

.tc-experience--mr a:hover,
.tc-experience--mr a:focus-visible {
  background: #057db9;
  color: #fff;
  box-shadow: 0 0 28px rgba(0, 168, 255, .42);
}


/* ==================================================
   6. SIDE ICONS
   ================================================== */

.tc-side-icon {
  position: absolute;
  z-index: 5;
  top: 677px;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  transform: rotate(45deg);
  background: rgba(0, 0, 0, .48);
}

.tc-side-icon span {
  transform: rotate(-45deg);
  font-size: 28px;
}

.tc-side-icon--escape {
  left: 52px;
  border: 1px solid var(--tc-red);
  color: var(--tc-red);
}

.tc-side-icon--mr {
  right: 52px;
  border: 1px solid var(--tc-blue);
  color: var(--tc-blue);
}


/* ==================================================
   7. FEATURE BAR
   ================================================== */

.tc-feature-bar {
  position: absolute;
  z-index: 5;
  right: 10%;
  bottom: 88px;
  left: 10%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.tc-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 88px;
  padding: 10px 20px;
  box-sizing: border-box;
}

.tc-feature + .tc-feature {
  border-left: 1px solid rgba(255, 255, 255, .13);
}

.tc-feature span {
  color: var(--tc-red);
  font-size: 28px;
}

.tc-feature strong {
  color: #c9c9c9;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .12em;
  line-height: 1.5;
}


/* ==================================================
   8. SCROLL & NEXT SECTION
   ================================================== */

.tc-scroll-down {
  position: absolute;
  z-index: 5;
  bottom: 18px;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 12px;
  transform: translateX(-50%);
  color: #aaa;
  text-decoration: none;
}

.tc-scroll-down span {
  font-size: 11px;
  letter-spacing: .38em;
  white-space: nowrap;
}

.tc-scroll-down i {
  width: 1px;
  height: 28px;
  background: var(--tc-red);
}

.tc-next-section {
  display: grid;
  place-items: center;
  min-height: 45vh;
  background: #050607;
}

.tc-next-section h2 {
  color: #777;
  font-size: 28px;
  letter-spacing: .18em;
}


/* ==================================================
   9. SMALL LAPTOPS / SMALL DESKTOPS
   981px–1450px
   ================================================== */

@media (min-width: 981px) and (max-width: 1450px) {
  .tc-hero {
    min-height: 900px;
    height: 100vh;
    max-height: none;
  }

  .tc-header {
    height: 96px;
    padding: 0 24px;
  }

  .tc-menu-toggle {
    left: 24px;
  }

  .tc-main-nav {
    top: 76px;
    gap: 28px;
  }

  .tc-main-nav a {
    font-size: 11px;
  }

  .tc-header-right {
    top: 18px;
    right: 24px;
    gap: 16px;
  }

  .tc-center-brand {
    top: 120px;
    width: min(460px, 37vw);
  }

  .tc-hero-claim {
    margin-bottom: 24px;
    font-size: 13px;
  }

  .tc-logo-stage {
    width: 175px;
    height: 175px;
  }

  .tc-main-logo {
    width: 160px;
    height: 160px;
  }

  .tc-brand-name {
    font-size: clamp(44px, 4.2vw, 58px);
  }

  .tc-brand-subtitle {
    font-size: 14px;
    letter-spacing: .28em;
  }

  .tc-brand-divider {
    margin: 18px auto 0;
  }

  .tc-brand-divider span {
    width: 88px;
  }

  .tc-hero-title {
    margin-top: 18px;
    font-size: 13px;
  }

  .tc-experience {
    top: 590px;
    width: 38%;
  }

  .tc-experience--escape {
    left: 2%;
  }

  .tc-experience--mr {
    right: 2%;
  }

  .tc-experience h2 {
    font-size: clamp(32px, 3.3vw, 46px);
    white-space: nowrap;
  }

  .tc-experience p {
    margin: 14px 0 18px;
    font-size: 12px;
  }

  .tc-experience a {
    min-width: 220px;
    padding: 14px 20px;
    font-size: 12px;
  }

  .tc-side-icon {
    top: 650px;
    width: 54px;
    height: 54px;
  }

  .tc-side-icon--escape {
    left: 26px;
  }

  .tc-side-icon--mr {
    right: 26px;
  }

  .tc-feature-bar {
    right: 6%;
    bottom: 66px;
    left: 6%;
  }

  .tc-feature {
    gap: 9px;
    min-height: 70px;
    padding: 8px 10px;
  }

  .tc-feature span {
    font-size: 22px;
  }

  .tc-feature strong {
    font-size: 10px;
  }
}


/* ==================================================
   10. TABLET / MOBILE
   Up to 980px
   ================================================== */

@media (max-width: 980px) {
  body.tc-home-v2.admin-bar .tc-header {
    top: 46px;
  }

  .tc-header {
    height: 82px;
    padding: 0 18px;
  }

  .tc-menu-toggle {
    top: 23px;
    left: 18px;
  }

  .tc-menu-toggle b {
    display: none;
  }

  .tc-top-logo {
    top: 25px;
    font-size: 25px;
  }

  .tc-main-nav {
    position: fixed;
    top: 82px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 14px;
    transform: none;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, .97);
  }

  .tc-main-nav.is-open {
    display: flex;
  }

  .tc-main-nav a {
    padding: 13px 8px;
  }

  .tc-header-right {
    top: 17px;
    right: 18px;
  }

  .tc-language {
    display: none;
  }

  .tc-book-now {
    padding: 11px 12px;
    font-size: 10px;
  }

  .tc-hero {
    min-height: 1080px;
    height: auto;
    max-height: none;
    background: var(--tc-black);
    background-image: none;
  }

  .tc-hero-world {
    display: none !important;
  }

  .tc-hero-overlay {
    display: none;
  }

  .tc-center-brand {
    top: 92px;
    width: 84vw;
  }

  .tc-hero-claim {
    margin-bottom: 22px;
    font-size: 13px;
    line-height: 1.7;
    letter-spacing: .20em;
  }

  .tc-logo-stage {
    width: 135px;
    height: 135px;
  }

  .tc-main-logo {
    width: 125px;
    height: 125px;
  }

  .tc-brand-name {
    font-size: 36px;
  }

  .tc-brand-subtitle {
    font-size: 12px;
  }

  .tc-brand-divider span {
    width: 72px;
  }

  .tc-hero-title {
    margin-top: 20px;
    font-size: 11px;
  }

  .tc-experience {
    top: 545px;
    right: 22px;
    left: 22px;
    width: auto;
    padding: 28px 18px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(8, 8, 8, .72);
  }

  .tc-experience--mr {
    top: 745px;
  }

  .tc-experience h2 {
    font-size: 34px;
  }

  .tc-experience p {
    font-size: 11px;
  }

  .tc-experience a {
    min-width: min(270px, 75vw);
    padding: 14px 15px;
  }

  .tc-side-icon,
  .tc-feature-bar {
    display: none;
  }

  .tc-scroll-down {
    bottom: 18px;
  }

  .tc-next-section {
    min-height: auto;
    padding: 64px 22px;
    box-sizing: border-box;
    text-align: center;
  }

  .tc-next-section h2 {
    max-width: 100%;
    margin: 0;
    font-size: clamp(24px, 7vw, 34px);
    line-height: 1.25;
    letter-spacing: .12em;
    overflow-wrap: anywhere;
  }
}


/* ==================================================
   11. SMALL MOBILE
   Up to 480px
   ================================================== */

@media (max-width: 480px) {
  .tc-top-logo {
    font-size: 21px;
  }

  .tc-book-now {
    padding: 10px 8px;
    letter-spacing: .08em;
  }

  .tc-hero {
    min-height: 980px;
  }

  .tc-center-brand {
    top: 86px;
    width: 88vw;
  }

  .tc-hero-claim {
    margin-bottom: 18px;
    font-size: 12px;
    letter-spacing: .17em;
  }

  .tc-brand-name {
    font-size: 31px;
  }

  .tc-hero-world--escape {
    background-position: 20% center;
  }

  .tc-hero-world--mr {
    background-position: 80% center;
  }

  .tc-experience {
    top: 515px;
    right: 16px;
    left: 16px;
    padding: 25px 16px;
  }

  .tc-experience--mr {
    top: 705px;
  }

  .tc-experience h2 {
    font-size: 32px;
  }

  .tc-experience a {
    width: 100%;
    min-width: 0;
  }

  .tc-scroll-down {
    display: none;
  }

  .tc-next-section {
    padding: 52px 18px;
  }
}


/* ==================================================
   12. ACCESSIBILITY
   ================================================== */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
/* ==================================================
   THE CAGE — FINAL REVIEWS OVERRIDE
   Paste at the absolute end of home-v2.css
   ================================================== */

body.tc-home-v2 .tc-reviews-section {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 86px 0 94px;
  box-sizing: border-box;
  background:
    radial-gradient(circle at 0% 45%, rgba(225, 13, 24, 0.17), transparent 31%),
    radial-gradient(circle at 100% 45%, rgba(0, 168, 255, 0.16), transparent 31%),
    linear-gradient(180deg, #040506 0%, #020304 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

body.tc-home-v2 .tc-reviews-section::before,
body.tc-home-v2 .tc-reviews-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 34%;
  pointer-events: none;
  opacity: 0.5;
}

body.tc-home-v2 .tc-reviews-section::before {
  left: 0;
  background:
    radial-gradient(circle at 7% 43%, rgba(225, 13, 24, 0.18), transparent 55%),
    repeating-linear-gradient(
      135deg,
      rgba(225, 13, 24, 0.018) 0,
      rgba(225, 13, 24, 0.018) 1px,
      transparent 1px,
      transparent 9px
    );
}

body.tc-home-v2 .tc-reviews-section::after {
  right: 0;
  background:
    radial-gradient(circle at 93% 43%, rgba(0, 168, 255, 0.18), transparent 55%),
    repeating-linear-gradient(
      45deg,
      rgba(0, 168, 255, 0.018) 0,
      rgba(0, 168, 255, 0.018) 1px,
      transparent 1px,
      transparent 9px
    );
}

body.tc-home-v2 .tc-reviews-inner {
  position: relative;
  z-index: 2;
  display: block;
  width: min(1460px, 92vw);
  margin: 0 auto;
  box-sizing: border-box;
}

body.tc-home-v2 .tc-reviews-heading {
  display: block;
  margin: 0 78px 42px;
  padding: 0;
  text-align: left;
}

body.tc-home-v2 .tc-reviews-heading h2 {
  display: block;
  margin: 0;
  padding: 0;
  color: #f5f5f5;
  font-size: clamp(34px, 3.3vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.055em;
  text-align: left;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.72);
}

body.tc-home-v2 .tc-reviews-label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  color: #e10d18;
}

body.tc-home-v2 .tc-reviews-label i {
  display: block;
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  margin: 0;
  border: 2px solid #e10d18;
  box-sizing: border-box;
  transform: rotate(45deg);
}

body.tc-home-v2 .tc-reviews-label span {
  display: block;
  margin: 0;
  color: #e10d18;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.22em;
}

body.tc-home-v2 .tc-reviews-label b {
  display: block;
  width: 180px;
  height: 1px;
  margin: 0;
  background: linear-gradient(90deg, #e10d18, transparent);
}

body.tc-home-v2 .tc-reviews-carousel {
  position: relative;
  display: block;
  width: 100%;
  padding: 0 76px;
  box-sizing: border-box;
}

body.tc-home-v2 .tc-reviews-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
  width: 100%;
  margin: 0;
  padding: 0;
}

body.tc-home-v2 .tc-rating-card,
body.tc-home-v2 .tc-review-card {
  position: relative;
  display: flex;
  min-width: 0;
  height: 360px;
  min-height: 360px;
  max-height: 360px;
  margin: 0;
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid rgba(225, 13, 24, 0.46);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(5, 6, 8, 0.94);
  box-shadow:
    inset 0 0 28px rgba(255, 255, 255, 0.018),
    0 20px 48px rgba(0, 0, 0, 0.34);
}

body.tc-home-v2 .tc-rating-card {
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

body.tc-home-v2 .tc-rating-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 38px rgba(225, 13, 24, 0.08);
  pointer-events: none;
}

body.tc-home-v2 .tc-rating-card:hover,
body.tc-home-v2 .tc-rating-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(225, 13, 24, 0.95);
  box-shadow:
    0 0 30px rgba(225, 13, 24, 0.16),
    0 24px 56px rgba(0, 0, 0, 0.42);
  outline: none;
}

body.tc-home-v2 .tc-rating-card-link-icon {
  position: absolute;
  top: 17px;
  right: 18px;
  display: block;
  color: #e10d18;
  font-size: 18px;
  line-height: 1;
}

body.tc-home-v2 .tc-rating-card > strong {
  display: block;
  margin: 0;
  color: #f7f7f7;
  font-size: clamp(76px, 6.2vw, 112px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.035em;
}

body.tc-home-v2 .tc-rating-stars {
  display: block;
  margin: 24px 0 0;
  color: #ffc107 !important;
  font-size: clamp(23px, 1.9vw, 31px);
  line-height: 1;
  letter-spacing: 0.08em;
  text-shadow: 0 0 12px rgba(255, 193, 7, 0.25);
}

body.tc-home-v2 .tc-google-reviews-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 29px 0 0;
}

body.tc-home-v2 .tc-google-reviews-brand i {
  color: #4285f4;
  font-size: 22px;
  font-style: normal;
  font-weight: 800;
}

body.tc-home-v2 .tc-google-reviews-brand b {
  color: #c9c9c9;
  font-size: 14px;
  font-weight: 400;
}

body.tc-home-v2 .tc-reviews-viewport {
  grid-column: span 3;
  display: block;
  min-width: 0;
  width: 100%;
  height: 360px;
  margin: 0;
  padding: 0;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-behavior: smooth;
  scrollbar-width: none;
  outline: none;
}

body.tc-home-v2 .tc-reviews-viewport::-webkit-scrollbar {
  display: none;
}

body.tc-home-v2 .tc-reviews-track {
  display: flex !important;
  align-items: stretch;
  gap: 22px;
  width: 100%;
  min-width: 100%;
  height: 360px;
  margin: 0;
  padding: 0;
}

body.tc-home-v2 .tc-review-card {
  flex: 0 0 calc((100% - 44px) / 3);
  width: calc((100% - 44px) / 3);
  padding: 31px 28px 26px;
  flex-direction: column;
}

body.tc-home-v2 .tc-review-card-top {
  display: flex;
  flex: 0 0 auto;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

body.tc-home-v2 .tc-review-stars {
  color: #ffc107 !important;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-shadow: 0 0 10px rgba(255, 193, 7, 0.22);
}

body.tc-home-v2 .tc-review-quote-mark {
  color: rgba(225, 13, 24, 0.46);
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: 0.75;
}

body.tc-home-v2 .tc-review-quote {
  display: block;
  flex: 1 1 auto;
  width: 100%;
  margin: 25px 0 0;
  padding: 0;
  overflow: hidden;
  border: 0;
}

body.tc-home-v2 .tc-review-quote p {
  display: -webkit-box;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: #d7d7d7 !important;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.72;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
}

body.tc-home-v2 .tc-review-footer {
  flex: 0 0 auto;
  width: 100%;
  margin: 23px 0 0;
  padding: 19px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

body.tc-home-v2 .tc-review-footer strong {
  display: block;
  color: #f3f3f3;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

body.tc-home-v2 .tc-review-footer span {
  display: block;
  margin-top: 7px;
  color: #a7a7a7;
  font-size: 11px;
}

body.tc-home-v2 .tc-review-footer i {
  margin-left: 4px;
  color: #e10d18;
  font-size: 9px;
}

body.tc-home-v2 .tc-reviews-arrow {
  appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 10;
  top: 50%;
  display: grid !important;
  place-items: center;
  width: 54px;
  min-width: 54px;
  height: 54px;
  min-height: 54px;
  margin: 0;
  padding: 0;
  transform: translateY(-50%) rotate(45deg);
  border: 1px solid rgba(225, 13, 24, 0.84);
  border-radius: 0;
  background: rgba(7, 8, 10, 0.92);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 0 24px rgba(225, 13, 24, 0.16);
}

body.tc-home-v2 .tc-reviews-arrow span {
  transform: rotate(-45deg);
  color: #fff;
  font-size: 33px;
  line-height: 1;
}

body.tc-home-v2 .tc-reviews-arrow:hover,
body.tc-home-v2 .tc-reviews-arrow:focus-visible {
  background: #e10d18;
  box-shadow: 0 0 30px rgba(225, 13, 24, 0.38);
  outline: none;
}

body.tc-home-v2 .tc-reviews-arrow--previous {
  left: 11px;
}

body.tc-home-v2 .tc-reviews-arrow--next {
  right: 11px;
}

body.tc-home-v2 .tc-reviews-pagination {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  margin: 38px 0 0;
  padding: 0;
}

body.tc-home-v2 .tc-reviews-dot {
  appearance: none;
  -webkit-appearance: none;
  display: block;
  width: 9px;
  min-width: 9px;
  height: 9px;
  min-height: 9px;
  margin: 0;
  padding: 0;
  transform: rotate(45deg);
  border: 0;
  border-radius: 0;
  background: #626262;
  cursor: pointer;
}

body.tc-home-v2 .tc-reviews-dot.is-active {
  border: 2px solid #e10d18;
  background: transparent;
  box-shadow: 0 0 10px rgba(225, 13, 24, 0.30);
}

@media (min-width: 701px) and (max-width: 1100px) {
  body.tc-home-v2 .tc-reviews-section {
    padding: 72px 0 82px;
  }

  body.tc-home-v2 .tc-reviews-inner {
    width: min(96vw, 1100px);
  }

  body.tc-home-v2 .tc-reviews-heading {
    margin: 0 62px 34px;
  }

  body.tc-home-v2 .tc-reviews-heading h2 {
    font-size: clamp(31px, 4.7vw, 46px);
  }

  body.tc-home-v2 .tc-reviews-carousel {
    padding: 0 56px;
  }

  body.tc-home-v2 .tc-reviews-grid,
  body.tc-home-v2 .tc-reviews-track {
    gap: 14px;
  }

  body.tc-home-v2 .tc-rating-card,
  body.tc-home-v2 .tc-review-card,
  body.tc-home-v2 .tc-reviews-viewport,
  body.tc-home-v2 .tc-reviews-track {
    height: 330px;
    min-height: 330px;
    max-height: 330px;
  }

  body.tc-home-v2 .tc-review-card {
    flex-basis: calc((100% - 28px) / 3);
    width: calc((100% - 28px) / 3);
    padding: 24px 20px 21px;
  }

  body.tc-home-v2 .tc-review-quote p {
    font-size: 12px;
    line-height: 1.62;
  }

  body.tc-home-v2 .tc-review-footer strong {
    font-size: 12px;
  }

  body.tc-home-v2 .tc-review-footer span {
    font-size: 9px;
  }

  body.tc-home-v2 .tc-rating-card > strong {
    font-size: clamp(62px, 8vw, 88px);
  }

  body.tc-home-v2 .tc-rating-stars {
    font-size: 21px;
  }

  body.tc-home-v2 .tc-google-reviews-brand b {
    font-size: 12px;
  }

  body.tc-home-v2 .tc-reviews-arrow {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
  }

  body.tc-home-v2 .tc-reviews-arrow--previous {
    left: 8px;
  }

  body.tc-home-v2 .tc-reviews-arrow--next {
    right: 8px;
  }
}

@media (max-width: 700px) {
  body.tc-home-v2 .tc-reviews-section {
    padding: 58px 0 64px;
  }

  body.tc-home-v2 .tc-reviews-inner {
    width: min(calc(100% - 28px), 520px);
  }

  body.tc-home-v2 .tc-reviews-heading {
    margin: 0 0 28px;
  }

  body.tc-home-v2 .tc-reviews-heading h2 {
    font-size: clamp(28px, 8.7vw, 40px);
    line-height: 1.12;
  }

  body.tc-home-v2 .tc-reviews-label {
    gap: 11px;
    margin-top: 15px;
  }

  body.tc-home-v2 .tc-reviews-label span {
    font-size: 10px;
    letter-spacing: 0.17em;
  }

  body.tc-home-v2 .tc-reviews-label b {
    width: 95px;
  }

  body.tc-home-v2 .tc-reviews-carousel {
    padding: 0 36px;
  }

  body.tc-home-v2 .tc-reviews-grid {
    display: block !important;
  }

  body.tc-home-v2 .tc-rating-card,
  body.tc-home-v2 .tc-review-card {
    width: 100%;
    height: 310px;
    min-height: 310px;
    max-height: 310px;
  }

  body.tc-home-v2 .tc-rating-card {
    margin-bottom: 16px;
  }

  body.tc-home-v2 .tc-rating-card > strong {
    font-size: 82px;
  }

  body.tc-home-v2 .tc-rating-stars {
    margin-top: 18px;
    font-size: 24px;
  }

  body.tc-home-v2 .tc-google-reviews-brand {
    margin-top: 20px;
  }

  body.tc-home-v2 .tc-reviews-viewport {
    width: 100%;
    height: 310px;
    min-height: 310px;
    max-height: 310px;
    overflow-x: auto !important;
    overflow-y: hidden !important;
  }

  body.tc-home-v2 .tc-reviews-track {
    gap: 0;
    width: 100%;
    min-width: 100%;
    height: 310px;
    min-height: 310px;
    max-height: 310px;
  }

  body.tc-home-v2 .tc-review-card {
    flex: 0 0 100%;
    width: 100%;
    padding: 27px 24px 24px;
  }

  body.tc-home-v2 .tc-review-stars {
    font-size: 18px;
  }

  body.tc-home-v2 .tc-review-quote {
    margin-top: 20px;
  }

  body.tc-home-v2 .tc-review-quote p {
    font-size: 13px;
    line-height: 1.66;
    -webkit-line-clamp: 7;
  }

  body.tc-home-v2 .tc-review-footer {
    margin-top: 18px;
    padding-top: 16px;
  }

  body.tc-home-v2 .tc-reviews-arrow {
    top: 481px;
    width: 36px;
    min-width: 36px;
    height: 36px;
    min-height: 36px;
  }

  body.tc-home-v2 .tc-reviews-arrow span {
    font-size: 24px;
  }

  body.tc-home-v2 .tc-reviews-arrow--previous {
    left: 0;
  }

  body.tc-home-v2 .tc-reviews-arrow--next {
    right: 0;
  }

  body.tc-home-v2 .tc-reviews-pagination {
    gap: 15px;
    margin-top: 27px;
  }

  body.tc-home-v2 .tc-reviews-dot {
    width: 8px;
    min-width: 8px;
    height: 8px;
    min-height: 8px;
  }
}
/* ==================================================
   THE CAGE — ΠΟΙΟΙ ΜΠΟΡΟΥΝ ΝΑ ΠΑΙΞΟΥΝ
   Βάλ’ το στο ΤΕΛΟΣ του home-v2.css
   ================================================== */

body.tc-home-v2 .tc-audience-section {
  position: relative;
  overflow: hidden;
  padding: 48px 0 104px;
  background:
    radial-gradient(circle at 0% 38%, rgba(225, 13, 24, .16), transparent 30%),
    radial-gradient(circle at 100% 38%, rgba(0, 168, 255, .12), transparent 30%),
    linear-gradient(180deg, #030405 0%, #020304 100%);
  border-top: 1px solid rgba(255, 255, 255, .06);
}

body.tc-home-v2 .tc-audience-section::before,
body.tc-home-v2 .tc-audience-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 31%;
  pointer-events: none;
  opacity: .42;
}

body.tc-home-v2 .tc-audience-section::before {
  left: 0;
  background:
    radial-gradient(circle at 8% 34%, rgba(225, 13, 24, .20), transparent 54%),
    repeating-linear-gradient(
      135deg,
      rgba(225, 13, 24, .018) 0,
      rgba(225, 13, 24, .018) 1px,
      transparent 1px,
      transparent 9px
    );
}

body.tc-home-v2 .tc-audience-section::after {
  right: 0;
  background:
    radial-gradient(circle at 92% 34%, rgba(0, 168, 255, .17), transparent 54%),
    repeating-linear-gradient(
      45deg,
      rgba(0, 168, 255, .016) 0,
      rgba(0, 168, 255, .016) 1px,
      transparent 1px,
      transparent 9px
    );
}

body.tc-home-v2 .tc-audience-inner {
  position: relative;
  z-index: 2;
  width: min(1460px, 92vw);
  margin: 0 auto;
}

body.tc-home-v2 .tc-audience-heading {
  width: min(980px, 92vw);
  margin: 0 auto 48px;
  text-align: center;
}


body.tc-home-v2 .tc-audience-heading h2 {
  margin: 0;
  color: #f5f5f5;
  font-size: clamp(38px, 4.25vw, 68px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: .045em;
  text-shadow: 0 8px 36px rgba(0, 0, 0, .58);
}

body.tc-home-v2 .tc-audience-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  width: min(470px, 70vw);
  margin: 24px auto 22px;
}

body.tc-home-v2 .tc-audience-divider span {
  display: block;
  width: 145px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e10d18);
}

body.tc-home-v2 .tc-audience-divider span:last-child {
  background: linear-gradient(90deg, #e10d18, transparent);
}

body.tc-home-v2 .tc-audience-divider i {
  width: 13px;
  height: 13px;
  border: 2px solid #e10d18;
  transform: rotate(45deg);
  box-sizing: border-box;
}

body.tc-home-v2 .tc-audience-intro {
  max-width: 840px;
  margin: 0 auto;
  color: #bdbdbd;
  font-size: 16px;
  line-height: 1.75;
}

body.tc-home-v2 .tc-audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

body.tc-home-v2 .tc-audience-card {
  position: relative;
  min-width: 0;
  min-height: 520px;
  padding: 30px 28px 34px;
  box-sizing: border-box;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(225, 13, 24, .62);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .044), rgba(255, 255, 255, .012)),
    rgba(5, 6, 8, .94);
  box-shadow:
    inset 0 0 30px rgba(255, 255, 255, .018),
    0 22px 52px rgba(0, 0, 0, .34),
    0 0 32px rgba(225, 13, 24, .08);
  transition:
    transform .24s ease,
    border-color .24s ease,
    box-shadow .24s ease;
}

body.tc-home-v2 .tc-audience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 28%, rgba(225, 13, 24, .07), transparent 42%),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, .008) 0,
      rgba(255, 255, 255, .008) 1px,
      transparent 1px,
      transparent 10px
    );
  pointer-events: none;
}

body.tc-home-v2 .tc-audience-card:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 13, 24, .95);
  box-shadow:
    0 0 34px rgba(225, 13, 24, .18),
    0 30px 64px rgba(0, 0, 0, .42);
}

body.tc-home-v2 .tc-audience-corner {
  position: absolute;
  z-index: 2;
  top: 17px;
  right: 18px;
  color: #e10d18;
  font-size: 18px;
  line-height: 1;
}

body.tc-home-v2 .tc-audience-icon {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  margin: 10px auto 28px;
  border: 1px solid rgba(225, 13, 24, .65);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 12px rgba(225, 13, 24, .018),
    inset 0 0 0 24px rgba(225, 13, 24, .014),
    0 0 24px rgba(225, 13, 24, .08);
}

body.tc-home-v2 .tc-audience-icon::before,
body.tc-home-v2 .tc-audience-icon::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(225, 13, 24, .24);
  border-radius: 50%;
}

body.tc-home-v2 .tc-audience-icon::before {
  inset: 10px;
}

body.tc-home-v2 .tc-audience-icon::after {
  inset: 21px;
}

body.tc-home-v2 .tc-audience-icon svg {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  fill: none;
  stroke: #ff2934;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(225, 13, 24, .28));
}

body.tc-home-v2 .tc-audience-card h3 {
  position: relative;
  z-index: 2;
  min-height: 72px;
  margin: 0;
  color: #f4f4f4;
  font-size: clamp(22px, 1.75vw, 30px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: .01em;
}

body.tc-home-v2 .tc-audience-mini-divider {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 165px;
  margin: 18px auto 24px;
}

body.tc-home-v2 .tc-audience-mini-divider span {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e10d18);
}

body.tc-home-v2 .tc-audience-mini-divider span:last-child {
  background: linear-gradient(90deg, #e10d18, transparent);
}

body.tc-home-v2 .tc-audience-mini-divider i {
  width: 9px;
  height: 9px;
  border: 1px solid #e10d18;
  transform: rotate(45deg);
  box-sizing: border-box;
}

body.tc-home-v2 .tc-audience-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #d0d0d0;
  font-size: 14px;
  line-height: 1.82;
}


body.tc-home-v2 .tc-audience-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 30px auto 0;
}

body.tc-home-v2 .tc-audience-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  min-height: 56px;
  padding: 14px 28px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, .28);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .16em;
  text-decoration: none;
  transition:
    background .24s ease,
    box-shadow .24s ease,
    color .24s ease;
}

body.tc-home-v2 .tc-audience-button--escape {
  border: 1px solid #e10d18;
  color: #e10d18;
}

body.tc-home-v2 .tc-audience-button--escape:hover,
body.tc-home-v2 .tc-audience-button--escape:focus-visible {
  background: #e10d18;
  color: #fff;
  box-shadow: 0 0 28px rgba(225, 13, 24, .35);
  outline: none;
}

body.tc-home-v2 .tc-audience-button--mr {
  border: 1px solid #00a8ff;
  color: #00a8ff;
}

body.tc-home-v2 .tc-audience-button--mr:hover,
body.tc-home-v2 .tc-audience-button--mr:focus-visible {
  background: #057db9;
  color: #fff;
  box-shadow: 0 0 28px rgba(0, 168, 255, .32);
  outline: none;
}

@media (min-width: 701px) and (max-width: 1100px) {
  body.tc-home-v2 .tc-audience-section {
    padding: 44px 0 88px;
  }

  body.tc-home-v2 .tc-audience-grid {
    gap: 14px;
  }

  body.tc-home-v2 .tc-audience-card {
    min-height: 455px;
    padding: 24px 20px 28px;
  }

  body.tc-home-v2 .tc-audience-icon {
    width: 104px;
    height: 104px;
    margin-bottom: 22px;
  }

  body.tc-home-v2 .tc-audience-icon svg {
    width: 47px;
    height: 47px;
  }

  body.tc-home-v2 .tc-audience-card h3 {
    min-height: 64px;
    font-size: clamp(18px, 2.25vw, 24px);
  }

  body.tc-home-v2 .tc-audience-card p {
    font-size: 12px;
    line-height: 1.68;
  }
}

@media (max-width: 700px) {
  body.tc-home-v2 .tc-audience-section {
    padding: 42px 0 72px;
  }

  body.tc-home-v2 .tc-audience-inner {
    width: min(calc(100% - 28px), 520px);
  }

  body.tc-home-v2 .tc-audience-heading {
    width: 100%;
    margin-bottom: 34px;
  }

  body.tc-home-v2 .tc-audience-heading h2 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.12;
  }

  body.tc-home-v2 .tc-audience-intro {
    font-size: 13px;
    line-height: 1.7;
  }

  body.tc-home-v2 .tc-audience-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 24px;
  }

  body.tc-home-v2 .tc-audience-button {
    width: 100%;
    min-width: 0;
    min-height: 54px;
  }

  body.tc-home-v2 .tc-audience-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  body.tc-home-v2 .tc-audience-card {
    min-height: 0;
    padding: 27px 24px 31px;
  }

  body.tc-home-v2 .tc-audience-icon {
    width: 112px;
    height: 112px;
    margin: 8px auto 23px;
  }

  body.tc-home-v2 .tc-audience-icon svg {
    width: 50px;
    height: 50px;
  }

  body.tc-home-v2 .tc-audience-card h3 {
    min-height: 0;
    font-size: 24px;
  }

  body.tc-home-v2 .tc-audience-card p {
    font-size: 13px;
    line-height: 1.72;
  }
}
/* ==================================================
   THE CAGE — FAQ SECTION
   Βάλ’ το στο ΤΕΛΟΣ του home-v2.css
   ================================================== */

body.tc-home-v2 .tc-faq-section {
  position: relative;
  overflow: hidden;
  padding: 88px 0 104px;
  background:
    radial-gradient(circle at 0% 45%, rgba(225, 13, 24, .14), transparent 31%),
    radial-gradient(circle at 100% 45%, rgba(0, 168, 255, .14), transparent 31%),
    linear-gradient(180deg, #030405 0%, #020304 100%);
  border-top: 1px solid rgba(255, 255, 255, .06);
}

body.tc-home-v2 .tc-faq-inner {
  position: relative;
  z-index: 2;
  width: min(1460px, 92vw);
  margin: 0 auto;
}

body.tc-home-v2 .tc-faq-heading {
  margin: 0 auto 48px;
  text-align: center;
}

body.tc-home-v2 .tc-faq-heading h2 {
  margin: 0;
  color: #f5f5f5;
  font-size: clamp(38px, 4.2vw, 66px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: .05em;
  text-shadow: 0 8px 34px rgba(0, 0, 0, .58);
}

body.tc-home-v2 .tc-faq-heading-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  width: min(460px, 72vw);
  margin: 24px auto 0;
}

body.tc-home-v2 .tc-faq-heading-divider span {
  display: block;
  width: 145px;
  height: 1px;
}

body.tc-home-v2 .tc-faq-heading-divider span:first-child {
  background: linear-gradient(90deg, transparent, #e10d18);
}

body.tc-home-v2 .tc-faq-heading-divider span:last-child {
  background: linear-gradient(90deg, #00a8ff, transparent);
}

body.tc-home-v2 .tc-faq-heading-divider i {
  width: 13px;
  height: 13px;
  border-top: 2px solid #e10d18;
  border-left: 2px solid #e10d18;
  border-right: 2px solid #00a8ff;
  border-bottom: 2px solid #00a8ff;
  transform: rotate(45deg);
  box-sizing: border-box;
}

body.tc-home-v2 .tc-faq-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

body.tc-home-v2 .tc-faq-panel {
  min-width: 0;
  padding: 31px 34px 28px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .01)),
    rgba(5, 6, 8, .94);
  box-shadow: 0 22px 52px rgba(0, 0, 0, .34);
}

body.tc-home-v2 .tc-faq-panel--escape {
  border: 1px solid rgba(225, 13, 24, .62);
}

body.tc-home-v2 .tc-faq-panel--mr {
  border: 1px solid rgba(0, 168, 255, .58);
}

body.tc-home-v2 .tc-faq-panel h3 {
  margin: 0 0 25px;
  font-size: clamp(25px, 2.2vw, 36px);
  font-weight: 700;
  letter-spacing: .04em;
}

body.tc-home-v2 .tc-faq-panel--escape h3 {
  color: #ff2934;
}

body.tc-home-v2 .tc-faq-panel--mr h3 {
  color: #00a8ff;
}

body.tc-home-v2 .tc-faq-list {
  border-top: 1px solid rgba(255, 255, 255, .10);
}

body.tc-home-v2 .tc-faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

body.tc-home-v2 .tc-faq-item summary {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  width: 100%;
  padding: 20px 0;
  color: #f2f2f2;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
  list-style: none;
}

body.tc-home-v2 .tc-faq-item summary::-webkit-details-marker {
  display: none;
}

body.tc-home-v2 .tc-faq-item summary i {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform .24s ease;
}

body.tc-home-v2 .tc-faq-item[open] summary i {
  transform: rotate(45deg);
}

body.tc-home-v2 .tc-faq-panel--escape .tc-faq-item summary i {
  color: #e10d18;
}

body.tc-home-v2 .tc-faq-panel--mr .tc-faq-item summary i {
  color: #00a8ff;
}

body.tc-home-v2 .tc-faq-answer {
  overflow: hidden;
}

body.tc-home-v2 .tc-faq-answer p {
  margin: -4px 0 20px 22px;
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.78;
}

body.tc-home-v2 .tc-faq-mobile-tabs {
  display: none;
}

@media (min-width: 701px) and (max-width: 1100px) {
  body.tc-home-v2 .tc-faq-section {
    padding: 74px 0 88px;
  }

  body.tc-home-v2 .tc-faq-columns {
    gap: 18px;
  }

  body.tc-home-v2 .tc-faq-panel {
    padding: 26px 24px 24px;
  }

  body.tc-home-v2 .tc-faq-item summary {
    font-size: 13px;
  }

  body.tc-home-v2 .tc-faq-answer p {
    font-size: 12px;
    line-height: 1.68;
  }
}

@media (max-width: 700px) {
  body.tc-home-v2 .tc-faq-section {
    padding: 62px 0 72px;
  }

  body.tc-home-v2 .tc-faq-inner {
    width: min(calc(100% - 28px), 520px);
  }

  body.tc-home-v2 .tc-faq-heading {
    margin-bottom: 30px;
  }

  body.tc-home-v2 .tc-faq-heading h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  body.tc-home-v2 .tc-faq-mobile-tabs {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 18px;
  }

  body.tc-home-v2 .tc-faq-tab {
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 62px;
    padding: 15px 28px 23px;
    background: rgba(0, 0, 0, .28);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .14em;
    cursor: pointer;
  }

  body.tc-home-v2 .tc-faq-tab--escape {
    border: 1px solid #e10d18;
    color: #e10d18;
  }

  body.tc-home-v2 .tc-faq-tab--mr {
    border: 1px solid #00a8ff;
    color: #00a8ff;
  }

  body.tc-home-v2 .tc-faq-tab i {
    position: absolute;
    left: 50%;
    bottom: 8px;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateX(-50%) rotate(45deg);
    transition: transform .24s ease;
  }

  body.tc-home-v2 .tc-faq-tab.is-open i {
    transform: translateX(-50%) rotate(225deg);
  }

  body.tc-home-v2 .tc-faq-columns {
    display: block;
  }

  body.tc-home-v2 .tc-faq-panel {
    display: none;
    padding: 23px 21px 20px;
  }

  body.tc-home-v2 .tc-faq-panel.is-open {
    display: block;
  }

  body.tc-home-v2 .tc-faq-panel h3 {
    display: none;
  }

  body.tc-home-v2 .tc-faq-list {
    border-top: 0;
  }

  body.tc-home-v2 .tc-faq-item summary {
    padding: 18px 0;
    font-size: 13px;
    line-height: 1.45;
  }

  body.tc-home-v2 .tc-faq-answer p {
    margin-left: 22px;
    font-size: 12px;
    line-height: 1.7;
  }
}
/* ==================================================
   THE CAGE — FOOTER
   ================================================== */

.tc-footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 10%, rgba(180, 0, 0, 0.08), transparent 28%),
        radial-gradient(circle at 92% 18%, rgba(0, 95, 180, 0.08), transparent 30%),
        linear-gradient(180deg, #0b0b0c 0%, #080809 100%);
    color: #f3f3f3;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-family: inherit;
}

.tc-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
    background-size: 40px 40px;
}

.tc-footer a {
    color: inherit;
    text-decoration: none;
}

.tc-footer svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tc-footer-inner {
    position: relative;
    z-index: 1;
    width: min(1500px, calc(100% - 80px));
    margin: 0 auto;
    padding: 64px 0 0;
}

.tc-footer-grid {
    display: grid;
    grid-template-columns: minmax(250px, 0.95fr) minmax(230px, 0.75fr) minmax(520px, 1.55fr);
    gap: clamp(45px, 5vw, 90px);
    align-items: start;
}

.tc-footer-column > h2 {
    position: relative;
    display: inline-block;
    margin: 0 0 32px;
    padding-bottom: 13px;
    font-size: 23px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.tc-footer-column > h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 74%;
    height: 2px;
    background: currentColor;
    opacity: 0.8;
}

.tc-footer-navigation > h2 {
    color: #f03a3a;
}

.tc-footer-contact > h2 {
    color: #2d8fff;
}

.tc-footer-locations > h2 {
    color: #ededed;
}

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

.tc-footer-menu {
    display: flex;
    flex-direction: column;
}

.tc-footer-menu > a {
    display: grid;
    grid-template-columns: 38px 1fr 18px;
    align-items: center;
    min-height: 62px;
    padding: 0 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: #e7e7e7;
    transition:
        color 0.22s ease,
        padding-left 0.22s ease,
        background-color 0.22s ease;
}

.tc-footer-menu > a:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.tc-footer-menu > a:hover,
.tc-footer-menu > a:focus-visible {
    color: #ffffff;
    padding-left: 8px;
    background: rgba(255, 255, 255, 0.025);
}

.tc-footer-menu-icon {
    width: 27px;
    height: 27px;
    color: #f03a3a;
}

.tc-footer-menu > a > span:nth-child(2) {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.015em;
}

.tc-footer-menu > a > i {
    font-size: 30px;
    line-height: 1;
    font-style: normal;
    font-weight: 300;
    text-align: right;
    color: #d6d6d6;
    transition: transform 0.22s ease;
}

.tc-footer-menu > a:hover > i,
.tc-footer-menu > a:focus-visible > i {
    transform: translateX(4px);
}

/* ==================================================
   CONTACT DETAILS
   ================================================== */

.tc-footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 23px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.tc-footer-contact-list > a {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    gap: 14px;
    color: #e3e3e3;
    font-size: 16px;
    line-height: 1.55;
    transition: color 0.22s ease;
}

.tc-footer-contact-list > a:hover,
.tc-footer-contact-list > a:focus-visible {
    color: #ffffff;
}

.tc-footer-contact-list > a > span:first-child {
    width: 27px;
    height: 27px;
    color: #2d8fff;
}

.tc-footer-social {
    padding-top: 28px;
}

.tc-footer-social h3 {
    margin: 0 0 21px;
    color: #2d8fff;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.tc-footer-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.tc-footer-social-links > a {
    display: grid;
    place-items: center;
    width: 49px;
    height: 49px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    color: #f2f2f2;
    background: rgba(255, 255, 255, 0.015);
    transition:
        border-color 0.22s ease,
        color 0.22s ease,
        transform 0.22s ease,
        background-color 0.22s ease;
}

.tc-footer-social-links > a:hover,
.tc-footer-social-links > a:focus-visible {
    color: #ffffff;
    border-color: #2d8fff;
    background: rgba(45, 143, 255, 0.1);
    transform: translateY(-3px);
}

.tc-footer-social-links > a > span {
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
}

.tc-footer-social-links > a > svg {
    width: 23px;
    height: 23px;
}

/* ==================================================
   LOCATION CARDS
   ================================================== */

.tc-footer-location-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.tc-footer-location-card {
    display: grid;
    grid-template-columns: 34% 66%;
    min-height: 222px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.25),
        inset 0 0 0 1px rgba(255, 255, 255, 0.015);
}

.tc-footer-location-visual {
    position: relative;
    min-height: 100%;
    display: grid;
    place-items: center;
    overflow: hidden;
    isolation: isolate;
}

.tc-footer-location-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.78)),
        radial-gradient(circle at 50% 35%, rgba(225, 25, 25, 0.36), transparent 40%),
        linear-gradient(135deg, #191919, #070707);
}

.tc-footer-location-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.3;
    background:
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 30px,
            rgba(255, 255, 255, 0.05) 31px,
            transparent 32px
        );
}

.tc-footer-location-card--autolux .tc-footer-location-visual::before {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.82)),
        radial-gradient(circle at 50% 34%, rgba(190, 25, 25, 0.38), transparent 42%),
        linear-gradient(135deg, #1c1716, #070707);
}

.tc-footer-location-visual > span {
    display: block;
    color: #f8f8f8;
    font-size: 24px;
    line-height: 0.96;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-align: center;
    text-shadow:
        0 0 8px rgba(255, 30, 30, 0.9),
        0 0 24px rgba(255, 0, 0, 0.6);
    transform: rotate(-2deg);
}

.tc-footer-location-card--autolux .tc-footer-location-visual > span {
    padding: 15px 12px;
    border: 2px solid rgba(255, 65, 65, 0.8);
    color: #f7e8df;
    font-size: 20px;
    line-height: 1;
    box-shadow:
        0 0 12px rgba(255, 25, 25, 0.28),
        inset 0 0 14px rgba(255, 20, 20, 0.12);
}

.tc-footer-location-visual small {
    display: block;
    margin-top: 7px;
    color: #f04848;
    font-size: 9px;
    letter-spacing: 0.13em;
}

.tc-footer-location-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 28px;
}

.tc-footer-location-content h3 {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 10px;
    font-size: 19px;
    line-height: 1.25;
    font-weight: 800;
}

.tc-footer-location-card--main h3 {
    color: #f03a3a;
}

.tc-footer-location-card--autolux h3 {
    color: #2d8fff;
}

.tc-footer-location-content h3 > span {
    font-size: 29px;
    line-height: 1;
    font-weight: 400;
}

.tc-footer-location-type {
    margin: 0 0 13px;
    color: #d8d8d8;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.tc-footer-location-content address {
    margin: 0 0 20px;
    color: #e6e6e6;
    font-size: 15px;
    line-height: 1.55;
    font-style: normal;
}

.tc-footer-map-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 47px;
    padding: 11px 15px;
    border: 1px solid currentColor;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.015em;
    text-align: center;
    transition:
        color 0.22s ease,
        background-color 0.22s ease,
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.tc-footer-map-button--red {
    color: #f03a3a;
}

.tc-footer-map-button--blue {
    color: #2d8fff;
}

.tc-footer-map-button:hover,
.tc-footer-map-button:focus-visible {
    color: #ffffff;
    transform: translateY(-2px);
}

.tc-footer-map-button--red:hover,
.tc-footer-map-button--red:focus-visible {
    background: rgba(240, 58, 58, 0.14);
    box-shadow: 0 0 20px rgba(240, 58, 58, 0.12);
}

.tc-footer-map-button--blue:hover,
.tc-footer-map-button--blue:focus-visible {
    background: rgba(45, 143, 255, 0.14);
    box-shadow: 0 0 20px rgba(45, 143, 255, 0.12);
}

.tc-footer-map-button > span {
    font-size: 22px;
    line-height: 1;
}

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

.tc-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    margin-top: 50px;
    padding: 31px 0 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.tc-footer-bottom p {
    margin: 0;
    color: #cccccc;
    font-size: 14px;
    line-height: 1.5;
    white-space: nowrap;
}

.tc-footer-bottom p strong {
    color: #f03a3a;
    font-weight: 700;
}

.tc-footer-legal {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
}

.tc-footer-legal a {
    color: #dadada;
    font-size: 13px;
    line-height: 1.35;
    letter-spacing: 0.015em;
    text-align: center;
    transition: color 0.22s ease;
}

.tc-footer-legal a:hover,
.tc-footer-legal a:focus-visible {
    color: #ffffff;
}

.tc-footer-legal > span {
    width: 1px;
    height: 19px;
    background: rgba(255, 255, 255, 0.4);
}

/* ==================================================
   FOOTER — TABLET
   ================================================== */

@media (max-width: 1180px) {

    .tc-footer-inner {
        width: min(100% - 48px, 1100px);
    }

    .tc-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px 55px;
    }

    .tc-footer-locations {
        grid-column: 1 / -1;
    }

    .tc-footer-location-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tc-footer-location-card {
        grid-template-columns: 35% 65%;
    }

    .tc-footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .tc-footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ==================================================
   FOOTER — MOBILE
   ================================================== */

@media (max-width: 760px) {

    .tc-footer-inner {
        width: min(100% - 30px, 620px);
        padding-top: 44px;
    }

    .tc-footer-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .tc-footer-locations {
        grid-column: auto;
    }

    .tc-footer-column > h2 {
        margin-bottom: 24px;
        font-size: 21px;
    }

    .tc-footer-menu > a {
        min-height: 58px;
        grid-template-columns: 35px 1fr 18px;
    }

    .tc-footer-menu > a > span:nth-child(2) {
        font-size: 14px;
    }

    .tc-footer-location-list {
        display: flex;
    }

    .tc-footer-location-card {
        grid-template-columns: 1fr;
    }

    .tc-footer-location-visual {
        min-height: 170px;
    }

    .tc-footer-location-content {
        padding: 23px 20px 24px;
    }

    .tc-footer-location-content h3 {
        font-size: 17px;
    }

    .tc-footer-map-button {
        font-size: 12px;
    }

    .tc-footer-bottom {
        margin-top: 42px;
        padding: 27px 0 32px;
    }

    .tc-footer-bottom p {
        white-space: normal;
    }

    .tc-footer-legal {
        flex-direction: column;
        gap: 14px;
    }

    .tc-footer-legal > span {
        display: none;
    }

    .tc-footer-social-links {
        gap: 12px;
    }

    .tc-footer-social-links > a {
        width: 46px;
        height: 46px;
    }
}

/* ==================================================
   FOOTER — VERY SMALL MOBILE
   ================================================== */

@media (max-width: 390px) {

    .tc-footer-inner {
        width: min(100% - 22px, 360px);
    }

    .tc-footer-location-content {
        padding-inline: 17px;
    }

    .tc-footer-contact-list > a {
        font-size: 14px;
    }

    .tc-footer-menu > a > span:nth-child(2) {
        font-size: 13px;
    }
}
/* HERO SOCIAL ICONS */
.tc-hero-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin: 22px 0 26px;
    position: relative;
    z-index: 5;
}

.tc-hero-social a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    color: #f3f3f3;
    text-decoration: none;
    transition: all 0.22s ease;
}

.tc-hero-social a:hover,
.tc-hero-social a:focus-visible {
    transform: translateY(-2px);
    border-color: #ffffff;
    background: rgba(255,255,255,0.08);
    color: #ffffff;
}

.tc-hero-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 0;
}

@media (max-width: 767px) {
    .tc-hero-social {
        gap: 12px;
        margin: 18px 0 22px;
    }

    .tc-hero-social a {
        width: 38px;
        height: 38px;
    }

    .tc-hero-social svg {
        width: 16px;
        height: 16px;
    }
}
.tc-hero-social .tc-social-instagram {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.tc-hero-social .tc-social-instagram-dot {
    fill: currentColor;
    stroke: none;
}

.tc-hero-social .tc-social-youtube {
    fill: currentColor;
    stroke: none;
}
/* ==================================================
   FOOTER — COMPACT DESKTOP OVERRIDE
   ================================================== */

@media (min-width: 1181px) {

    .tc-footer-inner {
        width: min(1500px, calc(100% - 80px));
        padding-top: 38px;
    }

    .tc-footer-grid {
        grid-template-columns:
            minmax(250px, 0.95fr)
            minmax(230px, 0.75fr)
            minmax(520px, 1.55fr);
        gap: 48px;
    }

    .tc-footer-column > h2 {
        margin-bottom: 20px;
        padding-bottom: 10px;
        font-size: 20px;
    }

    .tc-footer-menu > a {
        min-height: 51px;
    }

    .tc-footer-menu-icon {
        width: 23px;
        height: 23px;
    }

    .tc-footer-menu > a > span:nth-child(2) {
        font-size: 14px;
    }

    .tc-footer-contact-list {
        gap: 15px;
        padding-bottom: 20px;
    }

    .tc-footer-contact-list > a {
        grid-template-columns: 30px 1fr;
        gap: 10px;
        font-size: 14px;
        line-height: 1.45;
    }

    .tc-footer-contact-list > a > span:first-child {
        width: 23px;
        height: 23px;
    }

    .tc-footer-social {
        padding-top: 19px;
    }

    .tc-footer-social h3 {
        margin-bottom: 14px;
        font-size: 15px;
    }

    .tc-footer-social-links {
        gap: 10px;
    }

    .tc-footer-social-links > a {
        width: 42px;
        height: 42px;
    }

    .tc-footer-social-links > a > svg {
        width: 19px;
        height: 19px;
    }

    .tc-footer-social-links > a > span {
        font-size: 21px;
    }

    .tc-footer-location-list {
        gap: 14px;
    }

    .tc-footer-location-card {
        min-height: 176px;
    }

    .tc-footer-location-content {
        padding: 17px 22px;
    }

    .tc-footer-location-content h3 {
        margin-bottom: 7px;
        font-size: 16px;
    }

    .tc-footer-location-content h3 > span {
        font-size: 24px;
    }

    .tc-footer-location-type {
        margin-bottom: 8px;
        font-size: 12px;
    }

    .tc-footer-location-content address {
        margin-bottom: 13px;
        font-size: 13px;
        line-height: 1.4;
    }

    .tc-footer-map-button {
        min-height: 39px;
        padding: 8px 12px;
        font-size: 12px;
    }

    .tc-footer-location-visual > span {
        font-size: 20px;
    }

    .tc-footer-location-card--autolux .tc-footer-location-visual > span {
        font-size: 17px;
        padding: 11px 9px;
    }

    .tc-footer-location-visual small {
        margin-top: 5px;
        font-size: 8px;
    }

    .tc-footer-bottom {
        margin-top: 28px;
        padding: 20px 0 22px;
    }

    .tc-footer-bottom p {
        font-size: 12px;
    }

    .tc-footer-legal {
        gap: 17px;
    }

    .tc-footer-legal a {
        font-size: 11px;
    }

    .tc-footer-legal > span {
        height: 15px;
    }
}