html {
  overflow-x: hidden;
}

body.tcab-page {
  color: #111111;

  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: #0f0f0f;
  font-weight: 800;
  line-height: 1.2;
}

.tcab-menu-open {
  overflow: hidden;
}

.tcab-header {
  position: sticky;
  top: 0;
  z-index: 1040;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.tcab-header.is-scrolled {
  border-bottom-color: rgba(17, 17, 17, 0.08);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.06);
}

.tcab-header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 104px;
}

.tcab-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: #111111;
  flex-shrink: 0;
}

.tcab-brand:hover {
  color: #111111;
}

.tcab-brand-mark {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.25rem;
}

.tcab-brand-pin {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: linear-gradient(180deg, #ffc81c 0%, #f5b400 100%);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.tcab-brand-pin::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f5b400;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}

.tcab-brand-pin i {
  position: relative;
  z-index: 1;
  font-size: 0.9rem;
  color: #111111;
  background: #ffffff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
}

.tcab-brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
  text-transform: uppercase;
}

.tcab-brand-copy strong,
.tcab-brand-copy span {
  font-weight: 900;
  letter-spacing: 0.03em;
}

.tcab-brand-copy strong {
  font-size: clamp(1.85rem, 2.8vw, 2.8rem);
}

.tcab-brand-copy span {
  font-size: clamp(1.45rem, 2.2vw, 2.25rem);
  color: #f5b400;
}

.tcab-desktop-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.tcab-nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.tcab-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #111111;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.25s ease;
  letter-spacing: 0.2px;
}

.tcab-nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #f5b400;
  border-radius: 999px;
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.tcab-nav-link:hover,
.tcab-nav-link.is-active {
  color: #d29c00;
}

.tcab-nav-link:hover::after,
.tcab-nav-link.is-active::after {
  width: 54px;
}

.tcab-header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.tcab-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 42px;
  padding: 0.6rem 1.25rem;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffcb20 0%, #f5b400 100%);
  color: #111111;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 16px 28px rgba(245, 180, 0, 0.22);
  transition: all 0.25s ease;
}

.tcab-call-btn:hover {
  color: #111111;
  transform: translateY(-2px);
}

.tcab-call-mobile,
.tcab-menu-toggle {
  display: none;
}

.tcab-menu-toggle {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.08);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.tcab-menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  border-radius: 999px;
  background: #111111;
}

.tcab-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1080;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s ease;
}

.tcab-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.tcab-mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.32);
  backdrop-filter: blur(8px);
}

.tcab-mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(400px, 100%);
  height: 100%;
  background: #ffffff;
  padding: 1.2rem 1.1rem 1.4rem;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
}

.tcab-mobile-menu.is-open .tcab-mobile-panel {
  transform: translateX(0);
}

.tcab-mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.tcab-mobile-close {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  background: #fff8e5;
  color: #111111;
}

.tcab-mobile-body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding-top: 1.1rem;
}

.tcab-mobile-links {
  display: grid;
  gap: 0.8rem;
}

.tcab-mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  color: #111111;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.25s ease;
}

.tcab-mobile-link:hover,
.tcab-mobile-link.is-active {
  color: #111111;
  background: #fff9ea;
  border-color: rgba(245, 180, 0, 0.4);
}

.tcab-mobile-contact {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.tcab-mobile-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 20px;
  background: #fffaf0;
  color: #111111;
  text-decoration: none;
}

.tcab-mobile-contact-card:hover {
  color: #111111;
}

.tcab-mobile-contact-card.is-static {
  text-decoration: none;
}

.tcab-mobile-contact-card i {
  font-size: 1.1rem;
  color: #f5b400;
}

.tcab-mobile-contact-card strong,
.tcab-mobile-contact-card span {
  display: block;
}

.tcab-mobile-contact-card strong {
  font-size: 0.92rem;
}

.tcab-mobile-contact-card span {
  font-size: 0.92rem;
  color: #5c5c5c;
  line-height: 1.45;
}

.tcab-hero-section {
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(245, 180, 0, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fffdf8 100%);
}

.tcab-hero-shell {
  position: relative;
}

/* ── Desktop: hero row stretches columns to equal height ── */
.tcab-hero-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center; /* default: center on mobile */
}

@media (min-width: 992px) {
  .tcab-hero-row {
    min-height: 480px;
    align-items: stretch;
  }

  /* left column: vertically center the text copy */
  .tcab-hero-copy-col {
    display: flex;
    align-items: center;
  }
}

.tcab-hero-copy {
  max-width: 500px;
  padding: 3rem 0 2.5rem;
}

.tcab-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.95rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #fffaf0 0%, #fff4d8 100%);
  border: 1px solid rgba(245, 180, 0, 0.25);
  color: #2b2b2b;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
}

.tcab-hero-badge i {
  color: #f5b400;
  font-size: 0.85rem;
}

.tcab-hero-title {
  margin: 0 0 1.2rem;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #0f0f0f;
}

.tcab-hero-title span {
  display: block;
  color: #f5b400;
  font-style: italic;
}

.tcab-hero-text {
  margin: 0;
  max-width: 340px;
  font-size: 1rem;
  line-height: 1.65;
  color: #555555;
}

.tcab-hero-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  margin-top: 2rem;
}

