:root {
  --ink: #102a33;
  --muted: #5d7480;
  --brand: #9b1c22;
  --brand-2: #d92631;
  --aqua: #f06a70;
  --danger: #d92631;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --line: rgba(10, 105, 120, 0.16);
  --shadow: 0 22px 60px rgba(4, 45, 57, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  background:
    radial-gradient(circle at top left, rgba(217, 38, 49, 0.1), transparent 32rem),
    radial-gradient(circle at 86% 10%, rgba(155, 28, 34, 0.08), transparent 26rem),
    #fff8f7;
  overflow-x: hidden;
}

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

img,
svg {
  max-width: 100%;
}

img {
  height: auto;
}

p {
  color: var(--muted);
}

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: 0;
  line-height: 1.1;
}

h1 {
  max-width: 700px;
  font-size: clamp(2.2rem, 5.2vw, 4.7rem);
  font-weight: 850;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 820;
}

h3 {
  font-size: 1.18rem;
  font-weight: 780;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  padding: 10px 14px;
  color: #fff;
  background: var(--brand);
  border-radius: var(--radius);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 9999;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2), #fff);
}

.section-pad {
  position: relative;
  padding: 110px 0;
}

.soft-band {
  background: linear-gradient(135deg, rgba(255, 244, 243, 0.88), rgba(255, 250, 249, 0.92));
}

.deep-band {
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(83, 12, 17, 0.96), rgba(155, 28, 34, 0.94)),
    #530c11;
}

.deep-band h2,
.deep-band h3,
.deep-band p {
  color: #fff;
}

.deep-band p {
  opacity: 0.8;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #dffff8;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  content: "";
  background: currentColor;
}

.eyebrow.dark {
  color: var(--brand);
}

.glass-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.glass-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.navbar-glass {
  padding: 16px 0;
  transition: padding 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.navbar-glass.scrolled {
  padding: 9px 0;
  background: rgba(246, 251, 252, 0.82);
  box-shadow: 0 12px 36px rgba(12, 73, 86, 0.12);
  backdrop-filter: blur(18px);
}

.navbar-brand {
  color: #fff;
  line-height: 1;
}

.brand-text {
  display: block;
}

.navbar-brand strong {
  display: block;
  font-size: 1.22rem;
  font-weight: 850;
}

.navbar-brand small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.brand-logo {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 28px rgba(155, 28, 34, 0.24);
  overflow: hidden;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-link {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 720;
}

.nav-link:hover,
.nav-link:focus {
  color: #fff;
}

.navbar-glass.scrolled .navbar-brand {
  color: var(--ink);
}

.navbar-glass.scrolled .navbar-brand small {
  color: var(--muted);
}

.navbar-glass.scrolled .navbar-brand strong {
  color: var(--ink);
}

.navbar-glass.scrolled .nav-link {
  color: rgba(16, 42, 51, 0.76);
}

.navbar-glass.scrolled .nav-link:hover,
.navbar-glass.scrolled .nav-link:focus {
  color: var(--brand);
}

.navbar-glass .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.45);
}

.navbar-glass .navbar-toggler-icon {
  filter: invert(1);
}

.navbar-glass.scrolled .navbar-toggler {
  border-color: rgba(16, 42, 51, 0.25);
}

.navbar-glass.scrolled .navbar-toggler-icon {
  filter: none;
}

.btn {
  border-radius: 999px;
  font-weight: 800;
}

.btn-gradient {
  position: relative;
  overflow: hidden;
  color: #fff;
  border: 0;
  background: linear-gradient(135deg, var(--brand), var(--aqua) 52%, var(--brand-2));
  box-shadow: 0 16px 34px rgba(13, 140, 149, 0.3);
}

.btn-gradient:hover,
.btn-gradient:focus {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(13, 140, 149, 0.42);
}

.btn i {
  margin-left: 6px;
  transition: transform 0.24s ease;
}

.btn:hover i {
  transform: translateX(4px);
}

.btn-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
}

.hero-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding-top: 130px;
  padding-bottom: 190px;
  color: #fff;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 42%, rgba(255, 255, 255, 0.15), transparent 25rem),
    linear-gradient(115deg, rgba(74, 8, 13, 0.96), rgba(155, 28, 34, 0.88)),
    #530c11;
}

.hero-section > .container {
  z-index: 1;
}

.hero-banner::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(42, 6, 8, 0.38), transparent 28%, rgba(42, 6, 8, 0.16)),
    radial-gradient(circle at 22% 48%, rgba(255, 255, 255, 0.12), transparent 30rem);
}

