#tpr-landing-root {
    --dur: 250ms;
    --ease: cubic-bezier(.2,.9,.2,1);
    --bg: rgba(0,0,0,.5);
    --header: #0a7f9c;
    --radius: 14px;
    --maxw: 920px;
}

#tpr-landing-root .heading {
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.05em;
}

#tpr-landing-root h3.heading {
    font-size: 2.6rem;
}

#tpr-landing-root h4.heading {
    font-size: 2.2rem;
}

#tpr-landing-root h5.heading {
    font-size: 1.8rem;
}

@media (min-width: 640px) {
    #tpr-landing-root h3.heading {
        font-size: 3rem;
    }

    #tpr-landing-root h4.heading {
        font-size: 2.4rem;
    }

    #tpr-landing-root h5.heading {
        font-size: 2rem;
    }
}




#tpr-landing-root a.external-link[target="_blank"] {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent-color-1);
}

#tpr-landing-root a.external-link[target="_blank"]::after {
  content: '';
  display: inline-block;
  width: 1.4rem;
  height: 1.1rem;
  padding-right: 0.4rem;
  background: url('../img/external.svg') no-repeat center / contain;
  flex: 0 0 auto;
}




.text-highlight {
  color: var(--accent-color-1); /* tpr green */
}

.bg-brand {
    background-color: var(--accent-color-1);
}

.bg-gray {
    background-color: var(--gray-fa);
}

/* =========================
   Layout Utilities
   ========================= */

/* Display */
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.grid {
  display: grid;
}
.inline-grid {
  display: inline-grid;
}

/* Flex direction */
.row {
  flex-direction: row;
}
.row-rev {
  flex-direction: row-reverse;
}
.col {
  flex-direction: column;
}
.col-rev {
  flex-direction: column-reverse;
}

/* Flex wrap */
.wrap {
  flex-wrap: wrap;
}
.nowrap {
  flex-wrap: nowrap;
}

/* Align-items (cross-axis) */
.ai-start {
  align-items: flex-start;
}
.ai-center {
  align-items: center;
}
.ai-end {
  align-items: flex-end;
}
.ai-stretch {
  align-items: stretch;
}
.ai-baseline {
  align-items: baseline;
}

/* Justify-content (main-axis) */
.jc-start {
  justify-content: flex-start;
}
.jc-center {
  justify-content: center;
}
.jc-end {
  justify-content: flex-end;
}
.jc-between {
  justify-content: space-between;
}
.jc-around {
  justify-content: space-around;
}
.jc-evenly {
  justify-content: space-evenly;
}

/* Place-content (grid / wrapped flex) */
.pc-start {
  place-content: start;
}
.pc-center {
  place-content: center;
}
.pc-end {
  place-content: end;
}
.pc-between {
  place-content: space-between;
}

/* Place-items (grid) */
.pi-start {
  place-items: start;
}
.pi-center {
  place-items: center;
}
.pi-end {
  place-items: end;
}
.pi-stretch {
  place-items: stretch;
}

/* Common centering helpers */
.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-x {
  display: flex;
  justify-content: center;
}

.center-y {
  display: flex;
  align-items: center;
}

/* =========================
   Gap Utilities
   ========================= */