.tcab-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-width: 0;
  width: auto;
  padding: 0.9rem 1.6rem;
  min-height: 52px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.tcab-hero-btn.is-primary {
  background: linear-gradient(180deg, #ffcb20 0%, #f5b400 100%);
  color: #111111;
  box-shadow: 0 16px 28px rgba(245, 180, 0, 0.24);
}

.tcab-hero-btn.is-secondary {
  background: #ffffff;
  border: 1.5px solid rgba(245, 180, 0, 0.55);
  color: #111111;
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.04);
}

.tcab-hero-btn:hover {
  color: #111111;
  transform: translateY(-2px);
}

.tcab-hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 100%;
  overflow: hidden;
}

/* Desktop image — fills column, bleeds slightly right */
.tcab-hero-img {
  display: block;
  width: 110%;
  max-width: none;
  height: auto;
  margin-bottom: -0.5rem;
}

.tcab-feature-box {
  margin-top: 0.95rem;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 24px;
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.04);
  overflow: hidden;
}

.tcab-feature-card {
  height: 100%;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.35rem 1.2rem;
  background: #ffffff;
}

.tcab-feature-box .col-6:nth-child(odd) .tcab-feature-card {
  border-right: 1px solid rgba(17, 17, 17, 0.08);
}

.tcab-feature-box .col-6:nth-child(-n+2) .tcab-feature-card {
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.tcab-feature-icon {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid rgba(17, 17, 17, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #333333;
}

.tcab-feature-icon i {
  font-size: 1.45rem;
}

.tcab-feature-content h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  line-height: 1.3;
  font-weight: 700;
}

.tcab-feature-content p {
  margin: 0;
  color: #5d5d5d;
  font-size: 0.97rem;
  line-height: 1.5;
}

/* ── Rating Card (desktop default) ── */
.tcab-rating-card {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  margin-top: 0.9rem;
  padding: 1.25rem 2.5rem;
  border: 1px solid rgba(17, 17, 17, 0.04);
  border-radius: 12px;
  background: #fdfcf7;
  box-shadow: none;
}

/* score block: icon + text + stars */
.tcab-rating-score {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.tcab-rating-score-text {
  display: flex;
  flex-direction: column;
}

.tcab-rating-score-top {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.tcab-rating-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffcb20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  flex: 0 0 auto;
}

.tcab-rating-icon i {
  font-size: 1.25rem;
}

.tcab-rating-score-top strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
  font-weight: 900;
}

.tcab-rating-score-text span {
  display: block;
  margin: 0.15rem 0 0;
  color: #7a7a7a;
  font-size: 0.85rem;
}

/* stars sit inline in score block (desktop) */
.tcab-rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #f5b400;
  font-size: 1.12rem;
  flex-shrink: 0;
}

.tcab-rating-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(17, 17, 17, 0.06);
}

/* trust block: avatars + text */
.tcab-rating-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1 1 auto;
}

