.tlr-section {
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  scroll-margin-top: 100px;
}

.tlr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.tlr-header {
  text-align: center;
  max-width: none;
  margin: 0 auto 64px;
}

.tlr-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  margin: 16px 0 24px;
  line-height: 1.1;
  color: var(--text-dark);
  display: block;
  letter-spacing: -1.5px;
}

.tlr-title span {
  display: inline-block;
}

@media (max-width: 800px) {
  .tlr-title {
    font-size: 32px;
  }
  .tlr-title span {
    display: block;
  }
}

.tlr-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 850px;
  margin: 0 auto;
}

.tlr-items {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.tlr-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.tlr-icon {
  width: 48px;
  height: 48px;
  background: #f8fafc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.tlr-text h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.tlr-text p {
  color: var(--text-muted);
  line-height: 1.6;
}

.tlr-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tlr-circle-container {
  position: relative;
  width: 400px;
  height: 400px;
  /* Fixed container for stable orientation */
}

.tlr-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: white;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  z-index: 100;
  padding: 15px;
}

.tlr-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tlr-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 105px; /* Increased by ~1/3 from 80px */
  height: 105px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px; /* Proportional increase */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  will-change: transform;
}

/* Individual Orbital Paths for Perfect Equilateral Symmetry */
.tlr-circle-1 {
  animation: tlr-orbit-1 40s linear infinite;
}

.tlr-circle-2 {
  animation: tlr-orbit-2 40s linear infinite;
}

.tlr-circle-3 {
  animation: tlr-orbit-3 40s linear infinite;
}

.tlr-circle:hover {
  transform: scale(1.1) !important;
  color: var(--primary);
  border-color: var(--primary);
  z-index: 150;
}

@keyframes tlr-orbit-1 {
  0% { transform: translate(-50%, -50%) rotate(0deg) translateY(-145px) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg) translateY(-145px) rotate(-360deg); }
}

@keyframes tlr-orbit-2 {
  0% { transform: translate(-50%, -50%) rotate(120deg) translateY(-145px) rotate(-120deg); }
  100% { transform: translate(-50%, -50%) rotate(480deg) translateY(-145px) rotate(-480deg); }
}

@keyframes tlr-orbit-3 {
  0% { transform: translate(-50%, -50%) rotate(240deg) translateY(-145px) rotate(-240deg); }
  100% { transform: translate(-50%, -50%) rotate(600deg) translateY(-145px) rotate(-600deg); }
}

@media (max-width: 1000px) {
  .tlr-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .tlr-item {
    background: #f8fafc;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
  }
  .tlr-visual {
      display: none;
  }
  .tlr-title {
    font-size: clamp(28px, 8vw, 36px);
  }
}

@media (max-width: 600px) {
  .tlr-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
}
