:root {
  --navy: #1B2A56;
  --teal: #2C6E7F;
  --gold: #D9A521;
  --gold-bright: #F4B400;
  --green: #6B8E3D;
  --maroon: #8B2E2E;
  --text: #2A2A2A;
  --muted: #6B6B6B;
  --bg-cream: #F4F1E8;
  --bg-light: #FAFAF7;
  --border: #E5E2D8;
  --white: #FFFFFF;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.tlh-main {
  font-family: 'Noto Sans Devanagari', 'Mulish', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
  font-weight: 400;
  overflow-x: hidden;
}

/* Numbers and English brand words look better in Mulish */
.latin {
  font-family: 'Mulish', sans-serif;
}

.tlh-main img {
  max-width: 100%;
  display: block;
}

.tlh-main a {
  color: var(--navy);
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
}



/* Hero */
.hero {
  background: var(--bg-cream);
  position: relative;
  overflow: hidden;
}

.slider {
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
  min-height: 540px;
  display: grid;
}

.slide {
  grid-area: 1 / 1;
  width: 100%;
  opacity: 0;
  transition: opacity .6s ease;
  display: flex;
  align-items: stretch;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-photo {
  flex: 0 0 44%;
  position: relative;
  background-size: cover;
  background-position: center top;
  overflow: hidden;
}

.slide-photo::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold), var(--gold-bright));
}

.photo-tag {
  position: absolute;
  left: 24px;
  top: 24px;
  z-index: 3;
  background: var(--white);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: var(--maroon);
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
  display: flex;
  align-items: center;
  gap: 8px;
}

.photo-tag::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--maroon);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.slide-content {
  flex: 1;
  padding: 56px 64px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: linear-gradient(135deg, #F8F6EB 0%, #EFEDDD 100%);
}

.price-strip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 2px solid var(--gold);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
  align-self: flex-start;
  font-weight: 700;
  color: var(--navy);
}

.price-strip .lbl {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

.price-strip .big {
  font-size: 18px;
  color: var(--maroon);
  font-family: 'Mulish', sans-serif;
}

.slide h1 {
  font-size: 36px;
  line-height: 1.25;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 16px;
}

.slide h1 .accent {
  color: var(--maroon);
}

.slide .sub {
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 26px;
  max-width: 540px;
}

.cta-row {
  display: flex;
  gap: 14px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold-bright);
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 2px 0 #C99410;
  transition: transform .15s;
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  padding: 14px 26px;
  border: 2px solid var(--navy);
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
}

.support-strip {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  border-top: 1px solid rgba(0, 0, 0, .08);
  padding-top: 16px;
  margin-top: auto;
}

.support-strip span {
  color: var(--navy);
}

.support-strip .dot {
  color: var(--gold);
  margin: 0 10px;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .95);
  color: var(--navy);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.slider-nav:hover {
  background: var(--white);
}

.slider-prev {
  left: 16px;
}

.slider-next {
  right: 16px;
}

.slider-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(27, 42, 86, .3);
  cursor: pointer;
  transition: all .2s;
}

.dot.active {
  background: var(--navy);
  width: 28px;
  border-radius: 5px;
}

@media (max-width: 900px) {
  .slider {
    min-height: auto;
  }

  .slide {
    flex-direction: column;
  }

  .slide-photo {
    min-height: 220px;
    flex: 0 0 220px;
  }

  .slide-content {
    padding: 24px 20px 48px;
  }

  .slide h1 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .slide .sub {
    margin-bottom: 16px;
  }

  .cta-row {
    margin-bottom: 16px;
  }

  .slider-dots {
    bottom: 12px;
  }

  .slider-nav {
    top: 110px;
  }

  .slider-prev {
    left: 20px;
  }

  .slider-next {
    right: 20px;
  }

  .header-container .header {
    padding-right: 15px !important;
  }
}

/* Demo */
.demo-showcase {
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--white) 100%);
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.demo-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.demo-video-thumb {
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: 0 16px 48px rgba(27, 42, 86, .18);
  transition: transform .25s ease, box-shadow .25s ease;
}