.tcab-rating-avatars {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.tcab-rating-avatar {
  width: 42px;
  height: 42px;
  margin-left: -12px;
  border-radius: 50%;
  border: 2px solid #fdfcf7;
  object-fit: cover;
  background: linear-gradient(180deg, #8a8a8a 0%, #333333 100%);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
}

/* extra trust points (far right) */
.tcab-rating-extra {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.tcab-extra-point {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.tcab-extra-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(245, 180, 0, 0.15);
  color: #d29c00;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.tcab-extra-point span {
  font-size: 0.85rem;
  line-height: 1.35;
  font-weight: 800;
  color: #333333;
}

.tcab-rating-avatar:first-child {
  margin-left: 0;
}

.tcab-rating-avatar-plus {
  background: #ffcb20;
  color: #111111;
}

.tcab-rating-trust-copy {
  display: flex;
  flex-direction: column;
}

.tcab-rating-trust-copy p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #111111;
}

.tcab-rating-trust-copy small {
  margin-top: 0.15rem;
  color: #888888;
  font-size: 0.8rem;
}

/* ==========================================================================
   FOOTER (Exact Dark Theme Design)
   ========================================================================== */
.tcab-site-footer {
  background-color: #111111;
  background-image: 
   linear-gradient(90deg, rgba(17, 17, 17, 0.95) 0%, rgba(17, 17, 17, 0.85) 70%, rgb(17 17 17 / 89%) 100%), url(../images/slider/footer_bg.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  color: #c9c9c9;
  padding: 4.5rem 0 2rem;
  position: relative;
  border-radius: 0 !important;
  margin-top: 4rem;
}

.tcab-site-footer .container {
  max-width: 1320px;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .tcab-footer-col-brand {
    padding-right: 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
  }

  .tcab-footer-col-links {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .desktop-border-right {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
  }

  .tcab-footer-bot-mid {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
  }
}

@media (max-width: 991px) {
  body.tcab-page {
        background: #231818;

  }
  .tcab-site-footer {
    padding: 3rem 1.5rem 2rem;
  }
  
  .mobile-border-right {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .tcab-mobile-divider {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin: 1.5rem 0;
  }
  
  .tcab-footer-copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  
  .tcab-footer-copyright::before,
  .tcab-footer-copyright::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
  }
}

.tcab-footer-col-contact {
  padding-left: 0;
}
@media (min-width: 992px) {
  .tcab-footer-col-contact {
    padding-left: 2rem;
  }
}

.tcab-brand-footer {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  text-decoration: none;
}

.tcab-brand-footer .tcab-brand-copy {
  color: #ffffff;
}

.tcab-footer-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #c9c9c9;
}

.tcab-footer-social {
  display: flex;
  gap: 0.8rem;
}

.tcab-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  background: transparent;
  font-size: 0.9rem;
}

.tcab-footer-social a:hover {
  background: #ffcb20;
  border-color: #ffcb20;
  color: #111111;
}

.tcab-footer-title {
  color: #ffcb20;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
  position: relative;
  padding-bottom: 0.8rem;
  letter-spacing: 0.5px;
}

.tcab-footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 25px;
  height: 2px;
  background: #ffcb20;
}

.tcab-footer-links {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.tcab-footer-links a {
  color: #c9c9c9;
  text-decoration: none;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.3s ease;
  padding-right: 1.5rem;
}

.tcab-footer-links a i {
  font-size: 0.7rem;
  opacity: 0.5;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.tcab-footer-links a:hover {
  color: #ffffff;
}

.tcab-footer-links a:hover i {
  opacity: 1;
  transform: translateX(4px);
}

.tcab-footer-contact {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.tcab-footer-contact li {
  display: flex;
  gap: 0.8rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #c9c9c9;
}

.tcab-footer-contact i {
  font-size: 1rem;
  margin-top: 0.1rem;
  color: #ffcb20 !important;
}

.tcab-footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 2.5rem 0 1.5rem;
}

.tcab-footer-bottom {
  position: relative;
  z-index: 2;
  padding-top: 0.5rem;
}

.tcab-footer-trust {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.tcab-footer-trust i {
  font-size: 2rem;
  color: #ffcb20 !important;
}

.tcab-footer-trust .trust-text {
  display: flex;
  flex-direction: column;
}

.tcab-footer-trust strong {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
}

.tcab-footer-trust span {
  font-size: 0.8rem;
  color: #888888;
}

.tcab-footer-copyright {
  font-size: 0.85rem;
  color: #888888;
}

.tcab-footer-apps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.tcab-footer-apps strong {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
}

.tcab-footer-apps .app-buttons {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.app-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  padding: 0.4rem 0.8rem;
  color: #ffffff;
  text-decoration: none;
  background: transparent;
  transition: all 0.3s ease;
  min-width: 130px;
}

.app-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.app-btn i {
  font-size: 1.2rem;
}

.app-btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.app-btn-text small {
  font-size: 0.55rem;
  text-transform: uppercase;
  color: #aaaaaa;
}

.app-btn-text span {
  font-size: 0.8rem;
  font-weight: 700;
}

@media (max-width: 1199.98px) {
  .tcab-nav-list {
    gap: 1rem;
  }

  .tcab-nav-link {
    font-size: 0.98rem;
  }
}

@media (max-width: 991.98px) {
  .tcab-header-wrap {
    min-height: 88px;
  }

  .tcab-desktop-nav,
  .tcab-call-desktop {
    display: none;
  }

  .tcab-call-mobile,
  .tcab-menu-toggle {
    display: inline-flex;
  }

  .tcab-call-mobile {
    width: 58px;
    padding: 0;
  }

  .tcab-brand-copy strong {
    font-size: 1.8rem;
  }

  .tcab-brand-copy span {
    font-size: 1.45rem;
  }

  .tcab-hero-section {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .tcab-hero-copy {
    max-width: none;
    padding: 1rem 0;
    text-align: center;
  }

  .tcab-hero-actions {
    justify-content: center;
  }

  .tcab-feature-box .col-6:nth-child(odd) .tcab-feature-card {
    border-right: 1px solid rgba(17, 17, 17, 0.08);
  }

  .tcab-feature-box .col-6:nth-child(-n+2) .tcab-feature-card {
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  }

  .tcab-rating-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.15rem;
  }

  .tcab-rating-divider {
    width: 100%;
    height: 1px;
  }
}

@media (max-width: 767.98px) {
  .tcab-header-wrap {
    min-height: 82px;
    gap: 1rem;
  }

  .tcab-brand {
    gap: 0.65rem;
  }

  .tcab-brand-pin {
    width: 24px;
    height: 24px;
  }

  .tcab-brand-pin i {
    width: 16px;
    height: 16px;
    font-size: 0.72rem;
  }

  .tcab-brand-copy strong {
    font-size: 1.35rem;
  }

  .tcab-brand-copy span {
    font-size: 1.1rem;
  }

  .tcab-call-mobile,
  .tcab-menu-toggle {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  /* ── HERO: text column (col-6) + image column (col-6) side-by-side ── */
  .tcab-hero-section {
    padding-top: 0.75rem;
    padding-bottom: 1.2rem;
    overflow: visible;
  }

  .tcab-hero-copy {
    text-align: left;
    padding: 0.35rem 0.25rem 0 0;
  }

  .tcab-hero-badge {
    gap: 0.35rem;
    padding: 0.42rem 0.6rem;
    border-radius: 10px;
    font-size: 0.58rem;
    margin-bottom: 0.7rem;
  }

  .tcab-hero-title {
    margin-bottom: 0.5rem;
    font-size: clamp(1.55rem, 7vw, 2.1rem);
    line-height: 1.02;
    letter-spacing: -0.02em;
  }

  .tcab-hero-title span {
    font-style: italic;
  }

  .tcab-hero-text {
    max-width: none;
    font-size: 0.72rem;
    line-height: 1.55;
  }

  .tcab-hero-actions {
    flex-direction: column;
    gap: 0.6rem;
    align-items: flex-start;
    margin-top: 0.85rem;
  }

  .tcab-hero-btn {
    width: 100%;
    min-width: 0;
    min-height: 38px;
    padding: 0.55rem 0.75rem;
    border-radius: 11px;
    font-size: 0.73rem;
    gap: 0.4rem;
  }

  .tcab-hero-btn i {
    font-size: 0.8rem;
  }

  .tcab-hero-visual {
    margin-top: 0;
    padding-left: 0.25rem;
    align-items: center;
    height: auto;
  }

  .tcab-hero-visual img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-bottom: 0;
    object-fit: contain;
  }

  /* ── FEATURE GRID ── */
  .tcab-feature-box {
    margin-top: 0.6rem;
    border-radius: 16px;
  }

  .tcab-feature-box .col-6:nth-child(odd) .tcab-feature-card {
    border-right: 1px solid rgba(17, 17, 17, 0.08);
  }

  .tcab-feature-box .col-6:nth-child(-n+2) .tcab-feature-card {
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  }

  .tcab-feature-card {
    padding: 0.9rem 0.65rem;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .tcab-feature-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }

  .tcab-feature-icon i {
    font-size: 1.05rem;
  }

  .tcab-feature-content h3 {
    font-size: 0.78rem;
    margin-bottom: 0.14rem;
  }

  .tcab-feature-content p {
    font-size: 0.67rem;
    line-height: 1.42;
  }

  /* ── RATING BAR (mobile) ── */
  .tcab-rating-card {
    flex-direction: row;
    align-items: center;
    padding: 0.75rem 0.85rem;
    gap: 0.65rem;
    border-radius: 16px;
    margin-top: 0.6rem;
  }

  /* hide stars from score section on mobile; show them in trust section */
  .tcab-rating-score .tcab-rating-stars {
    display: none;
  }

  .tcab-rating-score-text strong {
    font-size: 1.05rem;
  }

  .tcab-rating-score-text span {
    font-size: 0.67rem;
    line-height: 1.35;
  }

  .tcab-rating-trust p {
    font-size: 0.67rem;
    line-height: 1.35;
    font-weight: 600;
  }

  .tcab-rating-icon {
    width: 38px;
    height: 38px;
  }

  .tcab-rating-icon i {
    font-size: 0.95rem;
  }

  /* show stars inside trust section on mobile */
  .tcab-rating-trust {
    gap: 0.35rem;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .tcab-rating-trust-copy {
    display: flex;
    flex-direction: column;
  }

  /* mini stars before trust text on mobile */
  .tcab-rating-trust-copy::before {
    content: '★ ★ ★ ★ ★';
    display: block;
    color: #f5b400;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.1rem;
  }

  .tcab-rating-avatar {
    display: none;
  }

  .tcab-rating-avatars {
    display: none;
  }

  .tcab-rating-trust-copy small {
    display: none;
  }

  .tcab-rating-divider {
    width: 1px;
    height: auto;
    align-self: stretch;
  }

  .tcab-rating-trust-copy {
    min-width: 0;
  }
}

@media (min-width: 1200px) {
  .tcab-feature-box .col-xl-3 .tcab-feature-card {
    border-bottom: 0;
  }

  .tcab-feature-box .col-xl-3:not(:last-child) .tcab-feature-card {
    border-right: 1px solid rgba(17, 17, 17, 0.08);
  }

  .tcab-feature-box .col-xl-3:last-child .tcab-feature-card {
    border-right: 0;
  }
}

/* ==========================================================================
   REVIEWS SECTION
   ========================================================================== */
.tcab-reviews-section {
  padding: 6rem 0;
  background-color: #fafafa;
  position: relative;
  overflow: hidden;
}

/* Background skyline - faint */
.tcab-reviews-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('../images/slider/city-skyline-faint.png') no-repeat right bottom;
  background-size: contain;
  opacity: 0.1;
  pointer-events: none;
}

.tcab-section-subtitle {
  color: #f5b400;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 0.75rem;
}

.tcab-section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #111;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.tcab-section-desc {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.tcab-review-score {
  font-size: 5rem;
  font-weight: 800;
  color: #f5b400;
  line-height: 1;
}

.tcab-review-bars .progress {
  background-color: #e9ecef;
  border-radius: 10px;
}
.tcab-review-bars .progress-bar {
  border-radius: 10px;
}
.tcab-review-bars .bi-star-fill {
  font-size: 0.9rem;
}

.tcab-recommend-card {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.tcab-recommend-icon {
  width: 70px;
  height: 70px;
  background: #fff8e1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #111;
}

.tcab-testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
  position: relative;
  height: 100%;
  transition: transform 0.3s ease;
}

.tcab-testimonial-card:hover {
  transform: translateY(-5px);
}

.tcab-quote-icon {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 2.2rem;
  color: #f5b400;
  line-height: 1;
}

.tcab-testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.tcab-testimonial-stars {
  font-size: 0.9rem;
}

.tcab-testimonial-text {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 1rem;
  margin-bottom: 0;
}

.tcab-slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #fff8e1;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.tcab-slider-btn:hover {
  background: #f5b400;
  color: #fff;
}

.tcab-slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tcab-slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e0e0e0;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tcab-slider-dots .dot.active {
  background: #f5b400;
  width: 20px;
  border-radius: 10px;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.tcab-services-section {
  padding: 3rem 0;
  background-color: #ffffff;
  position: relative;
}

/* Background cityscape on left */
.tcab-services-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: url('../images/slider/city-skyline-faint.png') no-repeat left top;
  background-size: contain;
  opacity: 0.1;
  pointer-events: none;
  z-index: 1;
}

.tcab-services-header .tcab-section-subtitle::before,
.tcab-services-header .tcab-section-subtitle::after {
  content: "";
  height: 2px;
  width: 30px;
  background-color: #f5b400;
  display: inline-block;
}

.tcab-services-header .tcab-section-title {
  font-size: 3rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 0.5rem;
}

.tcab-services-header .tcab-section-desc {
  font-size: 1.15rem;
  color: #555;
}

.tcab-service-car-img {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 350px;
  z-index: 2;
}

.tcab-service-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.02);
  height: 100%;
  display: flex;
  gap: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 3;
}

