/* =============================================
   C & H DENTAL LABORATORY
   Design System & Complete Stylesheet
   ============================================= */

/* --- CSS Custom Properties --- */
:root {
  /* Brand — Letterhead palette */
  --navy: #003c8b;
  --navy-light: #002d6a;
  --navy-dark: #002d6a;
  --gold: #a6d0d5;
  --gold-light: #bdd5d6;
  --gold-dark: #003c8b;
  --white: #ffffff;
  --off-white: #daf1f4;
  --grey-50: #f4f4f6;
  --grey-100: #d9d9d9;
  --grey-200: #d9d9d9;
  --grey-300: #b0b0bc;
  --grey-400: #666666;
  --grey-500: #666666;
  --grey-600: #52525e;
  --grey-700: #1a1a1a;
  --grey-800: #1a1a1a;

  /* Semantic */
  --text-heading: var(--navy);
  --text-body: var(--grey-700);
  --text-muted: var(--grey-400);
  --bg-primary: var(--white);
  --bg-alt: var(--grey-50);
  --accent: var(--gold);
  --accent-hover: var(--gold-dark);

  /* Typography */
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 1.875rem;
  --fs-4xl: 2.25rem;
  --fs-5xl: 3rem;
  --fs-6xl: 3.75rem;

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Layout */
  --max-w: 1200px;
  --nav-h: 72px;

  /* Effects */
  --shadow-sm: 0 1px 3px rgba(0, 60, 139, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 60, 139, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 60, 139, 0.1);
  --shadow-xl: 0 16px 48px rgba(0, 60, 139, 0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 250ms ease;
  --transition-fast: 150ms ease;
}

/* --- Reset --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--text-body);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
}

body.menu-open,
body.panel-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul,
ol {
  list-style: none;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font);
  color: var(--text-heading);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  :root {
    --fs-2xl: 1.25rem;
    --fs-3xl: 1.5rem;
    --fs-4xl: 1.875rem;
    --fs-5xl: 2.25rem;
    --fs-6xl: 2.75rem;
  }
}

h1 {
  font-size: var(--fs-5xl);
}

h2 {
  font-size: var(--fs-4xl);
}

h3 {
  font-size: var(--fs-2xl);
}

h4 {
  font-size: var(--fs-xl);
}

.section-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: var(--sp-3);
  display: block;
}

.section-title {
  font-size: var(--fs-4xl);
  margin-bottom: var(--sp-4);
}

.section-desc {
  font-size: var(--fs-lg);
  color: var(--grey-500);
  max-width: 640px;
  line-height: 1.8;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

section {
  padding: var(--sp-20) 0;
}

.bg-alt {
  background: var(--bg-alt);
}

.bg-navy {
  background: var(--navy);
  color: var(--white);
}

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 14px 28px;
  font-family: var(--font);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.btn-gold {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-gold:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0, 60, 139, 0.35);
}

.btn-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--grey-200);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.btn-sm {
  padding: 10px 20px;
  font-size: var(--fs-xs);
}

.btn-full {
  width: 100%;
}

/* =============================================
   NAVIGATION
   ============================================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: all var(--transition);
  background: transparent;
}

.nav.scrolled {
  background: var(--navy);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: var(--fs-lg);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-logo .amp {
  color: var(--gold);
  font-weight: 300;
  margin: 0 1px;
}

.nav.scrolled .nav-logo {
  color: var(--white);
}

.nav-links {
  display: none;
  align-items: center;
  gap: var(--sp-1);
}

.nav-link {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-link:hover {
  color: var(--white);
}

.nav.scrolled .nav-link {
  color: rgba(255, 255, 255, 0.8);
}

.nav.scrolled .nav-link:hover {
  color: var(--white);
}

.nav-link.active {
  color: var(--white);
}

.nav.scrolled .nav-link.active {
  color: var(--white);
}

.nav-cta-btn {
  display: none;
  font-size: var(--fs-sm);
  font-weight: 600;
  padding: 10px 22px;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.nav-cta-btn:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy);
}

.nav.scrolled .nav-cta-btn {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  padding: 2px;
  z-index: 1001;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav.scrolled .mobile-toggle span {
  background: var(--white);
}

.mobile-toggle.active span {
  background: var(--white) !important;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-links {
  text-align: center;
}

.mobile-menu-links li {
  margin-bottom: var(--sp-6);
}

.mobile-menu-links a {
  font-size: var(--fs-3xl);
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition-fast);
}

.mobile-menu-links a:hover {
  color: var(--gold);
}

.mobile-menu-links .mobile-cta-link {
  display: inline-block;
  margin-top: var(--sp-4);
  padding: 14px 32px;
  background: var(--white);
  color: var(--navy);
  font-size: var(--fs-base);
  font-weight: 700;
  border-radius: var(--radius-sm);
}

/* Nav Dropdown */
.nav-dropdown-parent {
  position: relative;
}

.nav-chevron {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
  margin-left: 2px;
  transition: transform var(--transition-fast);
}

.nav-dropdown-parent:hover .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-2) 0;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  pointer-events: none;
  margin-top: var(--sp-2);
  z-index: 1001;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-dropdown-parent:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-dropdown li {
  margin: 0;
}