.hero-section h1,
.hero-section p {
  color: #fff;
}

.hero-section h1 {
  max-width: 640px;
}

.hero-copy {
  max-width: 660px;
  font-size: 1.15rem;
  opacity: 0.86;
}

.hero-orbit {
  position: absolute;
  width: 760px;
  height: 760px;
  left: -300px;
  top: 150px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation: rotateSlow 24s linear infinite;
  opacity: 0.58;
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.hero-orbit::before {
  inset: 110px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
}

.hero-orbit::after {
  width: 18px;
  height: 18px;
  left: 70px;
  top: 210px;
  background: var(--brand-2);
  box-shadow: 0 0 32px rgba(255, 255, 255, 0.5);
}

.hero-visual {
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.14);
}

.hero-banner-card {
  isolation: isolate;
  overflow: hidden;
}

.hero-banner-card::before {
  position: absolute;
  inset: 12px;
  z-index: 1;
  pointer-events: none;
  content: "";
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(83, 12, 17, 0.08), transparent 36%),
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.32), transparent 18rem);
}

.hero-visual img,
.doctor-frame img {
  display: block;
  border-radius: var(--radius);
}

.hero-banner-card img {
  width: 100%;
  /*height: clamp(360px, 38vw, 520px);*/
  object-fit: cover;
  object-position: center right;
  filter: contrast(1.04) saturate(1.04);
}

/* Portrait-specific enhancements: apply mild color/contrast boosts, soft vignette and caption */
.hero-portrait-wrap {
  position: relative;
  overflow: visible;
  padding: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
}

.portrait-figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 28px 68px rgba(10, 38, 45, 0.18);
}

.hero-portrait {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: contrast(1.06) saturate(1.08) brightness(1.02);
  transform: translateZ(0);
  transition: transform 0.45s cubic-bezier(.2,.9,.2,1), filter 0.25s ease;
}

.hero-portrait:hover,
.hero-portrait:focus {
  transform: scale(1.02);
  filter: contrast(1.08) saturate(1.12) brightness(1.04);
}

.portrait-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(60% 50% at 50% 30%, rgba(0,0,0,0.08), rgba(0,0,0,0.18) 70%);
}

.portrait-caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  border-radius: 8px;
  font-weight: 760;
  box-shadow: 0 12px 34px rgba(5, 42, 52, 0.12);
}

/* Make hero portrait adapt on smaller screens */
@media (max-width: 991px) {
  .hero-portrait {
    height: 460px;
  }
  .portrait-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero-portrait {
    height: 360px;
  }
}

.photo-cover {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}




.hero-badge {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  /*max-width: 300px;*/
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  color: var(--ink);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 34px rgba(5, 42, 52, 0.18);
}

.hero-badge i {
  color: var(--brand-2);
  font-size: 1.35rem;
}

.hero-stat-container {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: 38px;
  transform: none;
}

.hero-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.hero-stat-card {
  display: grid;
  min-height: 142px;
  padding: 28px 20px;
  align-content: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  box-shadow: 0 22px 54px rgba(42, 6, 8, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.hero-stat-card:hover {
  border-color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-6px);
}

.hero-trust strong {
  display: block;
  color: #fff;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 850;
  line-height: 1;
}

.hero-trust span {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  font-weight: 650;
}

.wave-divider {
  position: absolute;
  left: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 150px;
  pointer-events: none;
  overflow: hidden;
}

.wave-bottom {
  bottom: -1px;
}

.wave-top {
  top: -1px;
}

.wave-main {
  fill: #fff8f7;
}

.wave-shadow {
  fill: rgba(255, 248, 247, 0.42);
  opacity: 0.85;
  animation: waveSoftFloat 10s ease-in-out infinite alternate;
}

.lottie-panel {
  display: grid;
  min-height: 420px;
  padding: 32px;
  place-items: center;
}

.about-photo {
  overflow: hidden;
  padding: 12px;
}

.about-photo img {
  display: block;
  aspect-ratio: 4 / 5;
  min-height: 480px;
  border-radius: var(--radius);
}

.about-photo figcaption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  padding: 14px 16px;
  color: var(--ink);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 38px rgba(83, 12, 17, 0.18);
  font-weight: 760;
}

.lottie-chip {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 38px rgba(83, 12, 17, 0.18);
  overflow: hidden;
}

.mini-proof,
.credentials span,
.body-legend span {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 54px;
  padding: 13px 15px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.65);
}

.mini-proof i,
.credentials span::before {
  color: var(--brand-2);
}

