/* ==========================================================================
   Clínica Dental — Design System
   ========================================================================== */

:root {
  /* Color tokens */
  --white: #ffffff;
  --bg: #F6FAFA;
  --bg-alt: #EEF5F5;
  --bg-dark: #0A2E42;

  --primary-900: #082436;
  --primary-800: #0C3B54;
  --primary-700: #10496A;
  --primary-600: #145A80;
  --primary-100: #E3EEF3;

  --teal-700: #0E8E80;
  --teal-600: #16A99A;
  --teal-500: #2BC4B4;
  --teal-100: #DEF7F3;

  --accent: #D6A85C;
  --accent-light: #F3E6CC;

  --ink-900: #142B33;
  --ink-700: #3C5560;
  --ink-500: #6B838C;
  --ink-300: #A9BCC2;
  --line: #E1EAEC;
  --line-light: #EEF4F5;

  --success: #2E9E6B;
  --danger: #D8564A;

  /* Typography */
  --font-heading: 'Fraunces', 'Georgia', serif;
  --font-body: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 24px;
  --r-full: 999px;

  /* Shadow */
  --shadow-sm: 0 2px 8px rgba(10, 46, 66, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 46, 66, 0.10);
  --shadow-lg: 0 24px 64px rgba(10, 46, 66, 0.16);

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --dur-fast: 180ms;
  --dur-base: 320ms;
  --dur-slow: 560ms;

  --header-h: 84px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--primary-800); line-height: 1.15; margin: 0; font-weight: 600; }
p { margin: 0; }
section { position: relative; }
input, select, textarea { font-family: inherit; font-size: 16px; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--space-5);
}
@media (max-width: 640px) {
  .container { padding: 0 var(--space-4); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: var(--space-3);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}
.section-head {
  max-width: 640px;
  margin-bottom: var(--space-7);
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: var(--space-3); }
.section-head p { color: var(--ink-500); font-size: 17px; }

.section-pad { padding: var(--space-9) 0; }
@media (max-width: 768px) {
  .section-pad { padding: var(--space-8) 0; }
}
.bg-alt { background: var(--bg-alt); }
.bg-dark { background: var(--primary-900); color: var(--white); }
.bg-dark h2, .bg-dark h3 { color: var(--white); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 15px 28px;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 15.5px;
  border: 1px solid transparent;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
  white-space: nowrap;
  min-height: 48px;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: var(--teal-600);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(22, 169, 154, .28);
}
.btn-primary:hover { background: var(--teal-700); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(22,169,154,.36); }
.btn-secondary {
  background: var(--white);
  color: var(--primary-800);
  border-color: var(--line);
}
.btn-secondary:hover { border-color: var(--primary-800); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-ghost-light {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover { background: #1fbd5a; transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 14px; min-height: 40px; }
.btn-block { width: 100%; }
.btn:active { transform: translateY(0) scale(.98); }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--teal-500);
  outline-offset: 2px;
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  transition: box-shadow var(--dur-base) var(--ease), height var(--dur-base) var(--ease), background var(--dur-base) var(--ease);
}
.header.scrolled {
  height: 68px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-sm);
}
.header .container { display: flex; align-items: center; justify-content: space-between; gap: var(--space-5); }

.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-weight: 700; font-size: 21px; color: var(--primary-800); }
.logo .mark {
  width: 38px; height: 38px; border-radius: 11px;
  background: linear-gradient(135deg, var(--teal-600), var(--primary-700));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.logo .mark svg { width: 20px; height: 20px; }
.logo span.brand-sub { display: block; font-family: var(--font-body); font-weight: 500; font-size: 11px; letter-spacing: .05em; color: var(--ink-500); text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: var(--space-6); }
.nav-links a {
  font-size: 15px; font-weight: 600; color: var(--ink-700);
  position: relative; padding: 6px 0;
  transition: color var(--dur-fast) var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--teal-600); transition: width var(--dur-base) var(--ease);
}
.nav-links a:hover { color: var(--primary-800); }
.nav-links a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: var(--space-3); }
.icon-btn {
  width: 44px; height: 44px; border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  background: var(--teal-100); color: var(--teal-700);
  transition: background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.icon-btn:hover { background: var(--teal-500); color: var(--white); transform: translateY(-2px); }
.icon-btn svg { width: 20px; height: 20px; }

.hamburger {
  display: none;
  width: 44px; height: 44px;
  border: none; background: var(--primary-100); border-radius: var(--r-sm);
  align-items: center; justify-content: center;
  position: relative;
}
.hamburger span, .hamburger span::before, .hamburger span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--primary-800);
  border-radius: 2px; position: relative; transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}
