:root {
  --ink: #102027;
  --muted: #5c6a70;
  --line: #d9e3e3;
  --paper: #ffffff;
  --soft: #f4f8f7;
  --teal: #0f766e;
  --teal-dark: #0b4f4a;
  --blue: #255f85;
  --gold: #b8842f;
  --gold-soft: #fff4df;
  --danger: #8b2e2e;
  --shadow: 0 18px 50px rgba(16, 32, 39, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

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

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.topbar {
  background: var(--teal-dark);
  color: #e9ffff;
  font-size: 13px;
}

.topbar-inner,
.nav-inner,
.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 7px 0;
}

.topbar a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

.brand {
  display: grid;
  grid-template-columns: 52px auto;
  gap: 12px;
  align-items: center;
  min-width: 230px;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
  object-fit: contain;
  padding: 4px;
}

.brand strong {
  display: block;
  font-size: 16px;
  line-height: 1.2;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  content: "";
}

.nav-toggle span::before {
  transform: translateY(-6px);
}

.nav-toggle span::after {
  transform: translateY(4px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  padding: 10px 11px;
  border-radius: 8px;
  color: #20343c;
  font-size: 14px;
  font-weight: 650;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--soft);
  color: var(--teal-dark);
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 17px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--teal);
  color: white;
  font-weight: 750;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  background: var(--teal-dark);
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.22);
  transform: translateY(-1px);
}

.button.secondary {
  background: white;
  border-color: var(--line);
  color: var(--ink);
}

.button.secondary:hover {
  background: var(--soft);
  box-shadow: none;
}

.button.gold {
  background: var(--gold);
}

.button.gold:hover {
  background: #8d611e;
}

.hero,
.page-hero {
  background:
    linear-gradient(90deg, rgba(244, 248, 247, 0.98) 0%, rgba(244, 248, 247, 0.9) 48%, rgba(244, 248, 247, 0.2) 100%),
    url("../img/live/optimized/hero-hair-transplant.jpg") center right / min(820px, 60vw) auto no-repeat,
    var(--soft);
  border-bottom: 1px solid var(--line);
}

.hero .section-inner,
.page-hero .section-inner {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 610px) 1fr;
  align-items: center;
  gap: 40px;
  padding: 84px 0 72px;
}

.page-hero .section-inner {
  min-height: 430px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  background: var(--gold);
  content: "";
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  margin-top: 14px;
  font-size: 54px;
  max-width: 720px;
}

h2 {
  font-size: 34px;
}

h3 {
  font-size: 21px;
}

.lead {
  margin-top: 20px;
  color: #425259;
  font-size: 18px;
  max-width: 700px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
  max-width: 690px;
}

.metric {
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.metric strong {
  display: block;
  font-size: 26px;
  line-height: 1.1;
  color: var(--teal-dark);
}

.metric span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.section {
  padding: 82px 0;
}

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

.reels-section {
  background: #e9f6f4;
}

.section.compact {
  padding: 58px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 38px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

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

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 24px;
  min-width: 0;
}

.card.accent {
  border-top: 4px solid var(--teal);
}

.card.goldline {
  border-top: 4px solid var(--gold);
}

.card p,
.card li {
  color: var(--muted);
}

.card h3 + p {
  margin-top: 10px;
}

.icon-box {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  margin-bottom: 15px;
  background: var(--gold-soft);
  color: var(--gold);
  font-weight: 900;
}

.media-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 44px;
  align-items: center;
}

.feature-media {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
}

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

.step-list {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.step-number {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--teal-dark);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.cta-band {
  background: var(--teal-dark);
  color: white;
}

.cta-band .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.cta-band p {
  color: #d5eeee;
  margin-top: 12px;
  max-width: 720px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

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

.contact-item {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
}

.contact-item strong {
  display: block;
  color: var(--ink);
}

.form {
  display: grid;
  gap: 14px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  color: #32454d;
  font-weight: 700;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cbd8d8;
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  background: white;
  font: inherit;
}

textarea {
  min-height: 126px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 13px;
}

.gallery-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.chip {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 9px 12px;
  font-weight: 750;
  color: var(--muted);
  cursor: pointer;
}

.chip.active,
.chip:hover {
  color: white;
  border-color: var(--teal);
  background: var(--teal);
}

.result-card {
  overflow: hidden;
  padding: 0;
}

.result-visual {
  min-height: 230px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #eef5f5;
}

.result-visual.single {
  grid-template-columns: 1fr;
}

.result-photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.photo-pair {
  min-height: 260px;
}

.photo-pair img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.result-half {
  position: relative;
  display: grid;
  place-items: center;
  color: #496066;
  font-weight: 800;
  background: var(--soft);
}

.result-half + .result-half {
  border-left: 1px solid white;
}

.result-body {
  padding: 18px;
}

.result-body p {
  color: var(--muted);
  margin-top: 7px;
}

.calculator {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
  align-items: stretch;
}

.grade-list {
  display: grid;
  gap: 10px;
}

.grade-button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 14px;
  text-align: left;
  cursor: pointer;
}

.grade-button strong {
  display: block;
  color: var(--ink);
}

.grade-button span {
  color: var(--muted);
}

.grade-button.active {
  border-color: var(--teal);
  box-shadow: inset 4px 0 0 var(--teal);
}

.estimate-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 28px;
}

