/* ===== TFBOORG LANDING PAGE ===== */

/* Global base */
html body {
  font-family: 'Rubik', sans-serif;
  background: #000000;
  color: white;
  margin: 0;
}

/* Banner */
.tfboorg-banner-wrapper {
  position: relative;
  background-color: #000000;
}

.tfboorg-banner-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 100%;
  letter-spacing: 0.5em;
  background-color: rgba(63, 68, 71, 0.7);
  z-index: 2;
}

.tfboorg-banner-overlay {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.tfboorg-logo {
  width: 153px;
  height: 64px;
  object-fit: contain;
}

.tfboorg-start-btn {
  position: relative;
  width: 70vw;
  display: block;
  text-decoration: none;
}

.tfboorg-start-btn__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.tfboorg-start-btn__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
  font-weight: 700;
  font-size: 2.93vw;
  line-height: 100%;
  letter-spacing: 0px;
  white-space: nowrap;
  text-shadow: 0px 0px 3.73px #000000CC;
}

/* Customer Service */
.tfboorg-cs-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.tfboorg-cs-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.tfboorg-cs-title {
  font-size: 10px;
  line-height: 100%;
  color: #B2B2B2;
  text-align: left;
  width: 100%;
}

.tfboorg-cs-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.tfboorg-cs-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.tfboorg-cs-divider {
  width: 1px;
  height: 40px;
  background-color: #FFFFFF;
  border: 1px solid #FFFFFF;
}

/* Yellow Divider */
.tfboorg-divider,
.tfboorg-divider--lg {
  border: 2px solid #FABB2E;
}

.tfboorg-divider {
  margin: 20px 0;
}

.tfboorg-divider--lg {
  margin: 50px 0;
}

/* Info Sections */
.tfboorg-info-section {
  padding: 20px;
  background-color: #000000;
}

.tfboorg-info-row {
  display: flex;
  flex-direction: column;
}

.tfboorg-info-body {
  flex: 1;
}

.tfboorg-info-img {
  display: none;
}

.tfboorg-info-section-divider {
  display: none;
}

.tfboorg-info-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.tfboorg-info-number {
  font-size: 50px;
  line-height: 100%;
  flex-shrink: 0;
}

.tfboorg-info-title {
  font-size: 18px;
  line-height: 100%;
  text-align: justify;
  margin: 0;
}

.tfboorg-info-content {
  font-size: 11px;
  line-height: 100%;
  text-align: justify;
  margin: 0;
}

/* Footer */
.tfboorg-footer-logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background-color: #000000;
}

.tfboorg-footer-tagline {
  display: none;
}

.tfboorg-footer-social {
  display: none;
}

.tfboorg-footer-social-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.tfboorg-footer-list-img {
  width: 141px;
  height: 141px;
  object-fit: contain;
}

.tfboorg-footer-logo {
  width: 108px;
  height: 45px;
  object-fit: contain;
}

.tfboorg-copyright {
  text-align: center;
  font-size: 11px;
  padding: 20px 0;
  background-color: #000000;
}