.hamburger span::before { position: absolute; top: -6px; }
.hamburger span::after { position: absolute; top: 6px; }
.hamburger.open span { background: transparent; }
.hamburger.open span::before { transform: translateY(6px) rotate(45deg); }
.hamburger.open span::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 490;
  background: var(--white);
  padding: calc(var(--header-h) + 16px) var(--space-5) var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-2);
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-size: 20px; font-weight: 600; padding: var(--space-3) 0; border-bottom: 1px solid var(--line-light); color: var(--primary-800); }
.mobile-menu .btn { margin-top: var(--space-5); }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .header-actions .btn-primary.desktop-only { display: none; }
}

/* ---- Hero ---- */
.hero {
  padding-top: calc(var(--header-h) + 56px);
  padding-bottom: var(--space-9);
  background: radial-gradient(1200px 600px at 85% -10%, var(--teal-100), transparent 60%), var(--bg);
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: var(--space-8);
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: -.01em;
  margin-bottom: var(--space-5);
}
.hero-copy h1 em { font-style: normal; color: var(--teal-700); }
.hero-copy p.lead {
  font-size: 19px; color: var(--ink-700); max-width: 520px; margin-bottom: var(--space-6);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-bottom: var(--space-7); }
.trust-row { display: flex; flex-wrap: wrap; gap: var(--space-6); align-items: center; }
.trust-item { display: flex; align-items: center; gap: var(--space-2); font-size: 14px; font-weight: 600; color: var(--ink-700); }
.trust-item svg { width: 20px; height: 20px; color: var(--teal-600); flex-shrink: 0; }
.stars { color: var(--accent); letter-spacing: 2px; font-size: 16px; }

.hero-media { position: relative; }
.hero-media .frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--primary-700), var(--teal-600));
  position: relative;
}
.hero-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: var(--space-4) var(--space-5);
  display: flex; align-items: center; gap: var(--space-3);
  font-size: 13.5px; font-weight: 700; color: var(--primary-800);
}
.float-card svg { width: 22px; height: 22px; color: var(--teal-600); flex-shrink: 0; }
.float-card small { display: block; font-weight: 500; color: var(--ink-500); font-size: 12px; }
.float-1 { top: 6%; left: -8%; }
.float-2 { bottom: 12%; right: -10%; }
.float-3 { bottom: -6%; left: 12%; }

@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 420px; margin: 0 auto; }
  .float-1, .float-2, .float-3 { display: none; }
}

/* ---- Stats bar ---- */
.stats-bar { background: var(--primary-900); color: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); padding: var(--space-8) 0; }
.stat { text-align: center; }
.stat .num { font-family: var(--font-heading); font-size: clamp(32px, 4vw, 46px); font-weight: 700; color: var(--teal-500); }
.stat .label { font-size: 14px; color: rgba(255,255,255,.72); margin-top: var(--space-1); }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---- Cards grid: why choose us ---- */
.grid-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
@media (max-width: 960px) { .grid-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-cards { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--space-6);
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.icon-box {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--teal-100); color: var(--teal-700);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-4);
}
.icon-box svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 19px; margin-bottom: var(--space-2); }
.feature-card p { color: var(--ink-500); font-size: 15px; }

