@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}

body.tl-body {
  font-family: 'Space Grotesk', sans-serif;
  background: #0b0e11;
  color: #cdd6e0;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.tl-grid-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(78,204,163,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78,204,163,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.tl-orb {
  position: fixed;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
  background: conic-gradient(from 0deg, #4ECCA3, #1DE9B6, #0d7357, #4ECCA3);
  animation: tl-orb-spin 30s linear infinite;
  top: -300px;
  right: -200px;
}
.tl-orb-2 {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
  background: conic-gradient(from 180deg, #e36666, #4ECCA3, #1a1a2e, #e36666);
  animation: tl-orb-spin 40s linear infinite reverse;
  bottom: -200px;
  left: -150px;
}
@keyframes tl-orb-spin {
  to { transform: rotate(360deg); }
}

.tl-topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background: linear-gradient(90deg, #4ECCA3, #1DE9B6);
  color: #0b0e11;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 6px 0;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
}

.tl-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: rgba(11, 14, 17, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(78,204,163,0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.tl-navbar.scrolled {
  background: rgba(11, 14, 17, 0.92);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  border-bottom-color: rgba(78,204,163,0.15);
}

.tl-navbar-logo img {
  height: 56px;
  width: auto;
  display: block;
}
.tl-navbar-logo { text-decoration: none; }

.tl-navbar-center {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 100px;
  padding: 4px;
}
.tl-navbar-center a {
  color: #8899aa;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 18px;
  border-radius: 100px;
  transition: all 0.25s ease;
}
.tl-navbar-center a:hover,
.tl-navbar-center a.active {
  color: #fff;
  background: rgba(78,204,163,0.12);
}

.tl-navbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tl-navbar-right a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}
.tl-nav-login {
  color: #8899aa;
  transition: color 0.2s;
}
.tl-nav-login:hover { color: #fff; }
.tl-nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0b0e11;
  background: #4ECCA3;
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 600;
  transition: all 0.25s ease;
}
.tl-nav-cta-btn:hover {
  background: #1DE9B6;
  box-shadow: 0 0 24px rgba(78,204,163,0.4);
  transform: translateY(-1px);
}

.tl-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.tl-nav-toggle span {
  width: 22px;
  height: 2px;
  background: #cdd6e0;
  border-radius: 2px;
  transition: 0.3s;
}

.tl-hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 110px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.tl-hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.tl-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4ECCA3;
  background: rgba(78,204,163,0.06);
  border: 1px solid rgba(78,204,163,0.15);
  border-radius: 6px;
  padding: 8px 16px;
}
.tl-hero-tag .tl-dot {
  width: 6px;
  height: 6px;
  background: #4ECCA3;
  border-radius: 50%;
  box-shadow: 0 0 8px #4ECCA3;
  animation: tl-pulse 2s ease-in-out infinite;
}
@keyframes tl-pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.tl-hero-title {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -3px;
  color: #fff;
}
.tl-hero-title em {
  font-style: normal;
  display: block;
  background: linear-gradient(135deg, #4ECCA3 0%, #1DE9B6 60%, #7efce0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tl-hero-version {
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  color: #556677;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tl-hero-version .tl-tw::before {
  content: "";
  animation: tl-typing 13.5s infinite;
}
.tl-hero-version .tl-tw::after {
  content: "";
  border-right: 2px solid #4ECCA3;
  animation: tl-blink 0.7s step-end infinite;
}
@keyframes tl-typing {
  0.0000%, 27.3488% { content: ""; }
  1.1395%, 26.2093% { content: "3"; }
  2.2791%, 25.0698% { content: "3."; }
  3.4186%, 23.9302% { content: "3.0"; }
  30.7674%, 51.2791% { content: ""; }
  31.9070%, 50.1395% { content: "3"; }
  33.0465%, 49.0000% { content: "3."; }
  34.1860%, 47.8605% { content: "3.0"; }
  54.6977%, 75.2093% { content: ""; }
  55.8372%, 74.0698% { content: "3"; }
  56.9767%, 72.9302% { content: "3."; }
  58.1163%, 71.7907% { content: "3.0"; }
  78.6279%, 96.8605% { content: ""; }
  79.7674%, 95.7209% { content: "3"; }
  80.9070%, 94.5814% { content: "3."; }
  82.0465%, 93.4419% { content: "3.0"; }
}
@keyframes tl-blink {
  0%,100%{opacity:1}
  50%{opacity:0}
}

.tl-hero-desc {
  font-size: 17px;
  color: #6b7c8d;
  line-height: 1.7;
  max-width: 460px;
}

.tl-hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.tl-btn-glow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #4ECCA3;
  color: #0b0e11;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.tl-btn-glow::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}
.tl-btn-glow:hover::before { left: 100%; }
.tl-btn-glow:hover {
  box-shadow: 0 0 40px rgba(78,204,163,0.5), 0 8px 24px rgba(78,204,163,0.3);
  transform: translateY(-2px);
  color: #0b0e11;
}

.tl-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #8899aa;
  font-weight: 500;
  font-size: 14px;
  padding: 15px 28px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}
.tl-btn-outline:hover {
  border-color: #4ECCA3;
  color: #4ECCA3;
  background: rgba(78,204,163,0.04);
}

.tl-hero-right {
  position: relative;
}
.tl-hero-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(78,204,163,0.15);
  background: #0f1318;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.6),
    0 0 80px rgba(78,204,163,0.06);
}
.tl-hero-frame-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #151a21;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.tl-hero-frame-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.tl-hero-frame-dot:nth-child(1) { background: #e36666; }
.tl-hero-frame-dot:nth-child(2) { background: #e3c766; }
.tl-hero-frame-dot:nth-child(3) { background: #4ECCA3; }
.tl-hero-frame-url {
  flex: 1;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #445566;
  background: rgba(0,0,0,0.3);
  padding: 4px 12px;
  border-radius: 6px;
  margin-left: 12px;
}
.tl-hero-frame img {
  width: 100%;
  display: block;
}

.tl-hero-right::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(78,204,163,0.12);
  border-radius: 20px;
  transform: rotate(15deg);
  z-index: -1;
}
.tl-hero-right::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(78,204,163,0.08);
  border-radius: 14px;
  transform: rotate(-10deg);
  z-index: -1;
}

.tl-section {
  position: relative;
  z-index: 1;
  padding: 120px 48px;
}
.tl-container {
  max-width: 1200px;
  margin: 0 auto;
}

.tl-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(78,204,163,0.2), transparent);
  margin: 0 48px;
  position: relative;
  z-index: 1;
}

