@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&display=swap');

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--sm-font-body);
}

html {
  scroll-behavior: smooth;
}

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

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

body {
  overflow-x: hidden;
}

p {
  margin: 0 0 1em;
  font-size: 1.1rem;
  color: var(--sm-ink);
  line-height: 1.7;
}

h1, h2, h3, h4 {
  color: var(--sm-ink);
  line-height: 1.25;
  margin: 0 0 .6em;
}

section {
  padding: 0 max(20px, calc((100vw - 1240px) / 2));
}

/* Skip link for keyboard/screen-reader users */
.sm-skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  background: var(--sm-primary);
  color: var(--sm-white);
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  transition: top 200ms ease;
}

.sm-skip-link:focus {
  top: 12px;
}

/* ==========================================================================
   DESIGN TOKENS
   ========================================================================== */
:root {
  --sm-primary: #762c69;
  --sm-plum: #9b3a83;
  --sm-plum-light: #fff2fc;
  --sm-deep: #5c2150;
  --sm-ink: #000;
  --sm-soft: #fff1fc;
  --sm-line: #e7dce5;
  --sm-white: #fff;
  --sm-shadow: 0 15px 35px rgba(63, 23, 55, .12);
  --sm-radius: 14px;
  --sm-container: min(1240px, calc(100% - 40px));
  --sm-transition: 250ms ease;
  --page-pad: 0 max(20px, calc((100vw - 1240px) / 2));

  --sm-font-display: "Poppins", serif;
  --sm-font-body: "Poppins", sans-serif;
  --sm-text: #655f67;
  --sm-gold: #d8a63c;
}

/* Layout Container */
.sm-container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
 
}
.sm-section {
  background-color: var(--sm-plum-light);
  padding-top: 40px;
  padding-bottom: 40px;
}

/* ==========================================================================
   PAGE BANNER WITH FLOATING ANIMATION
   ========================================================================== */
.banner {
  margin-top: 85px;
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(160px, 28vw, 280px);
  overflow: hidden;
  isolation: isolate;
}

.sm-hero-art,
.sm-hero-art::before {
  inset: 0;
  position: absolute;
  z-index: -1;
}

.sm-hero-art {
background: radial-gradient(ellipse at 80% 80%, rgba(190, 67, 174, 0.7), transparent 36%),
              linear-gradient(126deg, #151322 0%, #403040 45%, #8c506f 100%);
}

.sm-hero-art::before {
  content: "";
  opacity: .35;
  background: repeating-linear-gradient(45deg, transparent 0 70px, color-mix(in srgb, var(--sm-white) 12%, transparent) 71px 72px);
}

.sm-hero-art span {
  position: absolute;
  width: 32vw;
  aspect-ratio: 1;
  border: 1px solid color-mix(in srgb, var(--sm-white) 12%, transparent);
  border-radius: 50%;
  filter: blur(2px);
  animation: floatShape 12s ease-in-out infinite alternate;
}

@keyframes floatShape {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(15px, -15px) scale(1.04); }
  100% { transform: translate(-10px, 10px) scale(0.98); }
}

.sm-hero-art span:nth-child(1) {
  right: 4%;
  top: -15%;
  animation-delay: 0s;
}

.sm-hero-art span:nth-child(2) {
  left: -10%;
  bottom: -40%;
  width: 48vw;
  animation-delay: -4s;
}

.banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  z-index: -1;
}

.banner__title {
  position: relative;
  color: var(--sm-white);
  font-family: var(--sm-font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  text-align: center;
  padding-inline: 1rem;
  margin: 0;
  font-weight: 600;
  z-index: 2;
}

/* =========================================
   SOFT TISSUE REINFORCEMENT HERO
========================================= */
.smtr-hero-section {
  padding: 2rem 0;
  background: var(--sm-plum-light);
}

.smtr-container {
  width: var(--sm-container);
  margin: 0 auto;
}

.smtr-hero-wrapper {
  width: var(--sm-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 4rem;
}

.smtr-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.smtr-hero-title {
  margin: 0;
  color: var(--sm-ink);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  font-weight: 700;
}

.smtr-hero-subtitle {
  margin: 0;
  color: var(--sm-primary);
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 700;
}

.smtr-hero-description {
  margin: 0;
  color: var(--sm-ink);
  line-height: 1.9;
  font-size: 1.05rem;
}

.smtr-hero-actions {
  margin-top: .5rem;
}

.smtr-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 2rem;
  background: var(--sm-primary);
  color: var(--sm-white);
  text-decoration: none;
  border-radius: 50px;
  transition: background var(--sm-transition), transform var(--sm-transition), box-shadow var(--sm-transition);
}

.smtr-primary-btn:hover {
  background: var(--sm-deep);
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(89, 33, 79, 0.3);
}

.smtr-hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.smtr-hero-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  transition: transform var(--sm-transition);
}

.smtr-hero-image:hover img {
  transform: scale(1.03);
}

/* ==========================================================================
   DETAILED HERO
   ========================================================================== */