.estimate-total {
  font-size: 38px;
  font-weight: 850;
  color: var(--teal-dark);
  line-height: 1.1;
}

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

.estimate-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: var(--soft);
}

.estimate-item strong {
  display: block;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  background: white;
}

th,
td {
  padding: 15px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  background: var(--teal-dark);
  color: white;
}

tr:last-child td {
  border-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: white;
  color: var(--ink);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--soft);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.faq-item.open .faq-question::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.site-footer {
  background: #101b20;
  color: #dce8eb;
  padding: 54px 0 24px;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
  background: #25D366;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.24);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.whatsapp-float::before {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M20.52 3.48A11.88 11.88 0 0 0 12 0C5.37 0 0 5.37 0 12c0 2.12.56 4.1 1.53 5.84L0 24l6.47-1.7A11.92 11.92 0 0 0 12 24c6.63 0 12-5.37 12-12 0-3.21-1.25-6.22-3.28-8.52Zm-8.02 17.18a9.82 9.82 0 0 1-5.01-1.4l-.36-.22-3.84 1.01 1.03-3.74-.23-.38A9.73 9.73 0 0 1 2.28 12 9.72 9.72 0 0 1 11.7 2.3a9.72 9.72 0 0 1 8.28 16.6 9.71 9.71 0 0 1-6.48 2.76Zm5.4-7.53c-.3-.16-1.76-.87-2.03-.97-.27-.1-.47-.16-.67.16s-.77.97-.94 1.17c-.17.2-.35.22-.64.08-.3-.15-1.27-.47-2.42-1.48-.9-.8-1.5-1.8-1.68-2.1-.18-.3-.02-.46.14-.61.14-.14.3-.35.45-.52.15-.16.2-.27.3-.45.1-.18.05-.34-.03-.48-.08-.15-.67-1.62-.92-2.22-.24-.58-.49-.5-.67-.51-.17-.01-.37-.01-.57-.01-.2 0-.52.07-.8.35-.27.27-1.05 1.03-1.05 2.5 0 1.47 1.08 2.9 1.23 3.1.15.18 2.13 3.25 5.18 4.55.72.31 1.28.5 1.72.64.72.23 1.38.2 1.9.12.58-.09 1.76-.72 2.01-1.4.25-.68.25-1.26.18-1.38-.07-.12-.27-.19-.57-.35Z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(37, 211, 102, 0.32);
}

@media (max-width: 700px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

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

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 177.78%;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr 1fr;
  gap: 30px;
}

.site-footer h3 {
  font-size: 17px;
  margin-bottom: 12px;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: #b8c9ce;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: #94a8ad;
  font-size: 13px;
}

.topbar-social,
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-link {
  display: inline-block;
  width: 22px;
  height: 22px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.9;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.social-link:hover,
.social-link:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
}

.social-link--youtube {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M23.498 6.186a2.988 2.988 0 0 0-2.103-2.11C19.493 3.5 12 3.5 12 3.5s-7.493 0-9.395.576A2.99 2.99 0 0 0 .502 6.186 31.13 31.13 0 0 0 0 12a31.107 31.107 0 0 0 .502 5.814 2.988 2.988 0 0 0 2.103 2.11c1.902.576 9.395.576 9.395.576s7.493 0 9.395-.576a2.988 2.988 0 0 0 2.103-2.11A31.107 31.107 0 0 0 24 12a31.13 31.13 0 0 0-.502-5.814ZM9.545 15.568V8.432l6.182 3.568-6.182 3.568Z'/%3E%3C/svg%3E");
}

