/* ==============================================================
   VARIABLES Y RESET
   ============================================================== */
:root {
  --black: #0d2d35;
  --dark: #0d2d35;
  --dark2: #edf9fb;
  --white: #ffffff;
  --off-white: #f5fafb;
  --text: #1c3a40;
  --muted: #5a7c85;
  --muted-light: #8aaab2;
  --gold: #00b5c8;
  --gold-dark: #0097a7;
  --gold-light: #ccf0f5;
  --teal: #00b5c8;
  --teal-dark: #0097a7;
  --teal-mid: #00a8bc;
  --teal-light: #dceff3;
  --border-dark: #c8e8ef;
  --shadow-sm: 0 2px 16px rgba(13, 45, 53, 0.07);
  --shadow-md: 0 8px 40px rgba(13, 45, 53, 0.12);
  --shadow-lg: 0 20px 80px rgba(13, 45, 53, 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--off-white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ==============================================================
   NAVEGACIÓN
   ============================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  transition:
    background 0.4s ease,
    box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(0, 129, 143, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  color: var(--white);
  letter-spacing: 0.01em;
}

.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-btn {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  transition:
    background 0.2s,
    transform 0.2s !important;
}

.nav-btn:hover {
  background: var(--gold-dark) !important;
  transform: translateY(-1px);
}

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 800;
  background: var(--dark);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 1.8rem;
  font-family: var(--font-serif);
  color: var(--white);
}

.mobile-menu .mob-cta {
  font-size: 1rem !important;
  font-family: var(--font-sans) !important;
  font-weight: 600 !important;
  background: var(--gold);
  padding: 14px 40px;
  border-radius: 100px;
  margin-top: 12px;
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 1.6rem;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.6;
}

.mobile-close:hover {
  opacity: 1;
}

/* Language switcher */
.nav-lang {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-lang a {
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  color: rgba(255, 255, 255, 0.4) !important;
  text-transform: uppercase !important;
  transition: color 0.2s !important;
  padding: 0 !important;
}

.nav-lang a:hover,
.nav-lang a.lang-active {
  color: var(--white) !important;
}

.lang-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.7rem;
}

.mob-lang {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 8px;
}

.mob-lang a {
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  transition: color 0.2s;
}

.mob-lang a.lang-active,
.mob-lang a:hover {
  color: var(--white);
}

.mob-lang span {
  color: rgba(255, 255, 255, 0.2);
}
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 6%;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #003d4a 0%, #00818f 55%, #00b5c8 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      105deg,
      rgba(0, 61, 74, 0.88) 0%,
      rgba(0, 129, 143, 0.55) 55%,
      rgba(0, 181, 200, 0.15) 100%
    ),
    url("../assets/images/hero-bg.jpg") center center / cover no-repeat;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 20%,
    black 80%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 20%,
    black 80%,
    transparent 100%
  );
}

.hero-glow {
  position: absolute;
  z-index: 1;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 181, 200, 0.28) 0%,
    transparent 65%
  );
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 88px 0 56px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease both;
}

.hero-eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 8vw, 5.6rem);
  font-weight: 400;
  line-height: 1.06;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 26px;
  animation: fadeUp 0.7s ease 0.12s both;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-desc {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  max-width: 520px;
  margin-bottom: 46px;
  animation: fadeUp 0.7s ease 0.24s both;
}

.hero-slogan {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 400;
  color: var(--teal);
  letter-spacing: 0.01em;
  margin: -10px 0 36px;
  animation: fadeUp 0.7s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.36s both;
}

.btn-hero-primary {
  background: var(--gold);
  color: var(--white);
  padding: 17px 36px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 24px rgba(0, 181, 200, 0.4);
  transition: all 0.25s;
}

.btn-hero-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 181, 200, 0.55);
}

.btn-hero-wa {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 17px 30px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(8px);
  transition: all 0.25s;
}

.btn-hero-wa:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn-hero-wa svg {
  width: 20px;
  height: 20px;
  fill: #25d366;
  flex-shrink: 0;
}

.hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeUp 0.7s ease 0.48s both;
}

.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px;
}

.hero-float-card {
  display: none;
}

/* ==============================================================
   HERO VISUAL — columna derecha
   ============================================================== */
