:root {
  --red: #a63828;
  --red2: #dc3545;
  --dark: #121721;
  --text: #1f2933;
  --muted: #687385;
  --grey: #f4f5f7;
  --white: #fff;
  --shadow: 0 16px 35px rgba(20, 26, 37, .12);
  --radius: 1rem
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Nunito, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6
}

a {
  color: inherit;
  text-decoration: none
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1rem
}

.container-fluid {
  width: 100%;
  padding: 0 1rem
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0px
}

.row>* {
  padding: 0 15px
}

.col {
  flex: 1 1 0
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%
}

.d-flex {
  display: flex
}

.d-none {
  display: none
}

.align-items-center {
  align-items: center
}

.align-items-start {
  align-items: flex-start
}

.align-self-center {
  align-self: center
}

.justify-content-center {
  justify-content: center
}

.justify-content-between {
  justify-content: space-between
}

.position-relative {
  position: relative
}

.overflow-hidden {
  overflow: hidden
}

.text-center {
  text-align: center
}

.text-right {
  text-align: right
}

.text-danger {
  color: var(--red) !important
}

.text-dark {
  color: #111827 !important
}

.text-white {
  color: #fff !important
}

.text-muted {
  color: var(--muted) !important
}

.font-weight-bold {
  font-weight: 700
}

.font-weight-400 {
  font-weight: 400
}

.lead {
  font-size: 1.14rem
}

.display-4 {
  font-size: 2.75rem
}

.lh-110 {
  line-height: 1.1
}

.lh-180 {
  line-height: 1.8
}

.small,
.text-sm,
.text-small {
  font-size: .875rem
}

.list-unstyled {
  list-style: none;
  margin: 0;
  padding: 0
}

.bg-grey,
.bg-section-secondary {
  background: var(--grey)
}

.bg-dark {
  background: #111820
}

.bg-danger {
  background: var(--red2)
}

.bg-white {
  background: #fff
}

.rounded {
  border-radius: .5rem
}

.rounded-lg {
  border-radius: var(--radius)
}

.rounded-circle {
  border-radius: 50%
}

.rounded-pill {
  border-radius: 999px
}

.shadow,
.shadow-lg {
  box-shadow: var(--shadow)
}

.zindex-100 {
  z-index: 100
}

.opacity-8 {
  opacity: .8
}

.main-content {
  overflow: hidden
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000
}

.navbar {
  min-height: 92px;
  padding: 1rem 0
}

.navbar .container {
  display: flex;
  align-items: center
}

.navbar-brand img {
  height: 70px;
  width: 92px;
  object-fit: contain
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none
}

.navbar-collapse {
  display: flex;
  align-items: center;
  flex: 1
}

.navbar .ml-lg-auto {
  margin-left: auto
}

.nav-link {
  display: block;
  padding: .6rem .75rem;
  color: #111820;
  font-weight: 700
}

.navbar-dark .nav-link {
  color: #111820
}

.navbar-transparent {
  background: rgba(255, 255, 255, .1)
}

.navbar-main {
  transition: background .2s ease
}

.navbar-toggler {
  display: none;
  border: 0;
  background: transparent;
  padding: .5rem;
  margin-left: auto
}

.navbar-toggler-icon {
  display: block;
  width: 26px;
  height: 2px;
  background: #111;
  box-shadow: 0 8px 0 #111, 0 16px 0 #111
}

.slice,
.section-half-rounded {
  position: relative;
  padding: 4rem 0
}

.slice-lg {
  padding-top: 6rem;
  padding-bottom: 6rem
}

.slice-xsm {
  padding-top: 1rem;
  padding-bottom: 1rem
}

.section-inner {
  position: absolute;
  inset: 0;
  z-index: -1
}

.py-4 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem
}

.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem
}

.py-6 {
  padding-top: 4rem;
  padding-bottom: 4rem
}

.pt-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.pt-2 {
  padding-top: .5rem;
  padding-bottom: .5rem

}

.pt-4 {
  padding-top: 1.5rem;
    padding-bottom: 1.5rem

}