.feature-card,
.condition-card,
.treatment-card,
.blog-card,
.testimonial-card,
.journey-step {
  height: 100%;
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover,
.condition-card:hover,
.treatment-card:hover,
.blog-card:hover,
.testimonial-card:hover,
.journey-step:hover,
.tech-tile:hover {
  border-color: rgba(23, 184, 144, 0.48);
  transform: translateY(-8px);
  box-shadow: 0 24px 70px rgba(5, 67, 77, 0.18), 0 0 0 1px rgba(23, 184, 144, 0.16);
}

.animated-icon,
.tech-tile i {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 14px 32px rgba(23, 184, 144, 0.26);
}

.body-map {
  position: relative;
  max-width: 520px;
  padding: 12px;
  margin-left: auto;
  overflow: hidden;
}

#conditions.section-pad {
  padding: 78px 0;
}

#conditions h2 {
  max-width: 560px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

#conditions p {
  max-width: 560px;
}

.pain-body-img {
  display: block;
  width: min(100%, 480px);
  margin: auto;
  border-radius: var(--radius);
  filter: drop-shadow(0 22px 38px rgba(83, 12, 17, 0.12));
}

.pain-hotspot {
  position: absolute;
  width: 24px;
  height: 24px;
  padding: 0;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0 16%, #f58b90 17% 42%, var(--brand-2) 43% 100%);
  box-shadow: 0 0 0 8px rgba(217, 38, 49, 0.08), 0 0 24px rgba(217, 38, 49, 0.34);
  transform: translate(-50%, -50%);
  animation: softPainGlow 2.8s ease-in-out infinite;
}

.pain-hotspot::before,
.pain-hotspot::after {
  position: absolute;
  inset: -11px;
  content: "";
  border: 1px solid rgba(217, 38, 49, 0.28);
  border-radius: inherit;
  animation: softPainRipple 2.8s ease-out infinite;
}

.pain-hotspot::after {
  inset: -19px;
  animation-delay: 0.75s;
}

.pain-hotspot:hover,
.pain-hotspot:focus-visible {
  outline: 3px solid rgba(217, 38, 49, 0.18);
  outline-offset: 5px;
  animation-duration: 1.8s;
}

.point-neck { left: 50%; top: 14.5%; }
.point-shoulder { left: 35.5%; top: 20.5%; }
.point-elbow { left: 29%; top: 35.5%; }
.point-wrist { left: 20.5%; top: 48%; }
.point-spine { left: 50%; top: 32%; }
.point-hip { left: 43%; top: 46%; }
.point-knee { left: 42%; top: 69%; }
.point-ankle { left: 42%; top: 88%; }
.point-foot { left: 39%; top: 94%; }

.body-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.body-legend span {
  min-height: 46px;
  padding: 10px 12px;
  font-size: 0.9rem;
}

.pain-zone-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 460px;
  margin-top: 18px;
}

.pain-zone-chip {
  display: flex;
  min-height: 50px;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  color: var(--ink);
  border: 1px solid rgba(155, 28, 34, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 10px 28px rgba(83, 12, 17, 0.06);
  cursor: pointer;
  font-weight: 780;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.pain-zone-chip i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  font-size: 0.95rem;
}

.pain-zone-chip:hover,
.pain-zone-chip:focus-visible {
  border-color: rgba(217, 38, 49, 0.35);
  box-shadow: 0 16px 34px rgba(83, 12, 17, 0.1);
  transform: translateY(-3px);
}

.pain-zone-chip:active {
  transform: translateY(-1px);
}

.map-help-card {
  display: flex;
  max-width: 520px;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  margin-top: 16px;
  box-shadow: 0 16px 36px rgba(83, 12, 17, 0.08);
}

.map-help-card i {
  color: var(--brand-2);
  font-size: 1.2rem;
  line-height: 1.4;
}

.map-help-card p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.55;
}

.body-legend i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 18px rgba(217, 38, 49, 0.45);
}

.dark-card {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
}

#technology h2 {
  max-width: 620px;
  font-size: clamp(2.7rem, 4.6vw, 4.25rem);
}

#technology p {
  max-width: 620px;
}

.technology-layout {
  --bs-gutter-x: 5rem;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 900px;
  margin-left: auto;
}

.tech-tile {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 156px;
  padding: 32px;
  gap: 22px;
  align-items: center;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.78);
  text-align: left;
  font-family: inherit;
  font-size: 1.2rem;
  font-weight: 820;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.tech-tile > i:not(.tech-chevron) {
  flex: 0 0 auto;
  width: 66px;
  height: 66px;
  margin-bottom: 0;
  font-size: 1.22rem;
}

