:root {
  --brand-blue: #005baa;
  --brand-dark: #063b70;
  --brand-deep: #032b52;
  --brand-orange: #f58220;
  --brand-orange-dark: #dc6d0c;
  --soft-blue: #eef7ff;
  --soft-orange: #fff5eb;
  --text: #14304a;
  --muted: #66788a;
  --white: #ffffff;
  --border: #dce8f2;
  --shadow: 0 22px 60px rgba(5, 67, 120, .13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Manrope", sans-serif;
  color: var(--brand-deep);
  font-weight: 800;
  line-height: 1.2;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.site-header {
  position: relative;
  z-index: 1000;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid rgba(0, 91, 170, .1);
}

.header-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.brand img {
  width: 175px;
  max-height: 60px;
  object-fit: contain;
}

.header-actions,
.phone-link {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 26px;
}

.phone-link {
  gap: 10px;
  color: var(--brand-deep);
}

.phone-link small,
.phone-link strong {
  display: block;
  line-height: 1.25;
}

.phone-link small {
  color: var(--muted);
  font-size: 12px;
}

.phone-link strong {
  font-size: 16px;
}

.phone-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--soft-blue);
  color: var(--brand-blue);
  display: grid;
  place-items: center;
}

.btn {
  border-radius: 12px;
  padding: 12px 23px;
  font-weight: 700;
  transition: .25s ease;
}

.btn-brand {
  color: #fff;
  border-color: var(--brand-orange);
  background: var(--brand-orange);
  box-shadow: 0 10px 24px rgba(245, 130, 32, .24);
}

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

.btn-outline-brand {
  color: var(--brand-blue);
  border: 1px solid rgba(0, 91, 170, .35);
  background: rgba(255, 255, 255, .8);
}

.btn-outline-brand:hover {
  color: #fff;
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}

.hero-section {
  min-height: 720px;
  padding: 72px 0 80px;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(246, 251, 255, .98) 0%, rgba(246, 251, 255, .94) 45%, rgba(233, 246, 255, .82) 100%),
    url("https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 77% 45%, rgba(0, 91, 170, .08), transparent 32%);
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  z-index: -1;
}

.hero-shape-one {
  width: 350px;
  height: 350px;
  top: -140px;
  left: -130px;
  background: rgba(0, 91, 170, .07);
}

.hero-shape-two {
  width: 260px;
  height: 260px;
  bottom: -120px;
  right: 12%;
  background: rgba(245, 130, 32, .09);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-blue);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
}

.eyebrow {
  padding: 9px 14px;
  border-radius: 50px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 91, 170, .1);
}

.hero-copy h1 {
  max-width: 720px;
  margin: 22px 0 18px;
  font-size: clamp(42px, 5.3vw, 72px);
  letter-spacing: -.045em;
}

.hero-copy h1 span {
  color: var(--brand-blue);
}

.hero-text {
  max-width: 660px;
  color: #4b647a;
  font-size: 19px;
  margin-bottom: 25px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-bottom: 30px;
}

.hero-points div {
  font-weight: 700;
  color: var(--brand-dark);
}

.hero-points i {
  color: #1b9b64;
  margin-right: 6px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.trust-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.trust-avatar {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--brand-blue);
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 91, 170, .1);
  font-size: 21px;
}

.trust-note strong,
.trust-note span {
  display: block;
}

.trust-note span {
  color: var(--muted);
  font-size: 14px;
}

.lead-card {
  padding: 30px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, .8);
  backdrop-filter: blur(15px);
}

.lead-card-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.lead-card-head h2 {
  font-size: 24px;
  margin: 0 0 4px;
}

.lead-card-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.form-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: var(--brand-blue);
  font-size: 20px;
}

.form-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-dark);
}

.custom-input .input-group-text,
.custom-input .form-control,
.form-select {
  min-height: 52px;
  border-color: var(--border);
  background-color: #f9fcff;
}

.custom-input .input-group-text {
  color: var(--brand-blue);
  border-right: 0;
}

.custom-input .form-control {
  border-left: 0;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(0, 91, 170, .55);
  box-shadow: 0 0 0 .22rem rgba(0, 91, 170, .1);
  background: #fff;
}