.pt-6 {
  padding-top: 4rem;
    padding-bottom: 4rem

}

.pb-5 {
  padding-bottom: 3rem
}

.pb-300 {
  padding-bottom: 18rem
}

.px-3 {
  padding-left: 1rem;
  padding-right: 1rem
}

.px-4 {
  padding-left: 1.5rem;
  padding-right: 1.5rem
}

.p-2 {
  padding: .5rem
}

.mt-0 {
  margin-top: 0
}

.mt-3 {
  margin-top: 1rem
}

.mt-4 {
  margin-top: 1.5rem
}

.mt-5 {
  margin-top: 3rem
}

.mt--200 {
  margin-top: -12rem
}

.mb-0 {
  margin-bottom: 0
}

.mb-3 {
  margin-bottom: 1rem
}

.mb-4 {
  margin-bottom: 1.5rem
}

.mb-5 {
  margin-bottom: 3rem
}

.mr-0 {
  margin-right: 0
}

.mr-n3 {
  margin-right: -1rem
}

.mx-auto {
  margin-left: auto;
  margin-right: auto
}

.ml-auto {
  margin-left: auto
}

.my-4 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem
}

.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 3px 15px rgba(0, 0, 0, .06);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.card-body {
  padding: 1.5rem
}

.hover-translate-y-n10,
.hover-translate-y-n3,
.hover-scale-110 {
  transition: transform .2s ease, box-shadow .2s ease
}

.hover-translate-y-n10:hover {
  transform: translateY(-10px)
}

.hover-translate-y-n3:hover {
  transform: translateY(-3px)
}

.hover-scale-110:hover {
  transform: scale(1.03)
}

.hover-shadow-lg:hover {
  box-shadow: var(--shadow)
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .8rem 1.1rem;
  border-radius: .35rem;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: .2s ease;
  background: #e9ecef;
  color: #111
}

.btn-sm {
  font-size: .9rem;
  padding: .55rem .9rem
}

.btn-white {
  background: #fff;
  color: #111
}

.btn-danger,
.btn-soft-danger:hover {
  background: var(--red2);
  color: #fff
}

.btn-dark {
  background: #111820;
  color: #fff
}

.btn-secondary {
  background: #6c757d;
  color: #fff
}

.btn-soft-danger {
  background: rgba(220, 53, 69, .1);
  color: var(--red2)
}

.btn-app-store {
  background: #000;
  color: #fff;
  border-radius: .35rem;
  min-width: 190px;
  line-height: 1.1
}

.btn-app-store i {
  font-size: 1.9rem
}

.btn-inner--text {
  font-size: .85rem
}

.btn-inner--brand {
  display: block;
  font-size: 1.1rem
}

.btn-icon .btn-inner--icon {
  display: inline-flex
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center
}

.icon-shape {
  width: 3rem;
  height: 3rem
}

.icon-lg {
  width: 4rem;
  height: 4rem;
  font-size: 1.5rem
}

.badge {
  display: inline-block;
  padding: .35rem .65rem;
  font-size: .75rem;
  font-weight: 700
}

.badge-pill {
  border-radius: 999px
}

.badge-soft-danger {
  background: rgba(220, 53, 69, .12);
  color: var(--red2)
}

.badge-soft-dark {
  background: #e9ecef;
  color: #111820
}

.img-center {
  margin-left: auto;
  margin-right: auto;
  padding-left:auto;
  padding-right:auto;
}

.footer {
  background: #fff;
  padding-top: 4rem
}

.footer-light {
  border-top: 1px solid #eee
}

.copyright {
  font-size: .875rem;
  color: var(--muted)
}

.shape-container {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  pointer-events: none;
  overflow: hidden
}

.shape-container svg {
  display: block;
  width: 100%;
  height: 120px;
  fill: #fff
}

.section-process {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap
}

.section-process-step {
  text-align: center;
  max-width: 240px
}

.section-process-step-number {
  font-size: 2rem;
  font-weight: 700
}

