/* ===== GLOBAL STYLES ===== */
:root {
  --accent: #00d4e8;
  --accent-strong: #00bfd6;
  --accent-dark: #0099b3;
  --ink: #ffffff;
  --muted: #b0c4d4;
  --line: #1a3a52;
  --surface: #0d2847;
  --bg: #0a1f3f;
  --success: #1dd1a1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #fff;
  background: var(--bg);
  line-height: 1.6;
}

/* ===== LAYOUT ===== */
.page-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTON ===== */
.button {
  display: inline-block;
  padding: 12px 32px;
  border: 0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.button-primary {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}

.button-primary:hover {
  background: var(--accent-strong);
  transform: translateY(-2px);
}

.button-primary[type="submit"] {
  background: var(--success);
  color: #fff;
}

.button-primary[type="submit"]:hover {
  background: #13b88f;
  transform: translateY(-2px);
}

.button.full-width {
  width: 100%;
}

/* ===== HEADER ===== */
/* Masthead removed - no sticky header */

/* ===== HERO SECTION ===== */
.hero {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, #0a1f3f 0%, #0d2847 62%, #0f3356 100%);
  color: #fff;
  position: relative;
  margin-top: 0;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero-heading {
  display: grid;
  gap: 0;
  line-height: 1.1;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-family: "Playfair Display", serif;
  font-weight: 700;
  margin-bottom: 28px;
}

.hero-heading span {
  display: block;
}

.hero-heading span:first-child {
  color: var(--accent);
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-item {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(0, 212, 232, 0.2);
  border-radius: 8px;
  background: rgba(0, 212, 232, 0.05);
  animation: benefit-float 3.6s ease-in-out infinite;
  will-change: transform;
}

.benefit-item:hover {
  animation-play-state: paused;
}

.benefit-item:nth-child(2) {
  animation-delay: 0.35s;
}

.benefit-item:nth-child(3) {
  animation-delay: 0.7s;
}

.benefit-item i {
  font-size: 1.8rem;
  color: #fff;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent) 0%, #0088aa 100%);
  border-radius: 50%;
  margin: 0 auto;
}

@keyframes benefit-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .benefit-item {
    animation: none;
  }
}

.benefit-item p {
  font-size: 0.95rem;
  opacity: 0.9;
}

.hero-cta-section {
  display: grid;
  gap: 8px;
}

.hero-cta-section .button {
  justify-self: start;
  padding: 14px 40px;
  font-size: 1.05rem;
}

.cta-subtitle {
  font-size: 0.85rem;
  opacity: 0.85;
  margin: 0;
}

/* ===== LEAD FORM ===== */
.lead-form-sticky {
  border: 2px solid var(--accent);
  border-radius: 16px;
  background: rgba(13, 40, 71, 0.8);
  backdrop-filter: blur(10px);
  padding: 24px;
  position: sticky;
  top: 20px;
  height: fit-content;
}

.form-header {
  margin-bottom: 20px;
}

.form-header strong {
  display: block;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 4px;
}

.form-header p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.lead-form {
  display: grid;
  gap: 12px;
}

.lead-form input,
.lead-form select {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(15, 51, 86, 0.8);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
}

.lead-form input::placeholder {
  color: var(--muted);
}

.lead-form input:focus,
.lead-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 212, 232, 0.2);
  background: rgba(15, 51, 86, 0.95);
}

.lead-form small {
  font-size: 0.75rem;
  color: var(--muted);
}

.phone-group {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 8px;
}
.lead-form-sticky {
  position: sticky;
  top: 20px;
  background: rgba(13, 40, 71, 0.8);
  backdrop-filter: blur(10px);
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: 24px;
  display: grid;
  gap: 16px;
}

.form-header {
  display: grid;
  gap: 4px;
}

.form-header strong {
  display: block;
  font-size: 1.1rem;
  color: #fff;
}

.form-header p {
  font-size: 0.85rem;
  color: var(--muted);
}

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

.lead-form input,
.lead-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.lead-form input:focus,
.lead-form select:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(1, 167, 194, 0.1);
}

.lead-form input::placeholder {
  color: #d1d5db;
}

.phone-group {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 8px;
}

.phone-group select {
  width: 100%;
}

.lead-form small {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: -8px;
}

/* ===== TRUST CAROUSEL ===== */
.trust-carousel {
  position: relative;
  background: var(--bg);
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  width: 100%;
}

