@font-face {
  font-display: swap;
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  src: url(../fonts/poppins/Poppins-300.ttf) format("truetype")
}

@font-face {
  font-display: swap;
  font-family: Poppins;
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/poppins/Poppins-400.ttf) format("truetype")
}

@font-face {
  font-display: swap;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  src: url(../fonts/poppins/Poppins-500.ttf) format("truetype")
}

@font-face {
  font-display: swap;
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  src: url(../fonts/poppins/Poppins-600.ttf) format("truetype")
}

@font-face {
  font-display: swap;
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/poppins/Poppins-700.ttf) format("truetype")
}

@font-face {
  font-display: swap;
  font-family: Poppins;
  font-style: normal;
  font-weight: 800;
  src: url(../fonts/poppins/Poppins-800.ttf) format("truetype")
}

:root {
  --brand-blue: #1e6bb8;
  --brand-blue-dark: #155a9e;
  --brand-blue-light: #3a8fd6;
  --brand-orange: #e8801a;
  --brand-orange-lt: #f0a050;
  --brand-dark: #0f4880;
  --brand-dark-mid: #1e6bb8;
  --brand-card-gray: #1a5ea0;
  --white: #fff;
  --off-white: #f5f5f7;
  --text-dark: #1a2e4a;
  --text-mid: #4a6080;
  --text-muted: #86868b;
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, .06);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, .1);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, .14);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: 0.32s cubic-bezier(0.4, 0, 0.2, 1)
}

html {
  scroll-behavior: smooth
}

body,
html {
  overflow-x: hidden
}

body {
  background: #f5f7fb;
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased
}

body,
button,
input,
select,
textarea {
  font-family: Poppins, sans-serif
}

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

a {
  text-decoration: none
}

.nav-action-btn {
  align-items: center;
  background: hsla(0, 0%, 100%, .75);
  border: 1px solid rgba(30, 74, 140, .2);
  border-radius: 50%;
  color: var(--text-dark);
  display: flex;
  height: 42px;
  justify-content: center;
  overflow: hidden;
  position: relative;
  transition: all .4s ease;
  width: 42px;
  z-index: 10
}

.nav-action-btn:before {
  background: var(--brand-orange);
  content: "";
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
  width: 100%;
  z-index: -1
}

.nav-action-btn:hover:before {
  transform: translateX(100%)
}

.nav-action-btn:hover {
  border-color: transparent;
  color: #0f2e5a !important
}

@keyframes zoomEffect {
  0% {
    transform: scale(1)
  }

  to {
    transform: scale(1.1)
  }
}

@keyframes glowPulse {
  0% {
    opacity: .4;
    transform: scale(1)
  }

  to {
    opacity: .7;
    transform: scale(1.2)
  }
}

.btn-blue {
  color: #fff;
  padding: 15px 20px
}

.btn-blue,
.btn-brand,
.btn-orange {
  align-items: center;
  border: none;
  border-radius: 12px;
  display: inline-flex;
  font-size: 16px;
  font-weight: 700;
  justify-content: center;
  overflow: hidden;
  position: relative;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  z-index: 1
}

.btn-brand,
.btn-orange {
  color: #fff !important;
  padding: 18px 42px
}