.nav-dropdown a {
  display: block;
  padding: var(--sp-2) var(--sp-5);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--grey-500);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-dropdown a:hover,
.nav-dropdown a.active {
  color: var(--navy);
  background: var(--grey-50);
}

/* Mobile Dropdown */
.mobile-dropdown {
  padding: var(--sp-3) 0 0;
}

.mobile-dropdown li {
  margin-bottom: var(--sp-3);
}

.mobile-dropdown a {
  font-size: var(--fs-lg) !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.6) !important;
}

.mobile-dropdown a:hover {
  color: var(--gold) !important;
}

/* Breadcrumb Link */
.breadcrumb-link {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--gold);
  margin-bottom: var(--sp-4);
  transition: color var(--transition-fast);
}

.breadcrumb-link:hover {
  color: var(--gold-dark);
}

.page-header .breadcrumb-link {
  color: rgba(255, 255, 255, 0.7);
}

.page-header .breadcrumb-link:hover {
  color: var(--white);
}

/* Sub-page CTA Row */
.subpage-cta-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  margin-top: var(--sp-12);
}

@media (min-width: 768px) {
  .subpage-cta-row {
    grid-template-columns: 1fr 1fr;
  }
}

.subpage-cta-row .mid-page-cta,
.subpage-cta-row .price-cta-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: var(--sp-8);
}

/* =============================================
   HERO
   ============================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--sp-24) var(--sp-6);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/hero.jpg') center center / cover no-repeat;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 20, 50, 0.55);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 20, 50, 0.3) 0%, transparent 40%, transparent 60%, rgba(0, 20, 50, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: var(--sp-6);
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.15s;
}

.hero-title {
  font-size: var(--fs-5xl);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--sp-6);
  letter-spacing: -0.03em;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.3s;
}

.hero-sub {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.6);
  max-width: 580px;
  margin: 0 auto var(--sp-10);
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.45s;
}

.hero-ctas {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.6s;
}

.hero-scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.9s;
}

.hero-scroll span {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* =============================================
   TECHNOLOGY PARTNERS BAR
   ============================================= */

.partners-bar {
  padding: var(--sp-12) 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--grey-100);
}

.partners-caption {
  text-align: center;
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--grey-400);
  margin-bottom: var(--sp-6);
}

.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-10);
  flex-wrap: wrap;
}

.partner-logo {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--grey-300);
  letter-spacing: 0.04em;
  transition: color var(--transition);
  white-space: nowrap;
}

.partner-logo:hover {
  color: var(--grey-600);
}

/* =============================================
   SERVICES OVERVIEW GRID
   ============================================= */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  margin-top: var(--sp-10);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 0;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.service-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.service-card-body {
  padding: var(--sp-6) var(--sp-8) var(--sp-8);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), #0050b3);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  border-color: var(--grey-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
  margin-top: var(--sp-1);
  color: var(--gold);
}

.service-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.service-card h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-3);
}

.service-card p {
  font-size: var(--fs-sm);
  color: var(--grey-500);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}

.service-card-arrow {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  transition: gap var(--transition);
}

.service-card:hover .service-card-arrow {
  gap: var(--sp-3);
}

/* =============================================
   WHY C & H
   ============================================= */

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  margin-top: var(--sp-10);
}

.why-item {
  text-align: center;
  padding: var(--sp-6);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-5);
  color: var(--gold);
}