/* ---- Services ---- */
.tabs-bar { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-7); }
.tab-chip {
  padding: 10px 18px; border-radius: var(--r-full); border: 1px solid var(--line);
  background: var(--white); font-size: 14px; font-weight: 600; color: var(--ink-700);
  transition: all var(--dur-fast) var(--ease);
}
.tab-chip.active, .tab-chip:hover { background: var(--primary-800); color: var(--white); border-color: var(--primary-800); }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
@media (max-width: 960px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .service-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white); border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line);
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-media { aspect-ratio: 16/11; background: linear-gradient(135deg, var(--primary-100), var(--teal-100)); position: relative; overflow: hidden; }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
.service-card:hover .service-media img { transform: scale(1.06); }
.service-media .tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,.9); color: var(--primary-800);
  font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: var(--r-full);
}
.service-body { padding: var(--space-5); flex: 1; display: flex; flex-direction: column; gap: var(--space-3); }
.service-body h3 { font-size: 18.5px; }
.service-body p { color: var(--ink-500); font-size: 14.5px; flex: 1; }
.service-actions { display: flex; gap: var(--space-2); margin-top: var(--space-2); flex-wrap: wrap; }
.service-actions .btn { flex: 1; min-width: 140px; }

.show-more-wrap { text-align: center; margin-top: var(--space-7); }
.service-card[hidden] { display: none; }

/* ---- Featured services ---- */
.featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
@media (max-width: 900px) { .featured-grid { grid-template-columns: 1fr; } }
.featured-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--primary-700), var(--primary-900));
}
.featured-card img { width: 100%; height: 100%; object-fit: cover; opacity: .85; transition: transform var(--dur-slow) var(--ease); }
.featured-card:hover img { transform: scale(1.08); }
.featured-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--space-6); background: linear-gradient(0deg, rgba(6,32,46,.92) 10%, rgba(6,32,46,.15) 65%, transparent);
  color: var(--white);
}
.featured-overlay h3 { color: var(--white); font-size: 24px; margin-bottom: var(--space-2); }
.featured-overlay p { color: rgba(255,255,255,.8); font-size: 14.5px; margin-bottom: var(--space-4); }

/* ---- Before/After ---- */
.ba-slider { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); position: relative; aspect-ratio: 16/10; cursor: ew-resize; user-select: none; }
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-slider .after-img { clip-path: inset(0 0 0 50%); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: var(--white); transform: translateX(-50%); box-shadow: 0 0 0 2000px rgba(0,0,0,0); }
.ba-handle .knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%; background: var(--white); box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center; color: var(--primary-800);
}
.ba-handle .knob svg { width: 20px; height: 20px; }
.ba-label { position: absolute; top: 16px; padding: 6px 14px; border-radius: var(--r-full); background: rgba(8,36,54,.72); color: var(--white); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.ba-label.before { left: 16px; }
.ba-label.after { right: 16px; }

.ba-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--space-8); align-items: center; }
@media (max-width: 900px) { .ba-wrap { grid-template-columns: 1fr; } }
.ba-info h3 { font-size: 22px; margin-bottom: var(--space-3); }
.ba-info p { color: var(--ink-500); margin-bottom: var(--space-5); }
.ba-dots { display: flex; gap: var(--space-2); margin: var(--space-5) 0; }
.ba-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line); transition: background var(--dur-fast) var(--ease); cursor: pointer; }
.ba-dot.active { background: var(--teal-600); }
.disclaimer { font-size: 12.5px; color: var(--ink-500); background: var(--bg-alt); border-radius: var(--r-sm); padding: var(--space-3) var(--space-4); margin-top: var(--space-6); border-left: 3px solid var(--accent); }

/* ---- About ---- */
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: var(--space-8); align-items: center; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
.about-media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; background: linear-gradient(160deg, var(--teal-100), var(--primary-100)); }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-copy p { color: var(--ink-700); margin-bottom: var(--space-4); font-size: 16.5px; }
.values-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-3); margin-top: var(--space-6); }
@media (max-width: 700px) { .values-row { grid-template-columns: repeat(2, 1fr); } }
.value-pill { text-align: center; padding: var(--space-4) var(--space-2); background: var(--bg-alt); border-radius: var(--r-md); }
.value-pill svg { width: 24px; height: 24px; color: var(--teal-700); margin-bottom: var(--space-2); }
.value-pill span { display: block; font-size: 13px; font-weight: 700; color: var(--primary-800); }