.btn-blue,
.btn-brand {
  background: linear-gradient(135deg, #0f4880 0, #1e6bb8 100%)
}

.btn-orange {
  background: linear-gradient(135deg, #c96d10 0, #e8801a 100%)
}

.btn-blue:after,
.btn-brand:after,
.btn-orange:after {
  background: linear-gradient(120deg, transparent, hsla(0, 0%, 100%, .2), hsla(0, 0%, 100%, .6), hsla(0, 0%, 100%, .2), transparent);
  content: "";
  height: 100%;
  left: -150%;
  pointer-events: none;
  position: absolute;
  top: 0;
  transition: all .8s cubic-bezier(.4, 0, .2, 1);
  width: 100%;
  z-index: 2
}

.btn-blue:hover:after,
.btn-brand:hover:after,
.btn-orange:hover:after {
  left: 150%
}

.btn-blue:hover,
.btn-brand:hover {
  background: linear-gradient(135deg, #0a3567 0, #155a9e 100%)
}

.btn-orange:hover {
  background: linear-gradient(135deg, #a85a0e 0, #c96d10 100%)
}

.hero-btn-primary,
.hero-btn-secondary {
  align-items: center;
  border: 1px solid transparent;
  border-radius: .85rem;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 700;
  justify-content: center;
  padding: 1rem 2rem;
  position: relative;
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
  white-space: nowrap
}

.hero-btn-primary {
  background: linear-gradient(135deg, rgba(15, 72, 128, .96) 0, rgba(30, 107, 184, .92) 100%);
  border-color: rgba(200, 225, 255, .24);
  box-shadow: 0 14px 32px rgba(10, 40, 80, .32);
  color: #fff
}

.hero-btn-primary:hover {
  background: linear-gradient(135deg, rgba(10, 53, 103, .98) 0, rgba(21, 90, 158, .95) 100%);
  box-shadow: 0 18px 40px rgba(10, 40, 80, .4);
  transform: translateY(-2px)
}

.hero-btn-secondary {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: hsla(0, 0%, 100%, .12);
  border-color: hsla(0, 0%, 100%, .28);
  box-shadow: 0 10px 24px rgba(10, 30, 60, .18);
  color: #fff
}

.hero-btn-secondary:hover {
  background: hsla(0, 0%, 100%, .18);
  border-color: hsla(0, 0%, 100%, .38);
  box-shadow: 0 14px 30px rgba(10, 30, 60, .24);
  transform: translateY(-2px)
}

.hero-tagline {
  align-items: center;
  color: hsla(0, 0%, 100%, .82);
  display: inline-flex;
  font-size: 13px;
  font-weight: 400;
  gap: 12px;
  letter-spacing: .04em;
  padding: 0;
  text-shadow: 0 1px 8px rgba(8, 20, 40, .5)
}

.hero-tagline .line {
  background-color: hsla(0, 0%, 100%, .92);
  border-radius: 10px;
  height: 3px;
  position: relative;
  width: 20px
}

.hero-tagline .dot {
  background-color: #ecf5ff;
  border-radius: 50%;
  height: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 10px
}

.hero-tagline .line-left .dot {
  left: 0
}

.hero-tagline .line-right .dot {
  right: 0
}

.hero {
  align-items: center;
  background: none;
  display: flex;
  height: 100svh;
  min-height: 700px;
  overflow: hidden;
  padding-top: 132px;
  position: relative
}

.hero:after,
.hero:before {
  animation: float 8s ease-in-out infinite alternate;
  border-radius: 50%;
  content: "";
  opacity: .08;
  position: absolute
}

.hero:before {
  background: radial-gradient(circle, var(--brand-orange) 0, transparent 70%);
  height: 560px;
  opacity: .05;
  right: -100px;
  top: -180px;
  width: 560px
}

.hero:after {
  animation-delay: -4s;
  background: radial-gradient(circle, rgba(30, 107, 184, .25) 0, transparent 70%);
  bottom: -140px;
  height: 380px;
  left: 60px;
  opacity: .06;
  width: 380px
}

@keyframes float {
  0% {
    transform: translateY(0) scale(1)
  }

  to {
    transform: translateY(-30px) scale(1.06)
  }
}

@media (min-width:768px) {
  .hero {
    height: 110vh;
    padding-top: 0
  }
}

.hero-bg-main {
  background: url(../../assets/images/vmhero.webp) 50%/cover no-repeat;
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1
}

.hero-bg-main:after {
  background: none;
  content: "";
  inset: 0;
  position: absolute
}

.hero-mask {
  animation: maskDrift 12s linear infinite;
  background-image: linear-gradient(to right, hsla(0, 0%, 100%, .25) 1px, transparent 1px), linear-gradient(to bottom, hsla(0, 0%, 100%, .25) 1px, transparent 1px);
  background-size: 72px 72px;
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 3
}

@keyframes maskDrift {
  0% {
    background-position: 0 0, 0 0
  }

  to {
    background-position: 72px 72px, 72px 72px
  }
}

.hero-overlay {
  background: none;
  inset: 0;
  z-index: 4
}

.hero-glow-lb,
.hero-overlay {
  pointer-events: none;
  position: absolute
}

.hero-glow-lb {
  animation: glowPulse 5s ease-in-out infinite alternate;
  background: radial-gradient(circle, rgba(30, 107, 184, .35) 0, transparent 70%);
  bottom: -100px;
  filter: blur(100px);
  height: 600px;
  left: 20px;
  width: 600px;
  z-index: 5
}

.hero-brand-sub {
  align-items: center;
  background: linear-gradient(135deg, #eef3fb 0, #d4e5f7 100%);
  display: flex;
  height: 60vh;
  min-height: 480px;
  overflow: hidden;
  position: relative
}

.hero-brand-sub:before {
  background: radial-gradient(circle at 70% 30%, hsla(0, 0%, 100%, .15) 0, transparent 60%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1
}

.hero-brand-sub .hero-bg-main {
  opacity: .3
}

.hero-glow-tr {
  animation: glowPulse 6s ease-in-out infinite alternate-reverse;
  background: radial-gradient(circle, rgba(232, 128, 26, .38) 0, transparent 70%);
  filter: blur(100px);
  height: 400px;
  pointer-events: none;
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  z-index: 5
}

.hero-container {
  margin: 0 auto;
  max-width: 84rem;
  min-height: inherit;
  padding: 0 1.5rem;
  pointer-events: auto
}

.hero-text {
  max-width: 40rem;
  position: relative
}

.hero-text h1 {
  color: #fff;
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(2.2rem, 3.8vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.08;
  max-width: 12.5ch;
  text-shadow: 0 3px 14px rgba(9, 20, 40, .5), 0 20px 42px rgba(8, 20, 40, .34)
}

.hero-accent {
  color: #ffd580;
  display: inline-block;
  text-shadow: 0 8px 24px rgba(232, 128, 26, .5)
}

.hero-text p {
  color: rgba(240, 248, 255, .92);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 31rem;
  text-shadow: 0 1px 10px rgba(10, 20, 40, .42)
}

.logo {
  color: var(--text-dark);
  font-size: 20px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: -.4px
}

.logo,
.logo-icon {
  align-items: center;
  display: flex
}

.logo-icon {
  flex-shrink: 0;
  height: 80px;
  width: auto
}

.logo-icon img {
  height: 80px;
  -o-object-fit: contain;
  object-fit: contain;
  width: auto
}

nav {
  align-items: center;
  display: flex;
  gap: 6px
}

nav a {
  border-radius: 8px;
  color: var(--text-mid);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  transition: color var(--transition), background var(--transition)
}

nav a:hover {
  color: var(--brand-blue)
}

.nav-cta {
  background: var(--brand-blue) !important;
  border-radius: 8px;
  color: #fff !important;
  font-weight: 600 !important;
  margin-left: 12px;
  padding: 9px 20px !important;
  transition: background var(--transition), transform var(--transition) !important
}

.nav-cta:hover {
  background: var(--brand-orange) !important;
  transform: translateY(-1px)
}

.btn {
  align-items: center;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 600;
  gap: 8px;
  letter-spacing: -.1px;
  padding: 14px 28px;
  transition: all var(--transition)
}

.btn-primary {
  background: var(--brand-orange);
  box-shadow: 0 4px 20px rgba(232, 128, 26, .25);
  color: #fff
}

.btn-primary:hover {
  background: var(--brand-orange-lt);
  box-shadow: 0 8px 28px rgba(232, 128, 26, .35);
  transform: translateY(-2px)
}

.btn-secondary {
  background: transparent;
  border: 1.5px solid var(--text-dark);
  color: var(--text-dark)
}

.btn-secondary:hover {
  background: var(--text-dark);
  color: #fff;
  transform: translateY(-2px)
}

.btn-outline {
  background: #fff;
  border: 1.5px solid rgba(30, 74, 140, .2);
  color: var(--text-dark)
}

.btn-outline:hover {
  background: var(--text-dark);
  box-shadow: var(--shadow-sm);
  color: #fff;
  transform: translateY(-2px)
}

.btn-white {
  background: hsla(0, 0%, 100%, .12);
  border: 1.5px solid hsla(0, 0%, 100%, .5);
  color: #fff
}

.btn-white:hover {
  background: #fff;
  color: var(--text-dark);
  transform: translateY(-2px)
}

.hero-container {
  align-items: center;
  display: flex;
  gap: 60px;
  justify-content: space-between;
  margin: auto;
  max-width: 80rem;
  position: relative;
  width: 100%;
  z-index: 10
}

.hero-badge {
  align-items: center;
  background: hsla(0, 0%, 100%, .06);
  border: 1px solid hsla(0, 0%, 100%, .15);
  border-radius: 50px;
  display: inline-flex;
  font-size: 12.5px;
  font-weight: 600;
  gap: 8px;
  letter-spacing: .4px;
  margin-bottom: 22px;
  padding: 6px 14px;
  text-transform: uppercase
}

.hero-badge:before {
  content: "✦";
  font-size: 10px
}

.svg-line {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  transition: stroke-dashoffset .8s ease
}

.feature-card:hover .svg-line {
  stroke-dashoffset: 0
}

.hero-buttons {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem
}

.hero-image {
  flex: 1.2;
  max-width: 800px
}

.hero-image img {
  border: none;
  border-radius: 0;
  box-shadow: none;
  outline: none;
  width: 100%
}

.trust-bar {
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .05);
  padding: 28px 32px
}

.trust-bar-inner {
  align-items: center;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  margin: auto;
  max-width: 1600px
}

.trust-stat {
  flex: 1;
  text-align: center
}

.trust-stat-number {
  color: var(--text-dark);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.8px;
  line-height: 1
}

.trust-stat-label {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  margin-top: 5px
}

.trust-divider {
  background: rgba(10, 37, 100, .1);
  height: 44px;
  width: 1px
}

.section {
  margin: 0 auto;
  max-width: 1200px;
  padding: 100px 32px
}

.section-white {
  background: #fff
}

.section-light {
  background: #f4f7fb
}

.section-warm {
  background: #f0f5fb
}

.green-wave-bg {
  overflow: hidden;
  position: relative
}

.green-wave-bg:before {
  background-image: url(../../assets/images/green-wave-flow.svg);
  background-position: 0 0;
  background-repeat: repeat;
  background-size: 100% auto;
  content: "";
  inset: 0;
  mix-blend-mode: multiply;
  opacity: .5;
  pointer-events: none;
  position: absolute
}

.green-wave-bg>* {
  position: relative;
  z-index: 1
}

.section-bg {
  width: 100%
}

.section-tag {
  background: rgba(30, 107, 184, .1);
  border-radius: 50px;
  color: var(--brand-blue);
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  margin-bottom: 14px;
  padding: 5px 14px;
  text-transform: uppercase
}

.section-title {
  color: var(--text-dark);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0 0 16px
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 17px;
  margin: 0 0 56px;
  max-width: 580px
}

.section-header-center {
  text-align: center
}

.section-header-center .section-subtitle {
  margin-left: auto;
  margin-right: auto
}

.feature-card {
  transition: all .35s ease
}

.icon-wrapper {
  display: inline-block;
  position: relative
}

.icon-line {
  background: linear-gradient(90deg, var(--brand-blue-dark), var(--brand-orange));
  border-radius: 20px;
  height: 3px;
  margin-top: 12px;
  transition: width .6s ease;
  width: 0
}

.feature-card:hover .icon-line {
  width: 90%
}

.icon-svg {
  color: #1e6bb8
}

.marquee-wrapper {
  animation: marqueeScroll 35s linear infinite;
  display: flex;
  width: -moz-max-content;
  width: max-content
}

.marquee-text {
  color: #92b8df;
  font-size: 60px;
  font-weight: 700;
  opacity: .4
}

@media (min-width:768px) {
  .marquee-text {
    font-size: 110px
  }
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.consult-card {
  border-radius: 20px;
  cursor: pointer;
  height: 420px;
  overflow: hidden;
  position: relative
}

.consult-card img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform .6s ease;
  width: 100%
}

.consult-card:hover img {
  transform: scale(1.1)
}

.consult-card:before {
  background: linear-gradient(to top, rgba(10, 30, 70, .88) 0, rgba(10, 30, 70, .58) 40%, rgba(30, 80, 150, .34) 65%, rgba(30, 80, 150, .14) 80%, transparent 100%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1
}

.consult-content {
  bottom: 0;
  color: #fff;
  left: 0;
  padding: 10px;
  position: absolute;
  right: 0;
  transform: translateY(100%);
  transition: .5s ease;
  z-index: 2
}

.consult-card:hover .consult-content {
  transform: translateY(0)
}

.plan-basic {
  bottom: 30px;
  color: #fff;
  left: 0;
  padding: 0 10px;
  position: absolute;
  right: 0;
  z-index: 2
}

.consult-card:hover .plan-basic {
  bottom: 180px;
  transition: .4s
}

.plans-section {
  background: var(--off-white);
  padding: 100px 32px
}

.plans-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, 1fr);
  margin-left: auto;
  margin-right: auto;
  margin-top: 52px;
  max-width: 1200px
}

.plan-card {
  background: #fff;
  border: 1px solid #e8e8ed;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  padding: 40px 36px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition)
}

.plan-card:hover {
  border-color: #d0d0d5;
  box-shadow: var(--shadow-md);
  transform: translateY(-8px)
}

.plan-card.popular {
  background: linear-gradient(160deg, #fff 60%, #fff8f0 100%);
  border-color: var(--brand-orange)
}

.popular-badge {
  background: var(--brand-orange);
  border-radius: 20px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  left: 50%;
  letter-spacing: .6px;
  padding: 5px 18px;
  position: absolute;
  text-transform: uppercase;
  top: -14px;
  transform: translateX(-50%)
}

.plan-card h3 {
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px
}

.plan-amount {
  color: var(--text-dark);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin: 0 0 10px
}

.plan-meta {
  color: var(--brand-orange);
  font-size: 13.5px;
  font-weight: 800;
  margin: 0 0 18px
}

.plan-desc {
  color: var(--text-mid);
  flex: 1;
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 28px
}

.btn-plan {
  background: var(--text-dark);
  border-radius: 10px;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  text-align: center;
  text-decoration: none;
  transition: all var(--transition)
}

.btn-plan:hover {
  transform: translateY(-2px)
}

.btn-plan:hover,
.plan-card.popular .btn-plan {
  background: var(--brand-orange)
}

.plans-cta {
  margin-top: 48px;
  text-align: center
}

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

.steps-grid {
  gap: 28px;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: 1200px
}

.steps-grid:before {
  background: linear-gradient(90deg, var(--brand-blue-dark), var(--brand-orange));
  left: 60px;
  opacity: .3;
  right: 60px;
  top: 44px
}

.step-item {
  padding: 0 12px
}

.step-number {
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
  font-size: 20px;
  margin: 0 auto 20px
}

.step-item h3 {
  margin: 0 0 10px
}

.step-item p {
  line-height: 1.65
}

.testimonials-section {
  margin: 0 auto;
  max-width: 1200px
}

@keyframes testimonialScroll {
  0% {
    transform: translateY(0)
  }

  to {
    transform: translateY(-50%)
  }
}

.scroll-column {
  animation: testimonialScroll 15s linear infinite
}

.scroll-column-reverse {
  animation: testimonialScroll 15s linear infinite reverse
}

.testimonials-grid {
  gap: 28px;
  grid-template-columns: repeat(3, 1fr)
}

.testimonial-card {
  border: 1px solid #d4e4f0;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(30, 107, 184, .07);
  gap: 24px;
  padding: 36px;
  transition: transform var(--transition), box-shadow var(--transition)
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px)
}

.testimonial-text {
  flex: 1;
  font-size: 15px;
  line-height: 1.75;
  margin: 0
}

.testimonial-author {
  gap: 14px
}

.author-dp {
  background: var(--off-white);
  border: 2px solid rgba(30, 107, 184, .25);
  height: 48px;
  width: 48px
}

.author-info h4 {
  font-size: 14.5px;
  font-weight: 700;
  margin: 0 0 4px
}

.verified-badge {
  background: rgba(30, 107, 184, .1);
  border-radius: 20px;
  color: var(--brand-blue);
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 2px 10px
}

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

  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr
  }
}

.hero-schemes {
  background: linear-gradient(135deg, #eef3fb 0, #d4e5f7 100%);
  color: var(--text-dark);
  overflow: hidden;
  padding: 130px 32px 80px;
  position: relative;
  text-align: center
}

.hero-schemes:before {
  background: url(https://www.transparenttextures.com/patterns/cubes.png);
  bottom: 0;
  content: "";
  left: 0;
  opacity: .1;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0
}

.hero-schemes h1 {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 16px
}

.hero-schemes h1 span {
  color: var(--brand-orange);
  display: block;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-top: 10px;
  text-transform: uppercase
}

.hero-schemes p {
  font-size: 20px;
  font-weight: 300;
  margin: 20px auto 40px;
  max-width: 800px;
  opacity: .9
}

.highlight-banner {
  background: var(--brand-orange);
  border-radius: 50px;
  box-shadow: 0 10px 20px rgba(232, 128, 26, .3);
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 24px;
  padding: 12px 24px;
  text-transform: uppercase
}

.filter-section {
  margin-top: -60px;
  padding: 0 32px;
  position: relative;
  z-index: 10
}

.filter-container {
  align-items: flex-end;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: hsla(0, 0%, 100%, .8);
  border: 1px solid hsla(0, 0%, 100%, .3);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(10, 37, 100, .1);
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin: 0 auto;
  max-width: 1400px;
  padding: 40px
}

.sort-group {
  display: flex;
  flex-direction: column;
  gap: 15px
}

.sort-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%231d1d1f' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-position: right 15px center;
  background-repeat: no-repeat;
  background-size: 18px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  color: var(--text-dark);
  cursor: pointer;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 600;
  outline: none;
  padding: 12px 20px;
  transition: all .3s ease;
  width: 100%
}

.sort-select:focus,
.sort-select:hover {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 4px rgba(232, 128, 26, .08)
}

.range-slider-container {
  align-items: center;
  display: flex;
  height: 40px;
  position: relative
}

.range-slider-track {
  background: #e2e8f0;
  width: 100%;
  z-index: 1
}

.range-slider-progress,
.range-slider-track {
  border-radius: 10px;
  height: 6px;
  position: absolute
}

.range-slider-progress {
  background: var(--brand-orange);
  z-index: 2
}

.dual-range-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  height: 6px;
  margin: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: 3
}

.dual-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  background: var(--text-dark);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, .2);
  cursor: pointer;
  height: 20px;
  pointer-events: auto;
  -webkit-transition: transform .2s ease;
  transition: transform .2s ease;
  width: 20px
}

.dual-range-input::-moz-range-thumb {
  -moz-appearance: none;
  background: var(--text-dark);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, .2);
  cursor: pointer;
  height: 20px;
  pointer-events: auto;
  -moz-transition: transform .2s ease;
  transition: transform .2s ease;
  width: 20px
}

.dual-range-input::-webkit-slider-thumb:hover {
  transform: scale(1.2)
}

.schemes-display {
  background: #f5f5f7;
  padding: 80px 32px
}

.schemes-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  margin: 0 auto;
  max-width: 1400px
}

.scheme-card {
  background: #fff;
  border: 1px solid #e8e8ed;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  padding: 36px;
  position: relative;
  transition: box-shadow .3s ease, border-color .3s ease, transform .3s ease
}

.scheme-card:hover {
  border-color: #d0d0d5;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .06);
  transform: translateY(-4px)
}

.filter-bar {
  background: #fff;
  border: 1px solid #e8e8ed;
  border-radius: 32px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .06);
  margin-bottom: 48px;
  padding: 28px 32px
}

.filter-bar-row {
  display: flex;
  flex-direction: column;
  gap: 0
}

@media (min-width:768px) {
  .filter-bar-row {
    align-items: stretch;
    flex-direction: row
  }
}

.filter-col-slider {
  display: flex;
  flex: 32.5 0 0%;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 16px 0
}

@media (min-width:768px) {
  .filter-col-slider {
    padding: 0 32px 0 0
  }

  .filter-col-slider+.filter-divider-v+.filter-divider-h+.filter-col-slider {
    padding: 0 32px
  }
}