.consent-check {
  margin: 18px 0;
}

.consent-check label {
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
}

.form-submit {
  min-height: 54px;
}

.privacy-text {
  margin: 12px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}

.stats-section {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  background: var(--brand-blue);
}

.stats-grid {
  min-height: 125px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.stat-item {
  padding: 20px;
  color: #fff;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.stat-item:last-child {
  border-right: 0;
}

.stat-item strong,
.stat-item span {
  display: block;
}

.stat-item strong {
  font-family: "Manrope";
  font-size: 34px;
  line-height: 1.1;
}

.stat-item span {
  opacity: .82;
  margin-top: 5px;
}

.section-padding {
  padding: 105px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-heading h2 {
  margin: 10px 0 15px;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -.035em;
}

.section-heading p {
  color: var(--muted);
  font-size: 17px;
}

.services-section {
  background: #fff;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: #fff;
  transition: .3s ease;
}

.service-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 25px 55px rgba(5, 67, 120, .13);
  border-color: transparent;
}

.service-card.featured {
  border: 2px solid rgba(245, 130, 32, .45);
}

.popular-badge {
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 14px;
  padding: 7px 12px;
  color: #fff;
  background: var(--brand-orange);
  border-radius: 40px;
  font-size: 12px;
  font-weight: 800;
}

.service-image {
  height: 235px;
  position: relative;
  overflow: hidden;
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(3, 43, 82, .45));
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .45s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-number {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 12px;
  color: #fff;
  font-family: "Manrope";
  font-size: 30px;
  font-weight: 800;
}

.service-content {
  padding: 28px;
}

.service-icon {
  width: 53px;
  height: 53px;
  margin-top: -55px;
  margin-bottom: 19px;
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  color: var(--brand-blue);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(5, 67, 120, .18);
  font-size: 23px;
}

.service-content h3 {
  font-size: 25px;
}

.service-content p {
  color: var(--muted);
}

.service-content ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
}

.service-content li {
  position: relative;
  padding: 5px 0 5px 25px;
  color: #425c73;
}

.service-content li::before {
  content: "\F26A";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  color: #1b9b64;
}

.service-link {
  color: var(--brand-blue);
  font-weight: 800;
}

.why-section {
  background: var(--soft-blue);
}

.why-visual {
  position: relative;
  padding: 0 35px 35px 0;
}

.main-image {
  width: 100%;
  min-height: 570px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.experience-card,
.care-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

.experience-card {
  right: 0;
  bottom: 0;
  padding: 18px 22px;
  border-radius: 18px;
}

.experience-card>span {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: var(--brand-orange);
  font-size: 21px;
}

.experience-card strong,
.experience-card small {
  display: block;
}

.experience-card small {
  color: var(--muted);
}

.care-card {
  top: 30px;
  left: -25px;
  padding: 12px 16px;
  border-radius: 50px;
  color: var(--brand-dark);
  font-weight: 700;
}

.care-card i {
  color: #e25369;
}

.benefit-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.benefit-item {
  display: flex;
  gap: 13px;
  padding: 18px;
  border: 1px solid rgba(0, 91, 170, .11);
  border-radius: 17px;
  background: rgba(255, 255, 255, .72);
}

.benefit-item>span {
  flex: 0 0 45px;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--brand-blue);
  background: #fff;
  font-size: 19px;
}

.benefit-item h4 {
  margin: 0 0 5px;
  font-size: 17px;
}

.benefit-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.journey-section {
  background: #fff;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.journey-step {
  position: relative;
  padding: 30px 24px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--border);
  text-align: center;
}

.journey-step::after {
  content: "\F135";
  font-family: "bootstrap-icons";
  position: absolute;
  top: 50%;
  right: -18px;
  transform: translateY(-50%);
  color: var(--brand-orange);
  font-size: 22px;
}

.journey-step:last-child::after {
  display: none;
}

.step-number {
  position: absolute;
  top: 15px;
  right: 17px;
  color: rgba(0, 91, 170, .12);
  font-size: 30px;
  font-family: "Manrope";
  font-weight: 800;
}