.why-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.why-item h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-3);
}

.why-item p {
  font-size: var(--fs-sm);
  color: var(--grey-500);
  line-height: 1.7;
  max-width: 360px;
  margin: 0 auto;
}

/* =============================================
   HOW IT WORKS
   ============================================= */

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  margin-top: var(--sp-10);
  counter-reset: step;
}

.step {
  text-align: center;
  position: relative;
  counter-increment: step;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-lg);
  font-weight: 800;
  color: var(--gold);
  margin: 0 auto var(--sp-5);
}

.step h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-3);
}

.step p {
  font-size: var(--fs-sm);
  color: var(--grey-500);
  line-height: 1.7;
  max-width: 340px;
  margin: 0 auto;
}

/* =============================================
   CTA BANNER
   ============================================= */

.cta-banner {
  padding: var(--sp-16) 0;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  font-size: var(--fs-3xl);
  margin-bottom: var(--sp-4);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-8);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA button override on dark backgrounds */
.cta-banner .btn-gold,
.hero .btn-gold,
.pricelist-card .btn-gold,
.bg-navy .btn-gold {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.cta-banner .btn-gold:hover,
.hero .btn-gold:hover,
.pricelist-card .btn-gold:hover,
.bg-navy .btn-gold:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

/* =============================================
   SERVICES PAGE — CATALOGUE
   ============================================= */

.page-header {
  padding: calc(var(--nav-h) + var(--sp-16)) 0 var(--sp-12);
  background: linear-gradient(160deg, var(--navy-dark), var(--navy));
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  font-size: var(--fs-4xl);
  margin-bottom: var(--sp-3);
}

.page-header p {
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--fs-lg);
  max-width: 560px;
  margin: 0 auto;
}

.service-section {
  padding: var(--sp-12) 0;
  border-bottom: 1px solid var(--grey-100);
}

.service-section:last-child {
  border-bottom: none;
}

.service-section-title {
  font-size: var(--fs-2xl);
  margin-bottom: var(--sp-8);
  padding-bottom: var(--sp-4);
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.service-group {
  margin-bottom: var(--sp-8);
}

.service-group-title {
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-400);
  margin-bottom: var(--sp-4);
}

.service-list {
  list-style: none;
}

.service-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--grey-50);
  font-size: var(--fs-sm);
  color: var(--text-body);
}

.service-list li:last-child {
  border-bottom: none;
}

.service-list .service-name {
  font-weight: 500;
}

.service-note {
  font-size: var(--fs-xs);
  color: var(--grey-400);
  font-style: italic;
  margin-top: var(--sp-4);
  line-height: 1.6;
}

.price-cta-box {
  background: var(--bg-alt);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  text-align: center;
  margin-top: var(--sp-10);
}

.price-cta-box h3 {
  margin-bottom: var(--sp-3);
}

.price-cta-box p {
  font-size: var(--fs-sm);
  color: var(--grey-500);
  margin-bottom: var(--sp-6);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Turnaround Banner */
.turnaround-banner {
  background: var(--off-white);
  border-bottom: 1px solid var(--grey-100);
  padding: var(--sp-4) 0;
}

.turnaround-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--grey-600);
}

.turnaround-icon {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* Service Catalogue Items */
.service-catalogue {
  display: flex;
  flex-direction: column;
}

.catalogue-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--grey-50);
}

.catalogue-item:last-child {
  border-bottom: none;
}

.catalogue-name {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-heading);
}

.catalogue-desc {
  font-size: var(--fs-xs);
  color: var(--grey-400);
  line-height: 1.6;
}

/* Featured Service Section (Implants) */
.service-section-featured {
  border-bottom: none;
  padding: 0;
}

.service-section-featured-inner {
  background: linear-gradient(160deg, rgba(0, 60, 139, 0.03) 0%, rgba(166, 208, 213, 0.1) 100%);
  border: 1px solid rgba(166, 208, 213, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--sp-10) var(--sp-8);
  margin: var(--sp-4) 0;
}

.service-section-title-featured {
  font-size: var(--fs-3xl);
}

.service-section-intro {
  font-size: var(--fs-base);
  color: var(--grey-500);
  line-height: 1.7;
  margin-bottom: var(--sp-8);
  max-width: 640px;
}