.filter-col-sort,
.filter-col-type {
  display: flex;
  flex: 17.5 0 0%;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 16px 0
}

@media (min-width:768px) {
  .filter-col-sort {
    padding: 0 24px
  }

  .filter-col-type {
    padding: 0 0 0 24px
  }
}

.filter-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  margin-bottom: 4px;
  opacity: .4;
  text-transform: uppercase
}

.filter-label,
.filter-value {
  color: var(--text-dark);
  display: block;
  white-space: nowrap
}

.filter-value {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 14px
}

.filter-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  color: var(--text-dark);
  cursor: pointer;
  font-family: Poppins, sans-serif;
  font-size: 13px;
  font-weight: 700;
  outline: none;
  padding: 10px 36px 10px 14px;
  width: 100%
}

.filter-select:focus {
  border-color: var(--brand-orange)
}

.filter-select-wrap {
  position: relative
}

.filter-select-icon {
  color: #9ca3af;
  font-size: 11px;
  pointer-events: none;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%)
}

.filter-toggle-group {
  display: flex;
  gap: 8px
}

.filter-toggle-label {
  cursor: pointer;
  flex: 1
}

.filter-toggle-btn {
  background: transparent;
  border: 2px solid var(--text-dark);
  border-radius: 999px;
  color: var(--text-dark);
  display: block;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 8px;
  text-align: center;
  transition: all .2s;
  white-space: nowrap
}

.filter-label-sort {
  margin-bottom: 10px
}

.filter-divider-v {
  display: none
}

.filter-divider-h {
  background: #f1f1f4;
  display: block;
  height: 1px;
  width: 100%
}

@media (min-width:768px) {
  .filter-divider-v {
    align-self: stretch;
    background: #e5e7eb;
    display: block;
    flex-shrink: 0;
    margin: 0 4px;
    width: 1px
  }

  .filter-divider-h {
    display: none
  }
}

.schemes-cta {
  background: #f5f5f7;
  padding: 48px 0
}

.schemes-cta-card {
  background-color: #1d1d1f;
  border-radius: 40px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .14);
  overflow: hidden;
  padding: 48px;
  position: relative;
  text-align: center
}

.schemes-cta-card .cta-texture {
  background: url(../../assets/images/plansBG.webp) 50%/cover no-repeat;
  inset: 0;
  opacity: .1;
  position: absolute;
  transition: transform 1s ease
}

.schemes-cta-card:hover .cta-texture {
  transform: scale(1.05)
}

.schemes-cta-card .cta-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10
}

.schemes-cta-icon {
  align-items: center;
  backdrop-filter: blur(12px);
  background: hsla(0, 0%, 100%, .2);
  border: 1px solid hsla(0, 0%, 100%, .3);
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: 28px;
  height: 64px;
  justify-content: center;
  margin-bottom: 24px;
  width: 64px
}

.schemes-cta-card h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 24px
}

.schemes-cta-card p {
  color: hsla(0, 0%, 100%, .8);
  font-size: 18px;
  line-height: 1.6;
  margin: 0 auto 40px;
  max-width: 560px
}

.schemes-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center
}

@media (min-width:640px) {
  .schemes-cta-buttons {
    flex-direction: row
  }
}

.btn-cta-white {
  align-items: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
  color: var(--text-dark);
  display: inline-flex;
  font-size: 18px;
  font-weight: 700;
  gap: 8px;
  justify-content: center;
  padding: 16px 32px;
  transition: all .3s ease
}

.btn-cta-white:hover {
  transform: scale(1.05)
}

.btn-cta-glass {
  align-items: center;
  backdrop-filter: blur(12px);
  background: hsla(0, 0%, 100%, .15);
  border: 1px solid hsla(0, 0%, 100%, .4);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
  color: #fff;
  display: inline-flex;
  font-size: 18px;
  font-weight: 700;
  gap: 8px;
  justify-content: center;
  padding: 16px 32px;
  transition: all .3s ease
}

.btn-cta-glass:hover {
  background: hsla(0, 0%, 100%, .25)
}

@media (min-width:768px) {
  .schemes-cta-card {
    padding: 64px
  }

  .schemes-cta-card h2 {
    font-size: 40px
  }
}

.scheme-header {
  margin-bottom: 24px
}

.scheme-title {
  color: var(--text-dark);
  font-size: 24px;
  font-weight: 800;
  margin: 0
}

.scheme-total {
  color: var(--brand-orange);
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -1px;
  margin: 10px 0
}

.scheme-details {
  background: #f5f5f7;
  border-radius: 16px;
  margin-top: auto;
  padding: 20px
}

.detail-row {
  display: flex;
  font-size: 14px;
  justify-content: space-between;
  margin-bottom: 10px
}

.detail-row:last-child {
  margin-bottom: 0
}

.detail-label {
  color: var(--text-muted)
}

.detail-value {
  color: var(--text-dark);
  font-weight: 700
}

.btn-scheme {
  background: var(--text-dark);
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  margin-top: 24px;
  padding: 16px;
  text-align: center;
  transition: all .3s ease;
  width: 100%
}

.btn-scheme:hover {
  background: var(--brand-orange);
  transform: scale(1.02)
}

.badge-new {
  background: #10b981;
  border-radius: 50px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  position: absolute;
  right: 20px;
  text-transform: uppercase;
  top: 20px
}

.steps-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  position: relative
}

.steps-grid:before {
  background: linear-gradient(90deg, var(--text-dark), var(--brand-orange));
  content: "";
  height: 2px;
  left: calc(12.5% + 26px);
  position: absolute;
  right: calc(12.5% + 26px);
  top: 36px;
  z-index: 0
}

.step-item {
  padding: 0 20px;
  position: relative;
  text-align: center;
  z-index: 1
}

.step-number {
  align-items: center;
  background: var(--text-dark);
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
  color: #fff;
  display: flex;
  font-size: 18px;
  font-weight: 800;
  height: 52px;
  justify-content: center;
  margin: 0 auto 22px;
  position: relative;
  width: 52px
}

.step-item h3 {
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px
}

.step-item p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0
}

.testimonials-section {
  background: #f5f7fb;
  overflow: hidden;
  padding: 100px 32px;
  position: relative
}

.testimonials-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  margin: 48px auto 0;
  max-width: 1400px
}

.testimonial-card {
  background: #fff;
  border: 1px solid rgba(30, 107, 184, .08);
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(30, 107, 184, .05);
  display: flex;
  flex-direction: column;
  padding: 48px;
  position: relative;
  transition: all .4s ease
}

.testimonial-card:hover {
  border-color: var(--brand-orange);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .06);
  transform: translateY(-8px)
}

.testimonial-card:before {
  color: var(--brand-orange);
  content: '"';
  font-family: Poppins, sans-serif;
  font-size: 80px;
  left: 20px;
  line-height: 1;
  opacity: .1;
  position: absolute;
  top: 20px
}

.testimonial-text {
  color: var(--text-mid);
  font-size: 16px;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1
}

.testimonial-author {
  align-items: center;
  display: flex;
  gap: 16px;
  margin-top: auto
}

.author-dp {
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
  height: 56px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 56px
}

.author-info h4 {
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 4px
}

.verified-badge {
  align-items: center;
  color: var(--brand-orange);
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  gap: 4px;
  letter-spacing: .5px;
  text-transform: uppercase
}

.locations-section {
  background: #fff;
  padding: 96px 32px
}

.locations-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin: auto;
  max-width: 1600px
}

.location-card {
  align-items: flex-start;
  background: #f5f5f7;
  border: 1px solid #e8e8ed;
  border-radius: var(--radius-md);
  display: flex;
  gap: 20px;
  padding: 36px 32px;
  transition: transform var(--transition), box-shadow var(--transition)
}

.location-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px)
}

.location-icon {
  align-items: center;
  background: var(--text-dark);
  border-radius: 12px;
  display: flex;
  flex-shrink: 0;
  font-size: 22px;
  height: 48px;
  justify-content: center;
  width: 48px
}

.location-info h3 {
  color: var(--text-dark);
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 10px
}

.location-info p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0
}

.cta-section {
  align-items: center;
  background: #f5f5f7;
  border: 1px solid #e8e8ed;
  border-radius: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
  display: flex;
  gap: 40px;
  justify-content: space-between;
  margin: 0 auto 96px;
  max-width: 1000px;
  overflow: hidden;
  padding: 60px;
  position: relative;
  text-align: left
}

.cta-content {
  flex: 1;
  max-width: 600px
}

.cta-section h2 {
  color: var(--text-dark);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -.5px;
  margin: 0 0 16px
}

.cta-section p {
  color: var(--text-mid);
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 36px
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: flex-start
}

.btn-cta-primary {
  align-items: center;
  background: var(--text-dark);
  border-radius: 12px;
  color: #fff;
  display: inline-flex;
  font-weight: 700;
  gap: 8px;
  padding: 14px 28px;
  transition: all var(--transition)
}

.btn-cta-primary:hover {
  background: var(--brand-orange);
  transform: translateY(-2px)
}

.btn-cta-secondary {
  align-items: center;
  background: #fff;
  border: 1.5px solid var(--text-dark);
  border-radius: 12px;
  color: var(--text-dark);
  display: inline-flex;
  font-weight: 700;
  gap: 8px;
  padding: 14px 28px;
  transition: all var(--transition)
}

.btn-cta-secondary:hover {
  background: var(--off-white);
  transform: translateY(-2px)
}

.faq {
  margin: auto;
  max-width: 760px
}

.faq-item {
  background: #edf3fb;
  border: 1px solid #c5d8ee;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow var(--transition)
}

.faq-item:hover {
  box-shadow: var(--shadow-md)
}

.faq-question {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 15px;
  font-weight: 600;
  gap: 16px;
  justify-content: space-between;
  padding: 22px 28px
}

.faq-btn,
.faq-question {
  color: var(--text-dark)
}

.faq-item.active .faq-question {
  color: #0f4880
}

.faq-icon {
  align-items: center;
  background: rgba(30, 107, 184, .14);
  border-radius: 50%;
  color: var(--brand-blue);
  display: flex;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 700;
  height: 28px;
  justify-content: center;
  transition: color var(--transition), background var(--transition), transform var(--transition);
  width: 28px
}

.faq-item.active .faq-btn {
  color: #0f4880
}

.faq-item.active .faq-icon,
.faq-item.active .faq-icon.fa-chevron-up {
  background: #fff;
  color: var(--brand-blue);
  transform: rotate(45deg)
}

.faq-item.active {
  background: #d4e7f8
}

.faq-answer {
  color: #111;
  font-size: 14.5px;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  padding: 0 28px;
  transition: max-height .4s cubic-bezier(.4, 0, .2, 1), padding .3s
}

.faq-item.active .faq-answer,
.faq-item:not(.active) .faq-answer {
  color: #0f172a
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 22px
}