/* ---- Team ---- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
@media (max-width: 960px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-photo { aspect-ratio: 3/4; background: linear-gradient(160deg, var(--primary-100), var(--teal-100)); overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-body { padding: var(--space-5); }
.team-body h3 { font-size: 17.5px; margin-bottom: 2px; }
.team-role { color: var(--teal-700); font-size: 13.5px; font-weight: 700; margin-bottom: var(--space-3); }
.team-meta { display: flex; flex-direction: column; gap: 4px; font-size: 13px; color: var(--ink-500); margin-bottom: var(--space-4); }
.team-meta li { display: flex; gap: 8px; align-items: flex-start; }
.team-meta svg { width: 15px; height: 15px; color: var(--teal-600); flex-shrink: 0; margin-top: 2px; }

/* ---- Facilities gallery ---- */
.masonry {
  columns: 3 240px; column-gap: var(--space-4);
}
.masonry figure {
  margin: 0 0 var(--space-4); break-inside: avoid; border-radius: var(--r-md); overflow: hidden; position: relative;
}
.masonry img { width: 100%; display: block; transition: transform var(--dur-slow) var(--ease); }
.masonry figure:hover img { transform: scale(1.08); }
.masonry figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: var(--space-4);
  background: linear-gradient(0deg, rgba(6,32,46,.85), transparent);
  color: var(--white); font-weight: 700; font-size: 14px;
  opacity: 0; transform: translateY(8px); transition: all var(--dur-base) var(--ease);
}
.masonry figure:hover figcaption { opacity: 1; transform: translateY(0); }

/* ---- Testimonials ---- */
.testi-head-row { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: var(--space-5); margin-bottom: var(--space-7); }
.google-badge { display: flex; align-items: center; gap: var(--space-3); background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: var(--space-4) var(--space-5); box-shadow: var(--shadow-sm); }
.google-badge .score { font-family: var(--font-heading); font-size: 26px; font-weight: 700; color: var(--primary-800); }
.testi-track-wrap { overflow: hidden; }
.testi-track { display: flex; gap: var(--space-5); transition: transform var(--dur-slow) var(--ease); }
.testi-card {
  min-width: calc(33.333% - 22px); background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: var(--space-6); display: flex; flex-direction: column; gap: var(--space-4);
}
@media (max-width: 960px) { .testi-card { min-width: calc(50% - 12px); } }
@media (max-width: 640px) { .testi-card { min-width: 100%; } }
.testi-card p.quote { color: var(--ink-700); font-size: 15.5px; }
.testi-person { display: flex; align-items: center; gap: var(--space-3); margin-top: auto; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--primary-100); color: var(--primary-800); display: flex; align-items: center; justify-content: center; font-weight: 700; }
.testi-person strong { display: block; font-size: 14px; color: var(--primary-800); }
.testi-person span { font-size: 12.5px; color: var(--ink-500); }
.testi-controls { display: flex; gap: var(--space-2); justify-content: center; margin-top: var(--space-6); }
.testi-controls button { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: var(--white); display: flex; align-items: center; justify-content: center; transition: all var(--dur-fast) var(--ease); }
.testi-controls button:hover { background: var(--primary-800); color: var(--white); border-color: var(--primary-800); }
.testi-controls svg { width: 18px; height: 18px; }

/* ---- Promotions ---- */
.promo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
@media (max-width: 960px) { .promo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .promo-grid { grid-template-columns: 1fr; } }
.promo-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--space-5); position: relative; transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease); }
.promo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.promo-badge { position: absolute; top: -12px; right: 20px; background: var(--accent); color: var(--primary-900); font-size: 12px; font-weight: 800; padding: 6px 12px; border-radius: var(--r-full); }
.promo-card h3 { font-size: 17px; margin-bottom: var(--space-3); }
.price-row { display: flex; align-items: baseline; gap: var(--space-2); margin-bottom: var(--space-2); }
.price-old { text-decoration: line-through; color: var(--ink-300); font-size: 14px; }
.price-new { font-family: var(--font-heading); font-size: 26px; font-weight: 700; color: var(--teal-700); }
.promo-valid { font-size: 12.5px; color: var(--ink-500); margin-bottom: var(--space-4); }
.promo-cond { font-size: 11.5px; color: var(--ink-300); margin-top: var(--space-3); }