.tech-tile span {
  line-height: 1.3;
}

.tech-dropdown {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr) 40px;
  align-items: center;
  column-gap: 22px;
}

.tech-content {
  display: grid;
  gap: 0;
  min-width: 0;
  align-self: center;
}

.tech-title {
  display: block;
  max-width: 142px;
}

.tech-details {
  display: grid;
  gap: 8px;
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  opacity: 0;
  transition: max-height 0.24s ease, margin-top 0.24s ease, opacity 0.18s ease;
}

.tech-details span {
  position: relative;
  padding-left: 18px;
}

.tech-details span::before {
  position: absolute;
  left: 0;
  color: var(--brand-2);
  content: "\2022";
}

.tech-chevron {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--brand-2);
  background: transparent;
  box-shadow: none;
  font-size: 1.35rem;
  transform: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.tech-dropdown[aria-expanded="true"] {
  min-height: 190px;
  align-items: center;
  border-color: rgba(23, 184, 144, 0.48);
}

.tech-dropdown[aria-expanded="true"] .tech-content {
  align-self: center;
}

.tech-dropdown[aria-expanded="true"] .tech-details {
  max-height: 110px;
  margin-top: 12px;
  opacity: 1;
}

.tech-dropdown[aria-expanded="true"] .tech-chevron {
  transform: rotate(180deg);
}

.tech-tile:focus-visible {
  outline: 3px solid rgba(217, 38, 49, 0.22);
  outline-offset: 4px;
}

.doctor-frame {
  max-width: 520px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(155, 28, 34, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(83, 12, 17, 0.18);
}

.doctor-frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

.credentials {
  display: grid;
  gap: 12px;
}

.credentials span::before {
  content: "\F26A";
  font-family: "bootstrap-icons";
}

.journey-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

#journey.section-pad {
  min-height: 0;
  padding: 58px 0 52px;
}

.journey-step span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--brand);
}

.journey-overview {
  margin-bottom: 10px;
}

.journey-overview .lead {
  max-width: 640px;
  color: #405a64;
}

.journey-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.journey-metrics div {
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(155, 28, 34, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 36px rgba(83, 12, 17, 0.07);
}

.journey-metrics strong {
  display: block;
  color: var(--brand);
  font-size: 1.4rem;
  line-height: 1;
}

.journey-metrics span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}

.journey-support {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 28px;
  overflow: hidden;
}

.journey-support::before {
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 210px;
  height: 210px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 38, 49, 0.16), transparent 68%);
}

.support-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 16px 34px rgba(217, 38, 49, 0.24);
}

.support-icon i {
  font-size: 1.55rem;
}

.journey-support h3 {
  margin-bottom: 8px;
}

.visit-checklist {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 4px 0 0;
  list-style: none;
}

.visit-checklist li {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  border: 1px solid rgba(155, 28, 34, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  font-weight: 700;
}

.visit-checklist i {
  color: var(--brand-2);
}

.stats-section {
  background:
    linear-gradient(135deg, rgba(74, 8, 13, 0.94), rgba(217, 38, 49, 0.86)),
    #530c11;
}

.stats-section.section-pad {
  padding: 70px 0;
}

.stat-card {
  padding: 28px 14px;
  background: rgba(255, 255, 255, 0.14);
}

.stat-card strong {
  display: block;
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
}

.testimonial-swiper {
  padding: 8px 8px 52px;
}

.testimonial-card {
  min-height: 250px;
}

.testimonial-card p {
  color: var(--ink);
  font-size: 1.1rem;
}

.swiper-pagination-bullet-active {
  background: var(--brand);
}

.premium-accordion .accordion-item {
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 36px rgba(5, 67, 77, 0.08);
}

.premium-accordion .accordion-button {
  font-weight: 800;
  background: transparent;
}

.premium-accordion .accordion-button:not(.collapsed) {
  color: var(--brand);
  background: rgba(23, 184, 144, 0.08);
}

.blog-swiper {
  padding: 8px 8px 62px;
}

.blog-swiper .swiper-slide {
  height: auto;
}

.blog-card {
  display: flex;
  min-height: 278px;
  flex-direction: column;
}

.blog-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.blog-card p {
  flex: 1;
}

.blog-card a,
.read-more-link {
  display: inline-flex;
  width: fit-content;
  gap: 6px;
  align-items: center;
  padding: 0;
  color: var(--brand);
  border: 0;
  background: transparent;
  font-weight: 820;
  line-height: 1.3;
}

.read-more-link i {
  transition: transform 0.24s ease;
}

.read-more-link:hover i,
.read-more-link:focus-visible i {
  transform: translateX(4px);
}

.blog-swiper-controls {
  position: absolute;
  right: 8px;
  bottom: 2px;
  left: 8px;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 14px;
  align-items: center;
}

.blog-swiper-controls .swiper-pagination {
  position: static;
  display: flex;
  justify-content: center;
  transform: none;
}

.blog-swiper-prev,
.blog-swiper-next {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 12px 28px rgba(83, 12, 17, 0.16);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.blog-swiper-prev:hover,
.blog-swiper-next:hover,
.blog-swiper-prev:focus-visible,
.blog-swiper-next:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(83, 12, 17, 0.22);
}

.contact-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(74, 8, 13, 0.95), rgba(155, 28, 34, 0.9)),
    #530c11;
}