.tcab-service-card:hover {
  box-shadow: 0 15px 50px rgba(0,0,0,0.08);
  border-color: #fff;
  transform: translateY(-5px);
}

.tcab-service-icon-box {
  position: relative;
  width: 65px;
  height: 65px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #111;
}

.tcab-service-icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff8e1;
  border-radius: 50%;
  z-index: -1;
}

/* Circle accent */
.tcab-service-icon-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 18px;
  height: 18px;
  background-color: #f5b400;
  border-radius: 50%;
  border: 3px solid #fff;
}

.tcab-service-content h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 0.8rem;
}

.tcab-service-content p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.tcab-service-link {
  color: #111;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.tcab-service-link i {
  color: #f5b400;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.tcab-service-link:hover {
  color: #f5b400;
}

.tcab-service-link:hover i {
  transform: translateX(5px);
}

/* Trust Banner in Services */
.tcab-service-trust-banner {
  background-color: #111;
  border-radius: 20px;
  padding: 2rem 3rem;
  position: relative;
  overflow: hidden;
  z-index: 3;
}

.tcab-service-trust-banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('../images/slider/footer_bg.png') no-repeat right center;
  background-size: cover;
  opacity: 0.6;
  pointer-events: none;
}

.tcab-trust-car-img {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  max-width: 280px;
  z-index: 2;
}