.step-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--brand-blue);
  border-radius: 19px;
  font-size: 26px;
  box-shadow: 0 13px 28px rgba(0, 91, 170, .2);
}

.journey-step h3 {
  font-size: 19px;
}

.journey-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.testimonials-section {
  background: var(--brand-deep);
}

.testimonials-section .section-kicker {
  color: #7fc5ff;
}

.testimonials-section .section-heading h2 {
  color: #fff;
}

.testimonial-card {
  padding: 30px;
  border-radius: 21px;
  background: #fff;
}

.stars {
  color: #ffb020;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.testimonial-card>p {
  color: #405a71;
  font-size: 17px;
  font-style: italic;
}

.patient {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.patient>span {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--brand-blue);
  font-weight: 800;
}

.patient strong,
.patient small {
  display: block;
}

.patient small {
  color: var(--muted);
}

.sample-note {
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
  margin: 22px 0 0;
}

.faq-section {
  background: #fff;
}

.faq-heading {
  top: 30px;
}

.custom-accordion .accordion-item {
  margin-bottom: 14px;
  border: 1px solid var(--border);
  border-radius: 15px;
  overflow: hidden;
}

.custom-accordion .accordion-button {
  padding: 20px 22px;
  color: var(--brand-deep);
  background: #fff;
  font-weight: 800;
  box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
  color: var(--brand-blue);
  background: var(--soft-blue);
}

.custom-accordion .accordion-body {
  color: var(--muted);
  padding: 5px 22px 22px;
}

.final-cta {
  padding: 0 0 80px;
  background: #fff;
}

.final-cta-box {
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-radius: 26px;
  color: #fff;
  background: linear-gradient(120deg, var(--brand-blue), var(--brand-dark));
  box-shadow: var(--shadow);
}

.final-cta-box h2 {
  color: #fff;
  margin: 7px 0;
  font-size: clamp(28px, 4vw, 43px);
}

.final-cta-box p {
  margin: 0;
  opacity: .82;
}