.bg-plans {
  background: linear-gradient(135deg, #0f4880 0, #1e6bb8 55%, #2a7fd4 100%);
  isolation: isolate;
  position: relative
}

.bg-plans:before {
  background: linear-gradient(120deg, hsla(210, 60%, 96%, .22) 0, hsla(210, 60%, 91%, .18) 36%, hsla(0, 0%, 100%, .12) 72%, hsla(210, 60%, 91%, .16) 100%), url(../../assets/images/plansBG.webp) 50%/cover no-repeat;
  border-radius: inherit;
  content: "";
  filter: grayscale(1) brightness(2.35) contrast(.9);
  inset: 0;
  mix-blend-mode: screen;
  opacity: .64;
  pointer-events: none;
  position: absolute;
  z-index: 0
}

.footer-dark.bg-plans:before {
  background: url(../../assets/images/plansBG.webp) 50%/cover no-repeat;
  filter: grayscale(1) brightness(1.55) contrast(1);
  opacity: .12
}

.bg-plans>* {
  position: relative;
  z-index: 1
}

.bg-contact {
  background: url(../../assets/images/letstalk.webp) 50%/cover no-repeat
}

.bg-service-banner {
  background: url(../../assets/images/service-flex-banner-img-01.webp) 50%/cover no-repeat
}

.shadow-soft {
  box-shadow: 0 8px 30px rgba(0, 0, 0, .12)
}

.section-label {
  align-items: center;
  display: flex;
  font-size: .875rem;
  font-weight: 700;
  gap: .75rem;
  padding: 1rem 0
}

.section-label .label-line {
  border-radius: 9999px;
  height: 3px;
  position: relative;
  width: 1.25rem
}

.section-label .label-line:before {
  border-radius: 50%;
  content: "";
  height: .625rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: .625rem
}

.section-label .label-line-left {
  background: currentColor
}

.section-label .label-line-left:before {
  background: currentColor;
  left: 0
}

.section-label .label-line-right {
  background: currentColor
}

.section-label .label-line-right:before {
  background: currentColor;
  right: 0
}

.nav-link {
  align-items: center;
  color: #0F4880;
  display: flex;
  font-size: .875rem;
  font-weight: 700;
  gap: .375rem;
  padding: .5rem .75rem;
  transition: all .2s
}

.nav-link:hover {
  color: #0f4880;
}

.nav-link .nav-dot {
  background: #3a8fd6;
  border-radius: 50%;
  height: .375rem;
  opacity: 0;
  transition: opacity .3s;
  width: .375rem
}

.nav-link:hover .nav-dot {
  opacity: 1
}

.social-icon-sidebar {
  align-items: center;
  background: hsla(0, 0%, 100%, .7);
  border: 1px solid rgba(30, 74, 140, .2);
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
  color: var(--text-dark);
  display: flex;
  height: 2.75rem;
  justify-content: center;
  transition: all .2s;
  width: 2.75rem
}

.social-icon-sidebar:hover {
  background: rgba(30, 107, 184, .14)
}

.social-icon-footer {
  align-items: center;
  background: rgba(30, 107, 184, .12);
  border-radius: 50%;
  color: var(--text-dark);
  display: flex;
  height: 3rem;
  justify-content: center;
  transition: background .2s;
  width: 3rem
}

.social-icon-footer:hover {
  background: var(--brand-orange);
  color: #fff
}

.footer-dark {
  color: rgba(240, 246, 255, .92)
}

.footer-dark .text-text-dark {
  color: #f0f8ff !important
}

.footer-dark .text-text-mid {
  color: rgba(240, 246, 255, .92) !important
}

.footer-dark a {
  color: inherit
}

.footer-dark a:hover {
  color: #fff !important
}

.footer-dark .social-icon-footer {
  background: hsla(0, 0%, 100%, .16);
  color: #f0f8ff
}

.footer-dark .social-icon-footer:hover {
  background: hsla(0, 0%, 100%, .28);
  color: #fff
}

.footer-dark .footer-bottom {
  border-color: rgba(200, 225, 255, .34) !important;
  color: rgba(240, 246, 255, .88) !important
}

.testimonial-card {
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: .75rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
  padding: 1.5rem;
  width: 100%
}

@media (min-width:640px) {
  .testimonial-card {
    width: 230px
  }
}

.section-overlap {
  border-radius: 60px 60px 0 0;
  margin-top: -4rem;
  position: relative;
  z-index: 20
}

.premium-footer {
  background: var(--brand-dark);
  color: hsla(0, 0%, 100%, .7);
  padding: 72px 32px 32px
}

.footer-container {
  display: grid;
  gap: 48px;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  margin: auto;
  max-width: 1600px
}

.footer-logo {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 18px;
  font-weight: 700;
  gap: 10px;
  margin-bottom: 16px
}

.footer-brand p {
  color: hsla(0, 0%, 100%, .7);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 20px;
  max-width: 280px
}

.footer-col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .8px;
  margin-bottom: 20px;
  text-transform: uppercase
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0
}

.footer-col li {
  color: hsla(0, 0%, 100%, .65);
  cursor: pointer;
  font-size: 14px;
  margin-bottom: 12px;
  transition: color var(--transition)
}

.footer-col li:hover {
  color: var(--brand-orange)
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid hsla(0, 0%, 100%, .07);
  display: flex;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  margin-top: 56px;
  max-width: 1600px;
  padding-top: 24px
}

.social-links {
  display: flex;
  gap: 12px
}

.social-link {
  align-items: center;
  border: 1px solid hsla(0, 0%, 100%, .12);
  border-radius: 8px;
  color: hsla(0, 0%, 100%, .8);
  cursor: pointer;
  display: flex;
  font-size: 15px;
  height: 36px;
  justify-content: center;
  transition: all var(--transition);
  width: 36px
}

.social-link:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
  transform: translateY(-2px)
}

.copyright {
  color: hsla(0, 0%, 100%, .4);
  font-size: 13px
}

@media (max-width:1024px) {

  .hero,
  .locations-section,
  .plans-section,
  .section,
  .trust-bar,
  header {
    padding-left: 40px;
    padding-right: 40px
  }

  .cta-section {
    margin-left: 40px;
    margin-right: 40px
  }

  .premium-footer {
    padding-left: 40px;
    padding-right: 40px
  }
}

@media (max-width:768px) {
  header {
    padding: 0 20px
  }

  nav {
    display: none
  }

  .hero {
    min-height: auto;
    padding: 116px 24px 72px
  }

  .hero-container {
    align-items: flex-start;
    flex-direction: column;
    text-align: center
  }

  .hero-text {
    max-width: 100%
  }

  .hero-text h1 {
    font-size: 36px;
    letter-spacing: -.04em;
    line-height: 1.02;
    max-width: 13ch
  }

  .hero-text p {
    max-width: 28rem
  }

  .hero-buttons {
    justify-content: flex-start
  }

  .hero-image {
    max-width: 100%
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto
  }

  .trust-bar {
    padding: 24px 20px
  }

  .trust-bar-inner {
    flex-wrap: wrap;
    gap: 20px
  }

  .trust-divider {
    display: none
  }

  .section {
    padding: 60px 24px
  }

  .section-title {
    font-size: 28px
  }

  .locations-section,
  .plans-section {
    padding: 60px 24px
  }

  .cta-section {
    margin: 0 20px 60px;
    padding: 52px 28px
  }

  .cta-section h2 {
    font-size: 28px
  }

  .cta-buttons {
    align-items: center;
    flex-direction: column
  }

  .steps-grid:before {
    display: none
  }

  .footer-container {
    gap: 32px;
    grid-template-columns: 1fr 1fr
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center
  }

  .premium-footer {
    padding: 52px 24px 28px
  }
}

@media (max-width:480px) {

  .features-grid,
  .footer-container,
  .plans-grid {
    grid-template-columns: 1fr
  }
}

@media (max-width:640px) {
  .consult-card .consult-content {
    transform: translateY(0)
  }

  .consult-card .plan-basic {
    bottom: 190px
  }

  .consult-card .plan-meta {
    margin-top: 0
  }
}

@media (max-width:400px) {
  .hero-container {
    padding: 0 1rem
  }

  .hero-tagline {
    font-size: 12px;
    gap: .55rem;
    padding: .65rem .85rem
  }

  .hero-text h1 {
    font-size: 32px
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%
  }
}

footer {
  padding-bottom: max(2.5rem, env(safe-area-inset-bottom))
}

.faq-btn {
  min-width: 0;
  word-break: break-word
}

@media (max-width:640px) {
  .section-overlap {
    border-radius: 40px 40px 0 0;
    margin-top: -2rem
  }
}

.section-padding {
  padding-bottom: 5rem;
  padding-top: 5rem
}

@media (min-width:1024px) {
  .section-padding {
    padding-bottom: 7rem;
    padding-top: 7rem
  }
}

.contact-card {
  background: #fff;
  border: 1px solid #e8e8ed;
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all .4s ease
}

.contact-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
  transform: translateY(-2px)
}

.contact-icon {
  align-items: center;
  border-radius: 1rem;
  display: flex;
  font-size: 1.25rem;
  height: 3.5rem;
  justify-content: center;
  margin-bottom: 1rem;
  width: 3.5rem
}

.safety-card {
  background: #fff;
  border: 1px solid #e8e8ed;
  border-radius: 2rem;
  padding: 2.5rem;
  transition: all .4s ease
}

.safety-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
  transform: translateY(-4px)
}

.pillar-icon {
  align-items: center;
  border-radius: 1.25rem;
  display: flex;
  font-size: 1.5rem;
  height: 4rem;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform .3s ease;
  width: 4rem
}

.safety-card:hover .pillar-icon {
  transform: scale(1.1)
}

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: 1.5rem;
  cursor: pointer;
  overflow: hidden;
  position: relative
}

.gallery-item img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform .7s ease;
  width: 100%
}

.gallery-item:hover img {
  transform: scale(1.05)
}

.gallery-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, .7) 0, transparent 60%);
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: flex-end;
  opacity: 0;
  padding: 1.5rem;
  position: absolute;
  transition: opacity .4s ease
}

.gallery-item:hover .gallery-overlay {
  opacity: 1
}

.gallery-overlay h4 {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: .25rem
}

.gallery-overlay p {
  color: hsla(0, 0%, 100%, .8);
  font-size: .875rem;
  line-height: 1.4
}

.tab-btn {
  background: transparent;
  border: none;
  border-radius: 999px;
  color: var(--text-muted);
  cursor: pointer;
  font-size: .875rem;
  font-weight: 600;
  padding: .625rem 1.5rem;
  transition: all .3s ease
}

.tab-btn:hover {
  background: rgba(30, 107, 184, .06);
  color: var(--brand-orange)
}

.tab-btn.active {
  background: var(--brand-orange);
  box-shadow: 0 4px 12px rgba(232, 128, 26, .3);
  color: #fff
}

.form-input {
  background: #f8f9fa;
  border: 1px solid #e8e8ed;
  border-radius: .875rem;
  color: var(--text-dark);
  font-size: 1rem;
  padding: 1rem 1.25rem;
  transition: border-color .3s ease, box-shadow .3s ease;
  width: 100%
}

.form-input:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(232, 128, 26, .08);
  outline: none
}

.form-select-chevron {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%2364748b' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E")
}

.apple-contact-card {
  background: #fff;
  border: 1px solid #e8e8ed;
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all .4s cubic-bezier(.4, 0, .2, 1)
}

.apple-contact-card:hover {
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
  transform: translateY(-4px)
}

.apple-contact-icon {
  align-items: center;
  background: #f5f5f7;
  border-radius: .75rem;
  color: var(--text-dark);
  display: inline-flex;
  font-size: 1.1rem;
  height: 3rem;
  justify-content: center;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  width: 3rem
}

.apple-contact-card:hover .apple-contact-icon {
  background: var(--text-dark);
  color: #fff
}

.apple-branch-card {
  background: #fff;
  border: 1px solid #e8e8ed;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  padding: 2rem;
  text-decoration: none;
  transition: all .4s cubic-bezier(.4, 0, .2, 1)
}

.apple-branch-card:hover {
  border-color: var(--brand-orange);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
  transform: translateY(-4px)
}

.apple-form-card {
  background: #f5f5f7;
  border: 1px solid #e8e8ed;
  border-radius: 1.5rem;
  padding: 2.5rem
}

@media (min-width:768px) {
  .apple-form-card {
    border-radius: 2rem;
    padding: 3.5rem
  }
}

.faq-item-premium {
  background: #fff;
  border: 1px solid #e8e8ed;
  border-radius: 1.25rem;
  overflow: hidden;
  transition: all .3s ease
}

.faq-item-premium:hover {
  border-color: var(--brand-orange);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .06)
}

.faq-item-premium.active {
  background: #fff;
  border-color: var(--brand-orange);
  box-shadow: 0 12px 40px rgba(232, 128, 26, .1)
}

.faq-item-premium .faq-btn {
  background: transparent;
  color: var(--text-dark);
  padding: 1.5rem 1.75rem
}

.faq-item-premium.active .faq-btn {
  color: var(--brand-orange)
}

.faq-item-premium .faq-content {
  color: var(--text-mid);
  font-size: 1.0625rem;
  line-height: 1.7;
  padding: 0 1.75rem 1.5rem
}

*,
:after,
:before {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, .5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
  --tw-contain-size: ;
  --tw-contain-layout: ;
  --tw-contain-paint: ;
  --tw-contain-style:
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, .5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
  --tw-contain-size: ;
  --tw-contain-layout: ;
  --tw-contain-paint: ;
  --tw-contain-style:
}

/*! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com*/
*,
:after,
:before {
  border: 0 solid #e5e7eb;
  box-sizing: border-box
}

:after,
:before {
  --tw-content: ""
}

