:root {
  --blue: #1262e3;
  --blue-dark: #07377f;
  --blue-soft: #eef6ff;
  --blue-soft-2: #f4f8ff;
  --text: #111827;
  --muted: #5f6b7a;
  --white: #fff;
  --black: #000;
  --radius: 28px;
  --shadow: 0 18px 48px rgba(18,98,227,.12);
  --shadow-strong: 0 22px 60px rgba(18,98,227,.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  color: var(--text);
  background: #fff;
}

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

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

.container {
  width: min(1180px,calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: #fff;
  color: #000;
  padding: 10px 16px;
  z-index: 9999;
}

.skip-link:focus {
  left: 10px;
}

.topbar {
  height: 24px;
  background: var(--blue);
  color: white;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.topbar a {
  opacity: .95;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: white;
  border-bottom: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 30px rgba(0,0,0,.04);
}

.nav-inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.1;
}

.brand-mark {
  font-weight: 900;
  color: var(--blue);
  font-size: 17px;
  letter-spacing: .02em;
}

.brand-sub {
  display: block;
  font-size: 12px;
  color: #2665d8;
  font-weight: 700;
  margin-top: 3px;
}

.menu {
  display: flex;
  gap: 28px;
  align-items: center;
}

.menu a {
  font-weight: 700;
  font-size: 14px;
}

.menu a:hover, .menu a[aria-current="page"] {
  color: var(--blue);
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 900;
  font-size: 13px;
  box-shadow: 0 10px 24px rgba(18,98,227,.24);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #0f172a;
  font-size: 28px;
  line-height: 1;
  padding: 8px;
  border-radius: 10px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  padding: 15px 26px;
  font-weight: 900;
  border: 2px solid transparent;
  transition: .2s ease;
}

.btn-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 15px 34px rgba(18,98,227,.24);
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.btn-white {
  background: white;
  color: var(--blue);
}

.btn-outline {
  border-color: rgba(18,98,227,.35);
  color: var(--blue);
  background: white;
}

.btn-outline:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
}

.btn-small {
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: white;
  overflow: hidden;
  background: #0e306b;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,rgba(18,98,227,.55),rgba(6,28,76,.82)),rgba(10,48,132,.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(980px,calc(100% - 32px));
  padding: 100px 0 70px;
}

.hero-kicker {
  display: block;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 600;
  color: rgba(255,255,255,.84);
  font-size: 20px;
}

.hero-brand {
  display: block;
  margin-top: 10px;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: .03em;
}

.hero h1 {
  font-size: clamp(42px,7vw,78px);
  line-height: 1.05;
  margin: 30px 0 0;
  font-weight: 950;
}

.hero p {
  font-size: clamp(16px,2vw,20px);
  line-height: 1.8;
  max-width: 860px;
  margin: 26px auto 0;
  color: rgba(255,255,255,.92);
}

.hero-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-pills span {
  background: rgba(255,255,255,.96);
  color: var(--blue);
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 900;
  font-size: 14px;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.scroll-cue {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  margin-top: 42px;
  color: rgba(255,255,255,.9);
  font-weight: 700;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--blue);
  display: grid;
  place-items: center;
  z-index: 80;
  box-shadow: 0 16px 34px rgba(18,98,227,.35);
  transition: .2s;
}

.whatsapp-float:hover {
  transform: scale(1.06);
}

.whatsapp-float img {
  width: 38px;
  height: 38px;
}

.section {
  padding: 90px 0;
}

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

.section-grey {
  background: #f6f7f9;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 54px;
}

.eyebrow {
  display: inline-block;
  color: var(--blue);
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 900;
}

.section-head h2, .page-title h1 {
  font-size: clamp(34px,5vw,54px);
  line-height: 1.12;
  color: var(--blue);
  margin: 14px 0 0;
  font-weight: 950;
}

.section-head p, .page-title p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
  margin: 18px 0 0;
}

.service-mini-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}