.demo-video-thumb:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 56px rgba(27, 42, 86, .24);
}

.demo-thumb-inner {
  position: absolute;
  inset: 0;
  background: #000;
}

.thumb-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://img.youtube.com/vi/EE-JUqKCOjY/maxresdefault.jpg');
  background-size: cover;
  background-position: center;
}

.thumb-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .2);
}

.thumb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 24px;
}

.thumb-live {
  align-self: flex-start;
  background: var(--maroon);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.thumb-play {
  align-self: center;
  transition: transform .25s ease;
}

.demo-video-thumb:hover .thumb-play {
  transform: scale(1.08);
}

.thumb-caption {
  align-self: flex-end;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .5);
}

.demo-text .eyebrow {
  color: var(--green);
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 13px;
  margin-bottom: 14px;
}

.demo-text h2 {
  color: var(--navy);
  font-size: 28px;
  line-height: 1.3;
  font-weight: 800;
  margin-bottom: 16px;
}

.demo-text p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.demo-text .btn-primary {
  font-size: 15px;
  padding: 14px 28px;
}

.demo-meta {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 900px) {
  .demo-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .demo-text h2 {
    font-size: 22px;
  }
}

/* Section common */
section {
  padding: 72px 0;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  color: var(--green);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 13px;
  margin-bottom: 12px;
}

h2.section-title {
  font-size: 34px;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-lead {
  font-size: 17px;
  color: var(--text);
  max-width: 820px;
  margin-bottom: 8px;
  line-height: 1.7;
}

/* Intro */
.intro {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}

.intro-left h1 {
  font-size: 38px;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 24px;
}

.intro-left h1 .y {
  color: var(--gold);
}

.intro-left p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 28px;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.stat {
  background: var(--white);
  border: 1.5px solid var(--border);
  padding: 16px 8px;
  border-radius: 8px;
  text-align: center;
  transition: transform .2s, border-color .2s;
}

.stat:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.stat .n {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  display: block;
  font-family: 'Mulish', sans-serif;
}

.stat .l {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
  line-height: 1.4;
}

.intro-right {
  background: var(--bg-cream);
  border-left: 4px solid var(--gold);
  padding: 32px 28px;
  border-radius: 4px;
}

.intro-right h3 {
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.intro-right ul {
  list-style: none;
}

.intro-right li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.6;
}

.intro-right li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 800;
  font-size: 16px;
}

@media (max-width: 900px) {
  .intro {
    grid-template-columns: 1fr;
  }

  .intro-left h1 {
    font-size: 26px;
  }

  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Problem */
.problem {
  background: var(--bg-light);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-top: 40px;
}

.problem-list {
  background: var(--navy);
  color: var(--white);
  padding: 32px 28px;
  border-radius: 8px;
}

.problem-list h3 {
  font-size: 19px;
  margin-bottom: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.problem-list ul {
  list-style: none;
}

.problem-list li {
  padding: 10px 0 10px 24px;
  position: relative;
  font-size: 15px;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.problem-list li:last-child {
  border-bottom: none;
}

.problem-list li::before {
  content: '•';
  color: var(--gold-bright);
  position: absolute;
  left: 0;
  font-size: 22px;
  line-height: 1;
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.pcard {
  background: var(--white);
  padding: 24px 22px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  transition: transform .2s, border-color .2s, box-shadow .2s;
}

.pcard:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .06);
}

.pcard .marker {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  margin-bottom: 14px;
}

.pcard:nth-child(1) .marker {
  background: var(--gold-bright);
}

.pcard:nth-child(2) .marker {
  background: var(--teal);
}

.pcard:nth-child(3) .marker {
  background: var(--gold-bright);
}

.pcard:nth-child(4) .marker {
  background: var(--teal);
}

.pcard h4 {
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 1.4;
}

.pcard p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
}

@media (max-width: 900px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }

  .problem-cards {
    grid-template-columns: 1fr;
  }
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.fcard {
  background: var(--white);
  padding: 28px 22px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.fcard:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}

.fcard .icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--bg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.fcard h4 {
  color: var(--navy);
  font-size: 17px;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.4;
}

.fcard p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
}