.gap-0 {
  gap: 0;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-5 {
  gap: 1.25rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-10 {
  gap: 2.5rem;
}
.gap-12 {
  gap: 3rem;
}

/* Row / Column gap */
.rowgap-2 {
  row-gap: 0.5rem;
}
.rowgap-4 {
  row-gap: 1rem;
}
.colgap-2 {
  column-gap: 0.5rem;
}
.colgap-4 {
  column-gap: 1rem;
}

/* =========================
   Flex sizing
   ========================= */

.grow {
  flex: 1 1 auto;
}
.grow-0 {
  flex-grow: 0;
}
.shrink {
  flex-shrink: 1;
}
.shrink-0 {
  flex-shrink: 0;
}

/* Self alignment */
.self-start {
  align-self: flex-start;
}
.self-center {
  align-self: center;
}
.self-end {
  align-self: flex-end;
}
.self-stretch {
  align-self: stretch;
}

/* Order */
.order-1 {
  order: 1;
}
.order-2 {
  order: 2;
}
.order--1 {
  order: -1;
}

/* =========================
   Responsive Direction (Mobile-first)
   - default = mobile
   - sm = >= 640px
   - md = >= 768px
   - lg = >= 1024px
   ========================= */

/* Mobile defaults (already covered by .row/.col etc.) */

/* sm */
@media (min-width: 640px) {
    .sm-row { flex-direction: row; }
    .sm-row-rev { flex-direction: row-reverse; }
    .sm-col { flex-direction: column; }
    .sm-col-rev { flex-direction: column-reverse; }
  }
  
  /* md */
  @media (min-width: 768px) {
    .md-row { flex-direction: row; }
    .md-row-rev { flex-direction: row-reverse; }
    .md-col { flex-direction: column; }
    .md-col-rev { flex-direction: column-reverse; }
  }
  
  /* lg */
  @media (min-width: 1024px) {
    .lg-row { flex-direction: row; }
    .lg-row-rev { flex-direction: row-reverse; }
    .lg-col { flex-direction: column; }
    .lg-col-rev { flex-direction: column-reverse; }
  }

  /* =========================
   Grid Layout Templates (NEW)
   ========================= */
.grid-1 { grid-template-columns: 1fr; }

.grid-2 { grid-template-columns: 1fr; }
.grid-2-auto { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

/* Responsive column templates */
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-2-auto {  grid-template-columns: auto 74.8rem; }
  .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* =========================
   Visibility Utilities (mobile fold = 640px)
   - mobile: < 640px
   - desktop: >= 640px
   ========================= */

/* Mobile only (<640) */
.show-mobile { display: block; }
@media (min-width: 640px) {
  .show-mobile { display: none !important; }
}

/* Desktop only (>=640) */
.show-desktop { display: none; }
@media (min-width: 640px) {
  .show-desktop { display: block !important; }
}

/* ================ 
COMMON STUFFS
=================== */
#tpr-landing-root section .inner-section {
  padding-left: 2.4rem;
  padding-right: 2.4rem;
}

#tpr-landing-root section.padding-xl {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

#tpr-landing-root section.padding-lg {
    padding-top: 6.4rem;
    padding-bottom: 8rem;
}

#tpr-landing-root .heading.underline {
    position: relative;
    padding-bottom: 1.6rem;
}

#tpr-landing-root .heading.underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    background: var(--accent-color-1);
    width: calc(50% + 52dvw);
}

#tpr-landing-root .heading.leftline {
    border-left: 4px solid var(--accent-color-1);
    padding-left: 1.6rem;
}

@media screen and (min-width: 640px) {

  #tpr-landing-root section .inner-section {
    width: 144rem;
    margin-left: auto;
    margin-right: auto;
  }

  #tpr-landing-root section .inner-section {
    padding-left: 6.4rem;
    padding-right: 12.8rem;
  }

  #tpr-landing-root section.padding-xl {
    padding-top: 16rem;
    padding-bottom: 8rem;
  }

  #tpr-landing-root section.padding-lg {
    padding-top: 10rem;
    padding-bottom: 12rem;
  }
}

/* ================ 
HERO SECTION
=================== */
#tpr-landing-root .hero .c-topKv {
    height: 600px;
}

@media screen and (min-width: 640px) {
    #tpr-landing-root .hero .slick-slide,
    #tpr-landing-root .hero .c-topKv
     {
        height: 48vw; /*approx 680px at 1440 viewport*/
     }
}

@media (max-width: 600px) {
    #tpr-landing-root .hero .top-kv-bg-image[style*="background-image"] {
        height: 600px;
    }
}

#tpr-landing-root .hero .c-topKv__ttl {
  font-size: 3vw; /*approx 44px on 1480px*/
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  #tpr-landing-root .hero .c-topKv__ttl {
    font-size: 2.4rem;
  }
}

#tpr-landing-root .hero .c-topKv__read {
  margin-top: 0;
  line-height: 1.6;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  #tpr-landing-root .hero .c-topKv__read {
    font-size: 1.6rem;
  }
}

#tpr-landing-root .hero a.kv-btn__link {
  min-width: 24rem;
  height: 4.8rem;
  padding: 0 2.4rem;
}

