/* =============================================================
   TechHypeStudio Pricing Plans v3.0 — pricing.css
   Breakpoints:
     Desktop       : > 1540px
     Laptop        : <= 1540px
     Tablet Land   : <= 1280px
     Tablet Port   : <= 1024px
     Mobile Land   : <= 767px
     Mobile Port   : <= 480px
   ============================================================= */

/* FONT STACK */
#ths-pricing-section,
#ths-pricing-section * {
  font-family: 'Manrope', Arial, sans-serif !important;
  box-sizing: border-box !important;
}

/* DESIGN TOKENS — Desktop defaults */
#ths-pricing-section {
  --blue:       #3B3BF9;
  --blue-lt:    #5B5BFB;
  --blue-bg:    #EEF0FF;
  --black:      #111827;
  --dark:       #1F2937;
  --muted:      #6B7280;
  --border:     #E5E7EB;
  --light:      #F9FAFB;
  --white:      #FFFFFF;
  --pro-bg:     #F3F4FF;

  --fs-heading:     62.504px;
  --lh-heading:     62.504px;
  --fs-subheading:  23.2144px;
  --lh-subheading:  27.8573px;
  --fs-body:        16px;
  --fs-btn:         16px;
  --fs-price:       62.504px;
  --lh-price:       62.504px;
  --fs-dollar:      28px;

  --section-pad-v:  72px;
  --section-pad-h:  40px;
  --section-maxw:   1200px;
  --card-pad-v:     36px;
  --card-pad-h:     30px;
  --grid-gap:       24px;
  --toggle-pad-v:   10px;
  --toggle-pad-h:   38px;
}

/* OUTER WRAPPER */
#ths-pricing-section {
  display: block !important;
  width: 100% !important;
  max-width: var(--section-maxw) !important;
  margin: 0 auto !important;
  padding: var(--section-pad-v) var(--section-pad-h) !important;
  background: transparent !important;
  position: relative !important;
  overflow: visible !important;
}

/* HERO */
#ths-pricing-section .ths-hero {
  display: block !important;
  text-align: center !important;
  margin-bottom: 40px !important;
  padding: 0 !important;
}
#ths-pricing-section .ths-eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-family: 'Urbanist', Arial, sans-serif !important;
  font-size: var(--fs-subheading) !important;
  font-weight: 400 !important;
  line-height: var(--lh-subheading) !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--muted) !important;
  margin-bottom: 16px !important;
}
#ths-pricing-section .ths-eyebrow::before,
#ths-pricing-section .ths-eyebrow::after {
  content: '' !important;
  display: inline-block !important;
  width: 36px !important;
  height: 1px !important;
  background: var(--muted) !important;
  opacity: .5 !important;
}
#ths-pricing-section .ths-hero-title {
  display: block !important;
  font-family: 'Manrope', Arial, sans-serif !important;
  font-size: var(--fs-heading) !important;
  font-weight: 700 !important;
  line-height: var(--lh-heading) !important;
  color: var(--black) !important;
  letter-spacing: -1.5px !important;
  margin: 0 0 16px !important;
  padding: 0 !important;
  border: none !important;
  text-align: center !important;
  background: none !important;
}
#ths-pricing-section .ths-hero-title em {
  font-style: normal !important;
  color: var(--blue) !important;
  text-decoration: underline !important;
  text-decoration-thickness: 3px !important;
  text-underline-offset: 5px !important;
}
#ths-pricing-section .ths-hero-sub {
  display: block !important;
  font-family: 'Manrope', Arial, sans-serif !important;
  font-size: var(--fs-body) !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;
  color: var(--muted) !important;
  max-width: 520px !important;
  margin: 0 auto !important;
}

/* TOGGLE */
#ths-pricing-section .ths-toggle-wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  margin: 0 auto 52px !important;
  border: 2.5px solid var(--blue) !important;
  border-radius: 60px !important;
  background: var(--white) !important;
  padding: 5px !important;
  gap: 0 !important;
}
#ths-pricing-section .ths-toggle-btn {
  display: inline-block !important;
  padding: var(--toggle-pad-v) var(--toggle-pad-h) !important;
  border-radius: 60px !important;
  font-family: 'Manrope', Arial, sans-serif !important;
  font-size: var(--fs-btn) !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  color: var(--muted) !important;
  background: transparent !important;
  cursor: pointer !important;
  border: none !important;
  outline: none !important;
  transition: background .22s, color .22s !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  box-shadow: none !important;
  white-space: nowrap !important;
}
#ths-pricing-section .ths-toggle-btn.ths-on {
  background: var(--blue) !important;
  color: #fff !important;
}
#ths-pricing-section .ths-save-badge {
  display: inline-block !important;
  background: rgba(59,59,249,.12) !important;
  color: var(--blue) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: .8px !important;
  text-transform: uppercase !important;
  padding: 2px 7px !important;
  border-radius: 8px !important;
  margin-left: 5px !important;
  vertical-align: middle !important;
  transition: color .22s, background .22s !important;
}
/* When Annual button is active (blue bg), badge flips to white */
#ths-pricing-section .ths-toggle-btn.ths-on .ths-save-badge {
  color: #fff !important;
  background: rgba(255,255,255,.22) !important;
}