@media (max-width: 991px) {
  .tcab-services-header .tcab-section-subtitle {
    justify-content: center;
  }
  .tcab-service-card {
    flex-direction: row;
    align-items: center;
    padding: 1.5rem;
    gap: 1rem;
  }
  .tcab-service-icon-box {
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
  }
  .tcab-service-icon-box::after {
    width: 14px;
    height: 14px;
    border-width: 2px;
  }
  .tcab-service-content {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 1rem;
    align-items: center;
    width: 100%;
  }
  .tcab-service-content h4 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
  }
  .tcab-service-content p {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    font-size: 0.85rem;
    margin-bottom: 0;
    line-height: 1.4;
  }
  .tcab-service-link {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    width: 35px;
    height: 35px;
    background-color: #f5b400;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: 0; /* Hide text */
  }
  .tcab-service-link i {
    font-size: 1rem;
    color: #111;
    transform: none !important;
  }
  .tcab-service-trust-banner {
    padding: 2rem 1.5rem;
    padding-bottom: 8rem; /* space for the car */
  }
  .tcab-trust-car-img {
    bottom: -1rem;
    right: 50%;
    transform: translateX(50%);
    max-width: 250px;
  }
  .tcab-trust-stats-row {
    margin-top: 1.5rem;
  }
}

/* ==========================================================================
   DOWNLOAD APP SECTION
   ========================================================================== */