:host,
html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  font-family: Poppins, ui-sans-serif, system-ui, sans-serif;
  font-feature-settings: normal;
  font-variation-settings: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  -webkit-tap-highlight-color: transparent
}

body {
  line-height: inherit;
  margin: 0
}

hr {
  border-top-width: 1px;
  color: inherit;
  height: 0
}

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit
}

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

b,
strong {
  font-weight: bolder
}

code,
kbd,
pre,
samp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
  font-feature-settings: normal;
  font-size: 1em;
  font-variation-settings: normal
}

small {
  font-size: 80%
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline
}

sub {
  bottom: -.25em
}

sup {
  top: -.5em
}

table {
  border-collapse: collapse;
  border-color: inherit;
  text-indent: 0
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font-family: inherit;
  font-feature-settings: inherit;
  font-size: 100%;
  font-variation-settings: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0
}

button,
select {
  text-transform: none
}

button,
input:where([type=button]),
input:where([type=reset]),
input:where([type=submit]) {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none
}

:-moz-focusring {
  outline: auto
}

:-moz-ui-invalid {
  box-shadow: none
}

progress {
  vertical-align: baseline
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px
}

::-webkit-search-decoration {
  -webkit-appearance: none
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit
}

summary {
  display: list-item
}

blockquote,
dd,
dl,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
pre {
  margin: 0
}

fieldset {
  margin: 0
}

fieldset,
legend {
  padding: 0
}

menu,
ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0
}

dialog {
  padding: 0
}

textarea {
  resize: vertical
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #9ca3af;
  opacity: 1
}

input::placeholder,
textarea::placeholder {
  color: #9ca3af;
  opacity: 1
}

[role=button],
button {
  cursor: pointer
}

:disabled {
  cursor: default
}

audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
  display: block;
  vertical-align: middle
}

img,
video {
  height: auto;
  max-width: 100%
}

[hidden]:where(:not([hidden=until-found])) {
  display: none
}

.pointer-events-none {
  pointer-events: none
}

.pointer-events-auto {
  pointer-events: auto
}

.visible {
  visibility: visible
}

.invisible {
  visibility: hidden
}

.fixed {
  position: fixed
}

.absolute {
  position: absolute
}

.relative {
  position: relative
}

.-inset-4 {
  inset: -1rem
}

.inset-0 {
  inset: 0
}

.-bottom-2 {
  bottom: -.5rem
}

.-bottom-6 {
  bottom: -1.5rem
}

.-right-2 {
  right: -.5rem
}

.bottom-5 {
  bottom: 1.25rem
}

.bottom-6 {
  bottom: 1.5rem
}

.left-0 {
  left: 0
}

.left-1\/4 {
  left: 25%
}

.left-2\/4 {
  left: 50%
}

.left-3\/4 {
  left: 75%
}

.left-5 {
  left: 1.25rem
}

.right-0 {
  right: 0
}

.right-5 {
  right: 1.25rem
}

.right-6 {
  right: 1.5rem
}

.top-0 {
  top: 0
}

.top-1\/2 {
  top: 50%
}

.top-1\/4 {
  top: 25%
}

.top-20 {
  top: 5rem
}

.top-4 {
  top: 1rem
}

.top-5 {
  top: 1.25rem
}

.top-6 {
  top: 1.5rem
}

.z-0 {
  z-index: 0
}

.z-10 {
  z-index: 10
}

.z-20 {
  z-index: 20
}

.z-30 {
  z-index: 30
}

.z-\[1000\] {
  z-index: 1000
}

.z-\[1900\] {
  z-index: 1900
}

.z-\[2000\] {
  z-index: 2000
}

.z-\[9999\] {
  z-index: 9999
}

.order-1 {
  order: 1
}

.order-2 {
  order: 2
}

.col-span-full {
  grid-column: 1/-1
}

.mx-6 {
  margin-left: 1.5rem;
  margin-right: 1.5rem
}

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

.my-14 {
  margin-bottom: 3.5rem;
  margin-top: 3.5rem
}

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

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

.-ml-3 {
  margin-left: -.75rem
}

.-mt-14 {
  margin-top: -3.5rem
}

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

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

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

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

.mb-10 {
  margin-bottom: 2.5rem
}

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

.mb-14 {
  margin-bottom: 3.5rem
}

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

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

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

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

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

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

.mb-8 {
  margin-bottom: 2rem
}

.mt-0\.5 {
  margin-top: .125rem
}

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

.mt-10 {
  margin-top: 2.5rem
}

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

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

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

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

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

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

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

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

.mt-7 {
  margin-top: 1.75rem
}

.mt-8 {
  margin-top: 2rem
}

.mt-auto {
  margin-top: auto
}

.block {
  display: block
}

.inline-block {
  display: inline-block
}

.inline {
  display: inline
}

.flex {
  display: flex
}

.inline-flex {
  display: inline-flex
}

.grid {
  display: grid
}

.hidden {
  display: none
}

.aspect-video {
  aspect-ratio: 16/9
}

.h-1 {
  height: .25rem
}

.h-1\.5 {
  height: .375rem
}

.h-1\/2 {
  height: 50%
}

.h-10 {
  height: 2.5rem
}

.h-12 {
  height: 3rem
}

.h-14 {
  height: 3.5rem
}

.h-16 {
  height: 4rem
}

.h-2 {
  height: .5rem
}

.h-2\.5 {
  height: .625rem
}

.h-20 {
  height: 5rem
}

.h-3 {
  height: .75rem
}

.h-32 {
  height: 8rem
}

.h-9 {
  height: 2.25rem
}

.h-\[200px\] {
  height: 200px
}

.h-\[300px\] {
  height: 300px
}

.h-\[3px\] {
  height: 3px
}

.h-\[450px\] {
  height: 450px
}

.h-\[500px\] {
  height: 500px
}

.h-auto {
  height: auto
}

.h-full {
  height: 100%
}

.h-px {
  height: 1px
}

.\!min-h-\[280px\] {
  min-height: 280px !important
}

.w-1\.5 {
  width: .375rem
}

.w-10 {
  width: 2.5rem
}

.w-12 {
  width: 3rem
}

.w-16 {
  width: 4rem
}

.w-2 {
  width: .5rem
}

.w-2\.5 {
  width: .625rem
}

.w-20 {
  width: 5rem
}

.w-3 {
  width: .75rem
}

.w-32 {
  width: 8rem
}

.w-5 {
  width: 1.25rem
}

.w-8 {
  width: 2rem
}

.w-9 {
  width: 2.25rem
}

.w-\[85\%\] {
  width: 85%
}

.w-auto {
  width: auto
}

.w-full {
  width: 100%
}

.w-px {
  width: 1px
}

.min-w-\[160px\] {
  min-width: 160px
}

.min-w-\[180px\] {
  min-width: 180px
}

.min-w-\[200px\] {
  min-width: 200px
}

.max-w-2xl {
  max-width: 42rem
}

.max-w-3xl {
  max-width: 48rem
}

.max-w-4xl {
  max-width: 56rem
}

.max-w-7xl {
  max-width: 80rem
}

.max-w-\[150px\] {
  max-width: 150px
}

.max-w-\[350px\] {
  max-width: 350px
}

.max-w-lg {
  max-width: 32rem
}

.max-w-md {
  max-width: 28rem
}

.max-w-xl {
  max-width: 36rem
}

.flex-shrink-0,
.shrink-0 {
  flex-shrink: 0
}

.grow {
  flex-grow: 1
}

.origin-left {
  transform-origin: left
}

.-translate-y-1\/2 {
  --tw-translate-y: -50%
}

.-translate-y-1\/2,
.translate-x-\[110\%\] {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.translate-x-\[110\%\] {
  --tw-translate-x: 110%
}

.translate-y-\[20px\] {
  --tw-translate-y: 20px
}

.scale-100,
.translate-y-\[20px\] {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.scale-100 {
  --tw-scale-x: 1;
  --tw-scale-y: 1
}

.scale-110 {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1
}

.scale-110,
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.resize-none {
  resize: none
}

.appearance-none {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr))
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr))
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr))
}

.flex-col {
  flex-direction: column
}

.flex-wrap {
  flex-wrap: wrap
}

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

.items-center {
  align-items: center
}

.justify-start {
  justify-content: flex-start
}

.justify-end {
  justify-content: flex-end
}

.justify-center {
  justify-content: center
}

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

.gap-1\.5 {
  gap: .375rem
}

.gap-10 {
  gap: 2.5rem
}

.gap-12 {
  gap: 3rem
}

.gap-16 {
  gap: 4rem
}

.gap-2 {
  gap: .5rem
}

.gap-20 {
  gap: 5rem
}

.gap-3 {
  gap: .75rem
}

.gap-4 {
  gap: 1rem
}

.gap-5 {
  gap: 1.25rem
}

.gap-6 {
  gap: 1.5rem
}

.gap-8 {
  gap: 2rem
}

.gap-x-8 {
  -moz-column-gap: 2rem;
  column-gap: 2rem
}

.gap-y-4 {
  row-gap: 1rem
}

.gap-y-8 {
  row-gap: 2rem
}

.space-y-0>:not([hidden])~:not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-bottom: calc(0px*var(--tw-space-y-reverse));
  margin-top: calc(0px*(1 - var(--tw-space-y-reverse)))
}

.space-y-3>:not([hidden])~:not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-bottom: calc(.75rem*var(--tw-space-y-reverse));
  margin-top: calc(.75rem*(1 - var(--tw-space-y-reverse)))
}

.space-y-4>:not([hidden])~:not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-bottom: calc(1rem*var(--tw-space-y-reverse));
  margin-top: calc(1rem*(1 - var(--tw-space-y-reverse)))
}

.space-y-5>:not([hidden])~:not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-bottom: calc(1.25rem*var(--tw-space-y-reverse));
  margin-top: calc(1.25rem*(1 - var(--tw-space-y-reverse)))
}

.space-y-6>:not([hidden])~:not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-bottom: calc(1.5rem*var(--tw-space-y-reverse));
  margin-top: calc(1.5rem*(1 - var(--tw-space-y-reverse)))
}

.space-y-8>:not([hidden])~:not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-bottom: calc(2rem*var(--tw-space-y-reverse));
  margin-top: calc(2rem*(1 - var(--tw-space-y-reverse)))
}

.overflow-hidden {
  overflow: hidden
}

.overflow-y-auto {
  overflow-y: auto
}

.whitespace-nowrap {
  white-space: nowrap
}

.break-all {
  word-break: break-all
}

.rounded-2xl {
  border-radius: 1rem
}

.rounded-3xl,
.rounded-\[1\.5rem\] {
  border-radius: 1.5rem
}

.rounded-\[10px\] {
  border-radius: 10px
}

.rounded-\[12px\] {
  border-radius: 12px
}

.rounded-\[14px\] {
  border-radius: 14px
}

.rounded-\[2rem\] {
  border-radius: 2rem
}

.rounded-\[30px\] {
  border-radius: 30px
}

.rounded-\[40px\] {
  border-radius: 40px
}

.rounded-full {
  border-radius: 9999px
}

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

.rounded-none {
  border-radius: 0
}

.rounded-xl {
  border-radius: .75rem
}

.rounded-t-\[60px\] {
  border-top-left-radius: 60px;
  border-top-right-radius: 60px
}

.border {
  border-width: 1px
}

.border-0 {
  border-width: 0
}

.border-2 {
  border-width: 2px
}

.border-b {
  border-bottom-width: 1px
}

.border-l {
  border-left-width: 1px
}

.border-l-4 {
  border-left-width: 4px
}

.border-t {
  border-top-width: 1px
}

.border-t-2 {
  border-top-width: 2px
}

.border-dashed {
  border-style: dashed
}

.\!border-white {
  --tw-border-opacity: 1 !important;
  border-color: rgb(255 255 255/var(--tw-border-opacity, 1)) !important
}

.border-\[\#3f8a66\] {
  --tw-border-opacity: 1;
  border-color: rgb(63 138 102/var(--tw-border-opacity, 1))
}

.border-\[\#c9e0d1\] {
  --tw-border-opacity: 1;
  border-color: rgb(201 224 209/var(--tw-border-opacity, 1))
}

.border-\[\#d0d0d0\]\/10 {
  border-color: hsla(0, 0%, 82%, .1)
}

