/* ================================================================
   MEDICAL LAW TURKEY — Modern Angular White-Dominant Design
   ================================================================ */

:root {
  --navy: #0C1F3F;
  --navy-mid: #163056;
  --navy-light: #1E3A5F;
  --teal: #0E7490;
  --teal-dark: #0B5E75;
  --teal-light: #0891B2;
  --teal-pale: #CFFAFE;
  --teal-bg: #F0FDFA;
  --white: #FFFFFF;
  --off-white: #F8FAFB;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --text: #1A1A2E;
  --text-secondary: #475569;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --border: #E2E8F0;
  --border-light: #F1F5F9;
  --border-teal: rgba(14,116,144,0.12);
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.04), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.06), 0 4px 10px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.08), 0 8px 20px rgba(0,0,0,0.04);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }
ul { list-style: none; }


/* ── SCROLL REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--transition), transform 0.6s var(--transition);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.40s; }

/* ================================================================
   NAV
   ================================================================ */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  background: #ffffff;
  backdrop-filter: none; -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
nav.scrolled {
  border-bottom-color: transparent;
  box-shadow: none;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  height: 64px;
  display: flex; justify-content: space-between; align-items: center;
}
/* ── LOGO: Slater Gordon Inspired ── */
.logo {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none;
}
.logo-cross {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-right: 0.15rem;
}
.logo-text {
  display: flex; flex-direction: column; line-height: 1;
}
.logo-main {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.35rem; font-weight: 800; color: var(--navy);
  line-height: 1.05; letter-spacing: -0.03em;
  text-transform: none;
}
.logo-sub {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.78rem; font-weight: 600; color: var(--teal);
  letter-spacing: 0.06em; margin-top: 0.1rem;
}
.nav-links {
  display: flex; gap: 2rem;
}
.nav-links a {
  color: var(--text-muted); font-size: 0.84rem; font-weight: 500;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0;
  height: 2px; background: var(--teal); transition: width var(--transition);
}
.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--navy); color: white;
  padding: 0.5rem 1.25rem; font-size: 0.84rem; font-weight: 600;
  transition: all var(--transition);
}
.nav-cta:hover {
  background: var(--teal);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  width: 22px; height: 2px; background: var(--navy);
  transition: all var(--transition); display: block;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 32%, rgba(14,116,144,0.04) 0%, transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
}
.hero::before {
  content: none;
  position: absolute;
  top: -2.5rem;
  left: -2.5rem;
  width: 11rem;
  height: 11rem;
  background: linear-gradient(135deg, rgba(14,116,144,0.88) 0%, rgba(8,145,178,0.82) 100%);
  border-radius: 0 0 100% 0;
  pointer-events: none;
  opacity: 0.12;
}
.hero::after {
  content: none;
  position: absolute;
  right: -3rem;
  bottom: -3rem;
  width: 12rem;
  height: 12rem;
  background: linear-gradient(135deg, rgba(14,116,144,0.9) 0%, rgba(8,145,178,0.84) 100%);
  border-radius: 100% 0 0 0;
  pointer-events: none;
  opacity: 0.1;
}
.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 5.35rem 2rem 4.5rem;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 3.5rem;
  align-items: center;
}
.hero-content {
  position: relative;
  max-width: 560px;
}
.hero-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(3rem, 5.4vw, 4.8rem);
  font-weight: 800;
  color: #111827;
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin-bottom: 1.2rem;
  animation: fadeUp 0.6s ease 0.1s both;
}
.hero h1 em {
  color: var(--teal);
  font-style: normal;
  position: relative;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.11em;
  width: 100%;
  height: 0.14em;
  background: rgba(14,116,144,0.22);
  z-index: -1;
}
.hero-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 490px;
  line-height: 1.75;
  margin-bottom: 1.7rem;
  animation: fadeUp 0.6s ease 0.2s both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.6s ease 0.3s both;
  margin-bottom: 1.5rem;
}
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #25D366; color: white;
  padding: 0.85rem 1.5rem; font-weight: 600; font-size: 0.92rem;
  transition: all var(--transition);
}
.btn-whatsapp svg { width: 20px; height: 20px; }
.btn-whatsapp:hover {
  background: #20BD5A; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}
.btn-assess {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--navy); color: white;
  padding: 0.85rem 1.5rem; font-weight: 600; font-size: 0.92rem;
  transition: all var(--transition);
}
.btn-assess:hover {
  background: var(--teal); transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.hero-support-copy {
  max-width: 500px;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1.6rem;
}
.hero-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}
.hero-signal {
  padding: 1rem 1rem 0.95rem;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(14,116,144,0.1);
  box-shadow: var(--shadow-sm);
}
.hero-signal strong,
.hero-signal span {
  display: block;
}
.hero-signal strong {
  font-size: 0.82rem;
  color: var(--navy);
  margin-bottom: 0.22rem;
}
.hero-signal span {
  font-size: 0.74rem;
  color: var(--text-muted);
}
.hero-plus-stage {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-plus-axis {
  position: absolute;
  background: linear-gradient(180deg, rgba(14,116,144,0.12) 0%, rgba(14,116,144,0.05) 100%);
  border-radius: 999px;
  pointer-events: none;
}
.hero-plus-axis-h {
  width: 78%;
  height: 5.4rem;
  left: 11%;
  top: 50%;
  transform: translateY(-50%);
}
.hero-plus-axis-v {
  width: 5.4rem;
  height: 78%;
  top: 11%;
  left: 50%;
  transform: translateX(-50%);
}
.hero-plus-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7rem;
  height: 7rem;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(14,116,144,0.12);
  box-shadow: 0 18px 40px rgba(12,31,63,0.08);
  z-index: 2;
}
.hero-card {
  position: relative;
  z-index: 3;
  overflow: hidden;
  background: #ffffff;
  border: 10px solid #ffffff;
  box-shadow: 0 24px 60px rgba(12,31,63,0.1);
}
.hero-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.16) 100%);
  pointer-events: none;
}
.hero-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.hero-card-main {
  position: absolute;
  top: 3.5rem;
  right: 1rem;
  width: min(72%, 620px);
  aspect-ratio: 1.18 / 1;
}
.hero-card-side-a {
  position: absolute;
  top: 0.8rem;
  left: 0;
  width: min(28%, 220px);
  aspect-ratio: 0.74 / 1;
}
.hero-card-side-b {
  position: absolute;
  left: 4.6rem;
  bottom: 0;
  width: min(36%, 290px);
  aspect-ratio: 1 / 1;
}
.hero-cross-note {
  position: absolute;
  right: 4rem;
  bottom: 1.8rem;
  z-index: 4;
  max-width: 290px;
  padding: 1.15rem 1.2rem;
  background: rgba(255,255,255,0.96);
  border-left: 6px solid var(--teal);
  box-shadow: 0 16px 36px rgba(12,31,63,0.08);
}
.hero-cross-note-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--teal);
  margin-bottom: 0.45rem;
}
.hero-cross-note strong {
  display: block;
  font-size: 1.02rem;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.hero-cross-note p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ================================================================
   SECTIONS — Base
   ================================================================ */
section { padding: 6rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 0.6rem;
}
.section-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 2.4rem; font-weight: 700; color: var(--navy);
  margin-bottom: 0.75rem; line-height: 1.2; letter-spacing: -0.02em;
}
.section-desc {
  color: var(--text-secondary); font-size: 1rem;
  max-width: 640px; line-height: 1.8; margin-bottom: 3rem;
}