.tcab-download-app-section {
  position: relative;
  width: 100%;
  min-height: 650px;
  background-color: #111;
  background-image: url('../images/home/download_desktop.png');
  background-size: cover;
  background-position: center;
  padding: 6rem 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.tcab-download-container {
  z-index: 2;
}

.tcab-download-content {
  color: #fff;
  z-index: 2;
}
.tcab-download-line {
  display: block;
  width: 50px;
  height: 4px;
  background-color: #f5b400;
  margin-bottom: 1.2rem;
}
.tcab-download-title {
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}
.tcab-download-desc {
  font-size: 1.2rem;
  color: #ddd;
}
.tcab-download-features p {
  font-size: 0.85rem;
  margin-top: 1rem;
  line-height: 1.3;
  color: #ddd;
}
.tcab-dl-icon-box {
  width: 50px;
  height: 50px;
  border: 1px solid #f5b400;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.2rem;
  color: #f5b400;
  position: relative;
}
.tcab-dl-divider {
  position: absolute;
  left: -15px;
  top: 25px;
  transform: translateY(-50%);
  height: 40px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}

.tcab-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  padding: 10px 24px;
  color: #fff;
  text-decoration: none;
  background-color: transparent;
  transition: all 0.3s ease;
}
.tcab-app-btn:hover {
  background-color: #f5b400;
  border-color: #f5b400;
  color: #111;
}
.tcab-app-btn:hover i {
  color: #111;
}
.tcab-app-btn i {
  font-size: 2rem;
  color: #fff;
  transition: all 0.3s ease;
}
.tcab-app-btn img {
  max-height: 30px;
  display: block;
}
.tcab-app-btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.tcab-app-btn-text span {
  font-size: 0.7rem;
  margin-bottom: 3px;
}
.tcab-app-btn-text strong {
  font-size: 1.3rem;
  font-weight: 700;
}
@media (max-width: 960px) {

     .tcab-download-container {
    min-height: 700px;
  }
  .tcab-download-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  .tcab-download-line-thin {
    display: block;
    width: 50px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.4);
    margin: 1rem 0 1.5rem 0;
  }
  .tcab-download-content {
    text-align: left;
    position: static;
  }
  .tcab-download-line {
    margin: 0 0 1rem 0;
  }
  .tcab-download-features {
    justify-content: space-between;
  }
  .tcab-download-features p {
    font-size: 0.55rem;
    margin-top: 0.5rem;
    line-height: 1.2;
  }
  .tcab-dl-icon-box {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  .tcab-dl-divider {
    display: block !important;
    left: 0;
    height: 25px;
    top: 17px;
  }
  .tcab-download-buttons {
    justify-content: center;
    flex-wrap: nowrap;
    position: absolute;
    /* bottom: 3rem; */
    left: 0;
    right: 0;
    width: 100%;
    padding-bottom: 0;
    gap: 0.5rem !important;
    z-index: 5;
  }
  .tcab-app-btn {
    padding: 6px 10px;
    gap: 6px;
  }
  .tcab-app-btn i {
    font-size: 1.3rem;
  }
  .tcab-app-btn-text span {
    font-size: 0.5rem;
  }
  .tcab-app-btn-text strong {
    font-size: 0.85rem;
  }
}
@media (max-width: 450px) {
  .tcab-download-app-section {
    padding: 1.5rem 0 30rem 0;
    min-height: 800px;
    background-image: url('../images/home/download_mobile.png');
    background-position: bottom center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-color: #111;
    display: block; 
  }

}
@media only screen and (min-width:480px) and (max-width:600px) {
      .tcab-download-app-section {
    padding: 1.5rem 0 50rem 0;
    min-height: 800px;
    background-image: url('../images/home/download_mobile.png');
    background-position: bottom center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-color: #111;
    display: block; 
  }}
@media only screen and (min-width:600px) and (max-width:700px) {
      .tcab-download-app-section {
    padding: 1.5rem 0 60rem 0;
    min-height: 800px;
    background-image: url('../images/home/download_mobile.png');
    background-position: bottom center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-color: #111;
    display: block; 
  }
}
@media only screen and (min-width:600px) and (max-width:780px) {
      .tcab-download-app-section {
    padding: 1.5rem 0 70rem 0;
    min-height: 800px;
    background-image: url('../images/home/download_mobile.png');
    background-position: bottom center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-color: #111;
    display: block; 
  }
}
@media only screen and (min-width:780px) and (max-width:960px) {
      .tcab-download-app-section {
    padding: 1.5rem 0 90rem 0;
    min-height: 800px;
    background-image: url('../images/home/download_mobile.png');
    background-position: bottom center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-color: #111;
    display: block; 
  }
}

/* ==========================================================================
   HERO V2 SECTION (Premium Design)
   ========================================================================== */

.tcab-hero-v2 {
  position: relative;
  width: 100%;
  min-height: auto;
  padding-top: 4rem;
  padding-bottom: 6rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}
.tcab-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.tcab-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 767px) {
  .tcab-hero-bg img {
    object-position: center bottom;
  }
}
.tcab-hero-overlay-v2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 25%, rgba(255, 255, 255, 0) 40%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
}
@media (min-width: 768px) {
  .tcab-hero-overlay-v2 {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.2) 80%, rgba(255, 255, 255, 0) 100%);
  }
}
@media (max-width: 767px) {
  .tcab-hero-v2 {
    min-height: 85vh;
    padding-bottom: 4rem;
    align-items: flex-start;
  }
}
@media (min-width: 992px) {
  .tcab-hero-v2 {
    min-height: auto;
    padding-top: 4.5rem;
    padding-bottom: 7rem;
  }
}

.tcab-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.tcab-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center; /* Keep cars in view */
}

.tcab-hero-content-v2 {
  position: relative;
  z-index: 2;
}

.tcab-hero-badge-v2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 252, 242, 0.9);
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(245, 180, 0, 0.3);
  font-size: 0.8rem;
  font-weight: 700;
  color: #333;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.tcab-hero-title-v2 {
  font-size: clamp(1.8rem, 7vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: #111;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.05);
  word-break: break-word;
}
@media (min-width: 576px) {
  .tcab-hero-title-v2 { font-size: clamp(2rem, 5vw, 3rem); }
}
@media (min-width: 768px) {
  .tcab-hero-title-v2 { font-size: 3.5rem; }
}
@media (min-width: 992px) {
  .tcab-hero-title-v2 { font-size: 4.2rem; margin-bottom: 0.2rem; }
}

.tcab-hero-line-v2 {
  width: 50px;
  height: 4px;
  background-color: #f5b400;
  border-radius: 3px;
  margin-bottom: 1.2rem;
}