.border-black\/10 {
  border-color: rgba(0, 0, 0, .1)
}

.border-black\/5 {
  border-color: rgba(0, 0, 0, .05)
}

.border-brand-orange {
  border-color: var(--brand-orange)
}

.border-gray-100 {
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246/var(--tw-border-opacity, 1))
}

.border-gray-200 {
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235/var(--tw-border-opacity, 1))
}

.border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219/var(--tw-border-opacity, 1))
}

.border-gray-500 {
  --tw-border-opacity: 1;
  border-color: rgb(107 114 128/var(--tw-border-opacity, 1))
}

.border-gray-700 {
  --tw-border-opacity: 1;
  border-color: rgb(55 65 81/var(--tw-border-opacity, 1))
}

.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255/var(--tw-border-opacity, 1))
}

.border-white\/20 {
  border-color: hsla(0, 0%, 100%, .2)
}

.border-white\/30 {
  border-color: hsla(0, 0%, 100%, .3)
}

.border-white\/\[\.18\] {
  border-color: hsla(0, 0%, 100%, .18)
}

.bg-\[\#276749\] {
  --tw-bg-opacity: 1;
  background-color: rgb(39 103 73/var(--tw-bg-opacity, 1))
}

.bg-\[\#86868b\] {
  --tw-bg-opacity: 1;
  background-color: rgb(134 134 139/var(--tw-bg-opacity, 1))
}

.bg-\[\#d0d0d0\]\/10 {
  background-color: hsla(0, 0%, 82%, .1)
}

.bg-\[\#e7f4ec\] {
  --tw-bg-opacity: 1;
  background-color: rgb(231 244 236/var(--tw-bg-opacity, 1))
}

.bg-\[\#f5f5f7\] {
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 247/var(--tw-bg-opacity, 1))
}

.bg-black\/20 {
  background-color: rgba(0, 0, 0, .2)
}

.bg-brand-blue {
  background-color: var(--brand-blue)
}

.bg-brand-orange {
  background-color: var(--brand-orange)
}

.bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246/var(--tw-bg-opacity, 1))
}

.bg-gray-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235/var(--tw-bg-opacity, 1))
}

.bg-gray-200\/50 {
  background-color: rgba(229, 231, 235, .5)
}

.bg-orange-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 247 237/var(--tw-bg-opacity, 1))
}

.bg-text-dark {
  background-color: var(--text-dark)
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255/var(--tw-bg-opacity, 1))
}

.bg-white\/10 {
  background-color: hsla(0, 0%, 100%, .1)
}

.bg-white\/30 {
  background-color: hsla(0, 0%, 100%, .3)
}

.bg-white\/70 {
  background-color: hsla(0, 0%, 100%, .7)
}

.bg-white\/90 {
  background-color: hsla(0, 0%, 100%, .9)
}

.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops))
}

.bg-cover {
  background-size: cover
}

.bg-\[right_20px_center\] {
  background-position: right 20px center
}

.bg-center {
  background-position: 50%
}

.bg-no-repeat {
  background-repeat: no-repeat
}

.fill-current {
  fill: currentColor
}

.object-contain {
  -o-object-fit: contain;
  object-fit: contain
}

.object-cover {
  -o-object-fit: cover;
  object-fit: cover
}

.p-10 {
  padding: 2.5rem
}

.p-2 {
  padding: .5rem
}

.p-3 {
  padding: .75rem
}

.p-4 {
  padding: 1rem
}

.p-5 {
  padding: 1.25rem
}

.p-6 {
  padding: 1.5rem
}

.p-8 {
  padding: 2rem
}

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

.px-2 {
  padding-left: .5rem;
  padding-right: .5rem
}

.px-2\.5 {
  padding-left: .625rem;
  padding-right: .625rem
}

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

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

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem
}

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

.py-1 {
  padding-bottom: .25rem;
  padding-top: .25rem
}

.py-10 {
  padding-bottom: 2.5rem;
  padding-top: 2.5rem
}

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

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

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

.py-2\.5 {
  padding-bottom: .625rem;
  padding-top: .625rem
}

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

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

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

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

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

.pb-0 {
  padding-bottom: 0
}

.pb-10 {
  padding-bottom: 2.5rem
}

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

.pb-6 {
  padding-bottom: 1.5rem
}

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

.pr-3 {
  padding-right: .75rem
}

.pt-1 {
  padding-top: .25rem
}

.pt-10 {
  padding-top: 2.5rem
}

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

.pt-16 {
  padding-top: 4rem
}

.pt-20 {
  padding-top: 5rem
}

.pt-4 {
  padding-top: 1rem
}

.pt-6 {
  padding-top: 1.5rem
}

.pt-8 {
  padding-top: 2rem
}

.\!text-left {
  text-align: left !important
}

.text-left {
  text-align: left
}

.text-center {
  text-align: center
}

.font-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace
}

.font-sans {
  font-family: Poppins, ui-sans-serif, system-ui, sans-serif
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem
}

.text-5xl {
  font-size: 3rem;
  line-height: 1
}

.text-\[10px\] {
  font-size: 10px
}

.text-\[11px\] {
  font-size: 11px
}

.text-\[12px\] {
  font-size: 12px
}

.text-\[14px\] {
  font-size: 14px
}

.text-\[16px\] {
  font-size: 16px
}

.text-\[22px\] {
  font-size: 22px
}

.text-\[32px\] {
  font-size: 32px
}

.text-\[60px\] {
  font-size: 60px
}

.text-\[9px\] {
  font-size: 9px
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem
}

.text-sm {
  font-size: .875rem;
  line-height: 1.25rem
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem
}

.text-xs {
  font-size: .75rem;
  line-height: 1rem
}

.font-black {
  font-weight: 900
}

.font-bold {
  font-weight: 700
}

.font-medium {
  font-weight: 500
}

.font-semibold {
  font-weight: 600
}

.uppercase {
  text-transform: uppercase
}

.italic {
  font-style: italic
}

.leading-\[1\.15\] {
  line-height: 1.15
}

.leading-\[1\.1\] {
  line-height: 1.1
}

.leading-none {
  line-height: 1
}

.leading-relaxed {
  line-height: 1.625
}

.leading-snug {
  line-height: 1.375
}

.leading-tight {
  line-height: 1.25
}

.tracking-\[0\.18em\] {
  letter-spacing: .18em
}

.tracking-\[0\.2em\] {
  letter-spacing: .2em
}

.tracking-tight {
  letter-spacing: -.025em
}

.tracking-wider {
  letter-spacing: .05em
}

.tracking-widest {
  letter-spacing: .1em
}

.\!text-white {
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255/var(--tw-text-opacity, 1)) !important
}

.text-\[\#557a63\] {
  --tw-text-opacity: 1;
  color: rgb(85 122 99/var(--tw-text-opacity, 1))
}

.text-\[\#6b6b6b\] {
  --tw-text-opacity: 1;
  color: rgb(107 107 107/var(--tw-text-opacity, 1))
}

.text-brand-blue {
  color: var(--brand-blue)
}

.text-brand-orange {
  color: var(--brand-orange)
}

.text-gray-300 {
  --tw-text-opacity: 1;
  color: rgb(209 213 219/var(--tw-text-opacity, 1))
}

.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175/var(--tw-text-opacity, 1))
}

.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128/var(--tw-text-opacity, 1))
}

.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99/var(--tw-text-opacity, 1))
}

.text-gray-900 {
  --tw-text-opacity: 1;
  color: rgb(17 24 39/var(--tw-text-opacity, 1))
}

.text-text-dark {
  color: var(--text-dark)
}

.text-text-mid {
  color: var(--text-mid)
}

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

.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255/var(--tw-text-opacity, 1))
}

.text-white\/50 {
  color: hsla(0, 0%, 100%, .5)
}

.text-white\/70 {
  color: hsla(0, 0%, 100%, .7)
}

.text-white\/80 {
  color: hsla(0, 0%, 100%, .8)
}

.underline {
  text-decoration-line: underline
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.opacity-0 {
  opacity: 0
}

.opacity-100 {
  opacity: 1
}

.opacity-80 {
  opacity: .8
}

.opacity-90 {
  opacity: .9
}

.shadow-2xl {
  --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color)
}

.shadow-2xl,
.shadow-\[0_0_20px_rgba\(244\2c 130\2c 31\2c 0\.3\)\] {
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.shadow-\[0_0_20px_rgba\(244\2c 130\2c 31\2c 0\.3\)\] {
  --tw-shadow: 0 0 20px rgba(244, 130, 31, .3);
  --tw-shadow-colored: 0 0 20px var(--tw-shadow-color)
}

.shadow-\[0_14px_44px_rgba\(10\2c 30\2c 22\2c 0\.26\)\] {
  --tw-shadow: 0 14px 44px rgba(10, 30, 22, .26);
  --tw-shadow-colored: 0 14px 44px var(--tw-shadow-color)
}

.shadow-\[0_14px_44px_rgba\(10\2c 30\2c 22\2c 0\.26\)\],
.shadow-lg {
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color)
}

.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color)
}

.shadow-md,
.shadow-none {
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.shadow-none {
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000
}

.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color)
}

.shadow-sm,
.shadow-xl {
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.shadow-xl {
  --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color)
}

.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px
}

.blur-2xl {
  --tw-blur: blur(40px)
}

.blur-2xl,
.brightness-0 {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}

.brightness-0 {
  --tw-brightness: brightness(0)
}

.invert {
  --tw-invert: invert(100%)
}

.filter,
.invert {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}

.backdrop-blur-3xl {
  --tw-backdrop-blur: blur(64px)
}

.backdrop-blur-3xl,
.backdrop-blur-\[10px\] {
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)
}

.backdrop-blur-\[10px\] {
  --tw-backdrop-blur: blur(10px)
}

.backdrop-blur-lg {
  --tw-backdrop-blur: blur(16px)
}

.backdrop-blur-lg,
.backdrop-blur-md {
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)
}

.backdrop-blur-md {
  --tw-backdrop-blur: blur(12px)
}

.backdrop-blur-sm {
  --tw-backdrop-blur: blur(4px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)
}

.transition-all {
  transition-duration: .15s;
  transition-property: all;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1)
}

.transition-colors {
  transition-duration: .15s;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1)
}

.transition-opacity {
  transition-duration: .15s;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1)
}

.transition-transform {
  transition-duration: .15s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1)
}

.duration-1000 {
  transition-duration: 1s
}

.duration-300 {
  transition-duration: .3s
}

.duration-500 {
  transition-duration: .5s
}

.duration-700 {
  transition-duration: .7s
}

.ease-out {
  transition-timing-function: cubic-bezier(0, 0, .2, 1)
}

.hover\:gap-3:hover {
  gap: .75rem
}

.hover\:bg-\[\#1e62b0\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(30 98 176/var(--tw-bg-opacity, 1))
}

.hover\:bg-\[\#e0741a\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(224 116 26/var(--tw-bg-opacity, 1))
}

.hover\:bg-black\/5:hover {
  background-color: rgba(0, 0, 0, .05)
}

.hover\:bg-brand-orange:hover {
  background-color: var(--brand-orange)
}

.hover\:bg-brand-orange-lt:hover {
  background-color: var(--brand-orange-lt)
}

.hover\:bg-white\/20:hover {
  background-color: hsla(0, 0%, 100%, .2)
}

.hover\:text-blue-600:hover {
  --tw-text-opacity: 1;
  color: rgb(37 99 235/var(--tw-text-opacity, 1))
}

.hover\:text-brand-blue:hover {
  color: var(--brand-blue)
}

.hover\:text-brand-orange:hover {
  color: var(--brand-orange)
}

.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255/var(--tw-text-opacity, 1))
}

.hover\:underline:hover {
  text-decoration-line: underline
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px
}

.focus\:ring-2:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}

.focus\:ring-green-200:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(187 247 208/var(--tw-ring-opacity, 1))
}

.group:hover .group-hover\:translate-x-1 {
  --tw-translate-x: 0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.group:hover .group-hover\:bg-brand-blue {
  background-color: var(--brand-blue)
}

.group:hover .group-hover\:text-brand-orange {
  color: var(--brand-orange)
}

.group:hover .group-hover\:text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255/var(--tw-text-opacity, 1))
}