.catalogue-item-featured {
  border-bottom-color: rgba(166, 208, 213, 0.25);
}

/* Mid-Page CTA */
.mid-page-cta {
  text-align: center;
  padding: var(--sp-10) var(--sp-6);
  margin: var(--sp-4) 0;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-100);
}

.mid-page-cta h3 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--sp-3);
}

.mid-page-cta p {
  font-size: var(--fs-base);
  color: var(--grey-500);
  margin-bottom: var(--sp-6);
}

.mid-page-cta p a {
  color: var(--gold-dark);
  transition: color var(--transition-fast);
}

.mid-page-cta p a:hover {
  color: var(--gold);
}

.mid-page-cta-btns {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   TECHNOLOGY PAGE
   ============================================= */

.tech-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  align-items: center;
  padding: var(--sp-16) 0;
  border-bottom: 1px solid var(--grey-100);
}

.tech-section:last-child {
  border-bottom: none;
}

.tech-content h2 {
  font-size: var(--fs-3xl);
  margin-bottom: var(--sp-4);
}

.tech-content p {
  font-size: var(--fs-base);
  color: var(--grey-500);
  line-height: 1.8;
  margin-bottom: var(--sp-4);
}

.tech-content p:last-child {
  margin-bottom: 0;
}

.tech-list {
  list-style: none;
  margin-top: var(--sp-4);
}

.tech-list li {
  padding: var(--sp-2) 0;
  font-size: var(--fs-sm);
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.tech-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.tech-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--grey-50);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-300);
  font-size: var(--fs-sm);
  border: 1px solid var(--grey-100);
  position: relative;
  overflow: hidden;
}

.tech-image-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  color: var(--grey-300);
}

.tech-image-icon svg {
  width: 40px;
  height: 40px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1;
  opacity: 0.5;
}

.tech-image-icon span {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Materials grid */
.materials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}

.material-card {
  background: var(--bg-alt);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
}

.material-card h4 {
  font-size: var(--fs-sm);
  font-weight: 700;
  margin-bottom: var(--sp-2);
}

.material-card p {
  font-size: var(--fs-xs);
  color: var(--grey-500);
  line-height: 1.6;
  margin-bottom: 0;
}

/* =============================================
   ABOUT PAGE
   ============================================= */

.about-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  align-items: center;
}

.about-text h2 {
  font-size: var(--fs-3xl);
  margin-bottom: var(--sp-4);
}

.about-text p {
  font-size: var(--fs-base);
  color: var(--grey-500);
  line-height: 1.8;
  margin-bottom: var(--sp-4);
}

.about-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--grey-50);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--grey-100);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  margin-top: var(--sp-10);
}

.team-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  text-align: center;
  transition: all var(--transition);
}

.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--grey-50);
  margin: 0 auto var(--sp-5);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--grey-100);
  color: var(--grey-300);
  font-size: var(--fs-xs);
}

.team-card h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-1);
}

.team-card .team-role {
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}

.team-card p {
  font-size: var(--fs-sm);
  color: var(--grey-500);
  line-height: 1.7;
}

.value-statement {
  background: var(--bg-alt);
  border-left: 3px solid var(--gold);
  padding: var(--sp-8);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-top: var(--sp-10);
}

.value-statement h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-3);
}

.value-statement p {
  font-size: var(--fs-base);
  color: var(--grey-500);
  line-height: 1.8;
}

/* =============================================
   CONTACT PAGE
   ============================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
}

.contact-form h2 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--sp-6);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
  margin-bottom: var(--sp-4);
}

.form-group {
  margin-bottom: var(--sp-4);
}

.form-group label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: var(--sp-2);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: var(--fs-sm);
  color: var(--text-body);
  background: var(--bg-alt);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0, 60, 139, 0.1);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%238a8a99' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

/* File Upload */
.upload-area {
  border: 2px dashed var(--grey-200);
  border-radius: var(--radius-md);
  padding: var(--sp-10);
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  background: var(--bg-alt);
}

.upload-area:hover {
  border-color: var(--navy);
  background: rgba(0, 60, 139, 0.03);
}

.upload-area-icon {
  margin-bottom: var(--sp-4);
  color: var(--grey-300);
}