.final-cta-box>div>span {
  color: #9ed3ff;
  font-weight: 700;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

.site-footer {
  padding: 30px 0 90px;
  border-top: 1px solid var(--border);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-wrap img {
  width: 150px;
}

.footer-wrap p {
  max-width: 650px;
  margin: 0;
  text-align: right;
  color: var(--muted);
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  z-index: 999;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .2);
  font-size: 27px;
}

.whatsapp-float:hover {
  color: #fff;
  transform: translateY(-3px);
}

.mobile-bottom-bar {
  display: none;
}

@media (max-width: 1199.98px) {
  .hero-copy h1 {
    font-size: 55px;
  }

  .benefit-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991.98px) {
  .header-wrap {
    min-height: 74px;
  }

  .hero-section {
    padding: 65px 0 75px;
  }

  .hero-copy {
    text-align: center;
  }

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

  .hero-points,
  .hero-cta,
  .trust-note {
    justify-content: center;
  }

  .lead-card {
    max-width: 620px;
    margin: 0 auto;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: 0;
  }

  .stat-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .journey-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-step:nth-child(2)::after {
    display: none;
  }

  .why-visual {
    max-width: 680px;
    margin: 0 auto;
  }

  .benefit-list {
    grid-template-columns: 1fr 1fr;
  }

  .final-cta-box {
    flex-direction: column;
    text-align: center;
  }

  .final-actions {
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  body {
    padding-bottom: 68px;
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .brand img {
    width: 135px;
  }

  .phone-link span:last-child {
    display: none;
  }

  .header-actions {
    gap: 10px;
  }

  .hero-section {
    min-height: auto;
    padding: 48px 0 60px;
    background-position: 62% center;
  }

  .hero-copy h1 {
    font-size: 40px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-points {
    display: grid;
    gap: 7px;
    text-align: left;
    justify-content: center;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .lead-card {
    padding: 22px 18px;
    border-radius: 19px;
  }

  .stats-grid {
    min-height: auto;
  }

  .stat-item {
    padding: 18px 8px;
  }

  .stat-item strong {
    font-size: 28px;
  }

  .stat-item span {
    font-size: 13px;
  }

  .section-padding {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 35px;
  }

  .section-heading h2 {
    font-size: 32px;
  }

  .service-image {
    height: 220px;
  }

  .main-image {
    min-height: 430px;
  }

  .care-card {
    left: 10px;
  }

  .why-visual {
    padding-right: 15px;
  }

  .benefit-list {
    grid-template-columns: 1fr;
  }

  .journey-grid {
    grid-template-columns: 1fr;
  }

  .journey-step::after {
    display: none;
  }

  .final-cta {
    padding-bottom: 55px;
  }

  .final-cta-box {
    padding: 35px 22px;
    border-radius: 20px;
  }

  .final-actions {
    width: 100%;
  }

  .final-actions .btn {
    width: 100%;
  }

  .footer-wrap {
    flex-direction: column;
    text-align: center;
  }

  .footer-wrap p {
    text-align: center;
  }

  .whatsapp-float {
    bottom: 82px;
    right: 15px;
    width: 53px;
    height: 53px;
  }

  .mobile-bottom-bar {
    position: fixed;
    z-index: 1000;
    left: 0;
    right: 0;
    bottom: 0;
    height: 68px;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    background: #fff;
    box-shadow: 0 0px 100px rgb(250 115 0);
  }

  .mobile-bottom-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--brand-blue);
    font-weight: 800;
  }

  .mobile-bottom-bar a.primary {
    color: #fff;
    background: var(--brand-orange);
  }
}

@media (max-width: 420px) {
  .hero-copy h1 {
    font-size: 35px;
  }

  .eyebrow {
    font-size: 11px;
  }

  .trust-note {
    align-items: flex-start;
    text-align: left;
  }

  .experience-card {
    right: 0;
    padding: 13px;
  }

  .experience-card>span {
    width: 40px;
    height: 40px;
  }
}

/* =========================================================
   RESPONSIVE HORIZONTAL-SCROLL FIX
   ========================================================= */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

main,
header,
footer,
section {
  max-width: 100%;
}

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

.container,
.container-fluid,
.row,
[class*="col-"] {
  min-width: 0;
}

.eyebrow,
.section-kicker,
.phone-link,
.service-link,
.final-actions,
.mobile-bottom-bar a {
  min-width: 0;
  max-width: 100%;
}

.eyebrow {
  white-space: normal;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  line-height: 1.4;
}

.hero-section,
.why-section,
.journey-section,
.final-cta,
.site-footer {
  overflow: hidden;
}

.why-visual {
  max-width: 100%;
}

.experience-card {
  max-width: calc(100% - 16px);
}

@media (max-width: 991.98px) {
  .hero-section .row,
  .why-section .row,
  .faq-section .row {
    --bs-gutter-x: 1.5rem;
  }

  .hero-shape {
    display: none;
  }

  .why-visual {
    padding-right: 0;
    padding-bottom: 28px;
  }

  .experience-card {
    right: 8px;
  }
}

@media (max-width: 575.98px) {
  .container,
  .container-sm {
    --bs-gutter-x: 1.5rem;
  }

  .header-wrap {
    gap: 12px;
  }

  .header-actions {
    flex-shrink: 0;
  }

  .hero-copy,
  .lead-card,
  .service-card,
  .testimonial-card,
  .final-cta-box {
    width: 100%;
    max-width: 100%;
  }

  .lead-card-head,
  .lead-card-head > div {
    min-width: 0;
  }

  .lead-card-head h2,
  .lead-card-head p,
  .service-content h3,
  .service-content p,
  .service-content li,
  .accordion-button,
  .accordion-body {
    overflow-wrap: anywhere;
  }

  .why-visual {
    padding: 0 0 26px;
  }

  .experience-card {
    left: 8px;
    right: 8px;
    bottom: 0;
    justify-content: center;
  }

  .final-actions,
  .hero-cta {
    min-width: 0;
  }

  .mobile-bottom-bar a {
    padding-inline: 8px;
    text-align: center;
    font-size: 14px;
    line-height: 1.2;
  }
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