/* ---- FAQ ---- */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--space-3); }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: var(--space-4);
  padding: var(--space-5); background: none; border: none; text-align: left;
  font-size: 16px; font-weight: 700; color: var(--primary-800);
}
.faq-q .plus { width: 26px; height: 26px; border-radius: 50%; background: var(--teal-100); color: var(--teal-700); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform var(--dur-base) var(--ease); }
.faq-item.open .faq-q .plus { transform: rotate(45deg); background: var(--teal-600); color: var(--white); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--dur-base) var(--ease); }
.faq-a-inner { padding: 0 var(--space-5) var(--space-5); color: var(--ink-500); font-size: 15px; }
.faq-item.open .faq-a { max-height: 300px; }

/* ---- Booking form ---- */
.booking-section { background: linear-gradient(160deg, var(--primary-900), var(--primary-700)); color: var(--white); }
.booking-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: var(--space-8); align-items: flex-start; }
@media (max-width: 960px) { .booking-grid { grid-template-columns: 1fr; } }
.booking-info h2 { color: var(--white); font-size: clamp(28px, 4vw, 38px); margin-bottom: var(--space-4); }
.booking-info p { color: rgba(255,255,255,.78); margin-bottom: var(--space-6); }
.booking-steps { display: flex; flex-direction: column; gap: var(--space-4); margin-bottom: var(--space-7); }
.booking-step { display: flex; gap: var(--space-4); align-items: flex-start; }
.booking-step .num { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3); display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; }
.booking-step strong { display: block; margin-bottom: 2px; }
.booking-step span { font-size: 14px; color: rgba(255,255,255,.7); }

.booking-form {
  background: var(--white); border-radius: var(--r-lg); padding: var(--space-7);
  box-shadow: var(--shadow-lg); color: var(--ink-900);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); margin-bottom: var(--space-4); }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--space-4); }
.field label { font-size: 13.5px; font-weight: 700; color: var(--primary-800); }
.field input, .field select, .field textarea {
  padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--bg); color: var(--ink-900); transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal-600); background: var(--white); outline: none; }
.field textarea { resize: vertical; min-height: 90px; }
.field.error input, .field.error select, .field.error textarea { border-color: var(--danger); }
.field .err-msg { font-size: 12.5px; color: var(--danger); display: none; }
.field.error .err-msg { display: block; }
.consent-row { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--ink-500); margin: var(--space-2) 0 var(--space-5); }
.consent-row input { margin-top: 3px; width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--teal-600); }
.form-success { display: none; text-align: center; padding: var(--space-7) var(--space-4); }
.form-success.show { display: block; }
.form-success .check { width: 64px; height: 64px; border-radius: 50%; background: var(--teal-100); color: var(--teal-700); display: flex; align-items: center; justify-content: center; margin: 0 auto var(--space-5); }
.form-success .check svg { width: 32px; height: 32px; }
.form-success h3 { margin-bottom: var(--space-3); }
.form-success p { color: var(--ink-500); margin-bottom: var(--space-6); }
.form-body.hide { display: none; }
.or-divider { text-align: center; margin: var(--space-5) 0; color: var(--ink-300); font-size: 13px; position: relative; }
.or-divider::before, .or-divider::after { content: ""; position: absolute; top: 50%; width: 42%; height: 1px; background: var(--line); }
.or-divider::before { left: 0; }
.or-divider::after { right: 0; }