.service-mini {
  display: grid;
  grid-template-columns: 42% 1fr;
  overflow: hidden;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: .2s;
}

.service-mini:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.service-mini img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.service-mini-body {
  padding: 28px;
}

.service-mini h3 {
  font-size: 24px;
  color: var(--blue);
  margin: 0 0 12px;
  font-weight: 950;
}

.service-mini p {
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}

.link-arrow {
  display: inline-flex;
  margin-top: 20px;
  font-weight: 900;
  color: #0b56c8;
}

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

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.why-text {
  position: relative;
}

.vertical-label {
  position: absolute;
  left: -46px;
  top: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 12px;
  letter-spacing: .38em;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
}

.why-text h2 {
  font-size: clamp(36px,5vw,56px);
  line-height: 1.12;
  color: var(--blue);
  font-weight: 950;
  margin: 18px 0;
}

.why-text > p {
  font-size: 18px;
  line-height: 1.85;
  color: #4b5563;
}

.why-list {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.why-list h3 {
  font-size: 22px;
  color: var(--blue);
  margin: 0 0 6px;
}

.why-list p {
  margin: 0;
  color: #5f6b7a;
  line-height: 1.7;
}

.finance-card {
  margin-top: 30px;
  border: 2px solid rgba(18,98,227,.14);
  background: white;
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
}

.finance-card h3 {
  font-size: 30px;
  margin: 8px 0;
  color: var(--blue);
  line-height: 1.1;
}

.finance-mini {
  display: grid;
  gap: 10px;
}

.finance-mini div {
  background: #eef6ff;
  border-radius: 16px;
  padding: 13px;
  color: var(--muted);
  font-size: 14px;
}

.slider-card {
  position: relative;
}

.slider-frame {
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow-strong);
  position: relative;
  height: 620px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .75s ease,transform .75s ease;
  transform: scale(1.04);
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

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

.slide-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  background: rgba(255,255,255,.94);
  border-radius: 16px;
  padding: 14px 18px;
  color: var(--blue);
  font-weight: 900;
  z-index: 3;
  max-width: 320px;
}

.slider-dots {
  display: flex;
  gap: 9px;
  justify-content: center;
  margin-top: 18px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(0,0,0,.18);
  cursor: pointer;
}

.slider-dots button.active {
  background: var(--blue);
}

.decor-square {
  position: absolute;
  width: 90px;
  height: 90px;
  background: var(--blue);
  border-radius: 22px;
  bottom: -24px;
  left: -24px;
}

.feature-split {
  background: var(--blue-soft-2);
  padding: 70px 0;
}

.feature-box {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  align-items: center;
  min-height: 410px;
  border-radius: 28px;
  overflow: hidden;
  background: #dcecff;
}

.feature-box img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
}

.feature-panel {
  margin: 26px;
  background: white;
  border-radius: 24px;
  padding: 42px;
  box-shadow: var(--shadow-strong);
}

.feature-panel h2 {
  font-size: 36px;
  line-height: 1.12;
  color: var(--blue);
  margin: 0;
}

.feature-panel p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 17px;
}

.work-panel {
  background: white;
  border-radius: 24px;
  padding: 44px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 30px;
}

.work-item {
  display: flex;
  gap: 18px;
}

.icon-round {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  display: grid;
  place-items: center;
  flex: 0 0 48px;
}

.work-item h3 {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 18px;
}

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

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

.review-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
  min-height: 330px;
  display: flex;
  flex-direction: column;
}

.stars {
  color: #f4c430;
  letter-spacing: .12em;
  margin-bottom: 22px;
}

.review-card p {
  color: #4b5563;
  line-height: 1.8;
  flex: 1;
}

.review-card strong {
  font-size: 18px;
}

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

.blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(0,0,0,.08);
  transition: .2s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-card img {
  height: 230px;
  width: 100%;
  object-fit: cover;
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-date {
  font-size: 13px;
  color: #6b7280;
}

.blog-card h3 {
  font-size: 22px;
  line-height: 1.25;
  margin: 16px 0 0;
}

.blog-card p {
  color: #596579;
  line-height: 1.75;
}

.blog-card .link-arrow {
  margin-top: auto;
  align-self: flex-end;
}

.location {
  text-align: center;
}

.map-wrap {
  margin: 30px auto 0;
  max-width: 940px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 360px;
  background: #e5e7eb;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-cards {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.contact-row {
  display: flex;
  gap: 18px;
  background: white;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.contact-row i {
  color: var(--blue);
  font-size: 22px;
  width: 28px;
  text-align: center;
}

.contact-row h3 {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 18px;
}

.contact-row p, .contact-row a {
  margin: 0;
  color: #566273;
  line-height: 1.65;
}

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

.hours div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e5efff;
  padding-bottom: 10px;
  gap: 24px;
}

.site-footer {
  background: #000;
  color: white;
  padding: 70px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.footer-title {
  font-size: 26px;
  font-weight: 950;
  margin-bottom: 18px;
}

.footer-title span {
  display: block;
  color: var(--blue);
  font-size: 17px;
  margin-top: 4px;
}

.site-footer p {
  color: rgba(255,255,255,.86);
  line-height: 1.75;
}

.socials {
  display: flex;
  gap: 16px;
  margin-top: 26px;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--blue);
  border: 1px solid rgba(255,255,255,.18);
}

.footer-contact {
  text-align: right;
}

.footer-contact h3 {
  font-size: 32px;
  color: var(--blue);
  margin: 0 0 20px;
}

.footer-cta {
  text-align: center;
  margin-top: 46px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.16);
  margin-top: 42px;
  padding-top: 26px;
  text-align: center;
  color: rgba(255,255,255,.68);
  font-size: 14px;
}

.footer-bottom a {
  color: var(--blue);
  margin: 0 8px;
}

.page-hero {
  padding: 95px 0 55px;
  background: linear-gradient(180deg,#f4f8ff,#fff);
  text-align: center;
}

.page-title .pill {
  display: inline-flex;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  padding: 10px 20px;
  font-weight: 900;
  font-size: 13px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin: 42px 0;
}

.stat {
  background: white;
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat strong {
  display: block;
  color: var(--blue);
  font-size: 34px;
  font-weight: 950;
}

.intro-card {
  background: white;
  border-radius: 24px;
  padding: 34px;
  text-align: center;
  box-shadow: var(--shadow);
  max-width: 920px;
  margin: 0 auto 46px;
}

.intro-card h2 {
  color: var(--blue);
  font-size: 30px;
  margin: 0 0 12px;
}

.intro-card p {
  color: #566273;
  line-height: 1.8;
  margin: 0;
}

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

.treatment-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: .2s;
  position: relative;
}

.treatment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.treatment-card-media {
  height: 205px;
  position: relative;
  overflow: hidden;
}

.treatment-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}

.treatment-card:hover img {
  transform: scale(1.06);
}

.treatment-num {
  position: absolute;
  top: 14px;
  left: 14px;
  background: white;
  color: var(--blue);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 8px 20px rgba(0,0,0,.14);
}

.treatment-card-body {
  padding: 26px;
}

.treatment-card h2, .treatment-card h3 {
  font-size: 25px;
  color: var(--blue);
  margin: 0 0 12px;
  font-weight: 950;
}

.treatment-card p {
  color: #596579;
  line-height: 1.75;
  margin: 0;
}

.treat-cta {
  max-width: 900px;
  margin: 70px auto 0;
  background: white;
  border-radius: 26px;
  padding: 46px 30px;
  text-align: center;
  box-shadow: var(--shadow);
}

.treat-cta h2 {
  color: var(--blue);
  font-size: 32px;
  margin: 0 0 12px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0,1fr) 330px;
  gap: 36px;
  align-items: start;
}

.article-card {
  background: white;
  margin-top: 20px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.article-card img.article-img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}

.article-content {
  padding: 34px;
}