.tl-sheader {
  margin-bottom: 64px;
}
.tl-sheader-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #4ECCA3;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.tl-sheader-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: #4ECCA3;
}
.tl-sheader-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1.15;
}
.tl-sheader-title span {
  color: #4ECCA3;
}

.tl-zigzag {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.tl-zigzag-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.tl-zigzag-row.reverse {
  direction: rtl;
}
.tl-zigzag-row.reverse > * {
  direction: ltr;
}

.tl-zigzag-media {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(78,204,163,0.1);
  background: #0f1318;
  position: relative;
}
.tl-zigzag-media img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}
.tl-zigzag-row:hover .tl-zigzag-media img {
  transform: scale(1.03);
}
.tl-zigzag-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,14,17,0.6) 100%);
  pointer-events: none;
}

.tl-zigzag-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tl-zigzag-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 64px;
  font-weight: 700;
  color: rgba(78,204,163,0.08);
  line-height: 1;
  letter-spacing: -4px;
}
.tl-zigzag-text h3 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
}
.tl-zigzag-text p {
  font-size: 16px;
  color: #6b7c8d;
  line-height: 1.7;
  max-width: 400px;
}

.tl-benefits-section {
  background: linear-gradient(180deg, rgba(78,204,163,0.02) 0%, transparent 100%);
}