#tpr-landing-root .hero .slider-text {
  top: 25.5%;
  left: 10%;
  margin-right: 10%;
}

@media screen and (max-width: 767px) {
  #tpr-landing-root .hero .slider-text {
    left: 8%;
    margin-right: 5%;
    top: 21%;
  }
}

/*=============== 
INTRO SECTION
 ==============*/
#tpr-landing-root .intro-section {
}

#tpr-landing-root .intro-section .intro-text {
    width: auto;
    order: 2;
    border-right: none;
    padding-right: 0;
    border-top: 1px solid var(--gray-b3);
    padding-top: 3.2rem;
}

#tpr-landing-root .intro-section .intro-media {
    order: 1;
    padding-left: 0;
    padding-bottom: 3.2rem;
}

#tpr-landing-root .intro-section .intro-media img {
    max-width: 100%;
    height: 50px;
}

/* Desktop Style */
@media screen and (min-width: 640px) {
    #tpr-landing-root .intro-section .intro-text {
        width: 68rem;
        padding-right: 6.4rem;
        order: 1;
        border-right: 1px solid var(--gray-b3);
        border-top: none;
        padding-top: 0;
    }
    #tpr-landing-root .intro-section .intro-media {
        padding-left: 6.4rem;
        padding-bottom: 0;
        order: 2;
    }

    #tpr-landing-root .intro-section .intro-media .image-elevation {
        height: 43rem;
        width: 44rem;
        align-self: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #tpr-landing-root .intro-section .intro-media img {
        height: 69px;
    }
}


#tpr-landing-root .intro-section .intro-text h2 {
    margin-bottom: 2.4rem;
    margin-top: 0px;
}



/*==================== 
CIRCLE MODEL SECTION + COMMON HEADING MARGINS
 ====================*/
 #tpr-landing-root section .heads {
    margin-bottom: 4.8rem;
 }

 #tpr-landing-root section h3 {
    margin-bottom: 1.6rem;
 }

 #tpr-landing-root section h5 {
    margin-bottom: 1.6rem;
 }

 #tpr-landing-root .cmodel-section .cmodel-media {
    padding-bottom: 4rem;
    margin-bottom: 4rem;
    border-bottom: 1px solid var(--gray-e6);
 }

 #tpr-landing-root section h4 {
    margin-bottom: 3.2rem;
 }


 @media screen and (min-width: 640px) {
     #tpr-landing-root section .heads {
        margin-bottom: 8rem;
     }
    
     #tpr-landing-root section h3 {
        margin-bottom: 2.4rem;
     }
    
     #tpr-landing-root .cmodel-section .cmodel-media {
        padding-bottom: 6.4rem;
        margin-bottom: 6.4rem;
     }
    
     #tpr-landing-root section h4 {
        margin-bottom: 4rem;
     }
 }

 #tpr-landing-root .cmodel-section .cmodel-media img {
    width: 100%;
 }

 #tpr-landing-root .cmodel-section .grid {
     row-gap: 2.4rem;
}

@media screen and (min-width: 640px) {
    #tpr-landing-root .cmodel-section .grid {
        row-gap: 4rem;
        column-gap: 6.4rem;
    }
 }

 #tpr-landing-root .cmodel-section .value-items .number {
     font-size: 4.8rem;
     padding-bottom: 0;
     margin-bottom: 1.6rem;
     line-height: 1.2;
     letter-spacing: 0.05em;
     font-family: 'Inter';
     color: var(--accent-color-1);
     border-bottom: 1px solid var(--gray-b3);
 }

 #tpr-landing-root .cmodel-section .value-items h5 {
    margin-bottom: 0.8rem;
 }

 @media screen and (min-width: 640px) { 
    #tpr-landing-root .cmodel-section .value-items .number {
        font-size: 5.6rem;
        padding-bottom: 0.8rem;
     }

     #tpr-landing-root .cmodel-section .value-items h5 {
        margin-bottom: 1.6rem;
     }
  }


 /*======================= 
BUSINESS SUPPORT SECTION
 ========================*/
 #tpr-landing-root .bsupport-section .heads {}

 #tpr-landing-root .bsupport-section {}

 #tpr-landing-root .bsupport-section {}

 #tpr-landing-root .bsupport-section {}

 #tpr-landing-root .bsupport-section .bsupport-media img {
    width: 100%;
 }