.upload-area-icon svg {
  width: 40px;
  height: 40px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.upload-area h4 {
  font-size: var(--fs-base);
  margin-bottom: var(--sp-2);
}

.upload-area p {
  font-size: var(--fs-sm);
  color: var(--grey-400);
}

.upload-area .upload-browse {
  color: var(--gold);
  font-weight: 600;
  cursor: pointer;
}

/* Contact Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
}

.contact-info-card h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-5);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
}

.contact-detail:last-child {
  margin-bottom: 0;
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-detail-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.contact-detail-text {
  font-size: var(--fs-sm);
  line-height: 1.6;
}

.contact-detail-text strong {
  display: block;
  color: var(--text-heading);
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-detail-text a {
  color: var(--gold-dark);
  transition: color var(--transition-fast);
}

.contact-detail-text a:hover {
  color: var(--gold);
}

/* Price List CTA */
.pricelist-card {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  color: var(--white);
  text-align: center;
}

.pricelist-card h3 {
  color: var(--white);
  margin-bottom: var(--sp-3);
}

.pricelist-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-6);
}

.pricelist-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.pricelist-form input {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: var(--fs-sm);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  outline: none;
  transition: all var(--transition-fast);
}

.pricelist-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.pricelist-form input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
}

/* Map */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--grey-100);
  margin-top: var(--sp-6);
}

.map-container iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.6);
  padding: var(--sp-16) 0 var(--sp-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  padding-bottom: var(--sp-10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  font-size: var(--fs-sm);
  line-height: 1.7;
  margin-top: var(--sp-4);
  max-width: 300px;
}

.footer-col h4 {
  color: var(--white);
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-5);
}

.footer-col a {
  display: block;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.5);
  padding: var(--sp-1) 0;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  padding-top: var(--sp-8);
  font-size: var(--fs-xs);
  text-align: center;
}

.footer-legal {
  display: flex;
  gap: var(--sp-6);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--gold);
}

/* =============================================
   STEP THUMBNAILS
   ============================================= */

.step-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--sp-5);
}

/* =============================================
   INLINE PHOTOS (service sub-pages)
   ============================================= */

.inline-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: var(--sp-10) 0;
}

.inline-photo img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.inline-photo figcaption {
  font-size: var(--fs-xs);
  color: var(--grey-400);
  padding: var(--sp-3) 0 0;
  text-align: center;
}

/* =============================================
   TEAM PORTRAITS
   ============================================= */

.team-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--grey-100);
  margin-bottom: var(--sp-4);
}

/* =============================================
   PAGE HEADER WITH PHOTO
   ============================================= */

.page-header-photo {
  position: relative;
  padding: calc(var(--nav-h) + var(--sp-16)) 0 var(--sp-12);
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-header-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 20, 50, 0.6);
}

.page-header-photo .container {
  position: relative;
  z-index: 1;
}

.page-header-photo h1 {
  color: var(--white);
  font-size: var(--fs-4xl);
  margin-bottom: var(--sp-3);
}

.page-header-photo p {
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--fs-lg);
  max-width: 560px;
  margin: 0 auto;
}

/* =============================================
   CONTACT PAGE HERO IMAGE
   ============================================= */

.contact-hero-img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: var(--sp-8);
  object-position: top;
}

/* =============================================
   DUAL IMAGE & VIDEO LAYOUTS
   ============================================= */

.tech-image-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: var(--sp-4);
  width: 100%;
  aspect-ratio: auto !important;
  background: transparent !important;
  border: none !important;
  overflow: visible !important;
  justify-content: flex-start !important;
}

@media (min-width: 768px) {
  .tech-image-grid.row {
    flex-direction: row !important;
  }

  .tech-image-grid.row .tech-section-img {
    width: calc(50% - (var(--sp-4) / 2));
    margin: 0;
  }
}

.video-container {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: var(--sp-6) 0;
  background: var(--navy-dark);
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
}

/* =============================================
   ABOUT PAGE PHOTOS
   ============================================= */

.about-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
}

/* =============================================
   TECH PAGE SECTION IMAGES
   ============================================= */

.tech-section-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
  margin: var(--sp-6) 0;
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */

.animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* Tablet */
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

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

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