.google-maps iframe,
.map-responsive iframe {
  width: 100%;
  max-width: 100%;
  border: 0;
  border-radius: .75rem
}

.modal {
  display: none;
  position: fixed;
  z-index: 5000;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  align-items: center;
  justify-content: center;
  padding: 1rem
}

.modal.show {
  display: flex
}

.modal-dialog {
  width: 100%;
  max-width: 500px
}

.modal-content {
  background: #fff;
  border-radius: .7rem;
  box-shadow: var(--shadow);
  overflow: hidden
}

.modal-header,
.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #eee
}

.modal-footer {
  border-top: 1px solid #eee;
  border-bottom: 0
}

.modal-body {
  padding: 1.5rem
}

.close {
  background: transparent;
  border: 0;
  font-size: 1.5rem;
  cursor: pointer
}

.typed-cursor {
  display: inline-block;
  animation: blink .8s infinite
}

@keyframes blink {
  50% {
    opacity: 0
  }
}

.fbmessenger {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000
}

.wposbottom_right {
  right: 18px;
  bottom: 18px
}

.tooltiptext {
  display: none
}

.contact-bck {
  background: #f5f5f5
}

.bg-cover,
.bg-size--cover {
  background-size: cover;
  background-position: center
}

.mask {
  position: absolute;
  inset: 0
}

.ma-0 {
  margin: 0
}

.pr-4 {
  padding-right: 1.5rem
}

.pl-4 {
  padding-left: 1.5rem
}

.fluid-paragraph {
  max-width: auto
}

.link-underline-danger,
.link-underline-dark {
  text-decoration: underline
}

.fa-solid,
.fa-brands,
.fab,
.far,
.fal {
  font-style: normal;
  display: inline-block;
  line-height: 1
}

.fa-phone:before {
  content: "☎"
}

.fa-sms:before {
  content: "✉"
}

.fa-apple:before {
  content: ""
}

.fa-google-play:before {
  content: "▶"
}

.fa-angle-right:before {
  content: "›"
}

.fa-angle-up:before {
  content: "⌃"
}

.fa-tools:before {
  content: "🛠"
}

.fa-headset:before {
  content: "☎"
}

.fa-thumbs-up:before {
  content: "👍"
}

.fa-users-cog:before {
  content: "⚙"
}

.fa-file-check:before {
  content: "✓"
}

.fa-chalkboard-teacher:before {
  content: "▣"
}

.fa-mobile:before {
  content: "📱"
}

.fa-tablet:before {
  content: "▯"
}

.fa-laptop:before {
  content: "💻"
}

.fa-desktop:before {
  content: "🖥"
}

.fa-wallet:before {
  content: "▣"
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0 0 1rem;
  line-height: 1.2
}

p {
  margin: 0 0 1rem
}

.h2 {
  font-size: 2rem
}

.h5 {
  font-size: 1.25rem
}

.heading {
  font-weight: 700
}

.section-half-rounded {
  padding-top: 7rem
}

.desktop {
  display: block
}

.lazy {
  content-visibility: auto
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem
}

@media (min-width:768px) {
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%
  }

  .justify-content-md-between {
    justify-content: space-between
  }

  .text-md-left {
    text-align: left
  }

  .pr-md-4 {
    padding-right: 1.5rem
  }

  .pt-md {
    padding-top: 3rem
  }
}