.group:hover .group-hover\:opacity-100 {
  opacity: 1
}

.peer\/monthly:checked~.peer-checked\/monthly\:bg-text-dark,
.peer\/weekly:checked~.peer-checked\/weekly\:bg-text-dark {
  background-color: var(--text-dark)
}

.peer\/monthly:checked~.peer-checked\/monthly\:text-white,
.peer\/weekly:checked~.peer-checked\/weekly\:text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255/var(--tw-text-opacity, 1))
}

@media (min-width:640px) {
  .sm\:mb-8 {
    margin-bottom: 2rem
  }

  .sm\:mt-12 {
    margin-top: 3rem
  }

  .sm\:h-\[350px\] {
    height: 350px
  }

  .sm\:h-\[400px\] {
    height: 400px
  }

  .sm\:h-\[420px\] {
    height: 420px
  }

  .sm\:w-auto {
    width: auto
  }

  .sm\:min-w-\[200px\] {
    min-width: 200px
  }

  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .sm\:flex-row {
    flex-direction: row
  }

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

  .sm\:gap-4 {
    gap: 1rem
  }

  .sm\:gap-6 {
    gap: 1.5rem
  }

  .sm\:space-y-6>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-bottom: calc(1.5rem*var(--tw-space-y-reverse));
    margin-top: calc(1.5rem*(1 - var(--tw-space-y-reverse)))
  }

  .sm\:rounded-\[2rem\] {
    border-radius: 2rem
  }

  .sm\:p-8 {
    padding: 2rem
  }

  .sm\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem
  }

  .sm\:text-5xl {
    font-size: 3rem;
    line-height: 1
  }

  .sm\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem
  }
}

@media (min-width:768px) {
  .md\:col-span-2 {
    grid-column: span 2/span 2
  }

  .md\:mb-20 {
    margin-bottom: 5rem
  }

  .md\:mb-24 {
    margin-bottom: 6rem
  }

  .md\:mt-10 {
    margin-top: 2.5rem
  }

  .md\:mt-14 {
    margin-top: 3.5rem
  }

  .md\:block {
    display: block
  }

  .md\:h-\[480px\] {
    height: 480px
  }

  .md\:w-\[60\%\] {
    width: 60%
  }

  .md\:min-w-\[200px\] {
    min-width: 200px
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr))
  }

  .md\:flex-row {
    flex-direction: row
  }

  .md\:items-end {
    align-items: flex-end
  }

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

  .md\:gap-12 {
    gap: 3rem
  }

  .md\:gap-y-0 {
    row-gap: 0
  }

  .md\:rounded-\[2rem\] {
    border-radius: 2rem
  }

  .md\:p-10 {
    padding: 2.5rem
  }

  .md\:p-12 {
    padding: 3rem
  }

  .md\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem
  }

  .md\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem
  }

  .md\:py-16 {
    padding-bottom: 4rem;
    padding-top: 4rem
  }

  .md\:pt-24 {
    padding-top: 6rem
  }

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

  .md\:text-right {
    text-align: right
  }

  .md\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem
  }

  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem
  }

  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1
  }

  .md\:text-6xl {
    font-size: 3.75rem;
    line-height: 1
  }

  .md\:text-base {
    font-size: 1rem;
    line-height: 1.5rem
  }

  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem
  }

  .md\:leading-tight {
    line-height: 1.25
  }
}

@media (min-width:1024px) {
  .lg\:-right-6 {
    right: -1.5rem
  }

  .lg\:right-\[2\%\] {
    right: 2%
  }

  .lg\:top-\[2\%\] {
    top: 2%
  }

  .lg\:order-1 {
    order: 1
  }

  .lg\:order-2 {
    order: 2
  }

  .lg\:col-span-1 {
    grid-column: span 1/span 1
  }

  .lg\:col-span-2 {
    grid-column: span 2/span 2
  }

  .lg\:col-span-3 {
    grid-column: span 3/span 3
  }

  .lg\:row-span-2 {
    grid-row: span 2/span 2
  }

  .lg\:mr-36 {
    margin-right: 9rem
  }

  .lg\:mt-0 {
    margin-top: 0
  }

  .lg\:block {
    display: block
  }

  .lg\:flex {
    display: flex
  }

  .lg\:grid {
    display: grid
  }

  .lg\:hidden {
    display: none
  }

  .lg\:h-\[250px\] {
    height: 250px
  }

  .lg\:h-\[550px\] {
    height: 550px
  }

  .lg\:h-\[600px\] {
    height: 600px
  }

  .lg\:h-\[96\%\] {
    height: 96%
  }

  .lg\:min-h-screen {
    min-height: 100vh
  }

  .lg\:w-5\/12 {
    width: 41.666667%
  }

  .lg\:w-7\/12 {
    width: 58.333333%
  }

  .lg\:w-\[400px\] {
    width: 400px
  }

  .lg\:w-auto {
    width: auto
  }

  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr))
  }

  .lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr))
  }

  .lg\:flex-row {
    flex-direction: row
  }

  .lg\:items-stretch {
    align-items: stretch
  }

  .lg\:justify-end {
    justify-content: flex-end
  }

  .lg\:gap-16 {
    gap: 4rem
  }

  .lg\:gap-20 {
    gap: 5rem
  }

  .lg\:gap-24 {
    gap: 6rem
  }

  .lg\:gap-5 {
    gap: 1.25rem
  }

  .lg\:rounded-\[20px\] {
    border-radius: 20px
  }

  .lg\:border {
    border-width: 1px
  }

  .lg\:p-10 {
    padding: 2.5rem
  }

  .lg\:p-5 {
    padding: 1.25rem
  }

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

  .lg\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem
  }

  .lg\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem
  }

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

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

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

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

  .lg\:py-36 {
    padding-bottom: 9rem;
    padding-top: 9rem
  }

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

  .lg\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem
  }

  .lg\:text-5xl {
    font-size: 3rem;
    line-height: 1
  }

  .lg\:text-6xl {
    font-size: 3.75rem;
    line-height: 1
  }

  .lg\:text-base {
    font-size: 1rem;
    line-height: 1.5rem
  }

  .lg\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem
  }
}

.btn-blue,
.btn-brand {
  background: linear-gradient(135deg, #0f4880 0, #1e6bb8 100%);
  border: 1px solid rgba(200, 220, 255, .24);
  box-shadow: 0 12px 26px rgba(15, 72, 128, .28)
}

.btn-orange {
  background: linear-gradient(135deg, #c96d10 0, #e8801a 100%);
  border: 1px solid rgba(255, 200, 150, .2);
  box-shadow: 0 10px 22px rgba(200, 100, 10, .2);
  color: #fff !important
}

.btn-blue:hover,
.btn-brand:hover {
  background: linear-gradient(135deg, #0a3567 0, #155a9e 100%);
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(10, 53, 103, .35)
}

.btn-orange:hover {
  background: linear-gradient(135deg, #a85a0e 0, #c96d10 100%);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(180, 90, 10, .32)
}

.btn-blue:focus-visible,
.btn-orange:focus-visible,
.btn-brand:focus-visible {
  outline: 3px solid rgba(30, 107, 184, .45);
  outline-offset: 2px
}

.hero-bg-main:after {
  background: none
}

body,
button,
input,
select,
textarea {
  font-family: 'Manrope', sans-serif
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-text h1,
.section-label,
.btn-blue,
.btn-orange,
.btn-brand,
.hero-btn-primary,
.hero-btn-secondary {
  font-family: 'Sora', sans-serif;
  letter-spacing: -.01em
}

footer.bg-plans:not(.footer-dark) {
  color: rgba(240, 246, 255, .92);
  border-top: 1px solid #2a7fd4
}

footer.bg-plans:not(.footer-dark) .text-gray-300 {
  color: rgba(240, 246, 255, .92) !important
}

footer.bg-plans:not(.footer-dark) .text-gray-400 {
  color: rgba(240, 246, 255, .88) !important
}

footer.bg-plans:not(.footer-dark) .border-gray-700 {
  border-color: rgba(200, 225, 255, .34) !important
}

footer.bg-plans:not(.footer-dark) h4,
footer.bg-plans:not(.footer-dark) .text-white {
  color: #f0f8ff !important
}

footer.bg-plans:not(.footer-dark) a {
  color: inherit
}

footer.bg-plans:not(.footer-dark) a:hover {
  color: #fff !important
}

footer.bg-plans:not(.footer-dark) .social-icon-footer {
  background: hsla(0, 0%, 100%, .16);
  color: #f0f8ff
}

footer.bg-plans:not(.footer-dark) .social-icon-footer:hover {
  background: hsla(0, 0%, 100%, .28);
  color: #fff
}

header.absolute.top-4.left-5.right-5 {
  background: hsla(0, 0%, 100%, .1) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid hsla(0, 0%, 100%, .18) !important;
  border-radius: 14px !important;
  box-shadow: 0 14px 44px rgba(10, 30, 60, .26) !important
}

#sliderOverlay {
  background: rgba(30, 107, 184, .18) !important;
  backdrop-filter: blur(4px) !important
}

#scrollToTop {
  background: var(--brand-blue-dark) !important;
  color: #fff !important;
  box-shadow: 0 0 20px rgba(21, 90, 158, .34) !important
}

#scrollToTop:hover {
  background: var(--brand-blue) !important
}

.schemes-cta .btn-cta-glass,
.schemes-cta .btn-cta-white {
  border-color: rgba(30, 107, 184, .34)
}

.schemes-cta .btn-cta-glass {
  background: hsla(0, 0%, 100%, .56);
  color: var(--text-dark)
}

.schemes-cta .btn-cta-glass:hover {
  background: hsla(0, 0%, 100%, .74)
}

/* Global footer cleanup + responsive improvements */
.footer-dark.bg-plans::before {
  background: linear-gradient(120deg, rgba(244, 248, 246, 0.14) 0%, rgba(221, 245, 234, 0.1) 36%, rgba(255, 255, 255, 0.06) 72%, rgba(221, 245, 234, 0.08) 100%), url(../../assets/images/plansBG.webp) center / cover no-repeat !important;
  filter: grayscale(1) brightness(1.7) contrast(1) !important;
  opacity: 0.2 !important;
}

@media (max-width: 768px) {
  .footer-dark {
    border-top-left-radius: 40px !important;
    border-top-right-radius: 40px !important;
    padding-top: 3.25rem !important;
    padding-bottom: 1.75rem !important;
  }

  .footer-dark .grid {
    gap: 2rem !important;
  }

  .footer-dark .logo-icon img {
    max-width: 220px !important;
    height: auto !important;
  }

  .footer-dark .footer-bottom {
    margin-top: 1.75rem !important;
    padding-top: 1rem !important;
    row-gap: 0.5rem !important;
    text-align: center !important;
  }
}

/* Cross-page responsive polish */
@media (max-width: 768px) {
  header.absolute.top-4.left-5.right-5 {
    top: 0.75rem !important;
    left: 0.75rem !important;
    right: 0.75rem !important;
    height: 4.25rem !important;
    border-radius: 12px !important;
  }

  .hero-brand-sub {
    min-height: 380px;
    height: auto;
    padding-top: 6.5rem;
    padding-bottom: 3.75rem;
  }

  .hero-brand-sub .hero-tagline {
    font-size: 11px;
    gap: 8px;
  }

  .hero-brand-sub h1 {
    font-size: clamp(2rem, 8.8vw, 2.7rem) !important;
    line-height: 1.1 !important;
  }

  header .lg\\:hidden .slider-trigger {
    color: #ffffff !important;
  }

  .schemes-cta {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .schemes-cta-card {
    border-radius: 24px;
    padding: 1.5rem;
  }

  .schemes-cta-card h2 {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  .schemes-cta-card p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }

  .schemes-cta-buttons {
    width: 100%;
  }

  .schemes-cta-buttons a {
    width: 100%;
    justify-content: center;
  }

  .stats-bar-card {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
    width: calc(100% - 1.5rem) !important;
    padding: 1.5rem 0.75rem !important;
    border-radius: 1.25rem !important;
  }

  .stats-bar-card .text-4xl,
  .stats-bar-card .md\\:text-5xl {
    font-size: 2rem !important;
    line-height: 1.1 !important;
  }
}

/* Accessible premium slide menu theme */
#sliderOverlay {
  background: rgba(15, 40, 90, 0.22) !important;
  backdrop-filter: blur(4px) !important;
}

#sideSlider>div {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, #f0f5fc 0%, #e4eef8 52%, #d8e8f5 100%) !important;
  border-color: rgba(30, 85, 170, 0.18) !important;
  box-shadow: 0 22px 54px rgba(10, 30, 70, 0.22) !important;
  color: #1a2e4a;
}

#sideSlider>div::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 16% 18%, rgba(30, 107, 184, 0.12), transparent 46%),
    radial-gradient(circle at 88% 8%, rgba(58, 143, 214, 0.12), transparent 34%);
}