.hero-visual {
  display: none;
  flex: 1;
  max-width: 620px;
  position: relative;
  z-index: 10;
  align-items: center;
  justify-content: center;
  padding: 110px 0 80px;
  animation: fadeIn 0.9s ease 0.4s both;
}

.hero-photo-frame {
  position: relative;
  width: 100%;
  max-width: 560px;
}

.hero-photo-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow:
    0 20px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: none;
  transition: transform 0.6s ease;
}

.hero-photo-wrap:hover img {
  transform: scale(1.04);
}

.hv-ring {
  display: none;
}

.hero-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--white);
}

.hb-reviews {
  left: -54px;
  top: 18%;
  animation: float 4s ease-in-out infinite;
}

.hb-reviews .hb-stars {
  color: #ffd700;
  font-size: 0.76rem;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.hb-reviews .hb-title {
  font-weight: 700;
  font-size: 0.92rem;
}

.hb-reviews .hb-sub {
  font-size: 0.68rem;
  opacity: 0.62;
  margin-top: 3px;
}

.hb-result {
  right: -54px;
  bottom: 18%;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out 1.2s infinite;
  white-space: nowrap;
}

.hb-check {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 181, 200, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.hb-result .hb-title {
  font-weight: 700;
  font-size: 0.85rem;
}

.hb-result .hb-sub {
  font-size: 0.66rem;
  opacity: 0.6;
  margin-top: 2px;
}

.hb-cases {
  left: 50%;
  transform: translateX(-50%);
  top: -24px;
  animation: float 4s ease-in-out 0.6s infinite;
  text-align: center;
  white-space: nowrap;
}

.hb-cases .hb-num {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1;
  color: var(--white);
}

.hb-cases .hb-sub {
  font-size: 0.66rem;
  opacity: 0.65;
  margin-top: 4px;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1.2s both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ==============================================================
   BARRA DE CONFIANZA
   ============================================================== */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 16px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.79rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* ==============================================================
   ESPECIALIDADES PRINCIPALES (All-on-4 / All-on-6)
   ============================================================== */
.flagship {
  background: var(--off-white);
  padding: 64px 5%;
}

.flagship-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: end;
  margin-bottom: 36px;
}

.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.sec-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--teal);
}

.sec-label-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.sec-label-light::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.flagship-header-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--black);
}

.flagship-header-left h2 em {
  font-style: italic;
  color: var(--teal);
}

.flagship-header-right p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
}

.flagship-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.flagship-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--dark);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.flagship-card:hover {
  transform: translateY(-6px);
}

.flagship-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.3) 60%,
    rgba(0, 0, 0, 0.05) 100%
  );
  z-index: 1;
}

.fc-bg-allon4 {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #003d4a 0%, #00818f 55%, #00b5c8 100%);
}

.fc-bg-allon6 {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #002836 0%, #004d5c 50%, #00818f 100%);
}

.flagship-card > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.flagship-card:hover > img {
  transform: scale(1.04);
}

.flagship-card-body {
  position: relative;
  z-index: 2;
  padding: 40px 40px 44px;
}

.fc-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.flagship-card h3 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 14px;
}

.flagship-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 300;
  max-width: 380px;
  margin-bottom: 28px;
}

.fc-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.fc-pill {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 5px 12px;
  border-radius: 100px;
}

.fc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: gap 0.2s;
}

.fc-cta:hover {
  gap: 14px;
}

/* ==============================================================
   IMPLANTOLOGÍA INDIVIDUAL
   ============================================================== */
.implant-steps {
  background: var(--dark);
  padding: 64px 5%;
}

.implant-steps-header {
  text-align: center;
  margin-bottom: 40px;
}

.implant-steps-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.12;
  margin: 14px 0 16px;
}

.implant-steps-header h2 em {
  font-style: italic;
  color: var(--teal);
}

.implant-steps-header p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
}

.implant-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.ist-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.ist-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), rgba(0, 181, 200, 0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.ist-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(0, 181, 200, 0.25);
  transform: translateY(-5px);
}

.ist-card:hover::before {
  transform: scaleX(1);
}

.ist-icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(0, 181, 200, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  transition: background 0.3s;
}

.ist-card:hover .ist-icon-wrap {
  background: rgba(0, 181, 200, 0.22);
}