/*======================= 
COMPARISON SECTION
 ========================*/
 #tpr-landing-root .comparison-section {}
  
  .compare-grid {
    display: grid;
    gap: 1.6rem;
    align-items: stretch; /* cards stretch to equal height in their row */
  }

  .compare-x img {
        width: 4.6rem;
    }
  
  /* Mobile (<640): card / X / card */
  @media (max-width: 639.98px) {
    .compare-grid {
      grid-template-columns: 1fr;
      grid-template-rows: auto auto auto;
      gap: 2.4rem
    }
  
    .compare-x {
      justify-self: center;
      align-self: center;
      line-height: 1;
    }

    
  }
  
  /* Desktop (>=640): card | X | card  (single row => equal height) */
  @media (min-width: 640px) {
    .compare-grid {
      grid-template-columns: 1fr auto 1fr;
      align-items: stretch;
    }
  
    .compare-x {
      align-self: center;
      justify-self: center;
      line-height: 1;
    }
  }
  
  .compare-card {
    background: #F5FDFF;
    border: 1px solid var(--accent-color-1);
    border-radius: 0.4rem;
    padding: 2.4rem;
    box-sizing: border-box;
  
    /* makes internal spacing consistent */
    display: flex;
    flex-direction: column;
    height: 100%; /* ensures it fills the grid row height */
  }

  @media (min-width: 640px) {
    .compare-card {
        padding: 4rem;
    }
  }
  
  
  .compare-list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .compare-list li {
    position: relative;
    padding-left: 3.2rem;
    margin: 0 0 1.6rem 0;
  }

  .compare-list li:last-child {
    margin-bottom: 0px;
  }
  
  .compare-list li::before {
    content: "";
    position: absolute;
    height: 0.4rem;
    width: 1.2rem;
    left: 0.2rem;
    top: 1.2rem;
    background-color: var(--accent-color-1);
  }



  /* Promise Step */

    #tpr-landing-root .promises {}

    #tpr-landing-root .promises .promise-step {
        padding-bottom: 4rem;
        margin-bottom: 4rem;
        border-bottom: 1px solid var(--gray-f0);
    }

    #tpr-landing-root .promises .promise-step:last-child {
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
        border-bottom: none;
    }

    #tpr-landing-root .promises .promise-step .left-promise {
      border-bottom: 1px solid var(--gray-b3);;
      padding-right: 0px;
      padding-bottom: 2.4rem;
    }
    
    #tpr-landing-root .promises .promise-step .right-promise {
        padding-left: 0;
        padding-top: 2.4rem;
    }

    #tpr-landing-root .promises .promise-step p.ff,
    #tpr-landing-root .promises .promise-step p.ff
        {
        margin-bottom: 0.8rem;
    }


    #tpr-landing-root .promises .promise-step .right-promise p.ff {
        font-weight: 700;
    }

    #tpr-landing-root .promises .promise-step .right-promise p:not(.ff) {
        margin-bottom: 1.2rem;
    }

    #tpr-landing-root .promises .promise-step .right-promise p:not(.ff):last-child {
        margin-bottom: 0;
    }


    
    @media (min-width: 640px) {
        #tpr-landing-root .promises .promise-step .left-promise {
            padding-right: 4rem;
            border-right: 1px solid var(--gray-b3);
            padding-bottom: 0px;
            border-bottom: none;
        }

        #tpr-landing-root .promises .promise-step .right-promise {
            padding-left: 4rem;
            padding-top: 0;
        }

        #tpr-landing-root .promises .promise-step {
            padding-bottom: 6.4rem;
            margin-bottom: 6.4rem;
          }
    }

/* CTA Section */
#tpr-landing-root .call-to-action {
  padding-bottom: 0;
}


#tpr-landing-root .cta {
    color: white;
    padding: 6.8rem 0;
}

#tpr-landing-root .cta .cta-inner {
    max-width: 55rem;
    width: 100%;
    margin: 0 auto;
    padding: 0 2.4rem;
    text-align: center;
}

#tpr-landing-root .cta h4 {
    font-size: 1.6rem;
    margin-bottom: 0px;
}