/* ================================================================
   SECTION 2: ISSUES (Empathy)
   ================================================================ */
#issues { background: var(--off-white); }
.issues-header {
  display: grid; grid-template-columns: 1fr auto; gap: 3rem;
  align-items: flex-start; margin-bottom: 3rem;
}
.issues-visual {
  display: flex; align-items: center;
}
.issues-visual img {
  width: 320px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 10px solid rgba(255,255,255,0.96);
  box-shadow: 0 24px 60px rgba(12,31,63,0.1);
}
.issues-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.issue-card {
  background: var(--white); border: 1px solid var(--border);
  padding: 1.75rem; transition: all var(--transition);
  position: relative; overflow: hidden;
}
.issue-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0;
  background: var(--teal); transition: height 0.4s var(--transition);
}
.issue-card:hover::before { height: 100%; }
.issue-card:hover {
  box-shadow: var(--shadow-lg); border-color: transparent;
  transform: translateY(-4px);
}
.issue-icon {
  width: 44px; height: 44px;
  background: var(--teal-bg); display: flex; align-items: center;
  justify-content: center; margin-bottom: 1rem; color: var(--teal);
}
.issue-card h3 {
  font-size: 0.95rem; font-weight: 700; color: var(--navy);
  margin-bottom: 0.4rem;
}
.issue-card p {
  font-size: 0.86rem; color: var(--text-muted); line-height: 1.7;
}

/* ================================================================
   SECTION 3: CHECKLIST
   ================================================================ */
#checklist { background: var(--white); }
.checklist-container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem;
  align-items: flex-start;
}
.checklist-box {
  background: var(--gray-50); border: 1px solid var(--border);
  padding: 2.25rem;
}
.checklist-intro {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.88rem; color: var(--text-secondary);
  font-weight: 600; margin-bottom: 1.5rem;
}
.checklist-intro svg { color: var(--teal); flex-shrink: 0; }
.check-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.8rem 0; border-bottom: 1px solid var(--border-light);
  cursor: pointer; transition: background var(--transition);
}
.check-item:hover { background: rgba(14,116,144,0.02); }
.check-item:last-of-type { border-bottom: none; }
.check-box {
  width: 22px; height: 22px; min-width: 22px;
  border: 2px solid var(--border); background: white;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--transition); margin-top: 2px;
}
.check-box.checked {
  background: var(--teal); border-color: var(--teal);
}
.check-box.checked::after {
  content: '✓'; color: white; font-size: 0.72rem; font-weight: 800;
}
.check-text {
  font-size: 0.86rem; color: var(--text); line-height: 1.55;
}
.check-text strong { color: var(--navy); }

.checklist-progress {
  margin-top: 1.5rem; display: flex; align-items: center; gap: 1rem;
}
.progress-bar {
  flex: 1; height: 6px; background: var(--border);
  overflow: hidden;
}
.progress-fill {
  height: 100%; background: var(--teal); width: 0;
  transition: width 0.4s var(--transition);
}
.progress-text {
  font-size: 0.78rem; color: var(--text-muted); font-weight: 500;
  white-space: nowrap;
}