.ist-tag {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0, 181, 200, 0.1);
  border: 1px solid rgba(0, 181, 200, 0.2);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.ist-card h3 {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
}

.ist-card > p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 28px;
}

.ist-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.ist-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.ist-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0, 181, 200, 0.15);
  border: 1px solid rgba(0, 181, 200, 0.35);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%2300B5C8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.ist-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: var(--white);
  padding: 14px 30px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.25s;
}

.ist-cta:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  gap: 14px;
}

/* ==============================================================
   SERVICIOS ADICIONALES
   ============================================================== */
.services {
  background: var(--dark2);
  padding: 64px 5%;
}

.services-header {
  text-align: center;
  margin-bottom: 40px;
}

.services-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--black);
  margin-top: 14px;
}

.services-header h2 em {
  font-style: italic;
  color: var(--teal);
}

.services-header p {
  font-size: 0.93rem;
  color: var(--muted);
  max-width: 460px;
  margin: 16px auto 0;
  line-height: 1.7;
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.srv-card {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.srv-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.srv-card:hover {
  background: var(--white);
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.srv-card:hover::after {
  transform: scaleX(1);
}

.srv-icon {
  width: 50px;
  height: 50px;
  background: var(--teal-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 22px;
  transition: background 0.3s;
}

.srv-card:hover .srv-icon {
  background: var(--gold-light);
}

.srv-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
}

.srv-card p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

.srv-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal-mid);
  margin-top: 18px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  transition: gap 0.2s;
}

.srv-link:hover {
  gap: 10px;
}

/* ==============================================================
   GALERÍA DE CASOS
   ============================================================== */
.gallery {
  background: var(--off-white);
  padding: 64px 5%;
}

.gallery-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
}

.gallery-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--black);
  margin-top: 14px;
}

.gallery-header h2 em {
  font-style: italic;
  color: var(--teal);
}

.gallery-header p {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 340px;
  line-height: 1.7;
  font-weight: 300;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: var(--dark);
  transition: transform 0.35s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item.tall {
  grid-row: auto;
}

.gallery-item > img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Imagen de Invisalign: cara y manos centradas en el encuadre */
.gallery-item img[src*="caso-invisalign"] {
  object-position: center 15%;
}

.gallery-item.tall > img {
  aspect-ratio: 1/1;
}

.gallery-item.tall .gallery-img-placeholder {
  aspect-ratio: 4/9;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
  padding: 20px 22px;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.gallery-title {
  font-size: 0.88rem;
  color: var(--white);
  margin-top: 4px;
}

.img-note {
  text-align: center;
  margin-top: 28px;
  font-size: 0.76rem;
  color: var(--muted-light);
  font-style: italic;
}

/* ==============================================================
   PROCESO
   ============================================================== */
.process {
  background: var(--dark);
  padding: 64px 5%;
}

.process-header {
  text-align: center;
  margin-bottom: 40px;
}

.process-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--white);
  margin-top: 14px;
}

.process-header h2 em {
  font-style: italic;
  color: var(--gold);
}

.process-header p {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.38);
  max-width: 440px;
  margin: 16px auto 0;
  line-height: 1.7;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  position: relative;
}

.process-steps::before {
  content: "";
  display: none;
  position: absolute;
  top: 31px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--dark2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 24px;
  transition: all 0.3s;
}

.process-step:hover .step-num {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.step-title {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.81rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.65;
  font-weight: 300;
}

/* ==============================================================
   TESTIMONIOS
   ============================================================== */
.testimonials {
  background: var(--off-white);
  padding: 64px 5%;
}

.testi-header {
  text-align: center;
  margin-bottom: 36px;
}

.testi-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--black);
  margin-top: 14px;
}

.testi-header h2 em {
  font-style: italic;
  color: var(--teal);
}

.testi-header p {
  font-size: 0.93rem;
  color: var(--muted);
  max-width: 440px;
  margin: 16px auto 0;
  line-height: 1.7;
}

.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  border: 1px solid var(--border-dark);
  transition: all 0.3s;
  position: relative;
}

.testi-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}

.testi-quote {
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 14px;
  font-family: var(--font-serif);
  color: #ddeef0;
}

.testi-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testi-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.04rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 26px;
}

.testi-divider {
  width: 32px;
  height: 1px;
  background: var(--border-dark);
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--teal);
  overflow: hidden;
  flex-shrink: 0;
}