#tpr-landing-root .cta p {
    font-size: 1.2rem;
}

#tpr-landing-root .cta .kv-btn {
    margin-top: 2.4rem;
    display: inline-block;
}

#tpr-landing-root .cta .kv-btn a {
    height: 4.8rem;
}

@media (max-width: 640px) {
  #tpr-landing-root .call-to-action .inner-section  {
    padding: 0;
  }
}

@media (min-width: 640px) {

    #tpr-landing-root .call-to-action {
      padding-bottom: 120px;
    }

    #tpr-landing-root .cta .cta-inner {
        padding: 0;
    }

    #tpr-landing-root .cta {
        padding: 8.8rem 0;
    }


#tpr-landing-root .cta h4 {
    font-size: 2.4rem;
}

    #tpr-landing-root .cta p {
        font-size: 1.6rem;
    }

}

/* =========================
  Company Info
  ========================== */
  #tpr-landing-root .company-info .heads {
    margin-bottom: 2.4rem !important;
  }

  #tpr-landing-root .company-info h5.heading {
    margin-bottom: 0px !important;
  }

  #tpr-landing-root .company-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 6.4rem;
    font-size: 1.4rem;
    line-height: 180%;
    letter-spacing: 0.05em;
    font-weight: 400;
  }
  
  #tpr-landing-root .company-info-item {
    display: grid;
    grid-template-columns: 12rem minmax(0, 1fr);
    gap: 0;
    align-items: start;
    padding: 2.4rem 0;
    border-top: 1px solid var(--gray-e6);
  }
  
  #tpr-landing-root .company-info-item:last-child {
    border-bottom: 1px solid var(--gray-e6);
  }
  
  #tpr-landing-root .company-info-label {
    color: #000;
  }
  
  #tpr-landing-root .company-info-value {
    min-width: 0;
    color: #000;
    word-break: break-word;
  }
  
  #tpr-landing-root .company-info-map {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    min-width: 13.4rem;
    height: 5.7rem;
    margin-top: 1.6rem;
    padding: 1rem 1.5rem;
    border: 1px solid var(--accent-color-1);
    border-radius: 0.4rem;
    color: var(--accent-color-1);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 180%;
    text-decoration: none;
    transition: background-color 250ms ease, color 250ms ease, border-color 250ms ease;
  }
  
  #tpr-landing-root .company-info-map:hover {
    background: var(--accent-color-1);
    color: #fff;
  }
  
  #tpr-landing-root .company-info-map svg {
    flex: 0 0 auto;
  }

  /* utility for this section */
  #tpr-landing-root .company-info-item .mr-10 {
    margin-right: 40px;
  }

  #tpr-landing-root .company-info-item .ml-4 {
    margin-left: 16px;
  }

  /* mobile */
  @media (max-width: 640px) {
    #tpr-landing-root .company-info-grid {
      grid-template-columns: 1fr;
      font-size: 1.2rem;
    }

    #tpr-landing-root .company-info-item {
      grid-template-columns: 10rem minmax(0, 1fr);
    }
  
    #tpr-landing-root .company-info-map {
      width: 100%;
      min-width: 0;
      padding: 1.125rem 1.25rem;
    }

    #tpr-landing-root .company-info-item .mr-10 {
      margin-right: 0px;
    }

    #tpr-landing-root .company-info-item .ml-4 {
      margin-left: 0px;
    }
  }