.checklist-result {
  margin-top: 1.25rem; padding: 1.25rem;
  background: white; border: 1px solid var(--border-teal);
  display: none; align-items: flex-start; gap: 0.75rem;
}
.checklist-result.show { display: flex; }
.checklist-result.high { border-color: var(--teal); background: var(--teal-bg); }
.checklist-result .result-icon { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.checklist-result p, .result-text {
  font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6;
}
.checklist-result a { color: var(--teal); font-weight: 600; text-decoration: underline; }

/* Checklist Send Form */
.checklist-send-form {
  background: var(--white); border: 1px solid var(--border);
  padding: 2.25rem;
}
.checklist-send-form h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.25rem; color: var(--navy); margin-bottom: 0.25rem;
}
.checklist-send-form > p {
  font-size: 0.84rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.6;
}
.selected-items-preview {
  margin-bottom: 1.25rem; padding: 1rem;
  background: var(--teal-bg); border: 1px solid var(--border-teal);
  font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6;
}
.selected-items-preview strong { color: var(--navy); display: block; margin-bottom: 0.5rem; }
.selected-items-preview ul {
  list-style: none; display: flex; flex-direction: column; gap: 0.3rem;
}
.selected-items-preview li {
  padding-left: 1rem; position: relative;
}
.selected-items-preview li::before {
  content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700; font-size: 0.75rem;
}
.form-note {
  font-size: 0.72rem; color: var(--text-light); text-align: center;
  margin-top: 0.75rem;
}

/* ================================================================
   SECTION 4: LEGAL PROCESS
   ================================================================ */