@media (min-width:992px) {
  .col-lg-2 {
    flex: 0 0 16.666%;
    max-width: 16.666%
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%
  }

  .col-lg-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%
  }

  .col-lg-5 {
    flex: 0 0 41.666%;
    max-width: 41.666%
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%
  }

  .col-lg-7 {
    flex: 0 0 58.333%;
    max-width: 58.333%
  }

  .col-lg-8 {
    flex: 0 0 66.666%;
    max-width: 66.666%
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%
  }

  .offset-xl-2 {
    margin-left: 16.666%
  }

  .text-lg-left {
    text-align: left
  }

  .d-lg-block {
    display: block
  }

  .d-lg-inline-flex {
    display: inline-flex
  }

  .order-lg-1 {
    order: 1
  }

  .order-lg-2 {
    order: 2
  }

  .mb-lg-0 {
    margin-bottom: 0
  }

  .mr-lg-4 {
    margin-right: 1.5rem
  }

  .mr-lg-5 {
    margin-right: 3rem
  }

  .ml-lg-auto {
    margin-left: auto
  }

  .px-lg-0 {
    padding-left: 0;
    padding-right: 0
  }

  .py-lg-0 {
    padding-top: 0;
    padding-bottom: 0
  }

  .py-lg-5 {
    padding-top: 3rem;
    padding-bottom: 3rem
  }

  .py-lg-6 {
    padding-top: 4rem;
    padding-bottom: 4rem
  }

  .py-lg-8 {
    padding-top: 6rem;
    padding-bottom: 6rem
  }

  .pt-lg-6 {
    padding-top: 4rem
  }

  .pt-lg-9 {
    padding-top: 8rem
  }

  .pr-lg-5 {
    padding-right: 3rem
  }

  .navbar-expand-lg .navbar-collapse {
    display: flex !important
  }

  .navbar-expand-lg .navbar-toggler {
    display: none
  }
}

@media (min-width:1200px) {
  .col-xl-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%
  }

  .col-xl-5 {
    flex: 0 0 41.666%;
    max-width: 41.666%
  }
}

@media (max-width:991px) {
  .navbar {
    background: #fff;
    position: relative
  }

  .navbar .container {
    flex-wrap: wrap
  }

  .navbar-toggler {
    display: block
  }

  .navbar-collapse {
    display: none;
    flex-basis: 100%;
    margin-top: 1rem
  }

  .navbar-collapse.show {
    display: block
  }

  .navbar-nav {
    display: block
  }

  .nav-link {
    padding: .85rem 0
  }

  .ml-lg-auto {
    margin-left: 0
  }

  .section-half-rounded {
    padding-top: 6rem
  }

  .slice-lg {
    padding-top: 4rem;
    padding-bottom: 4rem
  }

  .pb-300 {
    padding-bottom: 8rem
  }

  .mt--200 {
    margin-top: -5rem
  }

  .display-4 {
    font-size: 2.15rem
  }

  .col-sm-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%
  }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%
  }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%
  }

  .d-none.d-lg-inline-flex {
    display: none !important
  }
}

@media (max-width:575px) {

  .col-3,
  .col-6,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-md-6,
  .col-sm-4,
  .col-sm-6 {
    flex: 0 0 100%;
    max-width: 100%
  }

  .btn-app-store {
    width: 100%;
    justify-content: center
  }

  .navbar-brand img {
    width: 76px;
    height: auto
  }

  .lead {
    font-size: 1rem
  }

  .slice,
  .section-half-rounded {
    padding-left: 0;
    padding-right: 0
  }
}

/* ==========================================================
   Cellular Rehab Visual Polish v2
   Adds cleaner layout without returning heavy framework files
   ========================================================== */

:root {
  --cr-red: #c93646;
  --cr-red-dark: #a92c38;
  --cr-ink: #111827;
  --cr-soft: #f6f7f9;
  --cr-border: rgba(17, 24, 39, .10);
  --cr-shadow: 0 18px 45px rgba(17, 24, 39, .10);
  --cr-shadow-soft: 0 10px 24px rgba(17, 24, 39, .07);
}