/* ---- Location ---- */
.location-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: var(--space-8); align-items: stretch; }
@media (max-width: 900px) { .location-grid { grid-template-columns: 1fr; } }
.location-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--space-7); box-shadow: var(--shadow-sm); }
.info-line { display: flex; gap: var(--space-4); padding: var(--space-4) 0; border-bottom: 1px solid var(--line-light); }
.info-line:last-of-type { border-bottom: none; }
.info-line svg { width: 22px; height: 22px; color: var(--teal-600); flex-shrink: 0; margin-top: 2px; }
.info-line strong { display: block; font-size: 14px; color: var(--primary-800); margin-bottom: 2px; }
.info-line span, .info-line div { font-size: 14.5px; color: var(--ink-500); }
.location-actions { display: flex; gap: var(--space-3); margin-top: var(--space-6); flex-wrap: wrap; }
.map-embed { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); min-height: 380px; background: var(--bg-alt); position: relative; }
.map-embed iframe { width: 100%; height: 100%; min-height: 380px; border: 0; filter: grayscale(15%); }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: var(--space-8); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-list { display: flex; flex-direction: column; gap: var(--space-4); }
.contact-card { display: flex; gap: var(--space-4); background: var(--bg-alt); border-radius: var(--r-md); padding: var(--space-5); }
.contact-card .icon-box { margin-bottom: 0; flex-shrink: 0; }
.contact-card strong { display: block; color: var(--primary-800); font-size: 15px; }
.contact-card span { font-size: 14px; color: var(--ink-500); }
.contact-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--space-7); box-shadow: var(--shadow-sm); }

/* ---- Blog ---- */
.blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
@media (max-width: 960px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-media { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--primary-100), var(--teal-100)); overflow: hidden; }
.blog-media img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: var(--space-5); }
.blog-meta { display: flex; gap: var(--space-3); font-size: 12px; color: var(--teal-700); font-weight: 700; text-transform: uppercase; letter-spacing: .03em; margin-bottom: var(--space-3); }
.blog-body h3 { font-size: 16.5px; margin-bottom: var(--space-2); }
.blog-body p { font-size: 14px; color: var(--ink-500); margin-bottom: var(--space-4); }
.blog-link { font-size: 13.5px; font-weight: 700; color: var(--primary-800); display: inline-flex; align-items: center; gap: 6px; }
.blog-link svg { width: 15px; height: 15px; transition: transform var(--dur-fast) var(--ease); }
.blog-card:hover .blog-link svg { transform: translateX(4px); }

/* ---- Final CTA strip ---- */
.cta-strip { background: linear-gradient(120deg, var(--teal-700), var(--primary-800)); color: var(--white); text-align: center; padding: var(--space-8) 0; }
.cta-strip h2 { color: var(--white); font-size: clamp(26px, 4vw, 36px); margin-bottom: var(--space-3); }
.cta-strip p { color: rgba(255,255,255,.82); margin-bottom: var(--space-6); }
.cta-strip .hero-cta { justify-content: center; margin-bottom: 0; }

/* ---- Footer ---- */
.footer { background: var(--primary-900); color: rgba(255,255,255,.7); padding: var(--space-9) 0 var(--space-6); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--space-7); padding-bottom: var(--space-7); border-bottom: 1px solid rgba(255,255,255,.1); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer .logo { color: var(--white); margin-bottom: var(--space-4); }
.footer .logo span.brand-sub { color: rgba(255,255,255,.55); }
.footer-about p { font-size: 14px; line-height: 1.7; margin-bottom: var(--space-5); }
.social-row { display: flex; gap: var(--space-3); }
.social-row a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; transition: all var(--dur-fast) var(--ease); }
.social-row a:hover { background: var(--teal-600); transform: translateY(-3px); }
.social-row svg { width: 18px; height: 18px; }
.footer h4 { color: var(--white); font-size: 14px; text-transform: uppercase; letter-spacing: .04em; margin-bottom: var(--space-5); font-family: var(--font-body); }
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-col a { font-size: 14.5px; transition: color var(--dur-fast) var(--ease); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--space-4); padding-top: var(--space-6); font-size: 13px; }
.footer-bottom .legal-links { display: flex; gap: var(--space-5); flex-wrap: wrap; }