#process { background: var(--white); }
.process-header {
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 2.5rem;
  align-items: center;
}
.process-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 130px;
  gap: 1rem;
  align-items: end;
}
.process-visual-main,
.process-visual-side {
  overflow: hidden;
  background: #ffffff;
  border: 8px solid rgba(255,255,255,0.98);
  box-shadow: 0 22px 50px rgba(12,31,63,0.1);
}
.process-visual-main img,
.process-visual-side img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.process-visual-main {
  aspect-ratio: 1.28 / 1;
}
.process-visual-side {
  aspect-ratio: 0.72 / 1;
  transform: translateY(2.2rem);
}
.process-timeline {
  position: relative;
  display: flex; flex-direction: column; gap: 0;
}
.process-timeline::before {
  content: ''; position: absolute; left: 39px; top: 0; bottom: 0;
  width: 2px; background: var(--border);
}
.process-step {
  display: flex; gap: 2rem; padding: 2rem 0;
  position: relative;
}
.process-step:first-child { padding-top: 0; }
.process-step:last-child { padding-bottom: 0; }
.step-number {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem; font-weight: 700; color: var(--white);
  background: var(--navy); width: 48px; height: 48px;
  min-width: 48px;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
  transition: all var(--transition);
}
.process-step:hover .step-number {
  background: var(--teal);
  transform: scale(1.05);
}
.step-content {
  flex: 1; padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
}
.process-step:last-child .step-content { border-bottom: none; padding-bottom: 0; }
.step-content h3 {
  font-size: 1.15rem; font-weight: 700; color: var(--navy);
  margin-bottom: 0.5rem;
}
.step-content p {
  font-size: 0.9rem; color: var(--text-secondary); line-height: 1.8;
  margin-bottom: 1rem;
}
.step-highlight {
  display: flex; align-items: flex-start; gap: 0.5rem;
  padding: 0.75rem 1rem; background: var(--teal-bg);
  border-left: 3px solid var(--teal);
  font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6;
}
.step-highlight svg { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.step-highlight strong { color: var(--navy); }

.process-cta {
  margin-top: 3rem; padding: 2rem;
  background: var(--navy); text-align: center;
}
.process-cta p {
  color: rgba(255,255,255,0.7); font-size: 0.95rem;
  margin-bottom: 1rem;
}
.process-cta .btn-assess {
  background: var(--teal);
}
.process-cta .btn-assess:hover {
  background: var(--teal-light);
}

/* ================================================================
   SECTION 5: FAQ
   ================================================================ */
#faq { background: var(--off-white); }
.faq-list { max-width: 780px; }
.faq-item {
  background: var(--white); border: 1px solid var(--border);
  margin-bottom: 0.75rem; overflow: hidden;
  transition: all var(--transition);
}
.faq-item:hover { border-color: var(--teal); }
.faq-q {
  padding: 1.25rem 1.5rem; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.faq-q h4 {
  font-size: 0.95rem; font-weight: 600; color: var(--navy);
  transition: color var(--transition);
}
.faq-icon {
  color: var(--teal); transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-a p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.88rem; color: var(--text-secondary); line-height: 1.85;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open { border-color: var(--teal); }
.faq-item.open .faq-q h4 { color: var(--teal); }

/* ================================================================
   SECTION 6: ABOUT
   ================================================================ */
#about { background: var(--white); }
.about-intro {
  margin-bottom: 3rem; padding: 1.75rem;
  background: var(--gray-50); border-left: 4px solid var(--teal);
}
.about-intro p {
  font-size: 0.92rem; color: var(--text-secondary); line-height: 1.85;
}
.about-intro strong { color: var(--navy); }
.profiles-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.profile-card {
  background: var(--off-white); border: 1px solid var(--border);
  padding: 2rem; transition: all var(--transition);
}
.profile-card:hover {
  box-shadow: var(--shadow-lg); border-color: var(--teal);
  transform: translateY(-4px);
}
.profile-initials {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 0.95rem;
  margin-bottom: 1.25rem;
}
.profile-card h3 {
  font-size: 1.05rem; font-weight: 700; color: var(--navy);
  margin-bottom: 0.2rem;
}
.profile-title {
  font-size: 0.82rem; color: var(--teal); font-weight: 500;
  margin-bottom: 1rem;
}
.capabilities-list {
  display: flex; flex-direction: column; gap: 0.5rem;
}
.capabilities-list li {
  font-size: 0.84rem; color: var(--text-muted); padding-left: 1.25rem;
  position: relative; line-height: 1.6;
}
.capabilities-list li::before {
  content: ''; position: absolute; left: 0; top: 0.5rem;
  width: 6px; height: 6px; background: var(--teal);
}

.profile-credentials {
  display: flex; gap: 0.6rem; margin-top: 1.25rem; flex-wrap: wrap;
}
.credential-badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.35rem 0.65rem; background: rgba(14,116,144,0.06);
  border: 1px solid rgba(14,116,144,0.12); border-radius: 4px;
  font-size: 0.72rem; font-weight: 700; color: var(--navy);
}
.credential-badge svg { color: var(--teal); }

.eeat-trust-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem; margin-top: 3.5rem; padding-top: 2.5rem;
  border-top: 1px solid rgba(14,116,144,0.1);
}
.eeat-badge {
  display: flex; align-items: flex-start; gap: 0.8rem;
  transition: transform var(--transition);
}
a.eeat-badge:hover {
  transform: translateY(-2px);
}
.eeat-badge svg {
  color: var(--teal); flex-shrink: 0; margin-top: 0.15rem;
}
.eeat-badge div { display: flex; flex-direction: column; gap: 0.2rem; }
.eeat-badge strong { font-size: 0.88rem; color: var(--navy); line-height: 1.2; }
.eeat-badge span { font-size: 0.78rem; color: var(--text-muted); line-height: 1.35; }

/* ================================================================
   SECTION 7: CONTACT
   ================================================================ */
#contact { background: var(--off-white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
}
.contact-left h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2.2rem; font-weight: 700; color: var(--navy);
  margin-bottom: 1rem; line-height: 1.2;
}
.contact-left p {
  color: var(--text-secondary); font-size: 0.95rem;
  line-height: 1.8; margin-bottom: 2rem;
}
.contact-channels {
  display: flex; flex-direction: column; gap: 0.75rem;
}
.channel {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1rem 1.25rem; background: var(--white);
  border: 1px solid var(--border); transition: all var(--transition);
  cursor: default;
}
a.channel { cursor: pointer; }
.channel:hover {
  border-color: var(--teal); box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.channel-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.channel-icon.wa { background: rgba(14,116,144,0.08); color: var(--teal); }
.channel-icon.email { background: var(--teal-bg); color: var(--teal); }
.channel-icon.phone { background: rgba(12,31,63,0.05); color: var(--navy); }
.channel-text strong {
  display: block; font-size: 0.88rem; color: var(--navy);
}
.channel-text span {
  font-size: 0.82rem; color: var(--text-muted);
}

/* Contact Form */
.contact-form {
  background: var(--white); padding: 2.25rem;
  border: 1px solid var(--border); box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.3rem; color: var(--navy); margin-bottom: 0.3rem;
}
.contact-form > p {
  font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.5rem;
}

/* Form Styles (shared) */
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block; font-size: 0.78rem; font-weight: 600;
  color: var(--navy); margin-bottom: 0.3rem;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.75rem 1rem;
  border: 1px solid var(--border); background: var(--gray-50);
  font-family: 'Open Sans', sans-serif; font-size: 0.88rem;
  color: var(--text); outline: none;
  transition: all var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14,116,144,0.08);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }

.form-consent {
  display: flex; align-items: flex-start; gap: 0.6rem;
  margin-bottom: 1.25rem; cursor: pointer;
}
.form-consent input { display: none; }
.consent-mark {
  width: 18px; height: 18px; min-width: 18px;
  border: 2px solid var(--border); background: white;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); margin-top: 2px;
}
.form-consent input:checked ~ .consent-mark {
  background: var(--teal); border-color: var(--teal);
}
.form-consent input:checked ~ .consent-mark::after {
  content: '✓'; color: white; font-size: 0.6rem; font-weight: 800;
}
.consent-label {
  font-size: 0.76rem; color: var(--text-muted); line-height: 1.5;
}
.consent-label a { color: var(--teal); text-decoration: underline; }
.consent-label em { font-size: 0.7rem; color: var(--text-light); }