.social-link--instagram {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M12 2.163c3.204 0 3.584.012 4.849.07 1.366.062 2.633.353 3.608 1.329.976.976 1.267 2.243 1.329 3.608.058 1.265.07 1.645.07 4.849s-.012 3.584-.07 4.849c-.062 1.366-.353 2.633-1.329 3.608-.976.976-2.243 1.267-3.608 1.329-1.265.058-1.645.07-4.849.07s-3.584-.012-4.849-.07c-1.366-.062-2.633-.353-3.608-1.329-.976-.976-1.267-2.243-1.329-3.608C2.175 15.647 2.163 15.267 2.163 12s.012-3.584.07-4.849c.062-1.366.353-2.633 1.329-3.608C4.538 2.516 5.805 2.225 7.171 2.163 8.436 2.105 8.816 2.163 12 2.163Zm0 1.838c-3.163 0-3.54.012-4.79.069-1.151.053-1.777.24-2.193.399a2.987 2.987 0 0 0-1.083.706 2.987 2.987 0 0 0-.706 1.083c-.159.416-.346 1.042-.399 2.193-.057 1.25-.069 1.627-.069 4.79s.012 3.54.069 4.79c.053 1.151.24 1.777.399 2.193.17.437.406.817.706 1.083.286.286.666.536 1.083.706.416.159 1.042.346 2.193.399 1.25.057 1.627.069 4.79.069s3.54-.012 4.79-.069c1.151-.053 1.777-.24 2.193-.399a2.987 2.987 0 0 0 1.083-.706 2.987 2.987 0 0 0 .706-1.083c.159-.416.346-1.042.399-2.193.057-1.25.069-1.627.069-4.79s-.012-3.54-.069-4.79c-.053-1.151-.24-1.777-.399-2.193a2.987 2.987 0 0 0-.706-1.083 2.987 2.987 0 0 0-1.083-.706c-.416-.159-1.042-.346-2.193-.399-1.25-.057-1.627-.069-4.79-.069Zm0 4.838a5.001 5.001 0 1 1 0 10.002 5.001 5.001 0 0 1 0-10.002Zm0 1.838a3.163 3.163 0 1 0 0 6.326 3.163 3.163 0 0 0 0-6.326Zm4.842-2.074a1.169 1.169 0 1 1 0 2.338 1.169 1.169 0 0 1 0-2.338Z'/%3E%3C/svg%3E");
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.case-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.case-card {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.case-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 100%;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  transition: font-size 0.3s ease;
}

.case-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(0,0,0,0.2);
  padding: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.case-thumb:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  filter: brightness(0.9);
}

.case-thumb:hover .case-name {
  font-size: 19px;
}

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

.thumb-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 60%, rgba(0,0,0,0.95) 100%);
  padding: 32px 16px 16px;
  display: flex;
  align-items: flex-end;
  min-height: 80px;
  transition: background 0.3s ease, padding 0.3s ease;
}

.case-thumb:hover .thumb-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.9) 50%, rgba(0,0,0,0.98) 100%);
}

.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
  animation: fadeIn 0.2s ease;
}

.lightbox-modal[hidden] {
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.lightbox-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 32px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background 0.2s ease;
  z-index: 10;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  padding: 0 16px;
}

.lightbox-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  padding: 0;
}

.lightbox-counter {
  font-size: 14px;
  opacity: 0.8;
}

.lightbox-body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.lightbox-body img {
  max-width: 100%;
  max-height: 600px;
  border-radius: 8px;
}

.lightbox-footer {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 0 16px 16px;
}

.lightbox-nav {
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 24px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

@media (max-width: 980px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 29px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 18px;
    border-bottom: 1px solid var(--line);
    background: white;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .nav-inner > .button {
    display: none;
  }

  .hero,
  .page-hero {
    background:
      linear-gradient(180deg, rgba(244, 248, 247, 0.98) 0%, rgba(244, 248, 247, 0.94) 62%, rgba(244, 248, 247, 0.68) 100%),
      url("../img/live/optimized/hero-hair-transplant.jpg") bottom right / 720px no-repeat,
      var(--soft);
  }

  .hero .section-inner,
  .page-hero .section-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 64px 0 230px;
  }

  .section-heading,
  .media-split,
  .contact-grid,
  .calculator,
  .cta-band .section-inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 700px) {
  .topbar-inner {
    flex-direction: column;
    gap: 4px;
  }

  .topbar-inner,
  .nav-inner,
  .section-inner {
    width: min(100% - 28px, 1180px);
  }

  .brand {
    min-width: 0;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 26px;
  }

  .lead {
    font-size: 16px;
  }

  .section {
    padding: 58px 0;
  }

  .trust-strip,
  .grid.two,
  .grid.three,
  .field-grid,
  .estimate-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero .section-inner,
  .page-hero .section-inner {
    padding-bottom: 190px;
  }

  .hero-actions,
  .gallery-tools {
    flex-direction: column;
  }

  .button,
  .chip {
    width: 100%;
  }

  .result-visual {
    min-height: 190px;
  }
}

.pt-1{
  padding-top: 5px;
}