.trust-carousel::before,
.trust-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 56px;
  z-index: 2;
  pointer-events: none;
}

.trust-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), rgba(10, 31, 63, 0));
}

.trust-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), rgba(10, 31, 63, 0));
}

.carousel-inner {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 0 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: auto;
  scroll-snap-type: none;
  width: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.carousel-inner::-webkit-scrollbar {
  display: none;
}

.trust-card {
  background: rgba(0, 212, 232, 0.05);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  color: #fff;
  transition: all 0.3s ease;
  display: grid;
  gap: 12px;
  align-items: center;
  justify-items: center;
  flex-shrink: 0;
  width: 220px;
  min-width: 220px;
}

.trust-card i {
  font-size: 2.5rem;
  color: #fff;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent) 0%, #0088aa 100%);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.trust-card:hover {
  border-color: var(--accent);
  background: rgba(0, 212, 232, 0.1);
  transform: translateY(-8px);
  box-shadow: 0 12px 36px rgba(0, 212, 232, 0.2);
}

.trust-card:hover i {
  transform: scale(1.3) rotateZ(15deg) bounceIn;
  box-shadow: 0 0 24px rgba(0, 212, 232, 0.8), inset 0 0 20px rgba(0, 212, 232, 0.3);
}

.trust-card p {
  margin: 0;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

/* ===== METRICS SECTION ===== */
.metrics-section {
  padding: 80px 0;
  background: var(--bg);
}

.metrics-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-family: "Playfair Display", serif;
  margin-bottom: 48px;
  max-width: 600px;
  line-height: 1.2;
  color: #fff;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.metric-card {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(0, 212, 232, 0.05);
  transition: all 0.3s;
}

.metric-card:hover {
  border-color: var(--accent);
  background: rgba(0, 212, 232, 0.1);
  box-shadow: 0 8px 24px rgba(0, 212, 232, 0.15);
}
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 10px 30px rgba(1, 167, 194, 0.1);
}

.metric-value {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--accent);
  margin: 0 0 8px;
}

.metric-label {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
}

/* ===== DOCTOR INFO SECTION ===== */
.doctor-info-section {
  padding: 80px 0;
  background: var(--surface);
}

.doctor-info-section h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-family: "Playfair Display", serif;
  margin-bottom: 48px;
  line-height: 1.2;
  color: #fff;
}

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

.doctor-photo-large {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 3 / 4;
  border: 2px solid var(--line);
}

.doctor-photo-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-text h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--accent);
}

.doctor-text p {
  margin-bottom: 16px;
  line-height: 1.7;
  color: var(--muted);
}

.doctor-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.doctor-badges span {
  display: block;
  padding: 12px 16px;
  background: rgba(0, 212, 232, 0.05);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

/* ===== MEDIA LOGOS ===== */
.media-logos {
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.media-title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}

.media-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(140px, 1fr);
  gap: 24px;
  padding: 0 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.media-logo {
  padding: 24px 20px;
  background: rgba(0, 212, 232, 0.05);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
  white-space: nowrap;
  scroll-snap-align: start;
  transition: all 0.3s;
}

.media-logo:hover {
  border-color: var(--accent);
  background: rgba(0, 212, 232, 0.1);
  color: var(--accent);
}

/* ===== TECHNIQUE SECTION ===== */
.enlargement-section {
  padding: 80px 0;
  background: var(--bg);
}

.enlargement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 28px;
  align-items: start;
}

.enlargement-summary,
.enlargement-cards article {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.enlargement-summary {
  padding: 30px;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.enlargement-summary h2 {
  margin-bottom: 18px;
  color: var(--ink);
}

.enlargement-summary p {
  margin: 0 0 16px;
  color: var(--muted);
}

.enlargement-note {
  margin-top: 22px;
  padding: 16px 18px;
  border-left: 4px solid var(--accent);
  border-radius: 16px;
  background: rgba(1, 167, 194, 0.08);
  color: var(--ink);
  font-weight: 700;
}

.enlargement-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.enlargement-cards article {
  padding: 24px;
}

.enlargement-cards h3 {
  margin-bottom: 12px;
  color: var(--ink);
}

.enlargement-cards p {
  margin: 0;
  color: var(--muted);
}

.technique-section {
  padding: 80px 0;
  background: var(--bg);
}

.technique-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}

.technique-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}

.technique-content h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-family: "Playfair Display", serif;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
}

.technique-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 20px;
}

.technique-image {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  margin: 0;
  border: 2px solid var(--line);
}