.btn-submit {
  width: 100%; padding: 0.85rem;
  background: var(--navy); color: white; border: none;
  font-family: 'Open Sans', sans-serif; font-size: 0.92rem;
  font-weight: 600; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: all var(--transition);
}
.btn-submit:hover {
  background: var(--teal); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14,116,144,0.25);
}

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: var(--navy); padding: 4rem 2rem 2rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 3rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
/* ── Footer Logo: Matches Nav Logo ── */
.footer-logo-wrap {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.footer-cross {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer-logo-text {
  display: flex; flex-direction: column; line-height: 1;
}
.footer-logo-main {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.15rem; font-weight: 800; color: white;
  line-height: 1.05; letter-spacing: -0.02em;
}
.footer-logo-sub {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.72rem; font-weight: 600; color: var(--teal-light);
  letter-spacing: 0.06em; margin-top: 0.1rem;
}
.footer-brand p {
  color: rgba(255,255,255,0.45); font-size: 0.82rem; line-height: 1.7;
  max-width: 340px;
}

.footer-nav {
  column-count: 2; column-gap: 2rem;
}
.footer-nav h4 { column-span: all; margin-bottom: 1rem; }
.footer-nav a { break-inside: avoid; }

.footer-nav h4, .footer-legal h4 {
  color: rgba(255,255,255,0.6); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-nav a, .footer-legal a {
  display: block; color: rgba(255,255,255,0.4);
  font-size: 0.82rem; padding: 0.35rem 0;
  transition: color var(--transition);
}
.footer-nav a:hover, .footer-legal a:hover {
  color: var(--teal-light);
}
.footer-bottom {
  padding-top: 2rem; text-align: center;
}
.footer-bottom p {
  color: rgba(255,255,255,0.4); font-size: 0.78rem; line-height: 1.7;
}
.footer-disclaimer {
  margin-top: 1rem; max-width: 680px;
  margin-left: auto; margin-right: auto;
  font-size: 0.72rem !important; color: rgba(255,255,255,0.3) !important;
  line-height: 1.7 !important;
}

/* ================================================================
   FLOATING WHATSAPP
   ================================================================ */
.floating-whatsapp {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 90;
  width: 56px; height: 56px;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
  transition: all var(--transition);
  animation: pulse 2s infinite;
}
.floating-whatsapp:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.45);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.35); }
  50% { box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
}

/* ================================================================
   COOKIE BANNER
   ================================================================ */
.cookie-banner {
  position: fixed; bottom: -100%; left: 0; right: 0; z-index: 200;
  background: var(--navy); border-top: 1px solid rgba(14,116,144,0.2);
  padding: 1rem 2rem; box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
  transition: bottom 0.5s var(--transition);
}
.cookie-banner.active { bottom: 0; }
.cookie-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 280px; }
.cookie-text strong { color: white; font-size: 0.88rem; }
.cookie-text p {
  color: rgba(255,255,255,0.5); font-size: 0.78rem;
  margin: 0.2rem 0 0; line-height: 1.5;
}
.cookie-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }
.cookie-btn-reject, .cookie-btn-accept {
  padding: 0.55rem 1rem; font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem; cursor: pointer; border: none;
}
.cookie-btn-reject {
  background: transparent; color: white;
  border: 1px solid rgba(255,255,255,0.2); font-weight: 500;
}
.cookie-btn-accept {
  background: var(--teal); color: white; font-weight: 600;
}

/* ================================================================
   SUCCESS MODAL
   ================================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-content {
  background: white; padding: 3rem; max-width: 440px; width: 90%;
  text-align: center;
  transform: scale(0.95); transition: transform var(--transition);
}
.modal-overlay.active .modal-content { transform: scale(1); }
.modal-icon { color: var(--teal); margin-bottom: 1.25rem; }
.modal-content h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.3rem; color: var(--navy); margin-bottom: 0.5rem;
}
.modal-content p {
  font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ================================================================
   SECTION: SPECIALIZATIONS
   ================================================================ */
#specializations { background: var(--white); }
.spec-page-hero {
  padding: 6.6rem 2rem 2.8rem;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}
.spec-page-hero::before {
  content: '';
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(14,116,144,0.12) 22%, rgba(14,116,144,0.12) 78%, transparent 100%);
}
.spec-page-hero::after {
  content: none;
}
.spec-page-hero .section-title {
  font-size: 2.9rem;
  line-height: 1.1;
  margin-bottom: 0.9rem;
}
.spec-page-hero .section-inner {
  position: relative;
  z-index: 1;
}
.spec-hero-inner {
  display: flex;
  justify-content: center;
}
.spec-hero-copy {
  max-width: 760px;
  text-align: center;
}
.spec-page-hero .section-desc {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.9rem;
  text-align: center;
}
.spec-page-hero + #specializations {
  padding-top: 2rem !important;
}
.specializations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.65rem;
}
.specialization-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(240,253,250,0.88) 100%);
  border: 1px solid rgba(14,116,144,0.1);
  padding: 1.4rem 1.2rem 1.25rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition: all var(--transition);
  text-decoration: none;
  min-height: 170px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(12,31,63,0.05);
}
.specialization-card::before {
  content: '';
  position: absolute;
  inset: -20% auto auto -8%;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,116,144,0.18) 0%, rgba(14,116,144,0.04) 55%, transparent 72%);
  transition: transform 0.45s var(--transition), opacity 0.45s var(--transition);
}
.specialization-card::after {
  content: '';
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 1.9rem;
  height: 1.9rem;
  opacity: 0.18;
  background:
    linear-gradient(var(--teal), var(--teal)) center/100% 4px no-repeat,
    linear-gradient(var(--teal), var(--teal)) center/4px 100% no-repeat;
  transition: transform 0.4s var(--transition), opacity 0.4s var(--transition);
}
.specialization-card:hover {
  box-shadow: 0 22px 55px rgba(12,31,63,0.12);
  border-color: rgba(14,116,144,0.22);
  transform: translateY(-6px);
}
.specialization-card:hover::before {
  transform: scale(1.15);
}
.specialization-card:hover::after {
  opacity: 0.32;
  transform: rotate(90deg);
}
.spec-icon {
  position: relative;
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(14,116,144,0.16) 0%, rgba(8,145,178,0.3) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.65),
    0 12px 24px rgba(14,116,144,0.12);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: specFloat 4s ease-in-out infinite;
}
.spec-icon::before,
.spec-icon::after {
  content: '';
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
}
.spec-icon::before {
  width: 28px;
  height: 28px;
  background: var(--navy);
  opacity: 0.96;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
.spec-icon::after {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(14,116,144,0.16);
  border-radius: 20px;
  animation: specPulse 3.2s ease-in-out infinite;
}
.specialization-card:hover .spec-icon {
  transform: translateY(-4px) scale(1.06);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.65),
    0 16px 30px rgba(14,116,144,0.2);
}
.specialization-card h3 {
  max-width: 14ch;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  transition: color var(--transition);
}
.specialization-card:hover h3 {
  color: var(--teal);
}