/* Desktop */
@media (min-width: 1024px) {
  h1 {
    font-size: var(--fs-6xl);
  }

  .hero-title {
    font-size: var(--fs-6xl);
  }

  .section-title {
    font-size: var(--fs-4xl);
  }

  .nav-links {
    display: flex;
  }

  .nav-cta-btn {
    display: inline-flex;
  }

  .mobile-toggle {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .tech-section {
    grid-template-columns: 1fr 1fr;
  }

  .tech-section:nth-child(even) .tech-image {
    order: -1;
  }

  .about-intro {
    grid-template-columns: 1fr 1fr;
  }

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

  .contact-grid {
    grid-template-columns: 1.4fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Large Desktop */
@media (min-width: 1280px) {
  .container {
    padding: 0 var(--sp-8);
  }

  .materials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .catalogue-item {
    flex-direction: row;
    align-items: baseline;
    gap: var(--sp-4);
  }

  .catalogue-name {
    flex-shrink: 0;
    min-width: 260px;
  }
}

/* Unified Photo Placeholder */
.photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  color: var(--grey-300);
  background: var(--grey-50);
  border: 2px dashed var(--grey-200);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  width: 100%;
  aspect-ratio: 4 / 3;
}

.photo-placeholder svg {
  width: 36px;
  height: 36px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1;
  opacity: 0.4;
}

.photo-placeholder span {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
}

/* Round variant for team photos */
.photo-placeholder-round {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  aspect-ratio: auto;
  margin: 0 auto var(--sp-5);
  padding: var(--sp-4);
  border-width: 2px;
}

.photo-placeholder-round svg {
  width: 32px;
  height: 32px;
}

/* Team placeholder card */
.team-card-placeholder {
  border-style: solid;
}

/* Form submission success */
.form-success {
  text-align: center;
  padding: var(--sp-10);
}

.form-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #0050b3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-5);
  color: var(--white);
  font-size: var(--fs-2xl);
  font-weight: 800;
}

.form-success h3 {
  margin-bottom: var(--sp-3);
}

/* =============================================
   LEGAL PAGES (Privacy & Terms)
   ============================================= */

.legal-section {
  margin-bottom: var(--sp-8);
}

.legal-section h2 {
  font-size: var(--fs-xl);
  color: var(--navy);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid var(--grey-100);
}

.legal-section h3 {
  font-size: var(--fs-lg);
  color: var(--navy);
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-3);
}

.legal-section p {
  margin-bottom: var(--sp-4);
}

.legal-section ul {
  margin-bottom: var(--sp-4);
  padding-left: var(--sp-6);
}

.legal-section li {
  margin-bottom: var(--sp-2);
  color: var(--grey-400);
}

/* =============================================
   STATS GRID
   ============================================= */

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  text-align: center;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* =============================================
   LOGO BAR (Scanner Compatibility)
   ============================================= */

.logo-bar-container {
  padding: var(--sp-8) 0;
}

.logo-bar-container.bordered {
  border-top: 1px solid var(--grey-100);
  border-bottom: 1px solid var(--grey-100);
  background: var(--white);
}

.logo-caption {
  text-align: center;
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--grey-400);
  margin-bottom: var(--sp-6);
}

.logo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-6);
}

.brand-logo {
  height: 24px;
  width: auto;
  max-width: 100%;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.brand-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Optical equilibrium adjustments for visually heavy/light logos */
img[src*="medit.svg"] {
  transform: scale(0.75);
}

img[src*="itero.svg"] {
  transform: scale(1.15);
}

img[src*="3shape.svg"] {
  transform: scale(1.05);
}

/* Footer variant */
.footer-logo-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: var(--sp-8);
  margin-bottom: var(--sp-8);
}

.footer-logo-bar .brand-logo {
  height: 20px;
  /* Make logos white/light on dark navy footer */
  filter: brightness(0) invert(1) opacity(0.4);
}

.footer-logo-bar .brand-logo:hover {
  /* Restore original brand colors on hover */
  filter: grayscale(0%) brightness(1) invert(0) opacity(1);
}

@media (min-width: 768px) {
  .logo-bar {
    gap: var(--sp-10);
  }

  .brand-logo {
    height: 32px;
  }

  .footer-logo-bar .brand-logo {
    height: 24px;
  }
}

.form-success p {
  font-size: var(--fs-sm);
  color: var(--grey-500);
  line-height: 1.7;
}