.article-content h2 {
  color: var(--blue);
  font-size: 30px;
  margin: 32px 0 12px;
}

.article-content p, .article-content li {
  color: #4b5563;
  line-height: 1.85;
}

.article-content ul {
  padding-left: 22px;
}

.sidebar {
  position: sticky;
  top: 110px;
  display: grid;
}

.side-card {
  background: white;
  border-radius: 20px;
  margin-top: 20px;
  height: fit-content;
  box-shadow: var(--shadow);
  padding: 24px;
}

.side-card h3 {
  margin: 0 0 14px;
  color: var(--blue);
}

.side-card a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #e5efff;
  color: #42526b;
  font-weight: 700;
}

.faq {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.faq details {
  background: #f6faff;
  border: 1px solid #e4efff;
  border-radius: 14px;
  padding: 18px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--blue);
}

.faq p {
  margin: 12px 0 0;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

.price-card {
  background: white;
  border-radius: 20px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.price-card h2 {
  color: var(--blue);
  margin: 0 0 10px;
}

.badge {
  display: inline-flex;
  background: #e7f0ff;
  color: var(--blue);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
}

.blog-hero {
  padding: 110px 0 70px;
  background: radial-gradient(circle at top left,#dbeafe,transparent 40%),#f5f7fb;
}

.blog-featured {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  margin-bottom: 34px;
}

.blog-featured img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.blog-featured-body {
  padding: 42px;
}

.blog-featured-body h2 {
  font-size: 36px;
  line-height: 1.15;
  color: var(--blue);
  margin: 14px 0;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 34px;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
}

.ai-summary {
  background: #f6faff;
  border-left: 5px solid var(--blue);
  padding: 22px;
  border-radius: 14px;
  margin: 22px 0;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.legal-content h2 {
  color: var(--blue);
}

@media (max-width:960px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width:960px) {
  .menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 92px;
    display: none;
    flex-direction: column;
    background: white;
    border-radius: 18px;
    box-shadow: var(--shadow-strong);
    padding: 18px;
    gap: 10px;
  }
}

@media (max-width:960px) {
  .menu.open {
    display: flex;
  }
}

@media (max-width:960px) {
  .menu a {
    padding: 12px 14px;
    width: 100%;
    border-radius: 10px;
  }
}

@media (max-width:960px) {
  .menu a:hover {
    background: #eef6ff;
  }
}

@media (max-width:960px) {
  .nav-phone span {
    display: none;
  }
}

@media (max-width:960px) {
  .nav-phone {
    padding: 11px 13px;
  }
}

@media (max-width:960px) {
  .hero {
    min-height: 82vh;
  }
}

@media (max-width:960px) {
  .hero-brand {
    font-size: 20px;
  }
}

@media (max-width:960px) {
  .hero-kicker {
    font-size: 12px;
  }
}

@media (max-width:960px) {
  .service-mini-grid, .why-grid, .feature-box, .work-panel, .review-grid, .blog-grid, .footer-grid, .treatments-grid, .article-layout, .price-grid, .blog-layout, .blog-featured {
    grid-template-columns: 1fr;
  }
}

@media (max-width:960px) {
  .service-mini {
    grid-template-columns: 1fr;
  }
}

@media (max-width:960px) {
  .service-mini img {
    height: 230px;
  }
}

@media (max-width:960px) {
  .slider-frame {
    height: 440px;
  }
}

@media (max-width:960px) {
  .feature-box img {
    min-height: 260px;
  }
}

@media (max-width:960px) {
  .feature-panel {
    margin: 0;
    border-radius: 0;
  }
}

@media (max-width:960px) {
  .footer-contact {
    text-align: left;
  }
}

@media (max-width:960px) {
  .stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width:960px) {
  .blog-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width:960px) {
  .article-card img.article-img {
    height: 260px;
  }
}

@media (max-width:960px) {
  .sidebar {
    position: static;
  }
}

@media (max-width:960px) {
  .topbar {
    font-size: 10px;
  }
}

@media (max-width:960px) {
  .nav-inner {
    height: 64px;
  }
}

@media (max-width:960px) {
  .brand-mark {
    font-size: 14px;
  }
}

@media (max-width:960px) {
  .brand-sub {
    font-size: 10px;
  }
}

@media (max-width:960px) {
  .hero-actions .btn {
    width: 100%;
  }
}

@media (max-width:960px) {
  .hero-content {
    padding-top: 70px;
  }
}

@media (max-width:960px) {
  .vertical-label {
    display: none;
  }
}

@media (max-width:560px) {
  .container {
    width: min(100% - 24px,1180px);
  }
}

@media (max-width:560px) {
  .section {
    padding: 60px 0;
  }
}

@media (max-width:560px) {
  .hero h1 {
    font-size: 38px;
  }
}

@media (max-width:560px) {
  .hero p {
    font-size: 15px;
  }
}

@media (max-width:560px) {
  .hero-pills span {
    width: 100%;
  }
}

@media (max-width:560px) {
  .work-item {
    flex-direction: column;
  }
}

@media (max-width:560px) {
  .hours div {
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width:560px) {
  .treatment-card-media {
    height: 180px;
  }
}

@media (max-width:560px) {
  .page-hero {
    padding-top: 70px;
  }
}

@media (max-width:560px) {
  .contact-row {
    padding: 18px;
  }
}

@media (max-width:560px) {
  .footer-title {
    font-size: 22px;
  }
}

/* Ajuste específico: página Tratamientos González Cogollo */

.page-treatments {
  background: #f4f8ff;
}

.page-treatments .page-hero {
  padding: 78px 0 36px;
  background: #f4f8ff;
}

.page-treatments .page-title {
  max-width: 820px;
}

.page-treatments .page-title h1 {
  max-width: 760px;
  margin: 28px auto 18px;
  font-size: clamp(38px,5vw,56px);
  line-height: 1.08;
  color: var(--blue);
  font-weight: 950;
}

.page-treatments .page-title p {
  max-width: 720px;
  margin: 0 auto;
  color: #5f6f84;
  font-size: 17px;
  line-height: 1.8;
}

.page-treatments .page-title .pill {
  box-shadow: 0 10px 24px rgba(18,98,227,.16);
}

.page-treatments .section-soft {
  background: #f4f8ff;
  padding-top: 22px;
  padding-bottom: 78px;
}

.page-treatments .treatments-grid {
  max-width: 960px;
  margin: 0 auto;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 26px;
}

.page-treatments .treatment-card {
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(18,98,227,.10);
  background: #fff;
}

.page-treatments .treatment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(18,98,227,.15);
}

.page-treatments .treatment-card-media {
  display: block;
  height: 168px;
}

.page-treatments .treatment-card-media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.page-treatments .treatment-num {
  display: none;
}

.page-treatments .treatment-card-body {
  position: relative;
  padding: 23px 22px 24px;
  min-height: 122px;
}

.page-treatments .treatment-card-body::after {
  content: "";
  right: 20px;
  top: 24px;
  width: 28px;
  height: 9px;
  border-radius: 999px;
  background: #e4f0ff;
}

.page-treatments .treatment-card h2 {
  font-size: 22px;
  line-height: 1.2;
  color: var(--blue);
  margin: 0 42px 18px 0;
  font-weight: 950;
}

.page-treatments .treatment-card .link-arrow {
  font-size: 14px;
  color: #101828;
  font-weight: 900;
}

.page-treatments .treatment-card p {
  display: none;
}

@media (max-width:960px) {
  .page-treatments .treatments-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
    max-width: 720px;
  }
}

@media (max-width:960px) {
  .page-treatments .page-hero {
    padding-top: 60px;
  }
}

@media (max-width:560px) {
  .page-treatments .treatments-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:560px) {
  .page-treatments .treatment-card-media {
    height: 190px;
  }
}

@media (max-width:560px) {
  .page-treatments .page-title h1 {
    font-size: 34px;
  }
}

/* Mejoras diseño tratamientos + páginas individuales */

.page-treatments .treatments-showcase {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg,#f4f8ff 0%,#eef6ff 100%);
}

.page-treatments .treatments-showcase::before {
  content: "";
  position: absolute;
  inset: auto -140px 8% auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(18,98,227,.13),transparent 68%);
  pointer-events: none;
}

.page-treatments .treatment-card {
  border: 1px solid rgba(18,98,227,.08);
  box-shadow: 0 18px 42px rgba(18,98,227,.12);
}

.page-treatments .treatment-card-media {
  height: 190px;
}

.page-treatments .treatment-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,transparent 45%,rgba(2,15,40,.18));
  opacity: .85;
}

