/* TKSE-WEB-008D3A-MOBILE-CTA-POLISH
   Mobile-only polish for homepage bottom CTA.
   Goal: do not cover hero CTA/chips; reveal only after hero is passed. */

@media (max-width: 820px) {
  body.tkse-008d3a .mobile-cta {
    display: grid !important;
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: max(12px, env(safe-area-inset-bottom));
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 8px;
    padding: 8px;
    border-radius: 22px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(7,26,63,.08);
    box-shadow: 0 18px 48px rgba(1,11,31,.22);
    z-index: 85;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(115%);
    transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
  }

  body.tkse-008d3a.tkse-mobile-cta-visible .mobile-cta {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.tkse-008d3a .mobile-cta a {
    min-width: 0;
    height: 48px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    display: grid;
    place-items: center;
    text-decoration: none;
    color: #06183b;
    background: #f4f8fb;
  }

  body.tkse-008d3a .mobile-cta a.main {
    color: #fff;
    background: linear-gradient(135deg,#06b75f,#05924f);
    box-shadow: 0 12px 28px rgba(5,184,103,.2);
  }

  body.tkse-008d3a .footer.d3-footer,
  body.tkse-008d3a .d3-final {
    padding-bottom: calc(110px + env(safe-area-inset-bottom));
  }

  body.tkse-008d3a .hero-master-grid {
    padding-bottom: 64px !important;
  }

  body.tkse-008d3a .master-copy h1 {
    font-size: clamp(36px, 9.1vw, 47px) !important;
    line-height: 1.13 !important;
    letter-spacing: -.048em !important;
  }

  body.tkse-008d3a .master-copy p {
    font-size: 16.5px !important;
    line-height: 1.68 !important;
  }

  body.tkse-008d3a .master-actions .btn {
    height: 56px !important;
    border-radius: 18px !important;
  }

  body.tkse-008d3a .master-chips {
    gap: 12px !important;
    margin-top: 24px !important;
  }

  body.tkse-008d3a .master-chips span {
    min-height: 54px;
    height: auto !important;
    padding: 14px 18px !important;
    font-size: 15px;
  }
}

@media (min-width: 821px) {
  body.tkse-008d3a .mobile-cta {
    display: none !important;
  }
}