.technique-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== VIDEO SECTION ===== */
.video-section {
  padding: 80px 0;
  background: var(--surface);
}

.video-container {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.video-watch-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 16px;
  padding: 10px 24px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: rgba(0, 212, 232, 0.1);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.25s ease;
}

.video-watch-badge:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.video-container h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-family: "Playfair Display", serif;
  margin-bottom: 12px;
  line-height: 1.2;
  color: #fff;
}

.video-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 32px;
  font-weight: 500;
}

.video-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  border: 2px solid var(--line);
  box-shadow: 0 20px 60px rgba(0, 212, 232, 0.15);
  transition: all 0.3s ease;
  aspect-ratio: 16 / 9;
}

.video-fallback {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.video-fallback img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-fallback-play {
  position: absolute;
  inset: auto auto 24px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(16, 32, 51, 0.76);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.video-wrapper.is-fallback iframe {
  display: none;
}

.video-wrapper.is-fallback .video-fallback {
  display: block;
}

.video-wrapper.is-playing .video-fallback {
  display: none;
}

.video-wrapper.is-playing iframe {
  display: block;
}

.video-wrapper:hover {
  border-color: var(--accent);
  box-shadow: 0 30px 80px rgba(0, 212, 232, 0.25);
}

.video-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose-section {
  padding: 84px 0 96px;
  background: var(--bg);
}

.why-choose-shell {
  max-width: 1080px;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(16, 32, 51, 0.04);
  box-shadow: 0 18px 44px rgba(25, 48, 62, 0.06);
}

.why-choose-card {
  padding: 28px 18px 30px;
  text-align: center;
  border-right: 1px solid rgba(16, 32, 51, 0.06);
}

.why-choose-card:last-child {
  border-right: 0;
}

.why-choose-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #d99a00;
  font-size: 1.55rem;
}

.why-choose-card h3 {
  margin: 0;
  color: #234d52;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.35;
}

.why-choose-card p {
  margin: 14px 0 0;
  color: #234d52;
  font-size: 1.12rem;
  font-weight: 500;
}

.why-choose-cta {
  margin-top: 28px;
  padding: 54px 24px 48px;
  text-align: center;
  background: var(--bg);
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(25, 48, 62, 0.06);
}

.why-choose-cta h2 {
  max-width: 16ch;
  margin: 0 auto;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.why-choose-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  margin-top: 28px;
  padding: 18px 28px;
  border-radius: 999px;
  background: #1f5a57;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 600;
  box-shadow: 0 16px 30px rgba(31, 90, 87, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.why-choose-button:hover {
  transform: translateY(-2px);
  background: #184845;
  box-shadow: 0 20px 36px rgba(31, 90, 87, 0.26);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 80px 0;
  background: var(--surface);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 30px;
  align-items: start;
}

.faq-content h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-family: "Playfair Display", serif;
  margin-bottom: 48px;
  line-height: 1.2;
  color: #fff;
}

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

.faq-visual {
  margin: 76px 0 0;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--line);
  box-shadow: 0 18px 44px rgba(25, 48, 62, 0.18);
  background: var(--bg);
}

.faq-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  cursor: pointer;
  transition: all 0.2s;
  background: rgba(0, 212, 232, 0.03);
}

.faq-list details:hover {
  border-color: var(--accent);
  background: rgba(0, 212, 232, 0.08);
  box-shadow: 0 8px 24px rgba(0, 212, 232, 0.1);
}

.faq-list details[open] {
  background: rgba(0, 212, 232, 0.1);
}

.faq-list summary {
  font-weight: 700;
  font-size: 1.05rem;
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.faq-list summary::after {
  content: "▼";
  font-size: 0.8rem;
  color: var(--accent);
  transition: transform 0.3s;
}

.faq-list details[open] summary::after {
  transform: rotate(-180deg);
}

.faq-list p {
  margin: 16px 0 0;
  line-height: 1.6;
  color: var(--muted);
}

/* ===== TEAM SECTION ===== */
.team-section {
  padding: 80px 0;
  background: var(--surface);
}

.team-section h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-family: "Playfair Display", serif;
  margin-bottom: 48px;
  line-height: 1.2;
  color: #fff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.team-member {
  background: rgba(0, 212, 232, 0.05);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}

.team-member:hover {
  border-color: var(--accent);
  background: rgba(0, 212, 232, 0.1);
  box-shadow: 0 12px 32px rgba(0, 212, 232, 0.15);
  transform: translateY(-8px);
}