.contact-section h2,
.contact-section p {
  color: #fff;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-list a,
.contact-list span {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 13px 15px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.appointment-form {
  padding: 30px;
  background: rgba(255, 255, 255, 0.18);
}

.form-label {
  color: #fff;
  font-weight: 780;
}

.form-control,
.form-select {
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--brand-2);
  box-shadow: 0 0 0 0.25rem rgba(23, 184, 144, 0.2);
}

.captcha-box {
  display: grid;
  grid-template-columns: 180px 52px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

#captchaCanvas {
  width: 180px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
}

.captcha-refresh {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  transition: background 0.2s ease, transform 0.2s ease;
}

.captcha-refresh:hover,
.captcha-refresh:focus-visible {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}

.form-note {
  display: inline-block;
  margin: 12px 0 0 14px;
  color: #dffff8;
}

.footer {
  padding: 70px 0 24px;
  color: rgba(255, 255, 255, 0.76);
  background: #2a0608;
}

.footer h2 {
  color: #fff;
  font-size: 1rem;
}

.footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.76);
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 18px;
  color: #fff;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.64);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.footer .footer-social a {
  display: grid;
  width: 42px;
  height: 42px;
  margin: 0;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.15rem;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.footer .footer-social a:hover,
.footer .footer-social a:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 1040;
  display: grid;
  gap: 12px;
}

.float-btn,
.back-to-top {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #fff;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(4, 45, 57, 0.24);
}

.float-btn:hover,
.back-to-top:hover {
  color: #fff;
  transform: translateY(-3px);
}

.whatsapp {
  background: #1fbf69;
}

.back-to-top {
  background: linear-gradient(135deg, var(--brand), var(--aqua));
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  border: 1px solid rgba(255, 255, 255, 0.7);
}

#painModalWhatsapp {
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

.pain-modal-detail ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 4px 0 24px;
  list-style: none;
}

.pain-modal-detail li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.pain-modal-detail li::before {
  position: absolute;
  top: 0.2rem;
  left: 0;
  color: var(--brand-2);
  content: "\F26A";
  font-family: "bootstrap-icons";
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 18px;
    margin-top: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
  }

  .navbar-collapse .nav-link {
    color: rgba(16, 42, 51, 0.78);
  }

  .hero-section {
    min-height: auto;
    padding-top: 128px;
    padding-bottom: 138px;
  }

  .hero-stat-container {
    margin-top: 42px;
  }

  .hero-stat-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

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

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

  .technology-layout {
    --bs-gutter-x: 1.5rem;
  }

  .tech-grid {
    max-width: none;
    margin-left: 0;
  }
}

@media (max-width: 767.98px) {
  .section-pad {
    padding: 78px 0;
  }

  .hero-badge {
    position: static;
    margin-top: 14px;
  }

  .hero-section {
    padding-top: 118px;
    padding-bottom: 118px;
  }

  .hero-stat-strip {
    grid-template-columns: 1fr;
  }

  .hero-stat-card {
    min-height: 132px;
    padding: 26px 18px;
  }

  .hero-trust strong {
    font-size: 2.6rem;
  }

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

  .tech-tile {
    min-height: 132px;
    padding: 24px;
  }

  .tech-dropdown {
    grid-template-columns: 58px minmax(0, 1fr) 36px;
    column-gap: 18px;
  }

  .tech-chevron {
    width: 36px;
    height: 36px;
  }

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

  .pain-zone-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: block;
  }

  .captcha-box {
    grid-template-columns: 1fr 52px;
  }

  #captchaCanvas {
    grid-column: 1;
    width: 100%;
  }

  .captcha-box .form-control {
    grid-column: 1 / -1;
    width: 100%;
  }

  .captcha-refresh {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    background: rgba(155, 28, 34, 0.76);
  }

  .floating-actions {
    right: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