#sideSlider nav {
  position: relative;
  z-index: 1;
}

#sideSlider nav a {
  color: #1a2e4a !important;
  font-weight: 700;
  font-size: clamp(1.45rem, 4.6vw, 1.68rem);
  line-height: 1.22;
  letter-spacing: 0.01em;
  border-radius: 14px;
  padding: 0.3rem 0.6rem;
  transition: background-color 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

#sideSlider nav a[href*="faq"] {
  display: none !important;
}

@media (max-width: 1023px) {
  #sideSlider .mb-3.hidden.lg\:block {
    display: flex !important;
    align-items: center;
    justify-content: center;
    align-self: center;
    margin-top: auto !important;
    margin-bottom: 0.9rem !important;
    padding: 0.5rem 0.9rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.44);
    border: 1px solid rgba(30, 85, 170, 0.2);
    box-shadow: 0 8px 24px rgba(15, 40, 90, 0.1);
    width: fit-content;
  }

  #sideSlider .mb-3.hidden.lg\:block img {
    height: 3.35rem !important;
    width: auto;
    filter: none !important;
    opacity: 1;
  }
}

#sideSlider nav a.flex.items-center.gap-3 {
  color: #b98200 !important;
  font-weight: 800;
}

#sideSlider nav a.flex.items-center.gap-3 span {
  background: #d39a09 !important;
}

#sideSlider nav a:hover,
#sideSlider nav a:focus-visible {
  color: #0f2e5a !important;
  background: rgba(30, 107, 184, 0.14);
  transform: translateX(4px);
  outline: 2px solid rgba(30, 85, 170, 0.42);
  outline-offset: 3px;
}

#sideSlider nav a span {
  background: rgba(15, 50, 120, 0.82) !important;
}

#sideSlider .text-text-dark,
#sideSlider .text-text-mid,
#sideSlider h4,
#sideSlider p,
#sideSlider a:not(nav a),
#sideSlider span {
  color: rgba(26, 46, 80, 0.95) !important;
}

#sideSlider .text-text-mid {
  color: rgba(40, 78, 120, 0.9) !important;
}

#sideSlider .border-black\/10,
#sideSlider .border-white\/30 {
  border-color: rgba(30, 85, 170, 0.22) !important;
}

#sideSlider .social-icon-sidebar {
  background: rgba(30, 85, 170, 0.12) !important;
  color: #1a5ea0 !important;
  border-color: rgba(30, 85, 170, 0.24) !important;
}

#sideSlider .social-icon-sidebar:hover,
#sideSlider .social-icon-sidebar:focus-visible {
  background: rgba(30, 85, 170, 0.2) !important;
  color: #0f4880 !important;
  outline: 2px solid rgba(30, 85, 170, 0.48);
  outline-offset: 2px;
}

#sideSlider a[href^="mailto:"] span {
  font-size: clamp(0.86rem, 1.75vw, 1.02rem) !important;
  line-height: 1.35 !important;
  word-break: break-word;
  overflow-wrap: anywhere;
}

#sideSlider a[href^="tel:"] span {
  font-size: clamp(0.86rem, 1.75vw, 1.02rem) !important;
  line-height: 1.35 !important;
}

#sideSlider #sliderClose {
  position: absolute !important;
  top: 1rem !important;
  right: 1rem !important;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0 !important;
  border-radius: 9999px;
  border: 1px solid rgba(30, 85, 170, 0.26);
  backdrop-filter: blur(2px);
  color: #1b3a6c !important;
  background: rgba(30, 85, 170, 0.1);
}

#sideSlider #sliderClose:hover,
#sideSlider #sliderClose:focus-visible {
  background: rgba(30, 85, 170, 0.18);
  box-shadow: 0 6px 20px rgba(10, 30, 70, 0.2);
  outline: 2px solid rgba(30, 85, 170, 0.48);
  outline-offset: 2px;
}

/* Homepage mobile premium rhythm */
@media (max-width: 640px) {
  .home-page .hero {
    min-height: 580px !important;
    padding: 92px 18px 58px !important;
  }

  .home-page .hero-container {
    min-height: calc(100% - 12px);
    justify-content: center !important;
    padding-top: 1.25rem !important;
    padding-bottom: 0.75rem !important;
  }

  .home-page .hero-text {
    max-width: 31rem;
    margin-top: 0.8rem;
  }

  .home-page .hero-tagline {
    font-size: 10px !important;
    gap: 6px !important;
    margin-bottom: 0.9rem !important;
  }

  .home-page .hero-text h1 {
    font-size: clamp(1.95rem, 8.2vw, 2.45rem) !important;
    line-height: 1.08 !important;
    margin-bottom: 0.8rem !important;
  }

  .home-page .hero-text p {
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
    margin-bottom: 1rem !important;
  }

  .home-page .hero-buttons {
    gap: 0.7rem !important;
    margin-top: 1rem !important;
  }

  .home-page .hero-btn-primary,
  .home-page .hero-btn-secondary {
    min-height: 2.75rem;
    padding: 0.88rem 1rem !important;
    font-size: 0.92rem !important;
  }

  .home-page .testimonials-shell {
    margin-top: -0.55rem !important;
    padding-top: 2.6rem !important;
    border-top-left-radius: 34px !important;
    border-top-right-radius: 34px !important;
  }

  .home-page .work-process-shell {
    margin-top: 0 !important;
    padding-top: 2.8rem !important;
    border-top-left-radius: 34px !important;
    border-top-right-radius: 34px !important;
    position: relative;
    z-index: 60 !important;
  }

  .home-page main>section {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }

  .home-page .section-overlap {
    margin-top: -1.2rem !important;
    border-top-left-radius: 34px !important;
    border-top-right-radius: 34px !important;
  }

  .home-page .section-label {
    font-size: 0.72rem !important;
    padding: 0.4rem 0 !important;
  }

  .home-page h2.text-3xl,
  .home-page h2.text-4xl,
  .home-page .section-title {
    font-size: clamp(1.55rem, 6.3vw, 2rem) !important;
    line-height: 1.2 !important;
  }

  .home-page .max-w-7xl,
  .home-page .max-w-4xl,
  .home-page .max-w-xl {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .home-page .marquee {
    gap: 2rem !important;
  }

  .home-page .marquee-text {
    font-size: 2rem !important;
  }

  .home-page .marquee .w-20,
  .home-page .marquee .h-20 {
    width: 2.75rem !important;
    height: 2.75rem !important;
  }

  .home-page .plan-card,
  .home-page .testimonial-card,
  .home-page .contact-card,
  .home-page .apple-contact-card,
  .home-page .faq-item-premium {
    padding: 1rem !important;
    border-radius: 1rem !important;
  }

  .home-page .consult-card {
    height: 318px !important;
  }

  .home-page .consult-card::before {
    background: linear-gradient(to top,
        rgba(10, 36, 25, 0.96) 0%,
        rgba(14, 51, 35, 0.84) 42%,
        rgba(20, 66, 46, 0.5) 72%,
        rgba(24, 73, 52, 0.2) 100%) !important;
  }

  .home-page .consult-card .plan-basic {
    bottom: 8.25rem !important;
    padding: 0 0.85rem !important;
  }

  .home-page .consult-card .plan-basic h3 {
    font-size: 1.12rem !important;
    line-height: 1.2 !important;
    margin-bottom: 0.15rem !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
  }

  .home-page .consult-card .plan-basic .text-4xl {
    font-size: 2rem !important;
    line-height: 1.02 !important;
  }

  .home-page .consult-card .plan-basic .text-\[60px\] {
    font-size: 2rem !important;
    line-height: 1 !important;
    letter-spacing: -0.02em;
  }

  .home-page .consult-card .consult-content {
    transform: translateY(0) !important;
    bottom: 0.7rem !important;
    left: 0.85rem !important;
    right: 0.85rem !important;
    padding: 0 !important;
  }

  .home-page .consult-card .consult-content .plan-meta {
    font-size: 0.84rem !important;
    line-height: 1.25 !important;
    margin-top: 0 !important;
    margin-bottom: 0.25rem !important;
    color: rgba(244, 255, 248, 0.96) !important;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.38);
  }

  .home-page .consult-card .consult-content hr {
    margin-top: 0.35rem !important;
    margin-bottom: 0.4rem !important;
  }

  .home-page .consult-card .consult-content p {
    font-size: 0.88rem !important;
    line-height: 1.28 !important;
    color: rgba(241, 255, 246, 0.96) !important;
    margin-bottom: 0 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .home-page .consult-card .consult-content .mt-3 {
    margin-top: 0.45rem !important;
  }

  .home-page .consult-card .consult-content a {
    min-height: 2.45rem;
    border-radius: 0.7rem !important;
    font-size: 0.98rem !important;
    font-weight: 700 !important;
    background: #f3fff8 !important;
    color: #154330 !important;
  }

  .home-page .consult-card .consult-content a:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.94);
    outline-offset: 2px;
  }

  .home-page .schemes-grid {
    gap: 1rem !important;
  }

  .home-page .steps-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
  }

  .home-page .step-item {
    padding: 0 0.4rem !important;
  }

  .home-page .step-number {
    width: 2.2rem !important;
    height: 2.2rem !important;
    font-size: 0.85rem !important;
    margin-bottom: 0.65rem !important;
  }

  .home-page .step-item h3 {
    font-size: 0.95rem !important;
  }

  .home-page .step-item p {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
  }

  .home-page .stats-bar-card {
    padding: 1rem 0.5rem !important;
  }

  .home-page .stats-bar-card .text-4xl,
  .home-page .stats-bar-card .md\:text-5xl {
    font-size: 1.65rem !important;
    line-height: 1.1 !important;
  }

  .home-page .stats-bar-card .text-sm {
    font-size: 0.68rem !important;
    line-height: 1.25 !important;
  }

  .home-page #contactForm {
    gap: 0.65rem !important;
  }

  .home-page #contactForm input,
  .home-page #contactForm textarea,
  .home-page #contactForm select {
    font-size: 0.92rem !important;
    padding: 0.72rem 0.82rem !important;
  }

  .home-page #contactForm .h-32 {
    height: 6.5rem !important;
  }
}

.inner-theme .schemes-cta-card .location-chip {
  background: rgba(255, 255, 255, 0.82) !important;
  color: #1f5b42 !important;
  border-color: rgba(47, 133, 90, 0.24) !important;
  box-shadow: 0 8px 18px rgba(31, 91, 66, 0.08);
}

.inner-theme .schemes-cta-card .location-chip .bg-brand-orange {
  background-color: #1f5b42 !important;
}

/* Mobile density pass: Why Choose Us section */
@media (max-width: 640px) {
  .why-choose-section {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
    margin-top: -2rem !important;
    border-top-left-radius: 40px !important;
    border-top-right-radius: 40px !important;
  }

  .why-choose-section .max-w-7xl {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .why-top-grid {
    gap: 1.5rem !important;
    margin-bottom: 1.75rem !important;
  }

  .why-features-grid {
    padding-top: 0.5rem !important;
    gap: 1.35rem !important;
  }

  .why-feature-card .icon-svg {
    margin-bottom: 0.5rem !important;
  }

  .why-feature-card .icon-svg .w-16,
  .why-feature-card .icon-svg .h-16 {
    width: 2.65rem !important;
    height: 2.65rem !important;
  }

  .why-feature-card .icon-line {
    margin-top: 0.5rem !important;
    margin-bottom: 0.7rem !important;
  }

  .why-feature-card h3 {
    font-size: 1.45rem !important;
    line-height: 1.25 !important;
    margin-bottom: 0.45rem !important;
  }

  .why-feature-card p {
    font-size: 0.98rem !important;
    line-height: 1.45 !important;
  }
}