.team-member.featured img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.member-info {
  padding: 24px;
}

.member-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}

.member-info .role {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.member-info .bio {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  padding: 80px 0;
  background: var(--bg);
}

.gallery-section h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-family: "Playfair Display", serif;
  margin-bottom: 48px;
  line-height: 1.2;
  color: #fff;
}

.gallery-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery-grid::-webkit-scrollbar {
  display: none;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  flex: 0 0 clamp(260px, 28vw, 360px);
  border: 2px solid var(--line);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-grid figure:hover img {
  transform: scale(1.08);
}

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #0a1f3f 0%, #0d2847 62%, #0f3356 100%);
  color: #fff;
}

.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}

.cta-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-family: "Playfair Display", serif;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-content p {
  font-size: 1.05rem;
  opacity: 0.9;
  color: var(--muted);
}

.cta-form-section {
  background: rgba(0, 212, 232, 0.08);
  border: 1px solid var(--line);
  padding: 32px;
  border-radius: 16px;
}

.cta-form-section .button {
  width: 100%;
  margin-bottom: 8px;
}

.cta-form-section .cta-subtitle {
  text-align: center;
  margin-bottom: 20px;
  color: var(--muted);
}

.lead-form-final {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}

.lead-form-final input,
.lead-form-final select {
  background: rgba(15, 51, 86, 0.8);
  border: 1px solid var(--line);
  color: #fff;
}

.lead-form-final input::placeholder {
  color: var(--muted);
}

.lead-form-final input:focus,
.lead-form-final select:focus {
  background: rgba(15, 51, 86, 0.95);
  border-color: var(--accent);
}

.cta-benefits {
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
  opacity: 0.9;
  color: var(--muted);
}

.cta-benefits div {
  display: grid;
  gap: 0;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer p {
  margin: 0;
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #1fb154);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 18px 38px rgba(31, 177, 84, 0.32);
  animation: whatsapp-bounce 2.2s ease-in-out infinite, whatsapp-pulse 2.6s ease-in-out infinite;
}

.whatsapp-float i {
  font-size: 1.35rem;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 22px 46px rgba(31, 177, 84, 0.42);
}

.back-to-top {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 50;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(15, 51, 86, 0.92);
  color: #fff;
  box-shadow: 0 18px 38px rgba(4, 14, 29, 0.32);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.92);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  background: var(--accent-strong);
  box-shadow: 0 22px 44px rgba(0, 191, 214, 0.26);
}

.back-to-top i {
  font-size: 1rem;
}

@keyframes whatsapp-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes whatsapp-pulse {
  0%,
  100% {
    box-shadow: 0 18px 38px rgba(31, 177, 84, 0.32);
  }
  50% {
    box-shadow: 0 18px 38px rgba(31, 177, 84, 0.5), 0 0 0 10px rgba(37, 211, 102, 0.12);
  }
}

@media (max-width: 720px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    padding: 12px 16px;
  }

  .whatsapp-float span {
    font-size: 0.95rem;
  }

  .back-to-top {
    left: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1080px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
  }

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

  .lead-form-sticky {
    position: static;
  }

  .doctor-info-grid {
    grid-template-columns: 1fr;
  }

  .doctor-photo-large {
    max-width: 400px;
  }

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

  .final-cta-grid {
    grid-template-columns: 1fr;
  }

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

  .faq-visual {
    margin-top: 0;
    max-width: 640px;
  }
}

@media (max-width: 720px) {
  .hero-heading {
    font-size: 2rem;
  }

  .hero-benefits {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .benefit-item {
    text-align: center;
  }

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

  .doctor-badges {
    grid-template-columns: 1fr;
  }

  .enlargement-grid,
  .enlargement-cards {
    grid-template-columns: 1fr;
  }

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

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

  .lead-form input,
  .lead-form select {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .page-shell {
    padding: 0 16px;
  }

  .hero {
    padding: 40px 0 20px;
  }

  .hero-heading {
    font-size: 1.6rem;
  }

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

  .gallery-grid {
    flex-wrap: nowrap;
    gap: 16px;
    padding-bottom: 8px;
  }

  .gallery-grid figure {
    flex-basis: 82vw;
    max-width: 82vw;
  }

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

  .why-choose-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-choose-card:nth-child(2n) {
    border-right: 0;
  }

  .why-choose-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(16, 32, 51, 0.06);
  }
}