.page-treatments .treatment-card-body {
  min-height: 132px;
}

.page-treatments .treatment-card h3, .page-treatments .treatment-card h2 {
  letter-spacing: -.02em;
}

.page-treatments .treatment-card .link-arrow {
  margin-top: 0;
}

.faq-section {
  background: #fff;
}

.faq-section-blue {
  background: linear-gradient(180deg,#eef6ff,#fff);
  padding-top: 72px;
}

.faq-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 38px;
  align-items: start;
}

.faq-intro h2 {
  font-size: clamp(32px,4vw,48px);
  line-height: 1.12;
  margin: 14px 0;
  color: var(--blue);
  font-weight: 950;
}

.faq-intro p {
  color: #5f6b7a;
  line-height: 1.8;
  font-size: 17px;
  margin-bottom: 24px;
}

.faq details {
  background: #fff;
  border: 1px solid rgba(18,98,227,.13);
  box-shadow: 0 10px 26px rgba(18,98,227,.07);
}

.faq details[open] {
  border-color: rgba(18,98,227,.35);
}

.treatment-detail-hero {
  background: radial-gradient(circle at 18% 18%,rgba(18,98,227,.18),transparent 30%),linear-gradient(180deg,#f4f8ff,#fff);
  padding: 72px 0 64px;
  overflow: hidden;
}

.treatment-hero-grid {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 48px;
  align-items: center;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 22px;
}

.breadcrumb a {
  color: var(--blue);
  font-weight: 800;
}

.treatment-hero-copy .pill {
  display: inline-flex;
  background: var(--blue);
  color: white;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(18,98,227,.2);
}

.treatment-hero-copy h1 {
  font-size: clamp(42px,6vw,70px);
  line-height: 1.03;
  margin: 18px 0;
  color: var(--blue);
  font-weight: 950;
  letter-spacing: -.04em;
}

.treatment-hero-copy p {
  font-size: 19px;
  line-height: 1.85;
  color: #526071;
  max-width: 720px;
}

.treatment-hero-media {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(18,98,227,.2);
  min-height: 420px;
  background: #dcecff;
}

.treatment-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.treatment-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,transparent 50%,rgba(4,28,78,.28));
}