/* GRID — 3-col desktop default */
#ths-pricing-section .ths-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  grid-auto-rows: 1fr !important;
  gap: var(--grid-gap) !important;
  margin-bottom: 32px !important;
  align-items: stretch !important;
}

/* CARD */
#ths-pricing-section .ths-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  background: var(--white) !important;
  border: 1.5px solid var(--border) !important;
  border-radius: 20px !important;
  padding: var(--card-pad-v) var(--card-pad-h) !important;
  position: relative !important;
  overflow: visible !important;
  box-shadow: 0 2px 16px rgba(0,0,0,.06) !important;
  transition: transform .28s ease, box-shadow .28s ease !important;
}
#ths-pricing-section .ths-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 16px 48px rgba(59,59,249,.11) !important;
}
#ths-pricing-section .ths-card-pro {
  background: var(--pro-bg) !important;
  border: 2px solid var(--blue) !important;
  box-shadow: 0 4px 28px rgba(59,59,249,.14) !important;
}
#ths-pricing-section .ths-card-pro:hover {
  box-shadow: 0 18px 52px rgba(59,59,249,.22) !important;
}

/* POPULAR BADGE */
#ths-pricing-section .ths-popular {
  position: absolute !important;
  top: 20px !important;
  right: -2px !important;
  background: var(--blue) !important;
  color: #fff !important;
  font-size: 9px !important;
  font-weight: 800 !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  padding: 32px 7px !important;
  border-radius: 7px 0 0 7px !important;
  writing-mode: vertical-lr !important;
  transform: rotate(180deg) !important;
  line-height: 1 !important;
}

/* PLAN NAME */
#ths-pricing-section .ths-plan-name {
  display: block !important;
  font-family: 'Urbanist', Arial, sans-serif !important;
  font-size: var(--fs-subheading) !important;
  font-weight: 400 !important;
  line-height: var(--lh-subheading) !important;
  color: var(--dark) !important;
  margin: 0 0 14px !important;
  padding: 0 !important;
  border: none !important;
}

/* PRICE ROW */
#ths-pricing-section .ths-price-row {
  display: flex !important;
  align-items: flex-end !important;
  gap: 1px !important;
  flex-wrap: nowrap !important;
  margin-bottom: 4px !important;
}
#ths-pricing-section .ths-dollar {
  font-family: 'Manrope', Arial, sans-serif !important;
  font-size: var(--fs-dollar) !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  color: var(--black) !important;
  margin-bottom: 10px !important;
}
#ths-pricing-section .ths-amount {
  font-family: 'Manrope', Arial, sans-serif !important;
  font-size: var(--fs-price) !important;
  font-weight: 700 !important;
  line-height: var(--lh-price) !important;
  color: var(--black) !important;
  letter-spacing: -3px !important;
  transition: all .3s !important;
}
#ths-pricing-section .ths-period {
  font-size: 13px !important;
  color: var(--muted) !important;
  font-weight: 400 !important;
  padding-bottom: 12px !important;
  padding-left: 5px !important;
  align-self: flex-end !important;
  white-space: nowrap !important;
}
#ths-pricing-section .ths-saving {
  display: block !important;
  font-size: 12px !important;
  color: var(--blue) !important;
  font-weight: 600 !important;
  margin-top: 3px !important;
  min-height: 18px !important;
  transition: opacity .3s !important;
  opacity: 0;
}

/* DIVIDER */
#ths-pricing-section .ths-divider {
  display: block !important;
  height: 2px !important;
  background: var(--border) !important;
  border: none !important;
  margin: 18px 0 20px !important;
  border-radius: 2px !important;
}
#ths-pricing-section .ths-card-pro .ths-divider {
  background: var(--blue) !important;
}