.what-gets {
  margin-top: 40px;
  background: var(--bg-cream);
  padding: 36px 40px;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.what-gets blockquote {
  font-style: italic;
  font-size: 20px;
  color: var(--navy);
  line-height: 1.55;
  border-left: 4px solid var(--gold);
  padding-left: 20px;
}

.what-gets ul {
  list-style: none;
}

.what-gets li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 15px;
  border-bottom: 1px dashed var(--border);
  line-height: 1.6;
}

.what-gets li:last-child {
  border-bottom: none;
}

.what-gets li::before {
  content: '●';
  color: var(--gold);
  position: absolute;
  left: 4px;
  top: 12px;
  font-size: 12px;
}

.what-gets li.highlight {
  color: var(--maroon);
  font-weight: 700;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .what-gets {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }
}

/* Value band */
.value-band {
  background: linear-gradient(135deg, var(--navy) 0%, #243466 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.value-band::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(217, 165, 33, .15);
}

.value-band::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(217, 165, 33, .08);
}

.value-band .container {
  position: relative;
  z-index: 2;
}

.value-band .eyebrow {
  color: var(--gold-bright);
}

.value-band h2 {
  color: var(--white);
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.value-band h2 .price {
  color: var(--gold-bright);
  font-size: 56px;
  font-family: 'Mulish', sans-serif;
}

.value-band .lead {
  color: rgba(255, 255, 255, .85);
  font-size: 17px;
  max-width: 820px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.vcard {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  padding: 24px 20px;
  border-radius: 10px;
}

.vcard .icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

.vcard h4 {
  color: var(--gold-bright);
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 1.4;
}

.vcard p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .85);
}

.value-closing {
  margin-top: 32px;
  text-align: center;
  font-style: italic;
  font-size: 16px;
  color: rgba(255, 255, 255, .85);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .value-band h2 {
    font-size: 26px;
  }

  .value-band h2 .price {
    font-size: 38px;
  }

  .value-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Why parents (8 tiles) */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.tile {
  background: var(--navy);
  color: var(--white);
  padding: 22px 18px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform .2s, background .2s;
}

.tile:hover {
  transform: translateY(-2px);
  background: #243466;
}

.tile .ico {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.tile span {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.why-strap {
  text-align: center;
  margin-top: 32px;
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .5px;
}

.why-strap .dot {
  color: var(--muted);
  margin: 0 10px;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Class cards */
.classes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.ccard {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex;
  flex-direction: column;
}

.ccard:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}

.ccard-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.ccard .age {
  color: var(--green);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .5px;
}

.ccard .badge {
  background: #FFF6D6;
  color: var(--navy);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.ccard h3 {
  color: var(--text);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 4px;
}

.ccard h4 {
  color: var(--teal);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
}

.ccard ul {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
}

.ccard li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 14px;
  line-height: 1.6;
}

.ccard li::before {
  content: '●';
  color: var(--gold);
  position: absolute;
  left: 0;
  top: 9px;
  font-size: 12px;
}

.ccard .cta {
  background: var(--teal);
  color: var(--white);
  padding: 12px;
  border-radius: 6px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  display: block;
  transition: background .2s;
}

.ccard .cta:hover {
  background: var(--navy);
  color: var(--white);
}

@media (max-width: 900px) {
  .classes-grid {
    grid-template-columns: 1fr;
  }
}

/* Testimonials */
.testimonials {
  background: var(--bg-cream);
}

.testi-slider {
  position: relative;
  max-width: 900px;
  margin: 40px auto 0;
}

.testi {
  display: none;
  background: var(--white);
  border-radius: 12px;
  padding: 40px 48px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .05);
  border-top: 4px solid var(--gold);
}

.testi.active {
  display: block;
  animation: fadeIn .4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.testi .qmark {
  font-family: 'Lora', serif;
  font-size: 60px;
  color: var(--gold);
  line-height: .5;
  margin-bottom: 8px;
}

.testi blockquote {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
}

.testi cite {
  display: block;
  font-style: normal;
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
}

.testi cite .role {
  color: var(--muted);
  font-weight: 500;
  font-size: 13px;
  display: block;
  margin-top: 2px;
}

.testi-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}

.testi-dots .dot {
  background: rgba(27, 42, 86, .25);
}

.testi-dots .dot.active {
  background: var(--navy);
}

/* FAQ */
.faq-list {
  max-width: 880px;
  margin: 40px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  text-align: left;
  padding: 22px 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color .2s;
  line-height: 1.5;
  font-family: inherit;
}

.faq-q:hover {
  color: var(--gold);
}

.faq-q .plus {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--bg-cream);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  transition: transform .2s, background .2s;
}

.faq-item.open .faq-q .plus {
  background: var(--gold-bright);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  color: var(--text);
  font-size: 15px;
  line-height: 1.75;
}

.faq-item.open .faq-a {
  max-height: 600px;
  padding: 0 0 24px 0;
}

/* Conversion */
.convert {
  background: var(--bg-light);
  padding: 40px 0;
  /* Reduced from 72px to make it less "long" */
}

.convert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 32px;
}