/* =========================
   TPR Modal
   ========================= */

   #tpr-landing-root {
    --tpr-modal-dur: 250ms;
    --tpr-modal-ease: cubic-bezier(.2,.9,.2,1);
    --tpr-modal-overlay: rgba(0,0,0,.5);
    --tpr-modal-radius: 1.4rem;
    --tpr-modal-shadow: 0 20px 60px rgba(0,0,0,.25);
    --tpr-modal-maxw: 92rem;
  
    /* colors (adjust to your palette) */
    --green-5: var(--accent-color-1);
    --green-7: #066578;
  }
  
  /* body scroll lock (JS toggles .overflow-hidden on body) */
  body.overflow-hidden {
    overflow: hidden;
  }
  
  /* ---------- Modal root ---------- */
  #tpr-landing-root .modal {
    position: fixed;
    inset: 0;
    z-index: 9999999;
  }
  
  #tpr-landing-root .hidden {
    display: none !important;
  }
  
  /* ---------- Overlay ---------- */
  #tpr-landing-root .modal-overlay {
    position: fixed;
    inset: 0;
    background: var(--tpr-modal-overlay);
    opacity: 0;
    transition: opacity var(--tpr-modal-dur) var(--tpr-modal-ease);
    will-change: opacity;
  }
  
  /* JS adds opacity-100 */
  #tpr-landing-root .opacity-100 {
    opacity: 1 !important;
  }
  
  /* ---------- Modal content shell ---------- */
  #tpr-landing-root .modal-content {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, calc(-50% + 1.4rem), 0);
    opacity: 0;
  
    width: min(var(--tpr-modal-maxw), calc(100% - 3.6rem));
    max-height: 95vh;
  
    background: #fff;
    border-radius: var(--tpr-modal-radius);
    box-shadow: var(--tpr-modal-shadow);
    overflow: hidden;
  
    display: flex;
    flex-direction: column;
  
    transition:
      transform var(--tpr-modal-dur) var(--tpr-modal-ease),
      opacity var(--tpr-modal-dur) var(--tpr-modal-ease);
    will-change: transform, opacity;
  }
  
  /* ---------- Animations ( JS toggles these classes) ---------- */
  #tpr-landing-root .animate-slideInUp {
    transform: translate3d(-50%, -50%, 0) !important;
    opacity: 1 !important;
  }
  
  #tpr-landing-root .animate-slideOutDown {
    transform: translate3d(-50%, calc(-50% + 1.4rem), 0) !important;
    opacity: 0 !important;
  }
  
  /* ---------- Header ---------- */
  #tpr-landing-root .modal-header {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
  
    padding: 1.2rem 2.4rem;
    background: var(--green-5);
    color: #fff;
  }

  #tpr-landing-root .modal-header h6 {
    font-size: 1.4rem;
  }

  @media (min-width: 640px) {
    #tpr-landing-root .modal-header {
        padding: 1.6rem 4rem;
    }

    #tpr-landing-root .modal-header h6 {
        font-size: 1.8rem;
      }
  }

  
  #tpr-landing-root .bg-green-5 {
    background: var(--green-5) !important;
  }
  
  #tpr-landing-root .text-white {
    color: #fff !important;
  }
  
  /* Responsive visibility: hidden md:block, block md:hidden */
  #tpr-landing-root .block { display: block; }
  #tpr-landing-root .hidden { display: none; }
  
  @media (min-width: 768px) {
    #tpr-landing-root .md\:block { display: block !important; }
    #tpr-landing-root .md\:hidden { display: none !important; }
  }
  
  
  /* Close button */
  #tpr-landing-root .modal-close {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 6px;
    cursor: pointer;
    line-height: 0;
  }
  
  /* SVG helpers that were Tailwind */
  #tpr-landing-root .stroke-current {
    stroke: currentColor;
  }
  
  #tpr-landing-root .transition-colors {
    transition: color var(--tpr-modal-dur) var(--tpr-modal-ease);
  }
  
  #tpr-landing-root .duration-\[250ms\] {
    transition-duration: var(--tpr-modal-dur);
  }
  
  #tpr-landing-root .text-green-7 {
    color: var(--green-7);
  }
  
  /* hover:text-green-7 */
  #tpr-landing-root .hover\:text-green-7:hover {
    color: var(--green-7);
  }
  
  /* ---------- Body (scroll container) ---------- */
  #tpr-landing-root .modal-body {
    flex: 1 1 auto;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 2.4rem;
}

@media (min-width: 640px) {
    #tpr-landing-root .modal-body {
        padding: 4rem;
    }
  }
  
  /* iframe baseline */
  #tpr-landing-root .pardotform {
    width: 100%;
    border: 0;
    display: block;
    min-height: 300px; /* prevent jump while resizer initializes */
  }
  
  /* Optional: reduce motion */
  @media (prefers-reduced-motion: reduce) {
    #tpr-landing-root .modal-overlay,
    #tpr-landing-root .modal-content,
    #tpr-landing-root .transition-colors {
      transition: none !important;
    }
  }