.sm-hero {
  position: relative;
 padding: 20px;
  overflow: hidden;
  isolation: isolate;
}

.sm-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.sm-hero__lead {
  margin-top: 22px;
  color: var(--sm-ink);
  max-width: 60ch;
  text-align: justify;
}

.sm-hero__lead + .sm-hero__lead { margin-top: 14px; }
.sm-hero__lead strong { color: var(--sm-ink); font-weight: 600; }

.sm-hero__visual {
  position: relative;
  overflow: visible;
  max-width: 480px;
  margin-inline: auto;
  width: 100%;
}

.sm-hero__ring {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--sm-plum), var(--sm-gold), var(--sm-primary), var(--sm-plum));
  filter: blur(48px);
  opacity: .35;
  animation: smSpin 14s linear infinite;
  z-index: -1;
}

@keyframes smSpin { to { transform: rotate(360deg); } }

.sm-hero__frame {
  background: var(--sm-white);
  border: 1px solid var(--sm-line);
  border-radius: 22px;
  padding: 14px;
  box-shadow: var(--sm-shadow);
  transition: transform var(--sm-transition), box-shadow var(--sm-transition);
}

/* .sm-hero__frame:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(63, 23, 55, 0.16);
} */

.sm-hero__frame img {
  border-radius: 14px;
  width: 100%;
}

/* ==========================================================================
   SECTION HEADER STRIPS
   ========================================================================== */
.section-strip__title {
  color: var(--sm-primary);
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: bold;
}

.title-line {
  width: 70px;
  height: 3px;
  background: var(--sm-primary);
  margin: 18px 0;
  border-radius: 50px;
  transition: width var(--sm-transition);
}

section:hover .title-line {
  width: 105px;
}

.inner-container {
  padding: 30px 0;
}

.split-wrapper {
  max-width: 1240px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
 
}

.split-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  padding: 20px 40px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0,0,0,.08);
  transition: .4s;
}

/* .split-card:hover {
  transform: translateY(-8px);
} */

.reverse {
  flex-direction: row-reverse;
}

.split-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.split-image img {
  width: 100%;
  max-width: 350px;
  height: 350px;
  object-fit: contain;
  
}

/* .split-card:hover .split-image > img {
  transform: scale(1.05);
} */

.split-content {
  flex: 1;
  min-width: 0;
}

.split-content span {
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #762c69;
  color: #fff;
  font-weight: bold;
  margin-bottom: 20px;
}

.split-content h3 {
  font-size: 36px;
  color: #762c69;
  margin-bottom: 20px;
}

.split-content p {
  
  line-height: 1.9;

  margin: 0;
  text-align: justify;
}

.split-intro {
  margin-top: 20px;
 
  
  line-height: 1.8;
}


/* ==========================================================================
   REFERENCES
   ========================================================================== */
.sm-refs {
  width: 100%;
}

.sm-refs__inner {
  padding:40px;
  max-width: var(--sm-container);
  margin: 0 auto;
}

.sm-refs ol {
  list-style: none;
  counter-reset: refcount;
  display: grid;
  gap: 12px;
  max-width: 820px;
  padding-left: 0;
  margin: 20px 0 0;
}

.sm-refs li {
  counter-increment: refcount;
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 14px;
 
  padding: 10px 4px;
 
  transition: transform var(--sm-transition), box-shadow var(--sm-transition);
  word-break: break-word;
  overflow-wrap: anywhere;
}


.sm-refs li::before {
  content: counter(refcount);
  font-weight: 700;
  font-size: 12px;
  color: var(--sm-white);
  background: var(--sm-primary);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.sm-refs a {
  color: var(--sm-primary);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--sm-transition);
  font-size: 1.1rem;
}

.sm-refs a:hover,
.sm-refs a:focus-visible {
  color: var(--sm-plum);
  text-decoration: underline;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.sm-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.sm-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 992px) {
  .smtr-hero-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .smtr-hero-content {
    order: 1;
    text-align: left;
  }

  .smtr-hero-actions {
    display: flex;
    justify-content: center;
  }

  .smtr-hero-image {
    order: 2;
  }

  .smtr-hero-image img {
    max-width: 320px;
  }
}

@media (max-width: 900px) {
  .sm-hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .sm-hero__visual {
    order: -1;
  }
  .sm-hero__lead {
    max-width: 100%;
    text-align: justify;
  }
}

@media (max-width: 576px) {
  .sm-card {
    padding: 18px;
    border-radius: 16px;
  }

  .sm-app__grid,
  .sm-app__gallery
   {
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 280px;
  }
  .sm-app__gallery img,
  .sm-app__figure img {
    height: 220px;
  }

  .banner {
    min-height: 180px;
  }

  .split-card {
    padding: 28px;
    gap: 24px;
  }

  .split-image img {
    width: 100%;
    max-width: 240px;
    height: 155px;
    margin: 0 auto;
  }

  .split-content h3 {
    font-size: 26px;
  }

  .split-content p,
  .split-content {
    text-align: left;
  }
.sm-refs__inner {
    max-width: var(--sm-container);
   padding: 20px;
    margin: 0px auto;
}
  .sm-refs li {
    padding: 10px 8px;
    gap: 10px;
  }
  .sm-refs li:hover {
    transform: none;
  }
  .sm-refs li::before {
    width: 20px;
    height: 20px;
    font-size: 11px;
  }
  .smtr-hero-title {
   text-align: center;
}
.smtr-hero-subtitle {
  text-align: center;
}

.smtr-hero-description {
  text-align: center;
}
}