/* ================================================================
   CASE STUDY GRID (articles.html)
   ================================================================ */
.cs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.cs-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.6rem 1.5rem 1.4rem;
  text-decoration: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.cs-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--teal);
  border-radius: 0 0 4px 0;
  transition: height 0.4s var(--transition);
}
.cs-card:hover {
  border-color: rgba(14,116,144,0.22);
  box-shadow: 0 16px 40px rgba(12,31,63,0.08);
  transform: translateY(-4px);
}
.cs-card:hover::before {
  height: 100%;
}
.cs-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  background: rgba(14,116,144,0.08);
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cs-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  transition: color var(--transition);
}
.cs-card:hover h3 {
  color: var(--teal);
}
.cs-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.cs-read {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  margin-top: 0.3rem;
  transition: transform var(--transition), color var(--transition);
  display: inline-block;
}
.cs-card:hover .cs-read {
  transform: translateX(4px);
  color: var(--teal-dark);
}
@media (max-width: 640px) {
  .cs-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ================================================================
   CASE STUDIES — DETAIL PAGE
   ================================================================ */
.case-page-hero {
  padding: 6.6rem 2rem 2.4rem;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}
.case-page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(14,116,144,0.12) 25%, rgba(14,116,144,0.12) 75%, transparent 100%);
}
.case-hero-copy {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.case-hero-copy .section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}
.case-hero-copy .section-title {
  font-size: clamp(1.65rem, 3.2vw, 2.4rem);
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.18;
  letter-spacing: -0.025em;
}
.case-hero-copy .section-desc {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
}
.case-meta {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}
.case-pill {
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  background: rgba(14,116,144,0.06);
  border: 1px solid rgba(14,116,144,0.1);
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.case-page-body {
  padding: 2.5rem 2rem 5rem;
  background: var(--off-white);
}
.case-page-layout {
  max-width: 1100px;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.85fr);
  gap: 2rem;
  align-items: start;
}
.case-article,
.case-sidebar {
  display: grid;
  gap: 1.4rem;
}
.case-sidebar {
  position: sticky;
  top: 5.5rem;
}
.case-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(12,31,63,0.04);
  padding: 1.75rem 1.6rem;
  position: relative;
  overflow: hidden;
}
.case-article .case-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--teal) 0%, rgba(14,116,144,0.3) 100%);
  border-radius: 0 2px 2px 0;
}
.case-card h2 {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.case-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.85rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}
.case-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.8;
}
.case-card p + p {
  margin-top: 0.9rem;
}
.case-card li {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.75;
}
.case-list,
.case-reference-list {
  display: grid;
  gap: 0.65rem;
  padding-left: 1.2rem;
  list-style: none;
}
.case-list li,
.case-reference-list li {
  position: relative;
  padding-left: 0.2rem;
}
.case-list li::before {
  content: '';
  position: absolute;
  left: -1rem;
  top: 0.55em;
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
}
.case-reference-list li::before {
  content: '';
  position: absolute;
  left: -1rem;
  top: 0.55em;
  width: 6px; height: 6px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  background: transparent;
}
.case-reference-list a {
  color: var(--teal-dark);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(14,116,144,0.2);
  transition: color var(--transition), border-color var(--transition);
}
.case-reference-list a:hover {
  color: var(--teal);
  border-bottom-color: var(--teal);
}
.case-note {
  margin-top: 1rem;
  border-left: 4px solid var(--teal);
  padding: 1rem 1.15rem;
  background: linear-gradient(135deg, rgba(14,116,144,0.05) 0%, rgba(14,116,144,0.02) 100%);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.65;
  border-radius: 0 10px 10px 0;
}
.case-timeline {
  display: grid;
  gap: 0;
  counter-reset: step;
}
.case-step {
  counter-increment: step;
  position: relative;
  padding: 1rem 1rem 1rem 3.2rem;
  border-left: 2px solid rgba(14,116,144,0.12);
  margin-left: 0.85rem;
}
.case-step:last-child {
  border-left-color: transparent;
}
.case-step::before {
  content: counter(step);
  position: absolute;
  left: -0.95rem;
  top: 0.85rem;
  width: 1.7rem; height: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: white;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(14,116,144,0.25);
}
.case-step strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}
.case-step span,
.case-step:not(:has(span)) {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.case-sidebar .case-card {
  border-radius: 14px;
  background: linear-gradient(180deg, var(--white) 0%, rgba(240,253,250,0.5) 100%);
}
.case-sidebar .case-card h3 {
  font-size: 0.92rem;
  border-bottom-color: rgba(14,116,144,0.08);
}

#specArmLift .spec-icon::before,
#specLegLift .spec-icon::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M7 5c2 1 3 3 3 5v3'/><path d='M10 13c0 3 2 5 5 6'/><path d='M15 19c2 0 3-1 4-3'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M7 5c2 1 3 3 3 5v3'/><path d='M10 13c0 3 2 5 5 6'/><path d='M15 19c2 0 3-1 4-3'/></svg>");
}
#specBBL .spec-icon::before,
#specLiposuction .spec-icon::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M8 5c-1 2-1 4 0 6'/><path d='M16 5c1 2 1 4 0 6'/><path d='M8 11c0 5 2 8 4 8s4-3 4-8'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M8 5c-1 2-1 4 0 6'/><path d='M16 5c1 2 1 4 0 6'/><path d='M8 11c0 5 2 8 4 8s4-3 4-8'/></svg>");
}
#specBirthInjury .spec-icon::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='9' r='3'/><path d='M8 19c1-3 3-4 4-4s3 1 4 4'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='9' r='3'/><path d='M8 19c1-3 3-4 4-4s3 1 4 4'/></svg>");
}
#specBreastAug .spec-icon::before,
#specBreastLift .spec-icon::before,
#specBreastReduction .spec-icon::before,
#specGynecomastia .spec-icon::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M6 15c1-4 3-6 6-6s5 2 6 6'/><path d='M8 15c0 2 1 4 4 4s4-2 4-4'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M6 15c1-4 3-6 6-6s5 2 6 6'/><path d='M8 15c0 2 1 4 4 4s4-2 4-4'/></svg>");
}
#specDental .spec-icon::before,
#specHollywoodSmile .spec-icon::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M8 4c2 0 2 1 4 1s2-1 4-1c2 0 4 2 4 5 0 6-3 11-5 11-1 0-1-2-3-2s-2 2-3 2c-2 0-5-5-5-11 0-3 2-5 4-5z'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M8 4c2 0 2 1 4 1s2-1 4-1c2 0 4 2 4 5 0 6-3 11-5 11-1 0-1-2-3-2s-2 2-3 2c-2 0-5-5-5-11 0-3 2-5 4-5z'/></svg>");
}
#specEarLift .spec-icon::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 4c4 0 6 3 6 6 0 2-1 3-2 4-1 1-1 2-1 3 0 2-1 3-3 3'/><path d='M12 7c-2 0-3 2-3 3'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 4c4 0 6 3 6 6 0 2-1 3-2 4-1 1-1 2-1 3 0 2-1 3-3 3'/><path d='M12 7c-2 0-3 2-3 3'/></svg>");
}
#specEye .spec-icon::before,
#specEyelid .spec-icon::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M2 12s4-6 10-6 10 6 10 6-4 6-10 6S2 12 2 12z'/><circle cx='12' cy='12' r='2.5'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M2 12s4-6 10-6 10 6 10 6-4 6-10 6S2 12 2 12z'/><circle cx='12' cy='12' r='2.5'/></svg>");
}
#specFrenchSling .spec-icon::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M7 16c2 1 4 2 5 2 3 0 5-2 5-5'/><path d='M6 11c1-3 3-5 6-5 2 0 4 1 5 3'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M7 16c2 1 4 2 5 2 3 0 5-2 5-5'/><path d='M6 11c1-3 3-5 6-5 2 0 4 1 5 3'/></svg>");
}
#specHairTransplant .spec-icon::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M7 16c0-5 2-8 5-8s5 3 5 8'/><path d='M9 7c0-2 1-3 3-3s3 1 3 3'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M7 16c0-5 2-8 5-8s5 3 5 8'/><path d='M9 7c0-2 1-3 3-3s3 1 3 3'/></svg>");
}
#specHairTransplantArticle .spec-icon::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M7 16c0-5 2-8 5-8s5 3 5 8'/><path d='M9 7c0-2 1-3 3-3s3 1 3 3'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M7 16c0-5 2-8 5-8s5 3 5 8'/><path d='M9 7c0-2 1-3 3-3s3 1 3 3'/></svg>");
}
#specIVF .spec-icon::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M9 4v9'/><path d='M15 4v9'/><path d='M6 10c0 5 3 8 6 8s6-3 6-8'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M9 4v9'/><path d='M15 4v9'/><path d='M6 10c0 5 3 8 6 8s6-3 6-8'/></svg>");
}
#specIVFArticle .spec-icon::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M9 4v9'/><path d='M15 4v9'/><path d='M6 10c0 5 3 8 6 8s6-3 6-8'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M9 4v9'/><path d='M15 4v9'/><path d='M6 10c0 5 3 8 6 8s6-3 6-8'/></svg>");
}
#specNonSurgical .spec-icon::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M5 19l6-6'/><path d='M13 11l6-6'/><path d='M14 6l4 4'/><path d='M4 20l4-4'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M5 19l6-6'/><path d='M13 11l6-6'/><path d='M14 6l4 4'/><path d='M4 20l4-4'/></svg>");
}
#specChecklistArticle .spec-icon::before,
#specProcessArticle .spec-icon::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M9 7h8'/><path d='M9 12h8'/><path d='M9 17h8'/><path d='M5 7h.01'/><path d='M5 12h.01'/><path d='M5 17h.01'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M9 7h8'/><path d='M9 12h8'/><path d='M9 17h8'/><path d='M5 7h.01'/><path d='M5 12h.01'/><path d='M5 17h.01'/></svg>");
}
#specRhinoplasty .spec-icon::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M11 4c1 4 1 8 2 11'/><path d='M13 15c0 2-1 3-3 3'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M11 4c1 4 1 8 2 11'/><path d='M13 15c0 2-1 3-3 3'/></svg>");
}
#specRhinoplastyArticle .spec-icon::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M11 4c1 4 1 8 2 11'/><path d='M13 15c0 2-1 3-3 3'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M11 4c1 4 1 8 2 11'/><path d='M13 15c0 2-1 3-3 3'/></svg>");
}
#specDentalArticle .spec-icon::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M8 4c2 0 2 1 4 1s2-1 4-1c2 0 4 2 4 5 0 6-3 11-5 11-1 0-1-2-3-2s-2 2-3 2c-2 0-5-5-5-11 0-3 2-5 4-5z'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M8 4c2 0 2 1 4 1s2-1 4-1c2 0 4 2 4 5 0 6-3 11-5 11-1 0-1-2-3-2s-2 2-3 2c-2 0-5-5-5-11 0-3 2-5 4-5z'/></svg>");
}