.testi-name strong {
  display: block;
  font-size: 0.87rem;
  color: var(--black);
}

.testi-name span {
  font-size: 0.74rem;
  color: var(--muted);
  margin-top: 2px;
  display: block;
}

.testi-treatment {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border-dark);
}

.testi-treatment span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ==============================================================
   POR QUÉ ELEGIRNOS
   ============================================================== */
.why {
  background: var(--dark2);
  padding: 64px 5%;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.why-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  color: var(--black);
  line-height: 1.12;
  margin: 14px 0 20px;
}

.why-left h2 em {
  font-style: italic;
  color: var(--teal);
}

.why-left > p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 44px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.why-feat {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.why-feat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: background 0.3s;
}

.why-feat:hover .why-feat-icon {
  background: var(--gold-light);
}

.why-feat-body strong {
  display: block;
  font-size: 0.91rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.why-feat-body span {
  font-size: 0.81rem;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}

.why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-stat-card {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: all 0.3s;
}

.why-stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--teal);
}

.why-stat-card.accent {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  border: none;
  grid-column: span 2;
}

.wsc-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--teal);
  line-height: 1;
}

.wsc-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

.why-stat-card.accent .wsc-num {
  font-size: 1.6rem;
  color: var(--white);
}

.why-stat-card.accent .wsc-label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 6px;
}

/* ==============================================================
   CTA CENTRAL
   ============================================================== */
.cta-section {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  padding: 72px 5%;
  text-align: center;
}

.cta-bg-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at 30% 60%,
      rgba(27, 107, 115, 0.16) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 70% 40%,
      rgba(201, 169, 110, 0.1) 0%,
      transparent 60%
    );
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-section .sec-label-light {
  justify-content: center;
  margin-bottom: 20px;
  display: flex;
}

.cta-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-section h2 em {
  font-style: italic;
  color: var(--gold);
}

.cta-section p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 46px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.btn-cta-primary {
  background: var(--gold);
  color: var(--white);
  padding: 18px 42px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 28px rgba(201, 169, 110, 0.35);
  transition: all 0.25s;
}

.btn-cta-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(201, 169, 110, 0.5);
}

.btn-cta-secondary {
  background: transparent;
  color: var(--white);
  padding: 18px 36px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s;
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn-cta-secondary svg {
  width: 20px;
  height: 20px;
  fill: #25d366;
}

/* ==============================================================
   CONTACTO
   ============================================================== */
.contact {
  background: var(--off-white);
  padding: 64px 5%;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.contact-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 400;
  color: var(--black);
  line-height: 1.12;
  margin: 14px 0 18px;
}

.contact-left h2 em {
  font-style: italic;
  color: var(--teal);
}

.contact-left > p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 40px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-map {
  display: flex;
  flex-direction: column;
}

.contact-map h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--black);
  line-height: 1.12;
  margin: 10px 0 18px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  transition: all 0.25s;
}

.contact-method:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.cm-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.cm-icon.wa {
  background: #e2f7e9;
}

.cm-icon.phone {
  background: var(--teal-light);
}

.cm-icon.map {
  background: #fef3e6;
}

.cm-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--black);
}

.cm-text span {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
  display: block;
}

.chat-placeholder {
  margin-top: 16px;
  background: var(--teal-light);
  border: 1px dashed var(--teal);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 0.78rem;
  color: var(--teal);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.chat-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
}