.tcab-hero-desc-v2 {
  font-size: 0.88rem;
  color: #111;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  font-weight: 600;
  max-width: 100%;
  text-shadow: 0 1px 15px rgba(255, 255, 255, 1), 0 1px 5px rgba(255, 255, 255, 0.8);
}
@media (max-width: 575px) {
  .tcab-hero-title-v2 { font-size: clamp(1.7rem, 6.5vw, 2rem); margin-bottom: 0.3rem; text-shadow: 0 1px 3px rgba(255,255,255,0.8); }
  .tcab-hero-line-v2 { margin-bottom: 0.8rem; }
  .tcab-hero-desc-v2 { margin-bottom: 1.2rem; font-size: 0.82rem; line-height: 1.45; color: #222; font-weight: 600; }
  .tcab-hero-badge-v2 { margin-bottom: 0.8rem; padding: 5px 10px; font-size: 0.65rem; letter-spacing: 0.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
}
@media (max-width: 767px) {
  .tcab-hero-desc-v2 { margin-bottom: 1.2rem; font-size: 0.85rem; line-height: 1.4; color: #222; font-weight: 600; }
}
@media (min-width: 768px) {
  .tcab-hero-desc-v2 { font-size: 1.15rem; line-height: 1.6; }
}
@media (min-width: 992px) {
  .tcab-hero-desc-v2 { font-size: 1.1rem; line-height: 1.5; margin-bottom: 1.5rem; }
  .tcab-hero-line-v2 { margin-bottom: 1rem; }
  .tcab-hero-badge-v2 { margin-bottom: 1rem; }
}

.tcab-hero-btns-v2 {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  max-width: 100%;
  width: 100%;
}
@media (min-width: 576px) {
  .tcab-hero-btns-v2 {
    gap: 1rem;
  }
}

.btn-hero-primary, .btn-hero-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  flex: 1;
  width: auto;
  box-sizing: border-box;
  text-align: center;
}
@media (min-width: 576px) {
  .btn-hero-primary, .btn-hero-secondary {
    padding: 13px 24px;
    font-size: 1rem;
    flex: 0 0 auto;
  }
}
.btn-hero-text-left {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-hero-primary {
  background-color: #f5b400;
  color: #111;
  border: 1px solid #f5b400;
  box-shadow: 0 4px 15px rgba(245, 180, 0, 0.2);
}
.btn-hero-primary i.fa-car { font-size: 1.1rem; }

.btn-hero-secondary {
  background-color: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #111;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.btn-hero-secondary i { font-size: 1.1rem; color: #111; }

.chevron-icon {
  margin-left: 8px;
  font-size: 0.85rem;
}
@media (min-width: 576px) {
  .chevron-icon {
    margin-left: 15px;
  }
}

.btn-hero-primary:hover { background-color: #e0a300; border-color: #e0a300; color: #111; }
.btn-hero-secondary:hover { background-color: rgba(17, 17, 17, 0.05); border-color: #111; color: #111; }

/* -- Floating Features & Bottom Banners -- */
.tcab-hero-bottom-wrappers {
  margin-top: -60px;
  position: relative;
  z-index: 10;
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .tcab-hero-bottom-wrappers { margin-top: -30px; padding-bottom: 1.5rem; }
}


.tcab-features-box-v2 {
  background-color: #fff;
  border-radius: 20px;
  padding: 0.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
@media (max-width: 767px) {
  .tcab-features-box-v2 { padding: 1rem; border-radius: 16px; }
}
.tcab-feat-item-v2 {
  display: flex;
  align-items: center;
  gap: 15px;
  height: 100%;
}
.tcab-feat-icon-v2 {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #fcf1d5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tcab-feat-icon-v2 i {
  font-size: 1.4rem;
  color: #111;
}

.tcab-feat-text-v2 {
  display: flex;
  flex-direction: column;
}
.tcab-feat-text-v2 h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.3rem;
  line-height: 1.2;
}
.tcab-feat-text-v2 p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .tcab-feat-item-v2 { gap: 8px; }
  .tcab-feat-icon-v2 { width: 36px; height: 36px; }
  .tcab-feat-icon-v2 i { font-size: 1rem; }
  .tcab-feat-text-v2 h4 { font-size: 0.85rem; margin-bottom: 0.1rem; }
  .tcab-feat-text-v2 p { font-size: 0.65rem; line-height: 1.3; }
}

/* Feature Grid Borders */
.tcab-feat-cell {
  padding: 0.5rem 1rem;
}
@media (max-width: 767px) {
  .tcab-feat-cell { padding: 1.2rem 1rem; }
  .tcab-feat-cell-1 { border-right: 1px solid #eee; border-bottom: 1px solid #eee; }
  .tcab-feat-cell-2 { border-bottom: 1px solid #eee; }
  .tcab-feat-cell-3 { border-right: 1px solid #eee; }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .tcab-feat-cell-1, .tcab-feat-cell-3 { border-right: 1px solid #eee; border-bottom: 1px solid #eee; }
  .tcab-feat-cell-2 { border-bottom: 1px solid #eee; }
}
@media (min-width: 1200px) {
  .tcab-feat-cell-1, .tcab-feat-cell-2, .tcab-feat-cell-3 { border-right: 1px solid #eee; border-bottom: none; }
  .tcab-feat-cell-4 { border-bottom: none; }
}

/* -- Stats Box -- */
.tcab-stats-box-v2 {
  background-color: #1a1a1a;
  border-radius: 20px;
  padding: 1rem 0.5rem;
}
@media (max-width: 767px) {
  .tcab-stats-box-v2 { padding: 0.6rem 0.2rem; border-radius: 12px; }
}
@media (min-width: 768px) {
  .tcab-stats-box-v2 { padding: 1.5rem 2rem; }
}

.tcab-stat-item-v2 {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
@media (max-width: 767px) {
  .tcab-stat-item-v2 { gap: 5px; }
}

.tcab-stat-icon-v2 {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #f5b400;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tcab-stat-icon-v2 i {
  font-size: 1.1rem;
  color: #111;
}

.tcab-stat-text-v2 {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.tcab-stat-text-v2 strong {
  font-size: 1.2rem;
  font-weight: 700;
  color: #f5b400;
  line-height: 1.1;
}
.tcab-stat-text-v2 span {
  font-size: 0.75rem;
  color: #ddd;
  line-height: 1.2;
}

.tcab-stat-border {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

/* Premium text and border sizing for 2x2 mobile layout */
@media (max-width: 767px) {
  .tcab-stat-cell:nth-child(2n+1) {
    border-left: none !important;
  }
  .tcab-stat-cell:nth-child(2n) {
    border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
  }
  .tcab-stat-icon-v2 { width: 36px; height: 36px; }
  .tcab-stat-icon-v2 i { font-size: 0.9rem; }
  .tcab-stat-text-v2 strong { font-size: 0.95rem; font-weight: 800; }
  .tcab-stat-text-v2 span { font-size: 0.65rem; letter-spacing: -0.1px; line-height: 1.2; }
}

/* -- Premium Box (Mobile vs Desktop) -- */
.tcab-premium-box-mobile {
  background-color: #1a1a1a;
  border-radius: 20px;
  padding: 1.5rem 1rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 180, 0, 0.3);
}
@media (max-width: 767px) {
  .tcab-premium-box-mobile { padding: 1rem 0.8rem; border-radius: 12px; }
  .tcab-premium-text h3 { font-size: 0.95rem; }
  .tcab-premium-text p { font-size: 0.65rem; }
  .tcab-premium-badge-html { width: 70px; height: 70px; }
  .tcab-premium-badge-html .crown-icon { font-size: 1rem; }
  .tcab-badge-ribbon { font-size: 0.45rem; padding: 2px 6px; }
}

.tcab-premium-badge {
  flex-shrink: 0;
}
.tcab-premium-badge-html {
  border: 2px solid #f5b400;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #111;
}
.tcab-premium-badge-html .crown-icon { font-size: 1.2rem; }
.tcab-premium-badge-html .badge-title { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.5px; }
.tcab-premium-badge-html .badge-sub { font-size: 0.5rem; }

.tcab-badge-ribbon {
  position: absolute;
  bottom: -10px;
  background-color: #f5b400;
  color: #111;
  font-size: 0.5rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.tcab-premium-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}
.tcab-premium-text p {
  font-size: 0.75rem;
  color: #bbb;
  margin: 0;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .tcab-premium-box-mobile { padding: 2rem 3rem; }
  .tcab-premium-text h3 { font-size: 1.7rem; }
  .tcab-premium-text p { font-size: 0.95rem; line-height: 1.5; }
  .tcab-premium-badge-html { width: 110px; height: 110px; }
  .tcab-premium-badge-html .crown-icon { font-size: 1.5rem; }
  .tcab-premium-badge-html .badge-title { font-size: 0.8rem; letter-spacing: 1px; }
  .tcab-premium-badge-html .badge-sub { font-size: 0.65rem; }
  .tcab-badge-ribbon { font-size: 0.6rem; padding: 4px 12px; bottom: -12px; }
}

.tcab-premium-badge-desktop {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}
.tcab-premium-badge-desktop .tcab-premium-badge-html {
  width: 140px;
  height: 140px;
  background-color: #111;
  border: 2px solid #f5b400;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.tcab-premium-badge-desktop .tcab-badge-ribbon {
  bottom: -15px;
  padding: 5px 15px;
  font-size: 0.75rem;
}

/* =========================================================================
   ANTIGRAVITY PREMIUM ANIMATIONS & EFFECTS
   ========================================================================= */

/* Floating micro-animation */
@keyframes antigravity-float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}
.animate-float {
  animation: antigravity-float 6s ease-in-out infinite;
}

/* Glassmorphism utility */
.glass-panel {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Dark Glassmorphism for Download Widget */
.glass-panel-dark {
  background: rgba(17, 17, 17, 0.6) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
}
.glass-panel-dark:hover {
  border-color: rgba(244, 180, 0, 0.5) !important;
  box-shadow: 0 20px 40px rgba(244, 180, 0, 0.15) !important;
  transform: translateY(-5px);
}

/* Glowing mesh/blob for hero section */
@keyframes mesh-rotate {
  0% { transform: rotate(0deg) scale(1); }
  33% { transform: rotate(120deg) scale(1.1); }
  66% { transform: rotate(240deg) scale(0.9); }
  100% { transform: rotate(360deg) scale(1); }
}
.mesh-glow-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244,180,0,0.15) 0%, rgba(255,0,128,0.05) 50%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
  animation: mesh-rotate 20s infinite linear;
  pointer-events: none;
  z-index: 0;
}

/* Magnetic Button Glow Hover */
.btn-glow-hover {
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.btn-glow-hover:hover {
  box-shadow: 0 0 20px rgba(244, 180, 0, 0.5);
  transform: translateY(-2px);
}