.media-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  background: rgba(255,255,255,.94);
  border-radius: 18px;
  padding: 17px 18px;
  color: var(--blue);
  box-shadow: 0 14px 28px rgba(0,0,0,.12);
}

.media-note strong {
  display: block;
  font-size: 17px;
}

.media-note span {
  display: block;
  color: #566273;
  margin-top: 4px;
  font-size: 14px;
}

.treatment-overview-section {
  background: linear-gradient(180deg,#fff,#f4f8ff);
}

.treatment-overview-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) 340px;
  gap: 34px;
  align-items: start;
}

.treatment-main-card {
  background: white;
  border: 1px solid rgba(18,98,227,.10);
  box-shadow: var(--shadow);
  border-radius: 28px;
  padding: 40px;
}

.treatment-main-card h2 {
  color: var(--blue);
  font-size: 34px;
  line-height: 1.15;
  margin: 34px 0 14px;
}

.treatment-main-card p {
  color: #4b5563;
  line-height: 1.85;
  font-size: 17px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 30px;
}

.benefit-panel, .when-panel {
  background: #f7fbff;
  border: 1px solid #e3efff;
  border-radius: 22px;
  padding: 24px;
}

.benefit-panel h3, .when-panel h3 {
  color: var(--blue);
  font-size: 21px;
  margin: 0 0 16px;
}

