/* ── HERO ── */
.hero {
  margin-top: 65px;
  color: var(--white);
  padding: 120px 24px;
}

.hero-inner {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero h1 {
  font-size: clamp(24px, 6vw, 40px);
  line-height: 1.5;
  margin-bottom: 20px;
}

.hero .lead {
  font-size: 17px;
  line-height: 1.9;
  max-width: 760px;
  margin: 0 auto 36px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  margin-top: 34px;
}

.hero-trust .ht-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  margin-bottom: 0px;
}

/* ── BIG WHATSAPP BUTTON ── */
.wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #2be673;
  color: var(--navy);
  font-size: clamp(12px, 2.6vw, 16px);
  text-decoration: none;
  padding: 8px 30px 10px;
  border-radius: 100px;
  transition: background 0.2s ease-in-out;
}

.wa-btn span {
  display: block;
  margin-top: 9px;
}

.wa-btn:hover {
  background: #20d466;
}

.wa-btn img { width: 28px; height: 28px; }

.wa-sub { display: block; font-size: 13px; margin-top: 20px; margin-bottom: 14px;}

/* ── SECTION SHELL ── */
.section { padding: 80px 24px; }
.section-inner { max-width: 1080px; margin: 0 auto; }

.section-label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.section-label::before {
  content: "";
  position: absolute;
  top: 25px;
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.section-label span { color: var(--teal); font-size: 14px;}

.section-title {
  text-align: center;
  font-size: clamp(24px, 4.5vw, 38px);
  line-height: 1.7;
  margin-top: 25px;
  margin-bottom: 10px;
  color: var(--navy);
}
.section-title span { color: var(--teal); }
.section-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  font-size: 17px;
  line-height: 1.9;
}


/* ── WHAT IS / POINTS ── */
.info-section { background: var(--white); }
.points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.point-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
}
.point-icon {
  display: block;
  color: var(--teal);
  font-size: 34px;
  margin-bottom: 14px;
}
.point-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.point-card p { font-size: 14.5px; color: var(--text-mid); line-height: 1.8; margin-bottom: 0px; }

/* ── WHAT IS / POINTS ── */
.info-section { background: var(--white); }
.points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.point-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
}
.point-icon {
  font-size: 34px;
  margin-bottom: 14px;
  display: block;
}
.point-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.point-card p { font-size: 14.5px; color: var(--text-mid); line-height: 1.8; }

/* ── HOW IT WORKS (CONSULT FLOW) ── */
.flow-section { background: var(--cream); }
.flow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.flow-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  position: relative;
}
.flow-num {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  width: 44px;
  height: 44px;
  padding-top: 8px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
}
.flow-card h3 { font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.flow-card p { font-size: 14.5px; color: var(--text-mid); line-height: 1.8; margin-bottom: 0px;}

/* ── COMPARE STRIP ── */

.compare-section { background: var(--white); }
.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}

.compare-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
}

.compare-card h3 { font-size: 19px; margin-bottom: 16px; }
.compare-card ul { list-style: none; }
.compare-card li { font-size: 15px; line-height: 1.7; padding: 8px 0; display: flex; gap: 10px; align-items: flex-start; }
.compare-card li:last-child { border-bottom: none; }

.compare-card.smile,
.compare-card.lasik {
  color: var(--white);
  border-color: transparent;
}

.compare-card.smile { background: var(--primary); }
.compare-card.lasik { background: var(--secondary); }

.compare-card.smile li,
.compare-card.lasik li {
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

/* ── VIDEOS ── */

.video-section .section-label span { color: var(--gold-light); }
.video-section .section-title { color: var(--white); }
.video-section .section-title span { color: var(--gold-light); }
.video-section .section-intro { color: var(--white); }

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  max-width: 950px;
  margin: 0 auto;
}

.short-frame,
.wide-video-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: #000;
  box-shadow: 0 24px 56px rgba(0,0,0,0.45);
}

.short-frame { aspect-ratio: 325 / 575; }

.wide-video-frame {
  max-width: 820px;
  /* max-height: 460px; */
  margin: 0px auto 0;
  padding-top: min(56.25%, 461px);
}

.v-facade {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 100%;
  inset: 0;
  border: 0;
  padding: 0px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
}

.bg-youtube { background: #000; }
.bg-tiktok { background: linear-gradient(180deg, rgba(10,22,40,0.2) 0%, rgba(10,22,40,0.9) 100%), #0a1628; }

.v-facade img { width: 100%; height: 100%; object-fit: cover; display: block; transition: all 0.3s ease-in-out; }
.v-facade:hover img, .v-facade:focus-visible img { opacity: 0.85; transform: scale(1.04); }

/* yt-play */

.v-facade .yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  background: #ff0000;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  z-index: 2;
}
.v-facade:hover .yt-play,
.v-facade:focus-visible .yt-play {
  background: #cc0000;
  transform: translate(-50%, -50%) scale(1.08);
}
.v-facade .yt-play svg { fill: #fff; width: 28px; height: 28px; }


/* tiktok-play */

.tiktok-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #fe2c55;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(254, 44, 85, 0.45);
  transition: transform 0.2s ease-in-out, background 0.2s ease-in-out;
  z-index: 2;
}

.tiktok-play svg { fill: #ffffff; width: 26px; height: 26px; margin-right: -2px; }
.v-facade:hover .tiktok-play,
.v-facade:focus-visible .tiktok-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: #ff3b5c;
}

.video-info {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  z-index: 5;
  width: 100%;
}

.video-info .tt-tag, .video-info .tt-text {
  display: block;
  color: var(--white);
}

.video-info .tt-tag {
  font-size: 13px;
  margin-bottom: 4px;
}

.video-info .tt-text {
  font-size: 15px;
  line-height: 1.6;
  padding: 0 10px;
}

.short-frame iframe,
.wide-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 16px;
}

/* ── END VIDEOS ── */


/* ── FINAL CONSULT CTA ── */
.consult-section {
  background: var(--teal);
  color: var(--white);
  text-align: center;
}
.consult-section .section-title { color: var(--white); }
.consult-card {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 22px;
  padding: 48px 45px;
  backdrop-filter: blur(4px);
}
.consult-card h2 { font-size: clamp(22px, 4vw, 34px); line-height: 1.4; margin-bottom: 18px; }
.consult-card p { font-size: 17px; line-height: 1.9; color: rgba(255,255,255,0.88); margin-bottom: 32px; }
.consult-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 34px;
  max-width: 600px;
}
.consult-step {
  flex: 1 1 130px;
  background: rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 18px 14px;
  font-size: 14.5px;
  line-height: 1.6;
}
.consult-step b {
  display: block;
  color: var(--gold-light);
  font-size: 22px;
  margin-bottom: 6px;
  margin-top: 5px;
}

/* ── RELATED LINKS ── */
.related-section { background: var(--cream); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.related-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 24px;
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s;
}
.related-card:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(10,22,40,0.12); }
.related-card .rc-icon { font-size: 30px; display: block; margin-bottom: 12px; }
.related-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 6px; }
.related-card p { font-size: 14px; color: var(--primary); line-height: 1.7; }
.related-card .rc-go { display: inline-block; margin-top: 12px; color: var(--teal); font-size: 14px; }