/* FEATURE LIST */
#ths-pricing-section .ths-features {
  list-style: none !important;
  margin: 0 0 26px !important;
  padding: 0 !important;
}
#ths-pricing-section .ths-features li {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 8px 0 !important;
  font-family: 'Manrope', Arial, sans-serif !important;
  font-size: var(--fs-body) !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  color: var(--dark) !important;
  border-bottom: 1px solid var(--border) !important;
  list-style: none !important;
  background: none !important;
}
#ths-pricing-section .ths-features li::before { display: none !important; }
#ths-pricing-section .ths-features li:last-child { border-bottom: none !important; }
#ths-pricing-section .ths-features .ths-chk {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  width: 18px !important;
  height: 18px !important;
  background: #EBEEFF !important;
  border-radius: 50% !important;
  color: var(--blue) !important;
  font-size: 10px !important;
  font-weight: 800 !important;
}
#ths-pricing-section .ths-card-pro .ths-features .ths-chk {
  background: rgba(59,59,249,.18) !important;
}

/* CTA BUTTON */
#ths-pricing-section .ths-btn {
  display: block !important;
  width: 100% !important;
  margin-top: auto !important;
  padding: 14px 20px !important;
  text-align: center !important;
  border-radius: 12px !important;
  font-family: 'Manrope', Arial, sans-serif !important;
  font-size: var(--fs-btn) !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: all .22s !important;
  letter-spacing: .2px !important;
}
#ths-pricing-section .ths-btn-outline {
  background: transparent !important;
  border: 2px solid var(--blue) !important;
  color: var(--blue) !important;
  box-shadow: none !important;
}
#ths-pricing-section .ths-btn-outline:hover {
  background: var(--blue) !important;
  color: #fff !important;
}
#ths-pricing-section .ths-btn-fill {
  background: var(--blue) !important;
  border: 2px solid var(--blue) !important;
  color: #fff !important;
  box-shadow: 0 6px 22px rgba(59,59,249,.3) !important;
}
#ths-pricing-section .ths-btn-fill:hover {
  background: var(--blue-lt) !important;
  border-color: var(--blue-lt) !important;
  box-shadow: 0 10px 32px rgba(59,59,249,.4) !important;
  transform: translateY(-1px) !important;
}

/* ADD-ON NOTE */
#ths-pricing-section .ths-note {
  display: flex !important;
  gap: 12px !important;
  background: var(--blue-bg) !important;
  border: 1px solid rgba(59,59,249,.2) !important;
  border-radius: 14px !important;
  padding: 16px 22px !important;
  margin-bottom: 52px !important;
  align-items: flex-start !important;
}
#ths-pricing-section .ths-note-icon {
  font-size: 16px !important;
  flex-shrink: 0 !important;
  margin-top: 1px !important;
}
#ths-pricing-section .ths-note p {
  font-size: 13px !important;
  color: var(--muted) !important;
  line-height: 1.7 !important;
  margin: 0 !important;
  padding: 0 !important;
}
#ths-pricing-section .ths-note p strong {
  color: var(--blue) !important;
  font-weight: 600 !important;
}

/* COMPARE SECTION */
#ths-pricing-section .ths-compare { margin-bottom: 48px !important; }
#ths-pricing-section .ths-compare-title {
  display: block !important;
  font-family: 'Manrope', Arial, sans-serif !important;
  font-size: var(--fs-heading) !important;
  font-weight: 700 !important;
  line-height: var(--lh-heading) !important;
  color: var(--black) !important;
  letter-spacing: -1.5px !important;
  margin: 0 0 12px !important;
  padding: 0 !important;
  border: none !important;
}
#ths-pricing-section .ths-compare-sub {
  font-family: 'Manrope', Arial, sans-serif !important;
  font-size: var(--fs-body) !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;
  color: var(--muted) !important;
  margin-bottom: 24px !important;
}
#ths-pricing-section .ths-table-scroll {
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
  border: 1px solid var(--border) !important;
  border-radius: 16px !important;
}
#ths-pricing-section .ths-table {
  width: 100% !important;
  border-collapse: collapse !important;
}
#ths-pricing-section .ths-table thead tr { background: var(--blue) !important; }
#ths-pricing-section .ths-table thead th {
  padding: 16px 18px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #fff !important;
  text-align: center !important;
  border: none !important;
  background: transparent !important;
  letter-spacing: .3px !important;
  vertical-align: middle !important;
}
#ths-pricing-section .ths-table thead th:first-child { text-align: left !important; }
#ths-pricing-section .ths-table thead th small {
  display: block !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  opacity: .85 !important;
  margin-top: 3px !important;
}
#ths-pricing-section .ths-table tbody td {
  padding: 11px 18px !important;
  border-bottom: 1px solid var(--border) !important;
  font-family: 'Manrope', Arial, sans-serif !important;
  font-size: var(--fs-body) !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
  color: var(--dark) !important;
  text-align: center !important;
  vertical-align: middle !important;
  background: transparent !important;
}
#ths-pricing-section .ths-table tbody td:first-child { text-align: left !important; }
#ths-pricing-section .ths-table tbody tr:last-child td { border-bottom: none !important; }
#ths-pricing-section .ths-table tbody tr:hover td { background: #FAFAFA !important; }
#ths-pricing-section .ths-table .ths-cat td {
  background: var(--light) !important;
  color: var(--muted) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  text-align: center !important;
  padding: 9px 18px !important;
}
#ths-pricing-section .ths-table .ths-x   { color: #D1D5DB !important; }
#ths-pricing-section .ths-table .ths-y   { color: var(--dark) !important; }
#ths-pricing-section .ths-table .ths-yb  { color: var(--blue) !important; font-weight: 600 !important; }
#ths-pricing-section .ths-table .ths-opt { color: #F59E0B !important; font-size: 12px !important; font-weight: 600 !important; }