.tlh-form-box {
  background: var(--white);
  border-radius: 12px;
  border: 1.5px solid var(--border);
  overflow: hidden;
}

.tlh-form-box iframe {
  max-width: 100% !important;
  width: 1px !important;
  min-width: 100% !important;
}

.convert-left {
  background: var(--teal);
  color: var(--white);
  padding: 40px 36px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.convert-left h3 {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 700;
}

.convert-left ul {
  list-style: none;
}

.convert-left li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  font-size: 15px;
  line-height: 1.6;
}

.convert-left li:last-child {
  border-bottom: none;
}

.convert-left li::before {
  content: '✓';
  color: var(--gold-bright);
  position: absolute;
  left: 0;
  top: 12px;
  font-weight: 800;
}

.convert-form {
  background: var(--white);
  padding: 36px 32px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
}

.convert-form h3 {
  color: var(--navy);
  margin-bottom: 20px;
  font-size: 18px;
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.field input {
  width: 100%;
  padding: 11px 14px;
  font-size: 15px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  transition: border-color .15s;
}

.field input:focus {
  outline: none;
  border-color: var(--gold);
}

.form-btn {
  width: 100%;
  background: var(--gold-bright);
  color: var(--navy);
  padding: 14px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 15px;
  margin-top: 8px;
  transition: transform .15s;
  box-shadow: 0 2px 0 #C99410;
  font-family: inherit;
}

.form-btn:hover {
  transform: translateY(-1px);
}

.phone-alt {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}

.phone-alt a {
  color: var(--teal);
  font-weight: 700;
}

@media (max-width: 900px) {
  .convert-grid {
    grid-template-columns: 1fr;
  }
}



/* Toast & Modal */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--navy);
  color: var(--white);
  padding: 16px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
  transition: transform .3s ease;
  z-index: 1000;
  border-left: 4px solid var(--gold-bright);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 22, 45, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999999;
  padding: 24px;
  animation: modalFade .25s ease;
}

.video-modal.show {
  display: flex;
}

@keyframes modalFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.video-modal-inner {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .5);
}

.video-modal-inner iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.video-close:hover {
  background: var(--gold-bright);
}

.video-modal-caption {
  position: absolute;
  top: -44px;
  left: 0;
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.video-modal-caption .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-bright);
}

/* Sub Header */
.tl-sub-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  padding: 5px 0;
  position: relative;
  z-index: 99;
}

.tl-sub-header-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.tl-lang-toggle {
  display: inline-flex;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  font-size: 12px;
  font-weight: 700;
}

.tl-lang-toggle a {
  padding: 4px 16px;
  color: var(--muted);
  transition: background .2s, color .2s;
  text-decoration: none;
}

.tl-lang-toggle a.active {
  background: var(--navy);
  color: var(--white);
}

.tl-lang-toggle a:not(.active):hover {
  background: var(--bg-cream);
  color: var(--navy);
}

@media (max-width: 900px) {


  .tl-sub-header-inner {
    justify-content: flex-end;
  }
}