/* ---- WhatsApp float ---- */
.wa-float {
  position: fixed; right: var(--space-5); bottom: var(--space-5); z-index: 400;
  display: flex; align-items: center; gap: 10px;
}
.wa-tooltip {
  background: var(--white); color: var(--primary-800); font-size: 13.5px; font-weight: 600;
  padding: 10px 16px; border-radius: var(--r-full); box-shadow: var(--shadow-md);
  opacity: 0; transform: translateX(8px); transition: all var(--dur-base) var(--ease); pointer-events: none;
  white-space: nowrap;
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
.wa-btn {
  width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg);
  animation: wa-pulse 2.6s ease-in-out infinite;
}
.wa-btn svg { width: 30px; height: 30px; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,.45), var(--shadow-lg); }
  50% { box-shadow: 0 0 0 10px rgba(37,211,102,0), var(--shadow-lg); }
}
@media (max-width: 640px) {
  .wa-float { right: var(--space-4); bottom: var(--space-4); }
  .wa-tooltip { display: none; }
  .wa-btn { width: 54px; height: 54px; }
}

/* ---- Popup ---- */
.popup-overlay {
  position: fixed; inset: 0; background: rgba(8,36,54,.6); backdrop-filter: blur(4px);
  z-index: 600; display: flex; align-items: center; justify-content: center; padding: var(--space-5);
  opacity: 0; pointer-events: none; transition: opacity var(--dur-base) var(--ease);
}
.popup-overlay.show { opacity: 1; pointer-events: auto; }
.popup-card {
  background: var(--white); border-radius: var(--r-lg); max-width: 460px; width: 100%;
  padding: var(--space-7); text-align: center; position: relative; box-shadow: var(--shadow-lg);
  transform: scale(.92) translateY(12px); transition: transform var(--dur-slow) var(--ease);
}
.popup-overlay.show .popup-card { transform: scale(1) translateY(0); }
.popup-close { position: absolute; top: var(--space-4); right: var(--space-4); width: 34px; height: 34px; border-radius: 50%; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; }
.popup-close svg { width: 16px; height: 16px; }
.popup-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--teal-100); color: var(--teal-700); display: flex; align-items: center; justify-content: center; margin: 0 auto var(--space-5); }
.popup-icon svg { width: 30px; height: 30px; }
.popup-card h3 { font-size: 24px; margin-bottom: var(--space-3); }
.popup-card p { color: var(--ink-500); margin-bottom: var(--space-6); }
.popup-actions { display: flex; flex-direction: column; gap: var(--space-3); }

/* ---- Mobile sticky CTA ---- */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 350;
  background: var(--white); border-top: 1px solid var(--line); box-shadow: 0 -6px 20px rgba(10,46,66,.08);
  padding: var(--space-3) var(--space-4); gap: var(--space-3);
}
@media (max-width: 640px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 76px; }
}
.mobile-cta-bar .btn { flex: 1; }

/* ---- Reveal animations ---- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease); }
[data-reveal].in { opacity: 1; transform: translateY(0); }
[data-reveal="scale"] { transform: scale(.94); }
[data-reveal="scale"].in { transform: scale(1); }
.stagger > * { transition-delay: calc(var(--i, 0) * 80ms); }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--primary-800); color: var(--white);
  padding: 12px 20px; z-index: 999; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ---- Image placeholders (replace with real photography) ---- */
.ph {
  width: 100%; height: 100%; min-height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--space-3);
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0px, rgba(255,255,255,.05) 2px, transparent 2px, transparent 14px),
    linear-gradient(150deg, var(--primary-700), var(--teal-600));
  color: rgba(255,255,255,.92);
  text-align: center;
  padding: var(--space-5);
}
.ph.light {
  background:
    repeating-linear-gradient(135deg, rgba(10,46,66,.04) 0px, rgba(10,46,66,.04) 2px, transparent 2px, transparent 14px),
    linear-gradient(150deg, var(--primary-100), var(--teal-100));
  color: var(--primary-700);
}
.ph svg { width: 34px; height: 34px; opacity: .85; }
.ph span { font-size: 12.5px; font-weight: 600; max-width: 220px; line-height: 1.4; opacity: .92; }
.ph.small svg { width: 26px; height: 26px; }
.ph.small span { font-size: 11px; max-width: 160px; }