/* Stronger, cleaner app buttons */
.btn-app-store {
  min-width: 220px;
  min-height: 56px;
  border-radius: 12px;
  padding: .75rem 1.15rem;
  background: linear-gradient(180deg, #050608, #111820);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .16);
  gap: .85rem;
}

.btn-app-store i {
  font-size: 1.55rem;
  min-width: 28px;
  text-align: center
}

.btn-app-store .btn-inner--text {
  font-size: .95rem;
  font-weight: 800;
  border-right: 1px solid rgba(255, 255, 255, .35);
  padding-right: .9rem
}

.btn-app-store .btn-inner--brand {
  font-size: 1.15rem;
  font-weight: 900
}

/* Stop Typed.js headline from jumping while deleting text */
.typed-wrap {
  display: inline-block;
  min-width: 17ch;
  min-height: 1.25em;
  white-space: nowrap;
  vertical-align: top;
}

.typed {
  display: inline-block
}

.typed-cursor {
  display: inline-block
}

/* Hero wave/bar cleanup */
.hero-section {
  padding-bottom: 5rem;
  background: linear-gradient(180deg, #f6f7f9 0%, #f7f8fa 72%, #fff 100%);
}

.hero-section .shape-container {
  height: 72px !important;
  opacity: .95;
}

.hero-section .shape-container svg {
  height: 72px;
  filter: drop-shadow(0 -1px 0 rgba(17, 24, 39, .04))
}

/* Benefits area */
.benefits-section {
  padding-top: 4.5rem;
  padding-bottom: 1.5rem;
  background: #fff;
}

.benefits-section .py-lg-5 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.benefits-section h1 {
  font-size: 2.15rem;
  letter-spacing: -.04em;
  color: var(--cr-ink);
  margin-bottom: .6rem;
}

.benefits-section h2.lead {
  font-size: 1.05rem;
  color: var(--cr-red) !important;
  font-weight: 800;
  position: relative;
  display: inline-block;
  padding-bottom: .75rem;
}

.benefits-section h2.lead:after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  border-radius: 999px;
  margin-top: .75rem;
  background: var(--cr-red);
}

.benefits-section .card {
  border: 1px solid var(--cr-border);
  border-radius: 14px;
  box-shadow: var(--cr-shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease;
}

.benefits-section .card:hover {
  transform: translateY(-3px);
  box-shadow: var(--cr-shadow)
}

.benefits-section .card .px-4.py-5 {
  padding-top: 1.3rem !important;
  padding-bottom: .75rem !important
}

.benefits-section .card .px-4.pb-5 {
  padding-bottom: 1.35rem !important
}

.benefits-section .icon-lg {
  width: 58px;
  height: 58px;
  font-size: 1.15rem;
  background: var(--cr-red) !important;
  box-shadow: 0 15px 30px rgba(201, 54, 70, .22);
}

.benefits-section .row .row:last-child .card,
.benefits-section>.container>.row>.row .card {
  border: 1px solid rgba(201, 54, 70, .42);
  box-shadow: 0 14px 28px rgba(201, 54, 70, .07);
}

.benefits-section .icon-text h3 {
  font-size: 1.15rem;
  margin-bottom: .35rem
}

/* Repair services section: cleaner red panel */
.repair-services-section {
  margin-top: 2.5rem;
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
  background: linear-gradient(135deg, var(--cr-red) 0%, #bd3140 48%, #9e2835 100%) !important;
  color: #fff;
  overflow: hidden;
}

.repair-services-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(255, 255, 255, .16), transparent 36%);
  pointer-events: none;
}

.repair-services-section .container {
  position: relative;
  z-index: 2
}

.repair-services-section .mb-5.text-center h2 {
  font-size: 1.85rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.repair-services-section .mb-5.text-center h2:after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: #fff;
  opacity: .85;
  border-radius: 999px;
  margin: .9rem auto 0;
}

.repair-services-section .d-flex.align-items-start {
  border-radius: 14px;
  padding: 1rem 1rem;
  transition: background .18s ease, transform .18s ease;
}

.repair-services-section .d-flex.align-items-start:hover {
  background: rgba(255, 255, 255, .07);
  transform: translateY(-2px);
}

.repair-services-section .icon-shape {
  width: 52px;
  height: 52px;
  min-width: 52px;
  font-size: 1.1rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .10);
}

.repair-services-section h2 {
  font-size: 1.45rem;
  margin-bottom: .55rem;
  letter-spacing: -.025em;
}

.repair-services-section p {
  font-size: .98rem;
  line-height: 1.65;
  opacity: .98
}

.repair-services-section img {
  max-height: 455px;
  object-fit: contain;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, .22));
}