@media (max-width: 400px) {
  .split-content span {
    width: 46px;
    height: 46px;
  }

  .split-image img {
    max-width: 200px;
    height: 200px;
  }

  .sm-app__gallery img,
  .sm-app__figure img {
    height: 180px;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .smtr-primary-btn,
  .sm-card,
  .sm-hero__frame,
  .sm-hero-art span,
  .sm-hero__ring,
  .sm-reveal {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
/* note */
 .sc-disclaimer {
    --sc-disclaimer-border: var(--sm-primary);
    --sc-disclaimer-bg: #fff;
    --sc-disclaimer-text: var(--navy-brand, #1F2A44);
 
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--sc-disclaimer-bg);
    border-left: 4px solid var(--sc-disclaimer-border);
    border-radius: 8px;
    padding: 16px 20px;
    margin: 24px 0;
  }
 
  .sc-disclaimer__icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 2px;
    color: var(--sc-disclaimer-border);
  }
 
  .sc-disclaimer__text {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--sc-disclaimer-text)
  }
 
  .sc-disclaimer__text strong {
    color: var(--sc-disclaimer-border);
    font-weight: 600;
  }
 
  /* 9-tier responsive adjustments */
  @media (max-width: 480px) {
    .sc-disclaimer {
      padding: 12px 14px;
      gap: 10px;
    }
    .sc-disclaimer__text {
      font-size: 13px;
    }
  }
 
  @media (min-width: 1920px) {
    .sc-disclaimer__text {
      font-size: 15px;
    }
  }
.sc-panel {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 48px 24px;
    background: #fff;
    border-radius: 20px;
  }
 
  /* Content block */
  .sc-panel__content {
    max-width: 720px;
  }
 
  .sc-panel__content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    color: var(--sm-primary);
    margin: 0 0 12px;
  }
 
  .sc-panel__content p {
    font-family: 'Poppins', sans-serif;
  
    line-height: 1.6;
    color: var(--navy-brand, #1F2A44);
    margin: 0;
  }
 
  /* Image grid — images only */
  .sc-panel__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
 
  .sc-panel__item {
    margin: 0;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  }
 
  .sc-panel__item img {
    width: 100%;
    object-fit: cover;
    display: block;
  }
 
  .sc-panel__item figcaption {
    padding: 14px 16px 18px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--navy-brand, #1F2A44);
  }
 
  .sc-panel__item figcaption h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--purple-brand, #6B4EA0);
    margin: 0 0 4px;
  }
 
  /* 9-tier responsive breakpoints */
  @media (max-width: 1024px) {
    .sc-panel__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
 
  @media (max-width: 480px) {
    .sc-panel {
      padding: 32px 16px;
      gap: 24px;
    }
    .sc-panel__grid {
      grid-template-columns: 1fr;
    }
    .sc-panel__content h3 {
      font-size: 26px;
    }
    .sc-panel__content p {
      font-size: 16px;
    }
  }
 
  @media (min-width: 1920px) {
    .sc-panel {
      padding: 64px 32px;
    }
    .sc-panel__grid {
      gap: 28px;
    }
  }
  .sc-procedure {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 48px 24px;
    background-color: #fff;
border-radius: 20px;  }
 
  /* Content block */
  
 
  .sc-procedure__content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    color: var(--sm-primary);
    margin: 0 0 12px;
  }
 
  .sc-procedure__content p {
    font-family: 'Poppins', sans-serif;
   
    line-height: 1.6;
    color: var(--navy-brand, #1F2A44);
    margin: 0;
  }
 
  .sc-procedure__content sup {
    color: var(--purple-brand, #6B4EA0);
    font-size: 0.65em;
  }
 
  /* Image grid — 2 images side by side */
  .sc-procedure__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
 
  .sc-procedure__grid img {
    
   
    object-fit: cover;
    display: block;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  }
 
  /* 9-tier responsive breakpoints */
  @media (max-width: 480px) {
    .sc-procedure {
      padding: 32px 16px;
      gap: 20px;
    }
    .sc-procedure__grid {
      grid-template-columns: 1fr;
    }
    .sc-procedure__content h3 {
      font-size: 26px;
    }
    .sc-procedure__content p {
      font-size: 16px;
    }
  }
 
  @media (min-width: 1920px) {
    .sc-procedure {
      padding: 64px 32px;
    }
    .sc-procedure__grid {
      gap: 28px;
    }
  }