.tl-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(78,204,163,0.06);
  border-radius: 20px;
  overflow: hidden;
}
.tl-stat-card {
  background: #0e1217;
  padding: 48px 36px;
  text-align: center;
  transition: background 0.3s ease;
  position: relative;
}
.tl-stat-card:hover {
  background: #111820;
}
.tl-stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #4ECCA3;
  transition: width 0.4s ease;
}
.tl-stat-card:hover::after {
  width: 60px;
}

.tl-stat-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.9;
}
.tl-stat-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}
.tl-stat-title.accent-green {
  color: #4ECCA3;
}
.tl-stat-title.accent-red {
  color: #e36666;
}
.tl-stat-desc {
  font-size: 14px;
  color: #556677;
  line-height: 1.6;
}
.tl-stat-desc.danger {
  color: #944;
}

.tl-pricing-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.tl-pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 700px;
}
.tl-pricing-table th,
.tl-pricing-table td {
  padding: 18px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 14px;
}
.tl-pricing-table thead th {
  background: #111820;
  color: #556677;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 22px 24px;
  position: sticky;
  top: 0;
}
.tl-pricing-table thead th:first-child {
  border-radius: 12px 0 0 0;
  text-align: left;
}
.tl-pricing-table thead th:last-child {
  border-radius: 0 12px 0 0;
}
.tl-pricing-table .tl-col-featured {
  background: rgba(78,204,163,0.04);
  border-left: 1px solid rgba(78,204,163,0.1);
  border-right: 1px solid rgba(78,204,163,0.1);
}
.tl-pricing-table thead .tl-col-featured {
  background: rgba(78,204,163,0.1);
  color: #4ECCA3;
}

.tl-pricing-table tbody tr {
  transition: background 0.2s ease;
}
.tl-pricing-table tbody tr:hover {
  background: rgba(78,204,163,0.02);
}
.tl-pricing-table tbody td:first-child {
  text-align: left;
  color: #8899aa;
  font-weight: 500;
}

.tl-plan-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.tl-plan-price {
  font-size: 32px;
  font-weight: 700;
  color: #4ECCA3;
  line-height: 1;
}
.tl-plan-price-small {
  font-size: 13px;
  font-weight: 500;
  color: #556677;
  display: block;
  margin-top: 4px;
}
.tl-plan-old {
  font-size: 16px;
  color: #e36666;
  text-decoration: line-through;
  margin-left: 8px;
}

.tl-check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(78,204,163,0.12);
}
.tl-cross-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(227,102,102,0.12);
}

.tl-table-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tl-table-btn-outline {
  color: #4ECCA3;
  border: 1px solid rgba(78,204,163,0.3);
  background: transparent;
}
.tl-table-btn-outline:hover {
  background: rgba(78,204,163,0.08);
  border-color: #4ECCA3;
}
.tl-table-btn-filled {
  color: #0b0e11;
  background: #4ECCA3;
  border: 1px solid #4ECCA3;
}
.tl-table-btn-filled:hover {
  background: #1DE9B6;
  box-shadow: 0 0 24px rgba(78,204,163,0.4);
}

.tl-paygo-strip {
  margin-top: 32px;
  background: #111820;
  border: 1px solid rgba(78,204,163,0.08);
  border-radius: 14px;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.tl-paygo-left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.tl-paygo-price-big {
  font-size: 40px;
  font-weight: 700;
  color: #4ECCA3;
  line-height: 1;
}
.tl-paygo-meta {
  font-size: 14px;
  color: #556677;
}
.tl-paygo-meta strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.tl-footer {
  position: relative;
  z-index: 1;
  padding: 80px 48px 48px;
  background: #0a0d10;
  border-top: 1px solid rgba(78,204,163,0.06);
}
.tl-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.tl-footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.tl-footer-brand p {
  font-size: 14px;
  color: #445566;
  margin-top: 16px;
  line-height: 1.7;
  max-width: 280px;
}
.tl-footer-brand img {
  height: 60px;
  width: auto;
}
.tl-footer-col h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4ECCA3;
  margin-bottom: 20px;
}
.tl-footer-col a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6b7c8d;
  text-decoration: none;
  font-size: 14px;
  padding: 6px 0;
  transition: color 0.2s;
}
.tl-footer-col a:hover { color: #fff; }
.tl-footer-col a img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  opacity: 0.6;
}