/* Bottom two trust cards */
.benefits-section .row .col-lg-6 .card .card-body {
  min-height: 112px;
  border: 1px solid rgba(201, 54, 70, .38);
  border-radius: 14px;
}

.benefits-section .row .col-lg-6 .card {
  background: #fff;
  border: 0;
  box-shadow: none;
}

.benefits-section .row .col-lg-6 .icon {
  width: 52px;
  min-width: 52px;
  font-size: 1.45rem;
}

/* We'll take care section */
.care-section {
  padding-top: 3rem !important;
  padding-bottom: 4rem !important;
  background: #fff;
}

.care-section h2 {
  font-size: 1.85rem;
  letter-spacing: -.035em;
  color: var(--cr-ink);
  position: relative;
  display: inline-block;
  padding-bottom: .75rem;
}

.care-section h2:after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: .75rem auto 0;
  border-radius: 999px;
  background: var(--cr-red);
}

.care-section .lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #273142 !important
}

.care-section .btn-dark,
.final-cta-section .btn-white {
  border-radius: 12px;
  padding: .8rem 1.35rem;
  background: #111820;
  color: #fff;
  box-shadow: 0 12px 24px rgba(17, 24, 39, .16);
}

/* Bottom CTA: make text and button visible again */
.final-cta-section {
  min-height: 260px;
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
  background: linear-gradient(135deg, var(--cr-red) 0%, #db6670 100%) !important;
}

.final-cta-section .shape-container {
  display: none
}

.final-cta-section .mask {
  opacity: .18 !important;
  background: #000 !important
}

.final-cta-section h2,
.final-cta-section p {
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .18)
}

.final-cta-section h2 {
  font-size: 2rem;
  margin-bottom: .5rem;
  color: #fff !important
}

.final-cta-section p {
  color: #fff !important;
  font-size: 1.05rem
}

.final-cta-section .btn-white {
  display: inline-flex !important;
  position: relative;
  z-index: 3;
  margin-top: 1.25rem;
  background: #fff;
  color: #111820;
}

.inline-flex {
  display: inline-flex !important
}

/* Lightweight icon replacements so external Font Awesome is optional */
.fa-solid,
.fa-brands,
.fab,
.far,
.fal {
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-align: center
}

.fa-mobile-screen-button:before,
.fa-mobile:before {
  content: "▯"
}

.fa-tablet-screen-button:before,
.fa-tablet:before {
  content: "▭"
}

.fa-laptop:before {
  content: "▰"
}

.fa-desktop:before {
  content: "▣"
}

.fa-gamepad:before {
  content: "◉"
}

.fa-robot:before {
  content: "◆"
}

.fa-screwdriver-wrench:before,
.fa-tools:before {
  content: "✖"
}

.fa-shield-halved:before,
.fa-file-check:before {
  content: "✓"
}

.fa-thumbs-up:before {
  content: "●"
}

.fa-headset:before {
  content: "☎"
}

.fa-chalkboard-teacher:before {
  content: "▣"
}

.fa-wallet:before {
  content: "▱"
}

.fa-phone:before {
  content: "☎"
}

.fa-apple:before {
  content: ""
}

.fa-google-play:before {
  content: "▶"
}

.fa-angle-right:before {
  content: "›"
}

@media (max-width:991px) {
  .typed-wrap {
    min-width: 14ch
  }

  .benefits-section {
    text-align: center;
    padding-top: 3rem
  }

  .benefits-section h2.lead:after {
    margin-left: auto;
    margin-right: auto
  }

  .repair-services-section .d-flex.align-items-start {
    text-align: left
  }

  .repair-services-section img {
    max-height: 360px;
    margin: 1rem auto 2rem
  }
}

@media (max-width:575px) {
  .btn-app-store {
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto
  }

  .hero-section .shape-container {
    height: 48px !important
  }

  .hero-section .shape-container svg {
    height: 48px
  }

  .repair-services-section {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important
  }

  .repair-services-section .d-flex.align-items-start {
    padding: .85rem 0
  }

  .final-cta-section {
    min-height: 220px;
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important
  }
}