.contact-form > p {
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--off-white);
  border: 1.5px solid var(--border-dark);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(27, 107, 115, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-submit {
  width: 100%;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 15px 32px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s;
  margin-top: 6px;
}

.form-submit:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-disclaimer {
  font-size: 0.71rem;
  color: var(--muted-light);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* ==============================================================
   FOOTER
   ============================================================== */
footer {
  background: var(--black);
  padding: 48px 5% 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.81rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.7;
  max-width: 260px;
  font-weight: 300;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.footer-col h4 {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 18px;
}

.footer-links li + li {
  margin-top: 10px;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.48);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-bottom span {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.22);
}

/* ==============================================================
   BOTÓN FLOTANTE WHATSAPP
   ============================================================== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: all 0.25s;
  animation: pulseWa 2.5s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.1);
}

.wa-float svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

.wa-tooltip {
  position: absolute;
  right: 72px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  box-shadow: var(--shadow-sm);
}

.wa-tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--dark);
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
}

/* ==============================================================
   ANIMACIONES
   ============================================================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulseWa {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 4px 32px rgba(37, 211, 102, 0.75);
  }
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ==============================================================
   RESPONSIVE — MOBILE FIRST (min-width)
   ============================================================== */

/* SM — 640px+ */
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .gallery-item.tall {
    grid-row: span 2;
  }
  .gallery-item > img {
    aspect-ratio: 4/5;
  }
  .gallery-item.tall > img {
    aspect-ratio: 4/9;
  }
  .testi-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .cta-buttons {
    flex-direction: row;
    align-items: center;
  }
}

/* MD — 768px+ */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  .nav-hamburger {
    display: none;
  }

  .trust-bar {
    padding: 20px 6%;
    justify-content: space-between;
    gap: 20px;
  }

  .flagship {
    padding: 88px 6%;
  }
  .flagship-header {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }
  .flagship-grid {
    grid-template-columns: 1fr 1fr;
  }
  .flagship-card {
    min-height: 500px;
  }
  .flagship-card-body {
    padding: 32px 32px 38px;
  }

  .implant-steps {
    padding: 88px 6%;
  }
  .implant-steps-header {
    margin-bottom: 60px;
  }
  .implant-steps-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ist-card {
    padding: 40px 36px;
  }

  .services {
    padding: 88px 6%;
  }
  .services-header {
    margin-bottom: 56px;
  }
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery {
    padding: 88px 6%;
  }
  .gallery-header {
    flex-direction: row;
    align-items: flex-end;
    margin-bottom: 48px;
    gap: 32px;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .process {
    padding: 88px 6%;
  }
  .process-header {
    margin-bottom: 60px;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .process-steps::before {
    display: none;
  }

  .testimonials {
    padding: 88px 6%;
  }
  .testi-header {
    margin-bottom: 52px;
  }
  .testi-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .why {
    padding: 88px 6%;
  }
  .why-inner {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .cta-section {
    padding: 100px 6%;
  }

  .contact {
    padding: 88px 6%;
  }
  .contact-inner {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }
  .contact-form {
    padding: 40px 36px;
  }

  footer {
    padding: 64px 6% 36px;
  }
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 56px;
  }
  .footer-bottom {
    flex-direction: row;
    text-align: left;
  }
}

/* LG — 1024px+ */
@media (min-width: 1024px) {
  .hero {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 60px;
    padding: 0 6%;
  }
  .hero-content {
    flex: 1;
    max-width: 640px;
    padding: 130px 0 100px;
    width: auto;
  }
  .hero-visual {
    display: flex;
  }
  .hero-scroll {
    display: none;
  }
  .hero-stats {
    gap: 48px;
    margin-top: 60px;
    padding-top: 48px;
  }
  .hero h1 {
    font-size: clamp(3rem, 6.2vw, 5.6rem);
  }

  .flagship {
    padding: 110px 6%;
  }
  .flagship-header {
    margin-bottom: 72px;
  }
  .flagship-card {
    min-height: 560px;
  }
  .flagship-card-body {
    padding: 40px 40px 44px;
  }

  .implant-steps {
    padding: 110px 6%;
  }
  .implant-steps-header {
    margin-bottom: 72px;
  }
  .ist-card {
    padding: 48px 44px;
  }

  .services {
    padding: 110px 6%;
  }
  .services-header {
    margin-bottom: 72px;
  }

  .gallery {
    padding: 110px 6%;
  }
  .gallery-header {
    margin-bottom: 64px;
  }

  .process {
    padding: 110px 6%;
  }
  .process-header {
    margin-bottom: 80px;
  }
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .process-steps::before {
    display: block;
  }

  .testimonials {
    padding: 110px 6%;
  }
  .testi-header {
    margin-bottom: 64px;
  }

  .why {
    padding: 110px 6%;
  }
  .why-inner {
    gap: 80px;
  }

  .cta-section {
    padding: 120px 6%;
  }

  .contact {
    padding: 110px 6%;
  }
  .contact-inner {
    gap: 80px;
  }
  .contact-form {
    padding: 48px 44px;
  }

  footer {
    padding: 72px 6% 40px;
  }
}