/* FOOTER */
#ths-pricing-section .ths-footer {
  text-align: center !important;
  border-top: 1px solid var(--border) !important;
  padding-top: 24px !important;
}
#ths-pricing-section .ths-footer p {
  font-size: 12px !important;
  color: var(--muted) !important;
  margin: 0 !important;
  padding: 0 !important;
}


/* ============================================================
   RESPONSIVE BREAKPOINTS
============================================================ */

/* LAPTOP <= 1540px */
@media screen and (max-width: 1540px) {
  #ths-pricing-section {
    --fs-heading:     54px;
    --lh-heading:     54px;
    --fs-subheading:  21px;
    --lh-subheading:  25px;
    --fs-price:       54px;
    --lh-price:       54px;
    --fs-dollar:      24px;
    --section-maxw:   1080px;
    --section-pad-v:  64px;
    --section-pad-h:  32px;
    --card-pad-v:     32px;
    --card-pad-h:     26px;
    --grid-gap:       20px;
    --toggle-pad-h:   32px;
  }
}

/* TABLET LANDSCAPE <= 1280px */
@media screen and (max-width: 1280px) {
  #ths-pricing-section {
    --fs-heading:     44px;
    --lh-heading:     48px;
    --fs-subheading:  19px;
    --lh-subheading:  23px;
    --fs-price:       44px;
    --lh-price:       44px;
    --fs-dollar:      22px;
    --fs-body:        15px;
    --fs-btn:         15px;
    --section-maxw:   100%;
    --section-pad-v:  56px;
    --section-pad-h:  28px;
    --card-pad-v:     28px;
    --card-pad-h:     22px;
    --grid-gap:       18px;
    --toggle-pad-h:   28px;
  }
  #ths-pricing-section .ths-hero-title,
  #ths-pricing-section .ths-compare-title { letter-spacing: -1px !important; }
}

/* TABLET PORTRAIT <= 1024px — 2-col grid */
@media screen and (max-width: 1024px) {
  #ths-pricing-section {
    --fs-heading:     38px;
    --lh-heading:     42px;
    --fs-subheading:  18px;
    --lh-subheading:  22px;
    --fs-price:       42px;
    --lh-price:       42px;
    --fs-dollar:      20px;
    --fs-body:        15px;
    --fs-btn:         15px;
    --section-pad-v:  48px;
    --section-pad-h:  24px;
    --card-pad-v:     26px;
    --card-pad-h:     20px;
    --grid-gap:       16px;
    --toggle-pad-h:   24px;
  }
  #ths-pricing-section .ths-grid {
    grid-template-columns: 1fr 1fr !important;
    grid-auto-rows: auto !important;
  }
  #ths-pricing-section .ths-card-elite {
    grid-column: 1 / -1 !important;
    max-width: 540px !important;
    margin-inline: auto !important;
  }
  #ths-pricing-section .ths-card-starter,
  #ths-pricing-section .ths-card-pro { height: 100% !important; }
  #ths-pricing-section .ths-hero-title,
  #ths-pricing-section .ths-compare-title { letter-spacing: -.8px !important; }
  #ths-pricing-section .ths-table thead th,
  #ths-pricing-section .ths-table tbody td { padding: 10px 14px !important; }
}