.benefit-panel ul, .when-panel ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.benefit-panel li {
  display: flex;
  gap: 10px;
  color: #465568;
  line-height: 1.55;
}

.benefit-panel i {
  color: var(--blue);
  margin-top: 3px;
}

.when-panel li {
  counter-increment: item;
  background: white;
  border-radius: 14px;
  padding: 12px 14px;
  color: #465568;
  line-height: 1.55;
  box-shadow: 0 6px 16px rgba(18,98,227,.06);
}

.steps-line {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  margin-top: 22px;
}

.steps-line div {
  background: #fff;
  border: 1px solid #e5efff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(18,98,227,.07);
}

.steps-line span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-weight: 950;
  font-size: 13px;
}

.steps-line h3 {
  margin: 14px 0 8px;
  color: var(--blue);
  font-size: 20px;
}

.steps-line p {
  font-size: 14px;
  margin: 0;
  color: #5f6b7a;
}

.detail-sidebar .side-card {
  border: 1px solid rgba(18,98,227,.10);
}

.side-card-cta .btn {
  width: 100%;
  margin-top: 10px;
}

.side-card-cta .btn-outline {
  background: #fff;
}

.side-treatments a {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #e5efff;
  color: #344054;
  padding: 12px 0;
}

.side-treatments a span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eaf3ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  flex: 0 0 30px;
}

.faq-single {
  max-width: 1100px;
}

.related-section {
  background: #f7fbff;
}

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

.related-treatment-card {
  background: white;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(18,98,227,.11);
  transition: .2s;
  border: 1px solid rgba(18,98,227,.08);
}

.related-treatment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(18,98,227,.18);
}

.related-treatment-media {
  height: 160px;
  position: relative;
  display: block;
  overflow: hidden;
}

.related-treatment-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .45s;
}

.related-treatment-card:hover img {
  transform: scale(1.06);
}

.related-treatment-body {
  padding: 20px;
}

.related-treatment-body h3 {
  color: var(--blue);
  font-size: 21px;
  margin: 0 0 10px;
  font-weight: 950;
}

.related-treatment-body p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #5f6b7a;
  line-height: 1.65;
  margin: 0;
}

.related-treatment-body .link-arrow {
  font-size: 14px;
}

@media (max-width:1020px) {
  .treatment-hero-grid, .treatment-overview-grid, .faq-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width:1020px) {
  .related-treatment-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width:1020px) {
  .benefit-grid, .steps-line {
    grid-template-columns: 1fr;
  }
}

@media (max-width:1020px) {
  .treatment-hero-media {
    min-height: 330px;
  }
}

@media (max-width:1020px) {
  .treatment-hero-media img {
    min-height: 330px;
  }
}

@media (max-width:1020px) {
  .detail-sidebar {
    position: static;
  }
}

@media (max-width:560px) {
  .treatment-detail-hero {
    padding: 48px 0;
  }
}

@media (max-width:560px) {
  .treatment-main-card {
    padding: 24px;
    border-radius: 22px;
  }
}

@media (max-width:560px) {
  .related-treatment-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:560px) {
  .treatment-hero-copy h1 {
    font-size: 36px;
  }
}

@media (max-width:560px) {
  .treatment-hero-copy p {
    font-size: 16px;
  }
}

@media (max-width:560px) {
  .page-treatments .treatment-card-media {
    height: 185px;
  }
}

@media (max-width:560px) {
  .faq-wrap {
    gap: 20px;
  }
}

.side-card .btn {
  color: white;
}

.side-card .btn-outline {
  color: #1262e3 !important;
}