@keyframes specFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes specPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.55; }
  50% { transform: translate(-50%, -50%) scale(1.06); opacity: 0.2; }
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   RESPONSIVE — TABLET
   ================================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-content {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-sub,
  .hero-support-copy { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-signals { width: 100%; }
  .hero-plus-stage {
    width: min(100%, 760px);
    margin: 0 auto;
  }
  .hero-card-main { right: 1.5rem; }
  .hero-card-side-a { left: 1rem; }
  .hero-card-side-b { left: 5.6rem; }
  .hero-cross-note { right: 3rem; }
  .issues-header { grid-template-columns: 1fr; text-align: center; }
  .issues-visual {
    justify-content: center;
    margin-top: 0.5rem;
  }
  .issues-visual img {
    width: min(100%, 420px);
    aspect-ratio: 16 / 10;
  }
  .issues-grid { grid-template-columns: repeat(2, 1fr); }
  .process-header {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .process-visual {
    max-width: 620px;
    margin: 0 auto;
  }
  .case-page-layout { grid-template-columns: 1fr; }
  .checklist-container { grid-template-columns: 1fr; }
  .profiles-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}

/* ================================================================
   RESPONSIVE — MOBILE
   ================================================================ */
@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.active {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: white; padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    gap: 0.75rem;
    animation: fadeUp 0.3s ease;
  }
  .nav-links.active a { font-size: 0.95rem; padding: 0.5rem 0; }
  
  .hero h1 { font-size: 2rem; }
  .hero-inner { padding: 5.25rem 1.25rem 4rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; }
  .hero-signals { grid-template-columns: 1fr; }
  .hero-plus-stage {
    min-height: 610px;
    padding-top: 1rem;
  }
  .hero-plus-axis-h {
    width: 88%;
    height: 4.25rem;
    left: 6%;
  }
  .hero-plus-axis-v {
    width: 4.25rem;
    height: 84%;
    top: 8%;
  }
  .hero-plus-core {
    width: 5.6rem;
    height: 5.6rem;
  }
  .hero-card {
    border-width: 7px;
  }
  .case-page-hero,
  .case-page-body {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .case-card { padding: 1.2rem; }
  .hero-card-main {
    top: 2.25rem;
    right: 0.3rem;
    width: 78%;
  }
  .hero-card-side-a {
    left: 0;
    top: 0.5rem;
    width: 31%;
  }
  .hero-card-side-b {
    left: 2.5rem;
    bottom: 1rem;
    width: 40%;
  }
  .hero-cross-note {
    right: 0.6rem;
    bottom: 0;
    max-width: 220px;
    padding: 0.9rem 0.95rem;
  }
  
  section { padding: 4rem 1.25rem; }
  .section-title { font-size: 1.75rem; }
  
  .issues-grid { grid-template-columns: 1fr; }
  .issues-visual img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-width: 7px;
  }
  .process-visual {
    grid-template-columns: 1fr;
  }
  .process-visual-side {
    display: none;
  }
  
  .process-timeline::before { left: 23px; }
  .step-number { width: 36px; height: 36px; min-width: 36px; font-size: 0.88rem; }
  .process-step { gap: 1rem; }
  
  .form-row { grid-template-columns: 1fr; }
  
  .contact-left h2 { font-size: 1.75rem; }
  
  .floating-whatsapp { bottom: 1.25rem; right: 1.25rem; width: 50px; height: 50px; }
  .floating-whatsapp svg { width: 24px; height: 24px; }
}

/* ================================================================
   PRINT
   ================================================================ */
@media print {
  nav, .floating-whatsapp, .cookie-banner, .modal-overlay { display: none !important; }
  body { font-size: 12pt; color: black; }
  section { page-break-inside: avoid; }
}