/* MOBILE LANDSCAPE <= 767px — 1-col grid */
@media screen and (max-width: 767px) {
  #ths-pricing-section {
    --fs-heading:     32px;
    --lh-heading:     36px;
    --fs-subheading:  17px;
    --lh-subheading:  21px;
    --fs-price:       46px;
    --lh-price:       46px;
    --fs-dollar:      21px;
    --fs-body:        14px;
    --fs-btn:         15px;
    --section-pad-v:  40px;
    --section-pad-h:  18px;
    --card-pad-v:     24px;
    --card-pad-h:     18px;
    --grid-gap:       14px;
    --toggle-pad-h:   22px;
  }
  #ths-pricing-section .ths-grid {
    grid-template-columns: 1fr !important;
    grid-auto-rows: auto !important;
  }
  #ths-pricing-section .ths-card-elite {
    grid-column: auto !important;
    max-width: 100% !important;
    margin-inline: 0 !important;
  }
  #ths-pricing-section .ths-hero-title,
  #ths-pricing-section .ths-compare-title { letter-spacing: -.5px !important; }
  #ths-pricing-section .ths-eyebrow::before,
  #ths-pricing-section .ths-eyebrow::after { width: 22px !important; }
  #ths-pricing-section .ths-popular { padding: 24px 6px !important; font-size: 8px !important; }
  #ths-pricing-section .ths-toggle-btn { font-size: 14px !important; }
  #ths-pricing-section .ths-note {
    flex-direction: column !important;
    gap: 8px !important;
    padding: 14px 16px !important;
    margin-bottom: 36px !important;
  }
  #ths-pricing-section .ths-note p { font-size: 12px !important; }
  #ths-pricing-section .ths-table thead th,
  #ths-pricing-section .ths-table tbody td { padding: 9px 10px !important; font-size: 13px !important; }
  #ths-pricing-section .ths-table .ths-cat td { font-size: 10px !important; padding: 7px 10px !important; }
}

/* MOBILE PORTRAIT <= 480px */
@media screen and (max-width: 480px) {
  #ths-pricing-section {
    --fs-heading:     26px;
    --lh-heading:     30px;
    --fs-subheading:  15px;
    --lh-subheading:  19px;
    --fs-price:       40px;
    --lh-price:       40px;
    --fs-dollar:      19px;
    --fs-body:        13px;
    --fs-btn:         14px;
    --section-pad-v:  32px;
    --section-pad-h:  14px;
    --card-pad-v:     20px;
    --card-pad-h:     16px;
    --grid-gap:       12px;
    --toggle-pad-h:   14px;
    --toggle-pad-v:   8px;
  }
  #ths-pricing-section .ths-hero-title,
  #ths-pricing-section .ths-compare-title { letter-spacing: -.3px !important; }
  #ths-pricing-section .ths-eyebrow::before,
  #ths-pricing-section .ths-eyebrow::after { display: none !important; }
  #ths-pricing-section .ths-toggle-wrap { margin-bottom: 32px !important; }
  #ths-pricing-section .ths-toggle-btn { font-size: 13px !important; }
  #ths-pricing-section .ths-save-badge { display: none !important; }
  #ths-pricing-section .ths-price-row { flex-wrap: wrap !important; }
  #ths-pricing-section .ths-amount { letter-spacing: -2px !important; }
  #ths-pricing-section .ths-btn { padding: 15px 20px !important; border-radius: 10px !important; }
  #ths-pricing-section .ths-features li { gap: 8px !important; padding: 7px 0 !important; font-size: 13px !important; }
  #ths-pricing-section .ths-table { min-width: 480px !important; }
  #ths-pricing-section .ths-table-scroll { border-radius: 12px !important; }
  #ths-pricing-section .ths-table thead th,
  #ths-pricing-section .ths-table tbody td { padding: 8px 8px !important; font-size: 12px !important; }
  #ths-pricing-section .ths-table .ths-cat td { font-size: 9px !important; letter-spacing: 1px !important; padding: 6px 8px !important; }
  #ths-pricing-section .ths-note {
    flex-direction: column !important;
    padding: 12px 14px !important;
    margin-bottom: 28px !important;
    border-radius: 12px !important;
  }
  #ths-pricing-section .ths-note p { font-size: 11.5px !important; }
  #ths-pricing-section .ths-popular {
    top: 14px !important;
    padding: 18px 5px !important;
    font-size: 7px !important;
    letter-spacing: 2px !important;
  }
  #ths-pricing-section .ths-hero { margin-bottom: 24px !important; }
  #ths-pricing-section .ths-compare { margin-bottom: 28px !important; }
}