.tl-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.tl-footer-copy {
  font-size: 12px;
  color: #334455;
  font-family: 'JetBrains Mono', monospace;
}
.tl-footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0b0e11;
  background: #4ECCA3;
  padding: 12px 28px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.tl-footer-cta-btn:hover {
  background: #1DE9B6;
  box-shadow: 0 0 24px rgba(78,204,163,0.4);
  color: #0b0e11;
}

.tl-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.tl-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.tl-reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.tl-reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.tl-reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.tl-reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.tl-d1 { transition-delay: 0.05s !important; }
.tl-d2 { transition-delay: 0.12s !important; }
.tl-d3 { transition-delay: 0.19s !important; }
.tl-d4 { transition-delay: 0.26s !important; }
.tl-d5 { transition-delay: 0.33s !important; }

@media (max-width: 1024px) {
  .tl-hero {
    grid-template-columns: 1fr;
    padding: 130px 32px 60px;
    text-align: center;
    gap: 48px;
  }
  .tl-hero-left { align-items: center; }
  .tl-hero-tag { margin: 0 auto; }
  .tl-hero-title { font-size: 52px; letter-spacing: -2px; }
  .tl-hero-desc { margin: 0 auto; }
  .tl-hero-buttons { justify-content: center; }
  .tl-hero-right::before, .tl-hero-right::after { display: none; }

  .tl-zigzag-row { grid-template-columns: 1fr; gap: 32px; }
  .tl-zigzag-row.reverse { direction: ltr; }
  .tl-zigzag-text { align-items: center; text-align: center; }
  .tl-zigzag-text p { max-width: 100%; }

  .tl-footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .tl-topbar { font-size: 10px; padding: 5px 10px; }
  .tl-navbar { padding: 0 20px; top: 0; }
  .tl-navbar-center { display: none; }
  .tl-navbar-right { display: none; }
  .tl-navbar-right.open, .tl-navbar-center.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: rgba(11,14,17,0.98);
    border-bottom: 1px solid rgba(78,204,163,0.1);
    padding: 16px;
    gap: 8px;
  }
  .tl-navbar-center.open {
    top: 64px;
    border-radius: 0;
    padding: 12px;
  }
  .tl-navbar-center.open a {
    width: 100%;
    text-align: center;
    padding: 12px;
  }
  .tl-navbar-right.open {
    top: auto;
  }
  .tl-nav-toggle { display: flex; }

  .tl-hero { padding: 120px 20px 48px; }
  .tl-hero-title { font-size: 36px; letter-spacing: -1px; }
  .tl-hero-desc { font-size: 15px; }
  .tl-hero-buttons { flex-direction: column; width: 100%; }
  .tl-btn-glow, .tl-btn-outline { width: 100%; justify-content: center; }

  .tl-section { padding: 64px 20px; }
  .tl-sheader-title { font-size: 32px; letter-spacing: -1px; }

  .tl-stats-row { grid-template-columns: 1fr; }

  .tl-paygo-strip { flex-direction: column; text-align: center; padding: 24px; }
  .tl-paygo-left { flex-direction: column; }

  .tl-footer { padding: 48px 20px 32px; }
  .tl-footer-top { grid-template-columns: 1fr; gap: 32px; }
  .tl-footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}

@media (max-width: 480px) {
  .tl-hero-title { font-size: 28px; }
  .tl-sheader-title { font-size: 26px; }
  .tl-plan-price { font-size: 24px; }
}