/* ===== DESKTOP OVERRIDES ===== */
@media (min-width: 769px) {
  /* Banner text */
  .tfboorg-banner-text {
    font-family: 'Rubik', sans-serif;
    font-size: 35px;
    background-color: transparent;
    top: 86px;
    height: auto;
  }

  /* Logo & button — fluid scaling */
  .tfboorg-logo {
    width: 20vw;
    height: auto;
  }

  .tfboorg-start-btn {
    width: 37vw;
    height: auto;
  }

  .tfboorg-start-btn__img {
    width: 100%;
    height: auto;
    display: block;
  }

  .tfboorg-start-btn__text {
    font-size: 1.4vw;
    transform: translate(-50%, -80%);
  }

  /* Fade effect at bottom of banner */
  .tfboorg-banner-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 350px;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.6) 50%, #000000 100%);
    pointer-events: none;
    z-index: 1;
  }

  /* Customer service — overlaps banner bottom */
  .tfboorg-cs-box {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    z-index: 10;
    background-color: transparent;
  }

  /* Hide yellow dividers */
  .tfboorg-divider,
  .tfboorg-divider--lg {
    display: none;
  }

  /* Info sections */
  .tfboorg-info-section {
    padding: 0 137px 20px;
  }

  .tfboorg-info-row {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 100px;
  }

  .tfboorg-info-body {
    display: flex;
    flex-direction: column;
  }

  .tfboorg-info-header {
    flex-direction: row;
    align-items: flex-end;
  }

  .tfboorg-info-number {
    font-size: 250px;
    flex-shrink: 0;
    align-self: flex-end;
    line-height: 0.8;
    display: flex;
    align-items: flex-end;
  }

  .tfboorg-info-title {
    font-size: 38px;
    min-height: 45px;
    width: 831px;
    align-self: flex-end;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .tfboorg-info-content {
    font-size: 20px;
    width: 978px;
  }

  .tfboorg-info-img {
    display: block;
    flex-shrink: 0;
    width: 386px;
    height: 386px;
    object-fit: contain;
  }

  .tfboorg-info-section-divider {
    display: block;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 50px;
  }

  /* Footer */
  .tfboorg-footer-list-img {
    display: none;
  }

  .tfboorg-footer-logo {
    width: 21.2vw;
    height: auto;
  }

  .tfboorg-footer-tagline {
    display: block;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 4px;
    text-align: center;
  }

  .tfboorg-footer-social {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }

  .tfboorg-footer-social-icon {
    width: 36px;
    height: 36px;
  }

  .tfboorg-footer-logo-section {
    gap: 24px;
    padding: 60px 0 20px;
  }
}

/* ===== MEDIUM SCREEN OVERRIDES (must come AFTER desktop block to override) ===== */
@media only screen and (max-width: 1440px) {
  .tfboorg-banner-text {
    font-size: 28px;
    top: 60px;
  }

  .tfboorg-cs-box {
    bottom: 60px;
  }

  .tfboorg-info-section {
    padding: 0 100px 20px;
  }

  .tfboorg-info-number {
    font-size: 200px;
  }

  .tfboorg-info-title {
    font-size: 32px;
    width: 680px;
  }

  .tfboorg-info-content {
    font-size: 18px;
    width: 800px;
  }

  .tfboorg-info-img {
    width: 340px;
    height: 340px;
  }

  .tfboorg-info-row {
    gap: 80px;
  }
}

@media only screen and (max-width: 1280px) {
  .tfboorg-banner-text {
    font-size: 24px;
    top: 50px;
  }

  .tfboorg-cs-box {
    bottom: 50px;
  }

  .tfboorg-info-section {
    padding: 0 60px 20px;
  }

  .tfboorg-info-number {
    font-size: 160px;
  }

  .tfboorg-info-title {
    font-size: 26px;
    width: 520px;
  }

  .tfboorg-info-content {
    font-size: 16px;
    width: 640px;
  }

  .tfboorg-info-img {
    width: 280px;
    height: 280px;
  }

  .tfboorg-info-row {
    gap: 60px;
  }
}

@media only screen and (max-width: 1024px) {
  .tfboorg-banner-text {
    font-size: 18px;
    top: 30px;
  }

  .tfboorg-banner-overlay {
    gap: 8px;
    top: 44%;
  }

  .tfboorg-cs-box {
    bottom: 20px;
  }

  .tfboorg-info-section {
    padding: 0 40px 20px;
  }

  .tfboorg-info-number {
    font-size: 120px;
  }

  .tfboorg-info-title {
    font-size: 22px;
    width: auto;
  }

  .tfboorg-info-content {
    font-size: 14px;
    width: auto;
  }

  .tfboorg-info-img {
    width: 220px;
    height: 220px;
  }

  .tfboorg-info-row {
    gap: 40px;
  }
}
