/* ==========================================================================
   Nokta Ä°ÅŸitme â€” Crafto Elder Care Design System
   Complete stylesheet for noktaisitme.com
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens
   -------------------------------------------------------------------------- */
:root {
  --color-navy: #232450;
  --color-text: #4A4A68;
  --color-teal: #E6688B;
  --color-turquoise: #F07C96;
  --color-bg-light: #EEEEF5;
  --color-bg: #F5F4F9;
  --color-white: #FFFFFF;
  --color-border: #E4E3ED;
  --color-muted: #7A7A96;
  --color-accent: #E6688B;
  --color-pink: #E6688B;
  --color-pink-dark: #D94F6D;
  --color-success: #18794E;
  --color-error: #B42318;
  --color-whatsapp: #25D366;
  --color-whatsapp-dark: #1FB855;

  --font-heading: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  --text-base: 1.0625rem;
  --text-lg: 1.125rem;
  --leading: 1.7;
  --max-width: 75rem;
  --radius: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-pill: 9999px;
  --shadow-sm: 0 1px 3px rgba(35, 36, 80, 0.06);
  --shadow-md: 0 4px 24px rgba(35, 36, 80, 0.08);
  --shadow-lg: 0 12px 40px rgba(35, 36, 80, 0.1);
  --shadow-float: 0 20px 50px rgba(35, 36, 80, 0.14);
  --header-top-height: 4.25rem;
  --header-nav-height: 0px;
  --header-total: 0px;
  --header-float-offset: 6.25rem;
  --transition: 0.2s ease;
  --transition-slow: 0.35s ease;
}

/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .home-hero__slide-img,
  .home-hero__slide.is-active .home-hero__slide-img {
    transform: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  max-width: 100%;
}

img,
video,
iframe,
svg {
  max-width: 100%;
  height: auto;
}

img, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Cover/fill images must ignore global height:auto */
.home-hero__slide-img,
.svc-tile__media img,
.svc-product-card__media img {
  max-width: none;
  width: 100%;
  height: 100%;
}

.map-preview iframe {
  max-width: none;
}

a {
  color: var(--color-teal);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover { color: var(--color-turquoise); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-navy);
  line-height: 1.25;
  margin-top: 0;
}

h1 { font-family: var(--font-heading); font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 400; }
h2 { font-family: var(--font-heading); font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 400; }
h3 { font-family: var(--font-heading); font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 400; }
h4 { font-size: 1.0625rem; font-weight: 600; }

p { margin: 0 0 1rem; max-width: 70ch; }

ul, ol { margin: 0 0 1rem; padding-left: 1.5rem; }
li { margin-bottom: 0.375rem; }

address { font-style: normal; }

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* --------------------------------------------------------------------------
   3. Utilities
   -------------------------------------------------------------------------- */
.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus,
.skip-link:focus-visible {
  top: 1rem;
}

.mk-text-center { text-align: center; }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.625rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.btn--primary {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}

.btn--primary:hover:not(:disabled) {
  background: #1a1c3d;
  border-color: #1a1c3d;
  color: var(--color-white);
}

.btn--secondary {
  background: transparent;
  color: var(--color-teal);
  border-color: var(--color-teal);
}

.btn--secondary:hover:not(:disabled) {
  background: var(--color-bg-light);
  color: var(--color-teal);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn--ghost:hover:not(:disabled) {
  background: var(--color-bg);
  border-color: var(--color-muted);
}

.btn--accent {
  background: var(--color-pink);
  color: var(--color-white);
  border-color: var(--color-pink);
}

.btn--accent:hover:not(:disabled) {
  background: var(--color-pink-dark);
  border-color: var(--color-pink-dark);
  color: var(--color-white);
}

.btn--white {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
}

.btn--white:hover:not(:disabled) {
  background: var(--color-bg-light);
  border-color: var(--color-bg-light);
  color: var(--color-navy);
}

.btn--lg {
  min-height: 3.25rem;
  padding: 0.875rem 2.25rem;
  font-size: 1rem;
  border-radius: var(--radius-pill);
}

.btn--block { width: 100%; }

/* --------------------------------------------------------------------------
   5. MK Header â€” Floating glass pill (Nexsas-style)
   -------------------------------------------------------------------------- */
.mk-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.85rem 1rem 0;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
  will-change: transform;
}

.mk-header.is-hidden {
  transform: translate3d(0, calc(-100% - 0.5rem), 0);
  opacity: 0;
  pointer-events: none;
}

.mk-header.is-hidden .mk-header__shell {
  pointer-events: none;
}

.mk-header.is-menu-open {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .mk-header {
    transition: none;
  }
}

.mk-header__shell {
  width: min(100%, 74rem);
  margin-inline: auto;
  pointer-events: auto;
}

.mk-header__bar {
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-navy);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  box-shadow:
    0 10px 40px rgba(35, 36, 80, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    border-radius 0.25s ease;
}

.mk-header.is-scrolled .mk-header__bar {
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 14px 44px rgba(35, 36, 80, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.mk-header.is-menu-open .mk-header__bar {
  border-radius: 1.5rem;
}

.mk-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 3.35rem;
  padding: 0.4rem 0.45rem 0.4rem 1.1rem;
}

.mk-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
  order: 1;
}

.mk-header__logo img {
  height: 2.65rem;
  width: auto;
  max-width: 12.5rem;
  object-fit: contain;
  display: block;
}

.mk-header__nav-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
  order: 2;
}

.mk-header__actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  order: 3;
}

.mk-header .mk-nav__link,
.mk-header .mk-nav__trigger {
  color: var(--color-navy);
  font-weight: 500;
}

.mk-header .mk-nav__link:hover,
.mk-header .mk-nav__trigger:hover,
.mk-header .mk-nav__link.is-active {
  color: var(--color-pink);
  background: transparent;
}

.mk-header__cta {
  flex-shrink: 0;
  border-radius: 999px;
  padding: 0.55rem 1.15rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  background: var(--color-navy);
  color: var(--color-white);
  border: none;
  box-shadow: 0 8px 20px rgba(35, 36, 80, 0.22);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.mk-header__cta:hover {
  background: #1a1b3d;
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(35, 36, 80, 0.28);
}

.mk-header__cta--mobile {
  display: none;
}

.mk-header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 2.35rem;
  height: 2.35rem;
  background: rgba(35, 36, 80, 0.04);
  border: 1px solid rgba(35, 36, 80, 0.08);
  border-radius: 999px;
  padding: 0.45rem;
  cursor: pointer;
  flex-shrink: 0;
}

.mk-header__toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--color-navy);
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}

.mk-header__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.mk-header__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mk-header__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   6. MK Navigation
   -------------------------------------------------------------------------- */
.mk-nav__list {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mk-nav__item { position: relative; }

.mk-nav__link,
.mk-nav__trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.45rem 0.7rem;
  color: var(--color-navy);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  border-radius: 999px;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}

.mk-nav__link::after,
.mk-nav__trigger::after {
  display: none;
}

.mk-nav__link:hover,
.mk-nav__trigger:hover,
.mk-nav__link.is-active {
  color: var(--color-pink);
  background: rgba(230, 104, 139, 0.08);
}

.mk-nav__trigger svg {
  width: 9px;
  height: 9px;
  opacity: 0.5;
  transition: transform var(--transition), opacity var(--transition);
}

.mk-nav__item--open .mk-nav__trigger svg,
.mk-nav__item--dropdown:hover .mk-nav__trigger svg,
.mk-nav__item--dropdown:focus-within .mk-nav__trigger svg {
  transform: rotate(180deg);
  opacity: 1;
}

.mk-nav__dropdown {
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 50%;
  min-width: 15.5rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(228, 227, 237, 0.95);
  border-radius: 1rem;
  box-shadow: 0 18px 48px rgba(35, 36, 80, 0.14);
  backdrop-filter: blur(12px);
  list-style: none;
  margin: 0;
  padding: 0.45rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(0.4rem);
  transition:
    opacity var(--transition),
    transform var(--transition),
    visibility var(--transition);
  z-index: 50;
}

.mk-nav__item--dropdown:hover .mk-nav__dropdown,
.mk-nav__item--dropdown:focus-within .mk-nav__dropdown,
.mk-nav__item--open .mk-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mk-nav__dropdown a {
  display: block;
  padding: 0.55rem 0.8rem;
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: 0.65rem;
  transition: background var(--transition), color var(--transition);
}

.mk-nav__dropdown a:hover {
  background: var(--color-bg);
  color: var(--color-pink);
}

.mk-nav__dropdown li:first-child a {
  font-weight: 600;
  color: var(--color-navy);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 0.2rem;
  padding-bottom: 0.65rem;
  border-radius: 0.65rem 0.65rem 0 0;
}

/* Legacy main-nav aliases (JS compatibility) */
.main-nav__list {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav__item { position: relative; }

.main-nav__link,
.main-nav__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.875rem;
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  border-radius: var(--radius);
  white-space: nowrap;
}

.main-nav__submenu {
  position: absolute;
  top: calc(100% + 0.25rem);
  left: 0;
  min-width: 16rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  list-style: none;
  margin: 0;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5rem);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 50;
}

.main-nav__item--has-children:hover .main-nav__submenu,
.main-nav__item--has-children:focus-within .main-nav__submenu,
.main-nav__item--open .main-nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav__sublink {
  display: block;
  padding: 0.5rem 0.75rem;
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.875rem;
  border-radius: var(--radius);
}

.main-nav__sublink:hover {
  background: var(--color-bg-light);
  color: var(--color-teal);
}

/* --------------------------------------------------------------------------
   7. Page Hero Banner
   -------------------------------------------------------------------------- */
.page-hero-banner {
  position: relative;
  min-height: clamp(12rem, 28vh, 18rem);
  display: flex;
  align-items: center;
  background: var(--color-bg);
  overflow: hidden;
  padding-top: 3.5rem;
}

.page-hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}

.page-hero-banner__overlay {
  display: none;
}

.page-hero-banner__content {
  position: relative;
  z-index: 1;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  text-align: left;
}

.page-hero-banner__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-pink-dark);
  margin-bottom: 0.75rem;
}

.page-hero-banner__eyebrow::before {
  content: '# ';
}

.page-hero-banner__title {
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin: 0;
  max-width: 28ch;
}

/* --------------------------------------------------------------------------
   8. MK Section System
   -------------------------------------------------------------------------- */
.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section--alt {
  background: var(--color-white);
}

.mk-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.mk-section--alt {
  background: var(--color-white);
}

.mk-section--blue {
  background: var(--color-navy);
  color: var(--color-white);
}

.mk-section-head {
  margin-bottom: 2.5rem;
  max-width: 42rem;
}

.mk-section-head--center {
  text-align: center;
  margin-inline: auto;
}

.mk-section-head--center .mk-lead {
  margin-inline: auto;
}

.mk-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-pink-dark);
  margin-bottom: 0.75rem;
}

.mk-label::before {
  content: '# ';
  color: var(--color-pink-dark);
}

.mk-label--light {
  color: var(--color-bg-light);
}

.mk-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.15;
  color: var(--color-navy);
}

.mk-title--light {
  color: var(--color-white);
}

.mk-lead {
  font-size: var(--text-lg);
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 52ch;
}

.mk-lead--light {
  color: rgba(255, 255, 255, 0.85);
}

.mk-lead--center {
  margin-inline: auto;
  text-align: center;
}

/* --------------------------------------------------------------------------
   9. MK Split Layout
   -------------------------------------------------------------------------- */
.mk-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.mk-split--reverse .mk-split__visual {
  order: -1;
}

.mk-split__content {
  min-width: 0;
}

.mk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.mk-split__visual {
  position: relative;
  min-width: 0;
}

/* --------------------------------------------------------------------------
   Vision / Mission Tabs (About)
   -------------------------------------------------------------------------- */
.about-vm {
  padding-top: 0;
}

.vm-tabs {
  display: inline-flex;
  gap: 0;
  margin-bottom: 2.5rem;
  border-radius: var(--radius);
  overflow: visible;
}

.vm-tabs__btn {
  position: relative;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.875rem 2rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.vm-tabs__btn:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.vm-tabs__btn:last-child {
  border-radius: 0 var(--radius) var(--radius) 0;
  border-left: none;
}

.vm-tabs__btn.is-active {
  background: var(--color-pink);
  border-color: var(--color-pink);
  color: var(--color-white);
}

.vm-tabs__btn.is-active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -0.55rem;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0.55rem solid transparent;
  border-right: 0.55rem solid transparent;
  border-top: 0.55rem solid var(--color-pink);
}

.vm-tabs__btn:not(.is-active):hover {
  background: var(--color-bg-light);
}

.vm-panels {
  position: relative;
}

.vm-panel[hidden] {
  display: none;
}

.vm-panel__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.vm-panel__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-navy);
  margin-bottom: 1.25rem;
}

.vm-panel__title--split {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.vm-panel__text {
  font-size: var(--text-base);
  line-height: var(--leading);
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.vm-panel__text:last-of-type {
  margin-bottom: 1.5rem;
}

.vm-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.875rem;
}

.vm-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
}

.vm-checklist li::before {
  content: 'âœ“';
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--color-turquoise);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vm-panel__visual {
  min-width: 0;
}

/* --------------------------------------------------------------------------
   About â€” Service Approach (split + checklist)
   -------------------------------------------------------------------------- */
.service-approach__content {
  max-width: 34rem;
}

.service-approach__label {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}

.service-approach__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--color-turquoise);
  flex-shrink: 0;
}

.service-approach__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-navy);
  margin-bottom: 1.25rem;
}

.service-approach__intro {
  font-size: var(--text-base);
  line-height: var(--leading);
  color: var(--color-muted);
  margin-bottom: 1.75rem;
}

.service-approach__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  gap: 1rem;
}

.service-approach__list li {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.4;
}

.service-approach__list li::before {
  content: 'âœ“';
  flex-shrink: 0;
  width: 1.625rem;
  height: 1.625rem;
  border-radius: 50%;
  background: var(--color-turquoise);
  color: var(--color-white);
  font-size: 0.8125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-approach__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 11rem;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  background: var(--color-turquoise);
  border: 1px solid var(--color-turquoise);
  color: var(--color-white);
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.service-approach__cta:hover {
  background: var(--color-teal);
  border-color: var(--color-teal);
  color: var(--color-white);
  transform: translateY(-1px);
}

.service-approach__visual {
  min-width: 0;
}

.service-approach__img {
  width: 100%;
  min-height: 28rem;
  object-fit: cover;
  border-radius: 1.25rem;
  display: block;
  box-shadow: var(--shadow-md);
}

/* --------------------------------------------------------------------------
   10. MK Card
   -------------------------------------------------------------------------- */
.mk-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}

.mk-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-turquoise);
}

.mk-card--flat {
  box-shadow: none;
}

.mk-card--elevated {
  box-shadow: var(--shadow-md);
}

.mk-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.625rem;
  background: var(--color-bg-light);
  color: var(--color-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.mk-card__title {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}

.mk-card__desc {
  font-size: 0.9375rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
  line-height: 1.55;
}

.mk-card__link {
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  color: var(--color-teal);
}

.mk-card__link:hover {
  text-decoration: underline;
}

.mk-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
  gap: 1.5rem;
}

/* --------------------------------------------------------------------------
   11. MK Features & Steps
   -------------------------------------------------------------------------- */
.mk-features {
  margin-bottom: 2rem;
}

.mk-feature {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.mk-feature:last-child {
  margin-bottom: 0;
}

.mk-feature__icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.625rem;
  background: var(--color-bg-light);
  color: var(--color-teal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mk-feature h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.mk-feature p {
  font-size: 0.9375rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.55;
}

.mk-steps {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.mk-steps li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}

.mk-steps li:last-child {
  border-bottom: none;
}

.mk-steps li span {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--color-bg-light);
  color: var(--color-teal);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   12. MK Service Grid
   -------------------------------------------------------------------------- */
.mk-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.mk-service-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.75rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.mk-service-card:hover {
  border-color: var(--color-pink);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.mk-service-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(230, 104, 139, 0.12);
  color: var(--color-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.mk-service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.mk-service-card p {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin: 0 0 0.5rem;
  line-height: 1.5;
  flex: 1;
}

.mk-service-card a {
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-teal);
}

.mk-service-card a:hover {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   12b. Services Showcase (image tiles)
   -------------------------------------------------------------------------- */
.services-showcase {
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(230, 104, 139, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(35, 36, 80, 0.06), transparent 50%),
    var(--color-bg);
}

.services-showcase__head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.services-showcase__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.svc-tile {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid transparent;
  box-shadow: 0 12px 36px rgba(35, 36, 80, 0.06);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    border-color 0.3s ease;
}

.svc-tile--featured {
  grid-column: span 6;
}

.svc-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(35, 36, 80, 0.12);
  border-color: rgba(230, 104, 139, 0.35);
}

.svc-tile__media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--color-bg);
}

.svc-tile--featured .svc-tile__media {
  aspect-ratio: 16 / 10;
}

.svc-tile__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.svc-tile:hover .svc-tile__media img {
  transform: scale(1.08);
}

.svc-tile__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(35, 36, 80, 0.28) 100%
  );
  pointer-events: none;
}

.svc-tile__icon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-pink);
  box-shadow: 0 8px 20px rgba(35, 36, 80, 0.12);
  backdrop-filter: blur(6px);
}

.svc-tile__body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.35rem 1.4rem 1.5rem;
  flex: 1;
}

.svc-tile__index {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-pink);
}

.svc-tile__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  font-weight: 400;
  color: var(--color-navy);
  line-height: 1.25;
}

.svc-tile__desc {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.svc-tile__cta {
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-teal);
  letter-spacing: 0.01em;
  transition: color 0.25s ease, transform 0.25s ease;
}

.svc-tile:hover .svc-tile__cta {
  color: var(--color-pink);
}

.svc-tile:hover .svc-tile__cta span {
  display: inline-block;
  transform: translateX(3px);
  transition: transform 0.25s ease;
}

@media (max-width: 1100px) {
  .svc-tile,
  .svc-tile--featured {
    grid-column: span 6;
  }
}

@media (max-width: 720px) {
  .services-showcase__grid {
    grid-template-columns: 1fr;
  }

  .svc-tile,
  .svc-tile--featured {
    grid-column: auto;
  }
}

/* --------------------------------------------------------------------------
   13. MK Stats
   -------------------------------------------------------------------------- */
.mk-stats {
  background: var(--color-bg-light);
  padding: 3rem 0;
  border-block: 1px solid var(--color-border);
}

.mk-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.mk-stat {
  text-align: center;
}

.mk-stat__icon {
  color: var(--color-teal);
  margin: 0 auto 0.75rem;
  opacity: 0.7;
}

.mk-stat__value {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.mk-stat__label {
  font-size: 0.9375rem;
  color: var(--color-muted);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   14. Visual Frame â€” Decorative blue shapes
   -------------------------------------------------------------------------- */
.visual-frame {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 30rem;
}

.visual-frame__deco {
  position: absolute;
  z-index: 0;
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(230, 104, 139, 0.15) 0%, rgba(35, 36, 80, 0.08) 100%);
  opacity: 1;
}

.visual-frame--right .visual-frame__deco {
  top: -1.5rem;
  right: -1.5rem;
  width: 72%;
  height: 88%;
  border-radius: 2rem 2rem 2rem 0;
}

.visual-frame--left .visual-frame__deco {
  top: -1.5rem;
  left: -1.5rem;
  width: 72%;
  height: 88%;
  border-radius: 2rem 0 2rem 2rem;
}

.visual-frame__deco--circle {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--color-pink);
  opacity: 0.15;
}

.visual-frame--right .visual-frame__deco--circle {
  bottom: -1rem;
  left: -1rem;
  top: auto;
  right: auto;
}

.visual-frame--left .visual-frame__deco--circle {
  bottom: -1rem;
  right: -1rem;
  top: auto;
  left: auto;
}

.visual-frame__img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.visual-frame__img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   15. Hours Box â€” Blue opening hours panel
   -------------------------------------------------------------------------- */
.hours-box {
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  position: sticky;
  top: calc(var(--header-total) + 1rem);
}

.hours-box__title {
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.hours-box__list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.hours-box__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.9375rem;
}

.hours-box__list li:last-child {
  border-bottom: none;
}

.hours-box__list li span {
  opacity: 0.85;
}

.hours-box__list li strong {
  font-weight: 600;
}

.hours-box__location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.hours-box__location svg {
  flex-shrink: 0;
  color: var(--color-bg-light);
}

/* --------------------------------------------------------------------------
   16. Branch Info
   -------------------------------------------------------------------------- */
.branch-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.branch-info__item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(4px);
}

.branch-info__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.branch-info__item strong {
  display: block;
  font-size: 0.875rem;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.branch-info__item p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.5;
  max-width: none;
}

.branch-info__item a {
  color: var(--color-bg-light);
  text-decoration: none;
}

.branch-info__item a:hover {
  color: var(--color-white);
  text-decoration: underline;
}

.branch-info--on-light .branch-info__item {
  background: var(--color-bg);
  border-color: var(--color-border);
}

.branch-info--on-light .branch-info__icon {
  background: var(--color-bg-light);
  color: var(--color-teal);
}

.branch-info--on-light .branch-info__item strong {
  color: var(--color-navy);
}

.branch-info--on-light .branch-info__item p,
.branch-info--on-light .branch-info__item a {
  color: var(--color-muted);
}

.branch-info--on-light .branch-info__item a:hover {
  color: var(--color-teal);
}

.branch-actions {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 1.25rem;
}

.branch-actions__maps {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.branch-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
}

.btn--whatsapp {
  background: var(--color-whatsapp);
  color: var(--color-white);
  border: 1px solid var(--color-whatsapp);
  font-weight: 600;
}

.btn--whatsapp svg {
  flex-shrink: 0;
  color: currentColor;
}

.btn--whatsapp:hover:not(:disabled) {
  background: var(--color-whatsapp-dark);
  border-color: var(--color-whatsapp-dark);
  color: var(--color-white);
}

.btn--map {
  font-weight: 600;
}

.branch-actions--on-light .btn--map {
  justify-content: flex-start;
}

/* --------------------------------------------------------------------------
   17. MK Form & Form Card
   -------------------------------------------------------------------------- */
.mk-form-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.mk-appointment-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

.mk-form {
  max-width: 100%;
}

.mk-form--compact .mk-form__grid {
  grid-template-columns: 1fr;
}

.mk-form__title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--color-navy);
}

.mk-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.mk-form .btn--block {
  margin-top: 0.5rem;
}

/* --------------------------------------------------------------------------
   Contact split card (iletiÅŸim sayfasÄ±)
   -------------------------------------------------------------------------- */
.contact-page-form {
  padding-top: 0;
}

.contact-split-card {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  background: var(--color-white);
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: 0 1.25rem 3rem rgba(16, 42, 67, 0.12);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.contact-split-card__form {
  padding: clamp(2rem, 4vw, 3rem);
}

.contact-split-form__row {
  display: grid;
  gap: 1.25rem 1.5rem;
}

.contact-split-form__row--2 {
  grid-template-columns: 1fr 1fr;
}

.contact-split-form .form-group {
  margin-bottom: 1.75rem;
}

.contact-split-form .form-label {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.form-input--line,
.form-textarea--line,
.form-select--line {
  border: none;
  border-bottom: 1px solid #d1d9e6;
  border-radius: 0;
  padding: 0.5rem 0 0.625rem;
  min-height: auto;
  background: transparent;
  box-shadow: none;
}

.form-input--line:focus,
.form-textarea--line:focus,
.form-select--line:focus {
  border-bottom-color: var(--color-turquoise);
  box-shadow: none;
  outline: none;
}

.form-select--line {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B6B80' d='M1.4.6 6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.15rem center;
  padding-right: 1.5rem;
  cursor: pointer;
  color: var(--color-navy);
}

.form-select--line option {
  color: var(--color-navy);
}

.form-textarea--line {
  resize: vertical;
  min-height: 7rem;
  line-height: 1.6;
}

.contact-split-form__consent {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.75rem;
}

.form-checkbox--compact {
  font-size: 0.875rem;
  color: var(--color-muted);
}

.form-checkbox--compact a {
  color: var(--color-teal);
}

.btn--submit-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 11rem;
  padding: 0.9rem 2.75rem;
  border-radius: 9999px;
  border: none;
  background: #5eb8e8;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 0.5rem 1.25rem rgba(94, 184, 232, 0.35);
}

.btn--submit-pill:hover:not(:disabled) {
  background: #49aadf;
  transform: translateY(-1px);
}

.btn--submit-pill:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.contact-split-card__aside {
  background: linear-gradient(165deg, #2f9fd9 0%, #1b7fc4 55%, #1565a8 100%);
  color: var(--color-white);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
}

.contact-split-card__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.contact-split-card__lead {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.5rem;
  max-width: none;
}

.contact-split-card__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  margin: 0 0 1.5rem;
}

.contact-split-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-split-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-split-card__icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  opacity: 0.95;
}

.contact-split-card__list a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  padding-top: 0.2rem;
  transition: opacity var(--transition);
}

.contact-split-card__list a:hover {
  opacity: 0.85;
  text-decoration: underline;
}

.contact-split-card__branch-text {
  min-width: 0;
  padding-top: 0.15rem;
}

.contact-split-card__branch-text strong {
  display: block;
  color: var(--color-white);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.25rem;
}

.contact-split-card__branch-text p {
  margin: 0 0 0.35rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.875rem;
  line-height: 1.5;
}

.contact-split-card__branch-text a {
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-split-card__whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin-top: auto;
  width: 100%;
  min-height: 3.25rem;
  padding: 0.875rem 1.5rem;
  border-radius: 9999px;
  border: none;
  background: var(--color-whatsapp);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 0.5rem 1.25rem rgba(37, 211, 102, 0.28);
}

.contact-split-card__whatsapp svg {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  display: block;
}

.contact-split-card__whatsapp:hover:not(:disabled) {
  background: var(--color-whatsapp-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   18. Forms (shared)
   -------------------------------------------------------------------------- */
.form {
  max-width: 36rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.375rem;
  font-size: 0.9375rem;
  color: var(--color-navy);
}

.form-label .optional {
  font-weight: 400;
  color: var(--color-muted);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.625rem 0.875rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-muted);
  opacity: 0.7;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(20, 125, 126, 0.15);
}

.form-textarea {
  min-height: 6rem;
  resize: vertical;
}

.contact-split-form .form-input--line,
.contact-split-form .form-textarea--line,
.contact-split-form .form-select--line {
  border: none;
  border-bottom: 1px solid #d1d9e6;
  border-radius: 0;
  padding: 0.5rem 0 0.625rem;
  min-height: auto;
  background: transparent;
  box-shadow: none;
}

.contact-split-form .form-input--line:focus,
.contact-split-form .form-textarea--line:focus,
.contact-split-form .form-select--line:focus {
  border-bottom-color: #5eb8e8;
  box-shadow: none;
  outline: none;
}

.contact-split-form .form-select--line {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B6B80' d='M1.4.6 6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.15rem center;
  padding-right: 1.5rem;
  cursor: pointer;
  color: var(--color-navy);
}

.contact-split-form .form-textarea--line {
  resize: vertical;
  min-height: 7rem;
  line-height: 1.6;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  cursor: pointer;
  line-height: 1.5;
}

.form-checkbox input {
  margin-top: 0.25rem;
  min-width: 1rem;
  min-height: 1rem;
  accent-color: var(--color-teal);
}

.form-checkbox a {
  font-weight: 500;
}

.form-alert {
  padding: 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.form-alert--success {
  background: #ECFDF3;
  color: var(--color-success);
  border: 1px solid #A7F3D0;
}

.form-alert--error {
  background: #FEF2F2;
  color: var(--color-error);
  border: 1px solid #FECACA;
}

.form-alert[hidden] {
  display: none;
}

/* --------------------------------------------------------------------------
   19. Homepage Hero â€” Full-bleed slider (viewport-fit)
   -------------------------------------------------------------------------- */
.home-intro {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  background: var(--color-navy);
}

@supports (height: 100dvh) {
  .home-intro {
    min-height: 100dvh;
  }
}

.home-hero {
  position: relative;
  background: var(--color-navy);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.home-hero--slider {
  --hero-meta-h: 3.25rem;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 0;
}

.home-hero__stage {
  position: relative;
  width: 100%;
  flex: 1 1 auto;
  min-height: 18rem;
  overflow: hidden;
}

.home-hero__slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.home-hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease, visibility 0.9s ease;
  pointer-events: none;
}

.home-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.home-hero__slide-img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.04);
  transform-origin: center center;
  transition: transform 7s ease-out;
  will-change: transform;
}

.home-hero__slide.is-active .home-hero__slide-img {
  transform: scale(1);
}

/* Keep Ken Burns zoom clipped inside the stage */
.home-hero__stage,
.home-hero__slides,
.home-hero__slide {
  overflow: hidden;
}

.home-hero__slide-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(20, 22, 55, 0.84) 0%, rgba(20, 22, 55, 0.58) 40%, rgba(20, 22, 55, 0.3) 68%, rgba(20, 22, 55, 0.2) 100%),
    linear-gradient(0deg, rgba(20, 22, 55, 0.5) 0%, transparent 48%);
  pointer-events: none;
}

.home-hero__slide-align {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-inline: 1rem;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.home-hero__slide-shell {
  width: min(100%, 74rem);
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  pointer-events: auto;
}

.home-hero__slide-content {
  width: 100%;
  max-width: min(42rem, 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding-block: clamp(3rem, 8vw, 6rem);
  padding-bottom: clamp(4.5rem, 10vw, 7rem);
  padding-left: 1.1rem;
  padding-right: 0;
  color: var(--color-white);
  animation: homeHeroIn 0.85s ease both;
}

.home-hero__slide.is-active .home-hero__slide-content {
  animation: homeHeroIn 0.85s ease both;
}

@keyframes homeHeroIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-hero__brand {
  margin: 0 0 0.85rem;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--color-white);
  line-height: 1.15;
}

.home-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 3.4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--color-white);
  margin: 0 0 0.9rem;
  max-width: 22ch;
  text-align: left;
}

.home-hero__desc {
  font-size: clamp(0.95rem, 1.8vw, 1.125rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  margin: 0 0 1.5rem;
  max-width: 40ch;
  text-align: left;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem 1.25rem;
}

.home-hero__link {
  font-weight: 600;
  color: var(--color-navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-hero__link--light {
  color: rgba(255, 255, 255, 0.92);
}

.home-hero__link--light:hover,
.home-hero__link:hover {
  color: var(--color-pink);
}

.home-hero__controls {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 1.15rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: calc(100% - 1.5rem);
}

.home-hero__nav {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.home-hero__nav:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.8);
}

.home-hero__dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(20, 22, 55, 0.35);
  backdrop-filter: blur(8px);
}

.home-hero__dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease, border-radius 0.3s ease;
}

.home-hero__dot.is-active {
  width: 1.5rem;
  border-radius: 999px;
  background: var(--color-pink);
}

.home-hero__meta-bar {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  min-height: var(--hero-meta-h);
  background: rgba(20, 22, 55, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.9);
}

.home-hero__meta-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.85rem;
  font-size: 0.875rem;
}

.home-hero__meta-bar-inner span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
}

.home-hero__meta-bar-inner svg {
  color: var(--color-pink);
  flex-shrink: 0;
}

.home-hero__meta-bar-inner a {
  color: var(--color-white);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.home-hero__meta-bar-inner a:hover {
  color: var(--color-pink);
}

/* Home Help Bar â€” Navy CTA strip */
.home-help-bar {
  flex: 0 0 auto;
  background: var(--color-navy);
  color: var(--color-white);
  padding: 2rem 0;
}

@media (min-width: 1024px) {
  .home-help-bar {
    padding: 1.35rem 0;
  }
}

.home-help-bar__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}

.home-help-bar__contact {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.home-help-bar__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-help-bar__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-white);
  margin: 0 0 0.25rem;
}

.home-help-bar__contact p {
  margin: 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
}

.home-help-bar__contact a {
  color: var(--color-white);
  font-weight: 600;
  text-decoration: none;
}

.home-help-bar__contact a:hover {
  text-decoration: underline;
}

.home-help-bar__text {
  margin: 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 48ch;
}

.home-help-bar__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-pill);
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition), border-color var(--transition);
}

.home-help-bar__btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
}

/* --------------------------------------------------------------------------
   20. Floating Cards
   -------------------------------------------------------------------------- */
.home-float-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.home-float-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.home-float-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-float);
}

.home-float-card--cta {
  background: linear-gradient(145deg, var(--color-navy) 0%, var(--color-teal) 100%);
  color: var(--color-white);
  border: none;
}

.home-float-card__icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--color-bg-light);
  color: var(--color-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.home-float-card__icon--light {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
}

.home-float-card__title {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-navy);
}

.home-float-card--cta .home-float-card__title {
  color: var(--color-white);
}

.home-float-card__desc {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
  flex: 1;
  line-height: 1.55;
}

.home-float-card--cta .home-float-card__desc {
  color: rgba(255, 255, 255, 0.8);
}

.home-float-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-teal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.home-float-card__link:hover {
  text-decoration: underline;
}

.home-float-card__phone {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
  margin-top: auto;
}

.home-float-card__phone:hover {
  color: var(--color-bg-light);
}

/* --------------------------------------------------------------------------
   21. Home About & Stats
   -------------------------------------------------------------------------- */
.home-about {
  padding-top: clamp(2rem, 4vw, 3rem);
}

.home-stats {
  background: var(--color-bg-light);
  padding: 3rem 0;
  border-block: 1px solid var(--color-border);
}

.home-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.home-stat {
  text-align: center;
}

.home-stat__icon {
  color: var(--color-teal);
  margin: 0 auto 0.75rem;
  opacity: 0.7;
}

.home-stat__value {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--color-navy);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.home-stat__label {
  font-size: 0.9375rem;
  color: var(--color-muted);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   22. Home Services Showcase (card grid)
   -------------------------------------------------------------------------- */
.home-svc-showcase-wrap {
  background: #faf4f3;
}

.home-svc-showcase {
  padding: 0;
}

.home-svc-showcase__head {
  margin-bottom: 0;
}

.home-svc-showcase__stage {
  position: relative;
  margin-top: 3rem;
  padding-bottom: 0.5rem;
}

.home-svc-showcase__deco {
  position: absolute;
  top: 12%;
  left: 18%;
  right: -1.5rem;
  bottom: 10%;
  background: #e86b5a;
  z-index: 0;
  pointer-events: none;
}

.home-svc-slider {
  position: relative;
  z-index: 1;
}

.home-svc-slider__viewport {
  overflow: hidden;
}

.home-svc-slider__track {
  display: flex;
  gap: 1.75rem;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.home-svc-card {
  flex: 0 0 calc((100% - 3.5rem) / 3);
  min-width: 0;
  background: var(--color-white);
  box-shadow: 0 2px 16px rgba(35, 36, 80, 0.06);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.home-svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(35, 36, 80, 0.12);
}

.home-svc-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.home-svc-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-bg-light);
}

.home-svc-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.home-svc-card:hover .home-svc-card__img {
  transform: scale(1.03);
}

.home-svc-card__tag {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0.5rem 1rem;
  background: #d93030;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: none;
}

.home-svc-card__body {
  padding: 1.625rem 1.5rem 1.875rem;
  background: var(--color-white);
}

.home-svc-card__title {
  font-family: var(--font-body);
  font-size: clamp(1.0625rem, 1.5vw, 1.3125rem);
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.35;
  margin: 0 0 0.75rem;
}

.home-svc-card__desc {
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.65;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-svc-showcase__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 2.25rem;
  flex-wrap: wrap;
}

.home-svc-showcase__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-pill);
  background: #d93030;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.2;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.home-svc-showcase__cta:hover {
  background: #c62828;
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(217, 48, 48, 0.28);
}

.home-svc-showcase__nav {
  display: flex;
  gap: 0.625rem;
  margin-left: auto;
}

.home-svc-showcase__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 2px solid #e8c4c4;
  border-radius: 50%;
  background: var(--color-white);
  color: #b85c5c;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.home-svc-showcase__arrow:hover:not(:disabled) {
  border-color: #d93030;
  color: #d93030;
  background: #fff5f5;
}

.home-svc-showcase__arrow--next:not(:disabled) {
  border-color: rgba(217, 48, 48, 0.35);
  color: #d93030;
}

.home-svc-showcase__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* --------------------------------------------------------------------------
   22b. Home Services Grid (legacy)
   -------------------------------------------------------------------------- */
.home-services__grid {
  display: grid;
  grid-template-columns: 1fr 18rem;
  gap: 2rem;
  align-items: start;
}

.home-services__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.home-svc-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.home-svc-item:hover {
  border-color: var(--color-turquoise);
  box-shadow: var(--shadow-sm);
}

.home-svc-item__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  background: var(--color-bg-light);
  color: var(--color-teal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-svc-item__body h3 {
  font-size: 1rem;
  margin-bottom: 0.375rem;
}

.home-svc-item__body p {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.home-svc-item__body a {
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-teal);
}

.home-hours-card {
  background: linear-gradient(160deg, var(--color-navy) 0%, var(--color-teal) 100%);
  color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  position: sticky;
  top: calc(var(--header-total) + 1rem);
}

.home-hours-card__title {
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.home-hours-card__list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.home-hours-card__list li {
  display: flex;
  justify-content: space-between;
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.9375rem;
}

.home-hours-card__list li span {
  opacity: 0.85;
}

.home-hours-card__addr {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.home-services__more {
  text-align: center;
  margin-top: 2.5rem;
}

/* --------------------------------------------------------------------------
   23. Home Process, Aids, Appointment
   -------------------------------------------------------------------------- */
.home-process__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.home-visual-deco {
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 70%;
  height: 85%;
  background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-turquoise) 100%);
  border-radius: 2rem 2rem 2rem 0;
  opacity: 0.35;
  z-index: 0;
}

.home-visual-deco--right {
  right: -2rem;
  left: auto;
}

.home-visual-frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.home-visual-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.home-visual-frame--sm {
  max-width: 22rem;
}

.home-steps {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.home-steps li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  font-size: 0.9375rem;
  font-weight: 500;
  border-bottom: 1px solid var(--color-border);
}

.home-steps__num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--color-bg-light);
  color: var(--color-teal);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-aids__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.home-aid-card {
  position: relative;
  display: block;
  padding: 1.75rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.home-aid-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-turquoise);
}

.home-aid-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
  color: var(--color-navy);
  padding-right: 1.5rem;
}

.home-aid-card p {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.55;
}

.home-aid-card__arrow {
  position: absolute;
  top: 1.75rem;
  right: 1.5rem;
  color: var(--color-teal);
  font-size: 1.125rem;
  transition: transform var(--transition);
}

.home-aid-card:hover .home-aid-card__arrow {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   Homepage Blog Slider â€” Crafto hospitality style
   -------------------------------------------------------------------------- */
.home-blog__head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr) auto;
  gap: 2rem 2.5rem;
  align-items: end;
  margin-bottom: 2rem;
}

.home-blog__head-left .mk-title {
  margin-bottom: 0;
  max-width: 14ch;
}

.home-blog__head-desc {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 42ch;
  align-self: center;
}

.home-blog__nav {
  display: flex;
  gap: 0.625rem;
  align-self: center;
}

.home-blog__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 2px solid var(--color-border);
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-navy);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.home-blog__arrow:hover:not(:disabled) {
  border-color: var(--color-navy);
  color: var(--color-navy);
}

.home-blog__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.home-blog__progress {
  margin-bottom: 2rem;
}

.home-blog__progress-track {
  position: relative;
  height: 2px;
  background: var(--color-border);
  border-radius: 1px;
}

.home-blog__progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--color-pink);
  border-radius: 1px;
  transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-blog__progress-dot {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: var(--color-pink);
  transform: translate(-50%, -50%);
  transition: left 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-blog-slider {
  overflow: hidden;
}

.home-blog-slider__viewport {
  overflow: hidden;
}

.home-blog-slider__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.home-blog-card {
  flex: 0 0 calc((100% - 4.5rem) / 4);
  min-width: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.home-blog-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(230, 104, 139, 0.3);
}

.home-blog-card__image-link {
  display: block;
  overflow: hidden;
}

.home-blog-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.home-blog-card:hover .home-blog-card__img {
  transform: scale(1.05);
}

.home-blog-card__body {
  padding: 1.25rem 1.5rem 1rem;
  flex: 1;
}

.home-blog-card__title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.35;
  margin: 0 0 0.625rem;
}

.home-blog-card__title a {
  color: var(--color-navy);
  text-decoration: none;
  transition: color var(--transition);
}

.home-blog-card__title a:hover {
  color: var(--color-pink);
}

.home-blog-card__excerpt {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-blog-card__footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
  text-align: center;
}

.home-blog-card__cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-navy);
  text-decoration: none;
  transition: color var(--transition);
}

.home-blog-card__cta:hover {
  color: var(--color-pink);
}

.home-blog__more {
  text-align: right;
  margin: 2.5rem 0 0;
}

/* --------------------------------------------------------------------------
   Homepage Google Reviews â€” Crafto testimonials style
   -------------------------------------------------------------------------- */
.home-reviews {
  position: relative;
  background: var(--color-bg);
  overflow: hidden;
}

.home-reviews::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(35, 36, 80, 0.06) 1px, transparent 1px);
  background-size: 1.25rem 1.25rem;
  opacity: 0.5;
  pointer-events: none;
}

.home-reviews .container {
  position: relative;
  z-index: 1;
}

.home-reviews__stats {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.home-reviews__stat {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.home-reviews__stat--branches,
.home-reviews__stat--rating {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.375rem;
}

.home-reviews__stat-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-pink);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.home-reviews__stat--trust p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.5;
  max-width: 28ch;
}

.home-reviews__stat--trust strong {
  color: var(--color-navy);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--color-pink);
  text-underline-offset: 3px;
}

.home-reviews__stat-value {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--color-navy);
  line-height: 1;
}

.home-reviews__stat--branches p,
.home-reviews__stat--rating p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--color-muted);
  line-height: 1.45;
}

.home-reviews__stat-stars {
  display: flex;
  gap: 0.15rem;
}

.reviews-slider {
  position: relative;
}

.reviews-slider__viewport {
  overflow: hidden;
}

.reviews-slider__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 16rem;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition), transform var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1rem;
}

.review-card__avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  color: var(--color-white);
  font-size: 0.8125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.review-card__meta {
  min-width: 0;
}

.review-card__author {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 0.125rem;
  line-height: 1.3;
}

.review-card__role {
  margin: 0;
  font-size: 0.75rem;
  color: var(--color-muted);
}

.review-card__text {
  margin: 0 0 1.25rem;
  flex: 1;
}

.review-card__text p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-muted);
  margin: 0;
}

.review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.review-card__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.review-card__score {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-navy);
}

.review-card__stars {
  display: flex;
  gap: 0.1rem;
}

.review-star {
  font-size: 0.875rem;
  line-height: 1;
  color: #d1d9e6;
}

.review-star.is-filled {
  color: #f5b301;
}

.review-card__date {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: var(--radius-pill);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.reviews-slider__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.reviews-slider__dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--color-border);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), width var(--transition);
}

.reviews-slider__dot.is-active {
  width: 2rem;
  border-radius: 1rem;
  background: var(--color-pink);
}

.home-reviews__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.home-reviews__trust p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-muted);
}

.home-reviews__trust strong {
  color: var(--color-navy);
  font-weight: 700;
}

.home-reviews__google {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-navy);
  text-decoration: none;
  transition: color var(--transition);
}

.home-reviews__google:hover {
  color: var(--color-pink);
}

.home-reviews__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: #e8f5e9;
  border-radius: var(--radius-pill);
}

.home-reviews__badge-stars {
  display: flex;
  gap: 0.1rem;
  color: #34a853;
  font-size: 0.75rem;
  line-height: 1;
}

.home-reviews__badge-label {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #1b5e20;
  text-transform: uppercase;
}

.home-appointment__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.home-contact-blocks {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.home-contact-block {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
}

.home-contact-block svg {
  flex-shrink: 0;
  color: var(--color-teal);
  margin-top: 0.125rem;
}

.home-contact-block strong {
  display: block;
  font-size: 0.875rem;
  color: var(--color-navy);
  margin-bottom: 0.25rem;
}

.home-contact-block p {
  font-size: 0.9375rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.5;
}

.home-contact-block a {
  text-decoration: none;
}

.home-appointment__form-wrap {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.home-quick-form__title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--color-navy);
}

.home-quick-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.home-quick-form__note {
  text-align: center;
  font-size: 0.8125rem;
  margin: 1rem 0 0;
}

.home-quick-form__note a {
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   24. Home FAQ & CTA Banner
   -------------------------------------------------------------------------- */
.home-faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
  max-width: 56rem;
  margin-inline: auto;
}

.home-faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 0.25rem 0;
}

.home-faq-item summary {
  padding: 1rem 0;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--color-navy);
}

.home-faq-item summary::-webkit-details-marker {
  display: none;
}

.home-faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--color-teal);
  flex-shrink: 0;
}

.home-faq-item[open] summary::after {
  content: '\2212';
}

.home-faq-item p {
  padding: 0 0 1rem;
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.65;
  margin: 0;
}

.home-faq__more {
  text-align: right;
  margin-top: 2rem;
}

.home-cta-banner {
  background: var(--color-navy);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.home-cta-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.home-cta-banner h2 {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.home-cta-banner p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  font-size: var(--text-lg);
  max-width: none;
}

.home-cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Legacy home-* shared labels */
.home-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-teal);
  margin-bottom: 0.75rem;
}

.home-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.home-lead {
  font-size: var(--text-lg);
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 52ch;
}

.home-lead--center {
  margin-inline: auto;
  text-align: center;
}

.home-section-head {
  margin-bottom: 2.5rem;
}

.home-section-head--center {
  text-align: center;
}

.home-section-head--center .home-lead {
  margin-inline: auto;
}

.home-features {
  margin-bottom: 2rem;
}

.home-feature {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.home-feature__icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.625rem;
  background: var(--color-bg-light);
  color: var(--color-teal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-feature__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--color-navy);
}

.home-feature__desc {
  font-size: 0.9375rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.55;
}

.home-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.home-about__visual {
  position: relative;
}

/* --------------------------------------------------------------------------
   25. FAQ Accordion
   -------------------------------------------------------------------------- */
.faq-accordion {
  max-width: 48rem;
  margin-inline: auto;
}

.faq-accordion--grid {
  max-width: 56rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
}

.faq-accordion__item {
  border-bottom: 1px solid var(--color-border);
}

.faq-accordion__item summary {
  padding: 1.25rem 0;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--color-navy);
  transition: color var(--transition);
}

.faq-accordion__item summary:hover {
  color: var(--color-teal);
}

.faq-accordion__item summary::-webkit-details-marker {
  display: none;
}

.faq-accordion__item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--color-teal);
  flex-shrink: 0;
  line-height: 1;
}

.faq-accordion__item[open] summary::after {
  content: '\2212';
}

.faq-accordion__item p,
.faq-accordion__item .faq-item__answer {
  padding: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.65;
  margin: 0;
}

.faq-list {
  max-width: 48rem;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item summary {
  padding: 1.25rem 0;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--color-navy);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--color-teal);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-item__answer {
  padding: 0 0 1.25rem;
  color: var(--color-muted);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   26. Page Content & Prose
   -------------------------------------------------------------------------- */
.page-content {
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.page-content .container {
  display: grid;
  gap: 2rem;
}

.prose {
  max-width: 65ch;
}

.prose h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.prose h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.prose ul,
.prose ol {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
}

.prose li {
  margin-bottom: 0.375rem;
}

.prose a {
  font-weight: 500;
}

.prose img {
  border-radius: var(--radius-lg);
  margin: 1.5rem 0;
}

.prose-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.5rem 0;
}

.prose-table-wrap table {
  width: 100%;
  min-width: 32rem;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.prose-table-wrap th,
.prose-table-wrap td {
  padding: 0.625rem 0.75rem;
  border: 1px solid var(--color-border, #e2e8f0);
  text-align: left;
  vertical-align: top;
}

.prose-table-wrap th {
  background: var(--color-bg-light);
  font-weight: 600;
}

.article-cta {
  margin-top: 2.5rem;
}

.article-figure {
  margin: 0 0 2rem;
  max-width: none;
}

.article-figure__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.article-figure__caption {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.5;
}

.article-figure__desc {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.mk-card--blog {
  padding: 0;
  overflow: hidden;
}

.mk-card--blog .mk-card__content {
  padding: 1.25rem;
}

.mk-card__image-link {
  display: block;
  overflow: hidden;
}

.mk-card__image {
  display: block;
  width: 100%;
  height: 11rem;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.mk-card--blog:hover .mk-card__image {
  transform: scale(1.03);
}

.mk-card__meta {
  font-size: 0.8125rem;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

/* --------------------------------------------------------------------------
   Blog article layout + sidebar
   -------------------------------------------------------------------------- */
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17.5rem, 22rem);
  gap: 2.5rem;
  align-items: start;
}

.article-layout__header {
  margin-bottom: 2rem;
}

.article-layout__meta {
  color: var(--color-muted);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.article-layout__prose {
  max-width: none;
}

.article-trust {
  margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #f8fafc 100%);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-lg);
}

.article-trust__badge {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.article-trust__icon {
  flex-shrink: 0;
  color: #1d4ed8;
  margin-top: 0.125rem;
}

.article-trust__badge-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text);
}

.article-trust__role {
  color: var(--color-muted);
  font-weight: 500;
}

.article-trust__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-bottom: 0.875rem;
  font-size: 0.875rem;
}

.article-trust__meta p {
  margin: 0;
}

.article-trust__label {
  color: var(--color-muted);
  margin-right: 0.25rem;
}

.article-trust__author-name {
  margin: 0 0 0.375rem;
  font-size: 0.9375rem;
}

.article-trust__author-desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-muted);
}

.article-references {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border, #e2e8f0);
}

.article-references__lead {
  font-size: 0.9375rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.article-references__list {
  margin: 0;
  padding-left: 1.25rem;
}

.article-references__list li {
  margin-bottom: 0.625rem;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.article-references__publisher {
  color: var(--color-muted);
  font-size: 0.875rem;
}

.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 6.5rem;
}

.article-sidebar__card {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border, #e2e8f0);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.article-sidebar__card--whatsapp {
  background: linear-gradient(145deg, #f0fdf4 0%, #ecfdf5 100%);
  border-color: #bbf7d0;
}

.article-sidebar__title {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 0.625rem;
  color: var(--color-navy, #1e3a5f);
}

.article-sidebar__lead {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-muted);
  margin: 0 0 1rem;
}

.article-sidebar__whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: var(--color-whatsapp);
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.article-sidebar__whatsapp:hover {
  background: var(--color-whatsapp-dark);
  color: #fff;
  transform: translateY(-1px);
}

.article-sidebar__phone {
  margin: 0.75rem 0 0;
  text-align: center;
  font-size: 0.875rem;
}

.article-sidebar__phone a {
  color: var(--color-navy, #1e3a5f);
  font-weight: 600;
}

.article-sidebar__note {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--color-muted);
}

.article-sidebar__brands {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.article-sidebar__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #fff;
  border: 1px solid var(--color-border, #e2e8f0);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--color-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.article-sidebar__brand:hover {
  border-color: var(--color-teal);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.article-sidebar__brand img {
  flex-shrink: 0;
  width: 5.5rem;
  height: auto;
  object-fit: contain;
}

.article-sidebar__brand span {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
}

.sgk-widget {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #1e40af;
  background: #fff;
}

.sgk-widget__head {
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
  color: #fff;
  padding: 0.875rem 1rem;
  text-align: center;
}

.sgk-widget__head-title {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.sgk-widget__head-date {
  margin: 0.375rem 0 0;
  font-size: 0.6875rem;
  opacity: 0.9;
}

.sgk-widget__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.sgk-widget__group {
  padding: 0.75rem;
  border-right: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.sgk-widget__group:nth-child(2n) {
  border-right: none;
}

.sgk-widget__group:nth-last-child(-n + 2) {
  border-bottom: none;
}

.sgk-widget__age {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #1e40af;
}

.sgk-widget__row {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin: 0 0 0.25rem;
  font-size: 0.6875rem;
  line-height: 1.4;
}

.sgk-widget__row span {
  color: var(--color-muted);
}

.sgk-widget__row strong {
  color: var(--color-text);
  font-weight: 700;
  white-space: nowrap;
}

.sgk-widget__foot {
  padding: 0.75rem 1rem;
  background: #eff6ff;
  border-top: 1px solid #dbeafe;
}

.sgk-widget__battery {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.sgk-widget__battery strong {
  color: #1e40af;
}

.sgk-widget__source {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1d4ed8;
  text-decoration: none;
}

.sgk-widget__source:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .article-sidebar {
    position: static;
    order: 2;
  }

  .article-layout__main {
    order: 1;
  }
}

@media (max-width: 480px) {
  .sgk-widget__grid {
    grid-template-columns: 1fr;
  }

  .sgk-widget__group {
    border-right: none;
  }

  .sgk-widget__group:not(:last-child) {
    border-bottom: 1px solid #e2e8f0;
  }

  .sgk-widget__group:nth-last-child(-n + 2) {
    border-bottom: 1px solid #e2e8f0;
  }

  .sgk-widget__group:last-child {
    border-bottom: none;
  }
}

.info-box {
  padding: 1.25rem;
  background: var(--color-bg-light);
  border-left: 4px solid var(--color-teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: none;
}

/* --------------------------------------------------------------------------
   27. Page Header & Breadcrumb
   -------------------------------------------------------------------------- */
.page-header {
  background: var(--color-bg-light);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.page-header h1 {
  margin-bottom: 0.75rem;
}

.page-header__desc {
  color: var(--color-muted);
  font-size: var(--text-lg);
  margin: 0;
  max-width: 60ch;
}

.breadcrumb {
  padding: 1rem 0;
  font-size: 0.875rem;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb__item:not(:last-child)::after {
  content: '\203A';
  margin-left: 0.5rem;
  color: var(--color-muted);
}

.breadcrumb a {
  color: var(--color-muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--color-teal);
}

.breadcrumb--hero {
  padding: 0 0 1rem;
}

.breadcrumb--hero .breadcrumb__item:not(:last-child)::after {
  color: rgba(255, 255, 255, 0.55);
}

.breadcrumb--hero a {
  color: rgba(255, 255, 255, 0.78);
}

.breadcrumb--hero a:hover {
  color: var(--color-white);
}

.breadcrumb--hero .breadcrumb__item:last-child span {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   28. Social Bar
   -------------------------------------------------------------------------- */
.social-bar {
  background: var(--color-pink);
  color: var(--color-white);
  padding: 0.875rem 0;
}

.social-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-bar__text {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 500;
}

.social-bar__icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-bar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}

.social-bar__icon:hover {
  background: rgba(255, 255, 255, 0.28);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   29. MK Footer â€” 4-column layout
   -------------------------------------------------------------------------- */
.mk-footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 3.5rem 0 1.5rem;
}

.mk-footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color var(--transition);
}

.mk-footer a:hover {
  color: var(--color-white);
}

.mk-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.mk-footer__heading {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.mk-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mk-footer__links li {
  margin-bottom: 0.5rem;
}

.mk-footer__links a {
  font-size: 0.9375rem;
}

.mk-footer__contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.mk-footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.mk-footer__contact-list svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--color-turquoise);
}

.mk-footer__branch {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.mk-footer__branch-name {
  font-weight: 600;
}

.mk-footer__branch-address {
  color: rgba(255, 255, 255, 0.85);
}

.mk-footer__col--cta p {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: none;
  color: rgba(255, 255, 255, 0.8);
}

.mk-footer__phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition);
}

.mk-footer__phone-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--color-white);
}

.mk-footer__disclaimer {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mk-footer__disclaimer p {
  margin: 0;
  max-width: none;
  font-size: 0.75rem;
}

.mk-footer__network {
  margin: 0 0 0.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mk-footer__network-label {
  margin: 0 0 1rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.mk-footer__network-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2.5rem;
  margin-bottom: 1.75rem;
}

.mk-footer__network-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.mk-footer__network-list li {
  font-size: 0.75rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.52);
}

.mk-footer__network-list strong {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.mk-footer__network-list a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.22);
  text-underline-offset: 2px;
  transition: color var(--transition), text-decoration-color var(--transition);
}

.mk-footer__network-list a:hover {
  color: var(--color-white);
  text-decoration-color: rgba(255, 255, 255, 0.55);
}

.mk-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

.mk-footer__bottom p {
  margin: 0;
  max-width: none;
}

.mk-footer__logo img {
  height: 4.25rem;
  width: auto;
  max-width: 18rem;
  opacity: 1;
}

.mk-footer__cookie {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.8125rem;
  font-family: inherit;
  transition: background var(--transition);
}

.mk-footer__cookie:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* --------------------------------------------------------------------------
   30. Site Footer (legacy)
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 3.5rem 0 1.5rem;
  margin-bottom: 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--color-white);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.site-footer__heading {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__links li {
  margin-bottom: 0.5rem;
}

.site-footer__links a {
  font-size: 0.9375rem;
}

.site-footer__desc {
  font-size: 0.9375rem;
  margin: 1rem 0;
  line-height: 1.6;
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.site-footer__address {
  font-style: normal;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.site-footer__note {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.75rem;
}

.site-footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.site-footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8125rem;
}

.site-footer__disclaimer {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

.site-footer__cookie-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.8125rem;
  font-family: inherit;
}

.site-footer__cookie-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* --------------------------------------------------------------------------
   31. Cookie Banner
   -------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  padding: 1.25rem;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner__title {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--color-navy);
}

.cookie-banner__desc {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin: 0;
  max-width: 52ch;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-panel {
  max-width: var(--max-width);
  margin: 1rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.cookie-panel[hidden] {
  display: none;
}

.cookie-panel__item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  cursor: pointer;
}

.cookie-panel__fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

/* --------------------------------------------------------------------------
   32. Mobile Bar
   -------------------------------------------------------------------------- */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.06);
  overflow: visible;
}

.mobile-bar__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.625rem;
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.6875rem;
  font-weight: 500;
  min-height: 3.5rem;
  transition: color var(--transition), background var(--transition);
}

.mobile-bar__item:hover {
  color: var(--color-teal);
  background: var(--color-bg-light);
}

.mobile-bar__item--primary {
  background: var(--color-pink);
  color: var(--color-white);
}

.mobile-bar__item--primary:hover {
  background: var(--color-pink-dark);
  color: var(--color-white);
}

.mobile-bar__item--whatsapp {
  color: var(--color-whatsapp);
}

.mobile-bar__item--whatsapp:hover {
  color: var(--color-whatsapp-dark);
  background: rgba(37, 211, 102, 0.08);
}

.mobile-bar__item svg {
  color: currentColor;
}

.mobile-bar__slot {
  flex: 1;
  min-width: 0;
  position: relative;
  display: flex;
  overflow: visible;
}

.mobile-bar__item--lang {
  width: 100%;
  border: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.mobile-bar__item--lang[aria-expanded="true"] {
  color: var(--color-teal);
  background: var(--color-bg-light);
}

@media (max-width: 380px) {
  .mobile-bar__item {
    padding-inline: 0.35rem;
    font-size: 0.625rem;
  }

  .mobile-bar__item svg {
    width: 18px;
    height: 18px;
  }
}

/* --------------------------------------------------------------------------
   33. CTA Section
   -------------------------------------------------------------------------- */
.cta-section {
  background: var(--color-navy);
  color: var(--color-white);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.cta-section__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-section__title {
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.cta-section__desc {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  max-width: 40ch;
}

.cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cta-section .btn--primary {
  background: var(--color-turquoise);
  border-color: var(--color-turquoise);
}

.cta-section .btn--secondary {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.cta-section .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
}

/* --------------------------------------------------------------------------
   34. Cards & Grids (legacy inner pages)
   -------------------------------------------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
  gap: 1.5rem;
}

.card-grid--editorial {
  grid-template-columns: repeat(12, 1fr);
}

.card-grid--editorial .service-card:nth-child(1) { grid-column: span 4; }
.card-grid--editorial .service-card:nth-child(2) { grid-column: span 4; }
.card-grid--editorial .service-card:nth-child(3) { grid-column: span 4; }
.card-grid--editorial .service-card:nth-child(4) { grid-column: span 6; }
.card-grid--editorial .service-card:nth-child(5) { grid-column: span 6; }
.card-grid--editorial .service-card:nth-child(6) { grid-column: span 4; }
.card-grid--editorial .service-card:nth-child(7) { grid-column: span 4; }
.card-grid--editorial .service-card:nth-child(8) { grid-column: span 4; }

.service-card,
.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover,
.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-turquoise);
}

.service-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--color-teal);
  margin-bottom: 1rem;
}

.service-card__title {
  margin-bottom: 0.5rem;
}

.service-card__desc {
  color: var(--color-muted);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.service-card__link {
  font-weight: 500;
  text-decoration: none;
  color: var(--color-teal);
}

.service-card__link:hover {
  text-decoration: underline;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  gap: 1.5rem;
}

.trust-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.trust-item__value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-teal);
}

.trust-item__label {
  font-size: 0.875rem;
  color: var(--color-muted);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
  gap: 1.25rem;
}

.why-item {
  padding: 1.25rem;
  border-left: 3px solid var(--color-teal);
  background: var(--color-white);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.why-item h3 {
  font-size: 1rem;
  margin-bottom: 0.375rem;
}

.why-item p {
  font-size: 0.9375rem;
  color: var(--color-muted);
  margin: 0;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
  gap: 1rem;
  counter-reset: process;
  list-style: none;
  padding: 0;
  margin: 0;
}

.process-list li {
  counter-increment: process;
  padding: 1.25rem;
  padding-top: 2.5rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  position: relative;
}

.process-list li::before {
  content: counter(process);
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-teal);
  font-size: 0.875rem;
}

.branch-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.branch-card__body {
  padding: 1.75rem;
}

.branch-card__meta {
  color: var(--color-muted);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.branch-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* --------------------------------------------------------------------------
   35. Hero (legacy inner pages)
   -------------------------------------------------------------------------- */
.hero {
  background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-white) 50%, var(--color-bg) 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-teal);
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.hero__title {
  margin-bottom: 1.25rem;
}

.hero__desc {
  font-size: var(--text-lg);
  color: var(--color-muted);
  margin-bottom: 2rem;
  max-width: 55ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero__secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero__secondary a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
}

.hero__secondary a:hover {
  color: var(--color-teal);
}

.hero__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--color-bg-light);
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   36. Top Bar & Site Header (legacy)
   -------------------------------------------------------------------------- */
.top-bar {
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 0.875rem;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 2.5rem;
  gap: 1rem;
}

.top-bar__info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.top-bar__link {
  color: var(--color-white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.top-bar__link:hover {
  color: var(--color-bg-light);
}

.top-bar__divider {
  opacity: 0.4;
}

.top-bar__cta {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}

.top-bar__cta:hover {
  color: var(--color-white);
}

.site-header {
  background: var(--color-white);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-md);
}

.site-header--modern .site-header__top {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.site-header__top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.5rem;
  padding: 0.5rem 0;
}

.site-header__contacts {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.site-header__contact {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.site-header__contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--color-bg-light);
  color: var(--color-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.site-header__contact-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-muted);
}

.site-header__contact-value {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-navy);
  text-decoration: none;
}

.site-header__contact-value:hover {
  color: var(--color-teal);
}

.site-header__top-cta {
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  padding-inline: 1.75rem;
}

.site-header__nav-bar {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3.25rem;
  gap: 1.5rem;
}

.site-header__logo-img {
  height: 2.5rem;
  width: auto;
}

.site-header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.site-header__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  transition: transform var(--transition);
}

/* --------------------------------------------------------------------------
   37. Map, Blog, Search, 404
   -------------------------------------------------------------------------- */
.map-preview {
  aspect-ratio: 16 / 9;
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.map-preview__label {
  text-align: center;
  color: var(--color-muted);
  padding: 2rem;
}

.map-preview iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-preview--live {
  cursor: default;
}

.blog-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
}

.blog-card__body {
  padding: 1.5rem;
}

.blog-card__meta {
  font-size: 0.8125rem;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.blog-card__title {
  margin-bottom: 0.5rem;
}

.blog-card__title a {
  color: var(--color-navy);
  text-decoration: none;
}

.blog-card__title a:hover {
  color: var(--color-teal);
}

.blog-card__excerpt {
  font-size: 0.9375rem;
  color: var(--color-muted);
  margin: 0;
}

.search-form {
  display: flex;
  gap: 0.5rem;
  max-width: 32rem;
}

.search-form .form-input {
  flex: 1;
}

.error-page {
  text-align: center;
  padding: 4rem 0;
}

.error-page__code {
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 700;
  color: var(--color-bg-light);
  line-height: 1;
  margin-bottom: 1rem;
}

.section__header {
  margin-bottom: 2.5rem;
  max-width: 40rem;
}

.section__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-teal);
  margin-bottom: 0.5rem;
}

.section__desc {
  color: var(--color-muted);
  font-size: var(--text-lg);
}

/* --------------------------------------------------------------------------
   38. WCAG Focus Visible
   -------------------------------------------------------------------------- */
:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--color-turquoise);
  outline-offset: 2px;
}

.btn:focus-visible,
.mk-nav__link:focus-visible,
.mk-nav__trigger:focus-visible,
.mk-header__social-link:focus-visible,
.social-bar__icon:focus-visible,
.home-aid-card:focus-visible,
.home-float-card__link:focus-visible {
  outline: 2px solid var(--color-turquoise);
  outline-offset: 2px;
}

.faq-accordion__item summary:focus-visible,
.faq-item summary:focus-visible,
.home-faq-item summary:focus-visible {
  outline: 2px solid var(--color-turquoise);
  outline-offset: 2px;
  border-radius: var(--radius);
}

/* --------------------------------------------------------------------------
   39. Responsive â€” 1100px
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .mk-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mk-split,
  .home-about__grid,
  .home-process__grid,
  .home-appointment__grid,
  .mk-appointment-split,
  .vm-panel__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .vm-tabs {
    display: flex;
    width: 100%;
  }

  .vm-tabs__btn {
    flex: 1;
    padding-inline: 1rem;
    font-size: 0.9375rem;
  }

  .mk-split--reverse .mk-split__visual,
  .home-process__visual {
    order: -1;
  }

  .home-float-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-about {
    padding-top: 2rem;
  }

  .home-services__grid {
    grid-template-columns: 1fr;
  }

  .home-svc-slider__track .home-svc-card {
    flex: 0 0 calc((100% - 1.75rem) / 2);
  }

  .home-svc-showcase__deco {
    top: 8%;
    left: 12%;
    right: -0.75rem;
    bottom: 6%;
  }

  .hours-box,
  .home-hours-card {
    position: static;
  }

  .home-aids__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-blog-card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
  }

  .home-blog__head {
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
  }

  .home-blog__head-desc {
    grid-column: 1 / -1;
    max-width: none;
  }

  .review-card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
  }

  .home-reviews__stats {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .home-reviews__stat--trust {
    grid-column: 1 / -1;
  }

  .mk-stats__grid,
  .home-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid--editorial .service-card {
    grid-column: span 6 !important;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    order: -1;
    max-height: 20rem;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* --------------------------------------------------------------------------
   39. Responsive â€” 1100px
   -------------------------------------------------------------------------- */
@media (min-width: 1101px) {
  .mk-header__nav-wrap {
    display: flex !important;
  }

  .mk-header__toggle {
    display: none !important;
  }

  .mk-header__cta--mobile {
    display: none !important;
  }
}

@media (max-width: 1100px) {
  .mk-header {
    padding: 0.7rem 0.75rem 0;
  }

  .mk-header__inner {
    padding: 0.35rem 0.4rem 0.35rem 0.9rem;
    min-height: 3.1rem;
  }

  .mk-header__logo img {
    height: 1.95rem;
    max-width: 8.5rem;
  }

  .mk-header__cta--desktop {
    display: none;
  }

  .mk-header__nav-wrap {
    display: none;
  }

  .mk-header__toggle {
    display: flex;
  }

  .mk-header.is-menu-open .mk-header__bar {
    border-radius: 1.35rem;
  }

  .mk-header__nav-wrap.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    flex: 1 1 100%;
    order: 4;
    width: 100%;
    padding: 0.35rem 0.65rem 0.85rem;
    border-top: 1px solid rgba(35, 36, 80, 0.06);
    margin-top: 0.15rem;
  }

  .mk-header__actions {
    margin-left: auto;
  }

  .mk-header.is-menu-open .mk-header__inner {
    flex-wrap: wrap;
  }

  .mk-header__nav-wrap.is-open .mk-nav__list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.15rem;
  }

  .mk-header__nav-wrap.is-open .mk-nav__link,
  .mk-header__nav-wrap.is-open .mk-nav__trigger {
    width: 100%;
    justify-content: space-between;
    padding: 0.7rem 0.85rem;
    color: var(--color-text);
    border-radius: 0.75rem;
  }

  .mk-header__nav-wrap.is-open .mk-nav__link:hover,
  .mk-header__nav-wrap.is-open .mk-nav__trigger:hover,
  .mk-header__nav-wrap.is-open .mk-nav__link.is-active {
    color: var(--color-pink);
    background: rgba(230, 104, 139, 0.08);
  }

  .mk-header__nav-wrap.is-open .mk-nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0.15rem 0 0.35rem 0.75rem;
    display: none;
    background: transparent;
    margin-top: 0;
    left: auto;
    min-width: 0;
  }

  .mk-header__nav-wrap.is-open .mk-nav__item--open .mk-nav__dropdown,
  .mk-header__nav-wrap.is-open .mk-nav__item--dropdown:focus-within .mk-nav__dropdown {
    display: block;
  }

  .mk-header__cta--mobile {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    margin-top: 0.25rem;
  }
}

@media (max-width: 768px) {
  .mk-header__cta--desktop {
    display: none;
  }

  .mk-header__toggle {
    margin-left: 0;
  }

  .home-hero__title {
    max-width: none;
  }

  .home-hero--slider {
    --hero-meta-h: auto;
  }

  .home-hero__stage {
    min-height: 16rem;
  }

  .home-hero__slide-align {
    padding-inline: 0.75rem;
    align-items: flex-start;
    padding-top: 5.25rem;
  }

  .home-hero__slide-shell {
    align-items: flex-start;
  }

  .home-hero__slide-content {
    padding-left: 0.9rem;
    padding-block: 0 clamp(3.75rem, 8vw, 4.5rem);
    max-width: 100%;
  }

  .home-hero__slide-img {
    object-position: 62% center;
    transform: none;
  }

  .home-hero__slide.is-active .home-hero__slide-img {
    transform: none;
  }

  .home-hero__controls {
    bottom: 0.85rem;
    gap: 0.55rem;
  }

  .home-hero__nav {
    width: 2.2rem;
    height: 2.2rem;
  }

  .home-hero__nav svg {
    width: 16px;
    height: 16px;
  }

  .home-hero__dots {
    padding: 0.28rem 0.45rem;
    gap: 0.32rem;
  }

  .home-hero__dot {
    width: 0.45rem;
    height: 0.45rem;
  }

  .home-hero__dot.is-active {
    width: 1.25rem;
  }

  .visual-frame__deco,
  .visual-frame__deco--circle,
  .home-visual-deco {
    display: none;
  }

  .visual-frame {
    max-width: 100%;
  }

  .mk-split__visual,
  .home-process__visual,
  .home-about__visual {
    overflow: hidden;
    max-width: 100%;
  }

  .home-hero__meta-bar-inner {
    justify-content: center;
    text-align: center;
    gap: 0.55rem 1.25rem;
  }

  .home-hero__meta-bar-inner span {
    justify-content: center;
  }

  .home-help-bar__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.25rem;
  }

  .home-help-bar__contact {
    flex-direction: column;
    text-align: center;
  }

  .home-help-bar__btn {
    justify-content: center;
    width: 100%;
  }

  .home-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-hero__actions .btn {
    width: auto;
    min-width: min(100%, 14.5rem);
  }

  .home-hero__actions .btn--lg {
    min-height: 2.625rem;
    padding: 0.625rem 1.35rem;
    font-size: 0.9375rem;
  }

  .home-about {
    padding-top: 2rem;
  }

  .home-services__list,
  .mk-service-grid {
    grid-template-columns: 1fr;
  }

  .services-showcase__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .svc-tile,
  .svc-tile--featured {
    grid-column: auto;
  }

  .svc-tile__media,
  .svc-tile--featured .svc-tile__media {
    aspect-ratio: 16 / 10;
  }

  .home-aids__grid {
    grid-template-columns: 1fr;
  }

  .home-svc-slider__track .home-svc-card {
    flex: 0 0 100%;
  }

  .home-svc-showcase__deco {
    display: none;
  }

  .home-svc-showcase__stage {
    margin-top: 2rem;
  }

  .home-svc-showcase__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .home-svc-showcase__cta {
    text-align: center;
  }

  .home-svc-showcase__nav {
    margin-left: 0;
    justify-content: center;
  }

  .home-blog-card {
    flex: 0 0 100%;
  }

  .home-blog__head {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .home-blog__nav {
    justify-content: flex-end;
  }

  .review-card {
    flex: 0 0 100%;
  }

  .home-reviews__stats {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .home-reviews__stat {
    flex-direction: column;
    align-items: center;
  }

  .home-reviews__stat--branches,
  .home-reviews__stat--rating {
    align-items: center;
  }

  .home-reviews__trust {
    flex-direction: column;
    text-align: center;
  }

  .service-approach__img {
    min-height: 20rem;
  }

  .home-faq__grid,
  .faq-accordion--grid {
    grid-template-columns: 1fr;
  }

  .home-quick-form__row,
  .mk-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-split-card {
    grid-template-columns: 1fr;
  }

  .contact-split-form__row--2 {
    grid-template-columns: 1fr;
  }

  .contact-split-card__whatsapp {
    margin-top: 1.5rem;
  }

  .btn--submit-pill {
    width: 100%;
  }

  .home-cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .home-cta-banner__actions {
    justify-content: center;
    width: 100%;
  }

  .home-cta-banner__actions .btn {
    flex: 1;
    min-width: 10rem;
  }

  .home-visual-frame--sm,
  .visual-frame {
    max-width: 100%;
  }

  .page-hero-banner {
    min-height: 12rem;
  }

  .page-hero-banner__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .social-bar__inner {
    justify-content: center;
    text-align: center;
  }

  .mk-footer__grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .mk-footer__network-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .mk-footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .mobile-bar {
    display: flex;
  }

  body {
    padding-bottom: 3.5rem;
  }

  .mk-footer,
  .site-footer {
    margin-bottom: 3.5rem;
  }

  .card-grid--editorial .service-card {
    grid-column: span 12 !important;
  }

  .cta-section__inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-section__actions {
    justify-content: center;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__actions {
    justify-content: stretch;
  }

  .cookie-banner__actions .btn {
    flex: 1;
  }

  .top-bar__divider--hide-mobile,
  .top-bar__text--hide-mobile {
    display: none;
  }

  .site-header__contacts,
  .site-header__top-cta {
    display: none;
  }

  .site-header__nav-bar {
    position: fixed;
    inset: 0;
    top: 4.5rem;
    background: var(--color-white);
    padding: 1.5rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
    z-index: 99;
    display: block;
  }

  .site-header__nav-bar.is-open {
    transform: translateX(0);
  }

  .site-header__toggle {
    display: flex;
    margin-left: auto;
  }

  .main-nav__list {
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav__submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    display: none;
  }

  .main-nav__item--open .main-nav__submenu {
    display: block;
  }
}

/* --------------------------------------------------------------------------
   41. Responsive â€” 480px
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .container {
    width: min(100% - 1.25rem, var(--max-width));
  }

  .mk-header__logo img {
    height: 1.85rem;
    max-width: 8rem;
  }

  .home-hero__brand {
    font-size: 1.4rem;
    margin-bottom: 0.65rem;
  }

  .home-hero__title {
    font-size: clamp(1.35rem, 6.5vw, 1.65rem);
  }

  .home-hero__desc {
    font-size: 0.95rem;
    margin-bottom: 1.15rem;
  }

  .home-hero__stage {
    min-height: 14rem;
  }

  .home-hero__slide-align {
    padding-top: 4.85rem;
  }

  .home-hero__slide-content {
    padding-block: 0 3.65rem;
  }

  .home-hero__slide-img {
    object-position: 68% center;
  }

  .home-hero__controls {
    bottom: 0.65rem;
    gap: 0.4rem;
  }

  .home-hero__nav {
    width: 1.95rem;
    height: 1.95rem;
  }

  .home-hero__nav svg {
    width: 14px;
    height: 14px;
  }

  .home-hero__meta-bar-inner {
    padding-block: 0.75rem;
    font-size: 0.8125rem;
  }

  .home-hero__meta-bar-inner span:last-child {
    width: 100%;
    justify-content: center;
  }

  .home-hero__actions .btn,
  .hero__actions .btn {
    width: auto;
    min-width: min(100%, 13rem);
  }

  .home-hero__actions .btn--lg {
    min-height: 2.45rem;
    padding: 0.5rem 1.1rem;
    font-size: 0.875rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .home-float-card {
    padding: 1.25rem;
  }

  .mk-stats__grid,
  .home-stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .mk-form-card,
  .home-appointment__form-wrap {
    padding: 1.25rem;
  }

  .btn--lg {
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
  }

  .page-hero-banner__content {
    padding: 2rem 0;
  }

  .social-bar__text {
    font-size: 0.8125rem;
  }

  .mk-footer__phone-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   Crafto Elder Care â€” Footer CTA & extras
   ========================================================================== */
.crafto-checklist {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.crafto-checklist li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.crafto-checklist__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(230, 104, 139, 0.12);
  color: var(--color-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.crafto-checklist strong {
  display: block;
  font-size: 1rem;
  color: var(--color-navy);
  margin-bottom: 0.25rem;
}

.crafto-checklist p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.55;
}

.crafto-action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.crafto-phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.crafto-phone__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
}

.crafto-phone__label {
  display: block;
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-bottom: 0.125rem;
}

.crafto-phone a {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--color-navy);
  text-decoration: none;
  font-weight: 400;
}

.crafto-phone a:hover {
  color: var(--color-pink);
}

.footer-cta {
  background: var(--color-bg);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  border-top: 1px solid var(--color-border);
}

.footer-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--color-navy);
  margin: 0 0 0.5rem;
}

.footer-cta__desc {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9375rem;
}

.footer-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.mk-footer__tagline {
  margin: 1rem 0 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 28ch;
}

.mk-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mk-footer__legal a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
}

.mk-footer__legal a:hover {
  color: var(--color-white);
}

.cta-section {
  background: var(--color-navy);
}

.cta-section__title {
  font-family: var(--font-heading);
  font-weight: 400;
}

/* ==========================================================================
   Service Detail â€” Modern layout
   ========================================================================== */
.svc-intro__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  border-bottom: 4px solid var(--svc-accent, var(--color-teal));
}

.svc-intro__frame img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.svc-detail .svc-chip {
  background: color-mix(in srgb, var(--svc-accent, #E6688B) 12%, transparent);
  color: var(--svc-accent, var(--color-pink-dark));
}

.svc-detail .svc-process-card:hover {
  border-color: var(--svc-accent, var(--color-pink));
}

.svc-detail .svc-process-card__step {
  color: color-mix(in srgb, var(--svc-accent, #E6688B) 28%, transparent);
}

.svc-detail .svc-process-card__icon {
  background: color-mix(in srgb, var(--svc-accent, #E6688B) 14%, transparent);
  color: var(--svc-accent, var(--color-pink));
}

.svc-detail .svc-device-card:hover {
  border-color: var(--svc-accent, var(--color-pink));
}

.svc-detail .svc-device-card__icon {
  color: var(--svc-accent, var(--color-pink));
}

.svc-detail .svc-device-card__link {
  color: var(--svc-accent, var(--color-pink));
}

.svc-detail .svc-benefit-card__icon {
  background: color-mix(in srgb, var(--svc-accent, #E6688B) 14%, transparent);
  color: var(--svc-accent, var(--color-pink));
}

.svc-detail .svc-included__list svg,
.svc-detail .svc-included__badge svg {
  color: var(--svc-accent, var(--color-pink));
}

.svc-detail .svc-faq__item summary::after {
  color: var(--svc-accent, var(--color-pink));
}

.svc-detail .svc-product-card__points li::before {
  background: var(--svc-accent, var(--color-teal));
}

.svc-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 56rem;
  margin-inline: auto;
}

.svc-related-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.svc-related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--svc-accent, var(--color-pink));
}

.svc-related-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  color: var(--color-navy);
}

.svc-related-card p {
  margin: 0;
  flex: 1;
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.55;
}

.svc-related-card__link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--svc-accent, var(--color-pink));
}

.svc-stats {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 2.5rem 0;
  margin-top: -1px;
}

.svc-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.svc-stat__value {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.375rem;
}

.svc-stat__label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.svc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.svc-chip {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: rgba(230, 104, 139, 0.1);
  color: var(--color-pink-dark);
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
}

.svc-process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.svc-process__grid--5 {
  grid-template-columns: repeat(5, 1fr);
}

.svc-process__grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.svc-process__grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.svc-process-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.svc-process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-pink);
}

.svc-process-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.svc-process-card__step {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: rgba(230, 104, 139, 0.25);
  line-height: 1;
}

.svc-process-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(230, 104, 139, 0.12);
  color: var(--color-pink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-process-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.svc-process-card p {
  font-size: 0.9375rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.6;
}

.svc-devices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.svc-products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.svc-products__grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.svc-products__grid--3 .svc-product-card {
  grid-template-columns: 1fr;
}

.svc-products__grid--3 .svc-product-card__media {
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.svc-product-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 100%;
}

.svc-product-card__media {
  background: var(--color-bg);
  min-height: 12rem;
}

.svc-product-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-product-card__body {
  padding: 1.5rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.svc-product-card__body h3 {
  margin: 0;
  font-size: 1.125rem;
  color: var(--color-navy);
}

.svc-product-card__body > p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.65;
}

.svc-product-card__points {
  list-style: none;
  margin: 0.25rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.svc-product-card__points li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.875rem;
  color: var(--color-navy);
  line-height: 1.45;
}

.svc-product-card__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--color-teal);
}

.svc-device-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.svc-device-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-pink);
}

.svc-device-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--color-bg);
  color: var(--color-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.svc-device-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  margin-bottom: 0.375rem;
  color: var(--color-navy);
}

.svc-device-card p {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin: 0 0 1rem;
  flex: 1;
  line-height: 1.5;
}

.svc-device-card__link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-pink);
}

.svc-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.svc-benefit-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  transition: box-shadow var(--transition);
}

.svc-benefit-card:hover {
  box-shadow: var(--shadow-md);
}

.svc-benefit-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(230, 104, 139, 0.12);
  color: var(--color-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.svc-benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}

.svc-benefit-card p {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.55;
}

.svc-included__list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.svc-included__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.5;
}

.svc-included__list svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--color-pink);
}

.svc-included__visual {
  position: relative;
}

.svc-included__visual img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 5 / 6;
}

.svc-included__badge {
  position: absolute;
  bottom: 1.5rem;
  left: -1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--color-white);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-navy);
}

.svc-included__badge svg {
  color: var(--color-pink);
}

.svc-faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 56rem;
  margin-inline: auto;
}

.svc-faq__item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.svc-faq__item summary {
  padding: 1.125rem 1.25rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.svc-faq__item summary::-webkit-details-marker {
  display: none;
}

.svc-faq__item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--color-pink);
  flex-shrink: 0;
}

.svc-faq__item[open] summary::after {
  content: '\2212';
}

.svc-faq__item p {
  padding: 0 1.25rem 1.125rem;
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.65;
}

.svc-brands__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.svc-brands__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5.5rem;
  padding: 1.25rem 1rem;
  text-align: center;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.svc-brands__item:hover {
  border-color: rgba(230, 104, 139, 0.35);
  box-shadow: 0 8px 24px rgba(35, 36, 80, 0.06);
}

.svc-brands__logo {
  display: block;
  width: min(100%, 10rem);
  height: 3rem;
  max-height: 3rem;
  object-fit: contain;
  object-position: center;
}

.svc-brands__name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-navy);
}

.svc-brands__note {
  max-width: 46rem;
  margin: 1.5rem auto 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.svc-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.svc-gallery__item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-light);
  aspect-ratio: 4 / 3;
  width: 100%;
}

.svc-gallery__item--wide {
  grid-column: auto;
  grid-row: auto;
}

.svc-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.svc-tips__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.svc-science {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-white) 48%, var(--color-bg) 100%);
}

.svc-science__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

.svc-science-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(35, 36, 80, 0.06);
}

.svc-science-card:nth-child(even) {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.svc-science-card:nth-child(even) .svc-science-card__media {
  order: 2;
}

.svc-science-card__media {
  background: var(--color-bg);
  min-height: 16rem;
}

.svc-science-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.svc-science-card__body {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.svc-science-card__tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(230, 104, 139, 0.12);
  color: var(--color-pink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.svc-science-card__body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  color: var(--color-navy);
  line-height: 1.25;
}

.svc-science-card__body > p {
  margin: 0;
  font-size: 0.975rem;
  color: var(--color-muted);
  line-height: 1.7;
}

.svc-science-card__points {
  list-style: none;
  margin: 0.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.svc-science-card__points li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--color-navy);
  line-height: 1.5;
}

.svc-science-card__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--color-teal, #2f9e9a);
}

.svc-science-card__note {
  margin: 0.35rem 0 0 !important;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--color-pink);
  background: var(--color-bg);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 0.875rem !important;
  color: var(--color-navy) !important;
}

.svc-science__disclaimer {
  margin: 1.75rem auto 0;
  max-width: 46rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.svc-tip-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.35rem;
}

.svc-tip-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  color: var(--color-navy);
}

.svc-tip-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.65;
}

.svc-contact__info {
  margin-top: 1.5rem;
}

.svc-contact--minimal {
  background: var(--color-bg);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.svc-contact--minimal .svc-contact__head {
  margin-bottom: 2rem;
}

.svc-contact--minimal .appointment-split-card {
  max-width: 68rem;
  margin-inline: auto;
}

.svc-contact__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-heading);
  font-size: 1.375rem;
  color: var(--color-white);
  text-decoration: none;
  margin-bottom: 0.75rem;
}

.svc-contact__phone:hover {
  color: var(--color-bg-light);
}

.svc-contact__hours {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
}

.svc-disclaimer {
  background: var(--color-bg);
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-border);
}

.svc-disclaimer p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--color-muted);
  line-height: 1.6;
  max-width: none;
  text-align: center;
}

@media (max-width: 1100px) {
  .svc-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-process__grid,
  .svc-process__grid--4,
  .svc-process__grid--5 {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-devices__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-products__grid,
  .svc-products__grid--3 {
    grid-template-columns: 1fr;
  }

  .svc-product-card {
    grid-template-columns: 1fr;
  }

  .svc-product-card__media {
    min-height: 11rem;
    aspect-ratio: 16 / 10;
  }

  .svc-science-card,
  .svc-science-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .svc-science-card:nth-child(even) .svc-science-card__media {
    order: 0;
  }

  .svc-science-card__media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .svc-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-brands__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .svc-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-tips__grid {
    grid-template-columns: 1fr;
  }

  .svc-related__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .svc-stats__grid,
  .svc-process__grid,
  .svc-devices__grid,
  .svc-products__grid,
  .svc-benefits__grid,
  .svc-brands__grid,
  .svc-gallery__grid,
  .svc-tips__grid,
  .svc-faq__grid {
    grid-template-columns: 1fr;
  }

  .svc-related__grid {
    grid-template-columns: 1fr;
  }

  .svc-included__badge {
    left: 1rem;
    bottom: 1rem;
  }

  .svc-included__visual {
    order: -1;
  }
}

/* --------------------------------------------------------------------------
   38. Contact Branch Map Blocks
   -------------------------------------------------------------------------- */
.contact-branches .mk-section-head {
  margin-bottom: 2.5rem;
}

.branch-map-block + .branch-map-block {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid var(--color-border);
}

.branch-map-block__map-wrap {
  width: 100%;
  margin-bottom: 3.5rem;
}

.branch-map-block__map {
  position: relative;
  width: 100%;
  height: clamp(280px, 42vw, 440px);
  overflow: hidden;
  background: var(--color-bg-light);
}

.branch-map-block__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) contrast(0.92) brightness(1.02);
}

.branch-map-block__pin {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -100%);
  color: var(--color-teal);
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 4px 8px rgba(35, 36, 80, 0.2));
}

.branch-map-block__info {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, calc(-100% - 3.5rem));
  z-index: 3;
  width: min(340px, calc(100% - 2rem));
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(35, 36, 80, 0.14);
  overflow: hidden;
  text-align: center;
}

.branch-map-block__info-top {
  padding: 1.25rem 1.5rem 1rem;
}

.branch-map-block__info-top strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--color-navy);
  margin-bottom: 0.35rem;
}

.branch-map-block__info-top p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.branch-map-block--compact .branch-map-block__map-wrap {
  margin-bottom: 2rem;
}

.branch-map-block__details {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 2rem;
  align-items: start;
}

.branch-map-block__details-main .mk-label {
  margin-bottom: 0.5rem;
}

.branch-map-block__address-line {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0 0 1.5rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
}

.branch-map-block__address-line svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--color-pink);
}

.branch-hours-card__address {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-muted);
  margin: 0 0 1.25rem;
  line-height: 1.55;
}

.branch-hours-card__address svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--color-teal);
}

.contact-client-info {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.contact-branch-address-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-branch-address-list li {
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--color-border);
}

.contact-branch-address-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.contact-branch-address-list strong {
  display: block;
  color: var(--color-navy);
  font-size: 0.9375rem;
  margin-bottom: 0.35rem;
}

.contact-branch-address-list p {
  margin: 0 0 0.4rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.contact-branch-address-list a {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-pink);
  text-decoration: none;
}

.contact-branch-address-list a:hover {
  text-decoration: underline;
}

.branch-map-block__info-btn {
  display: block;
  padding: 0.875rem 1rem;
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--transition);
}

.branch-map-block__info-btn:hover {
  background: #1a1b3d;
  color: var(--color-white);
}

.branch-map-block__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 3rem;
  align-items: start;
}

.branch-map-block__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.branch-map-block__badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(230, 104, 139, 0.12);
  color: var(--color-teal);
}

.branch-map-block__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--color-navy);
  margin-bottom: 1.5rem;
  max-width: 28rem;
}

.branch-map-block__faq {
  max-width: none;
  margin-inline: 0;
}

.branch-map-block__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
}

.branch-map-block__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--color-navy);
  text-decoration: none;
}

.branch-map-block__contact-link:hover {
  color: var(--color-teal);
}

.branch-hours-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
}

.branch-hours-card__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.branch-hours-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(230, 104, 139, 0.12);
  color: var(--color-teal);
  flex-shrink: 0;
}

.branch-hours-card__title {
  font-size: 1.125rem;
  color: var(--color-navy);
  margin: 0;
}

.branch-hours-card__list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.branch-hours-card__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9375rem;
}

.branch-hours-card__list li:last-child {
  border-bottom: none;
}

.branch-hours-card__list li span {
  font-weight: 600;
  color: var(--color-navy);
}

.branch-hours-card__list li strong {
  font-weight: 500;
  color: var(--color-muted);
  text-align: right;
}

@media (max-width: 900px) {
  .branch-map-block__grid,
  .branch-map-block__details,
  .contact-client-info__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .branch-map-block__info {
    transform: translate(-50%, calc(-100% - 2.5rem));
  }

  .branch-map-block + .branch-map-block {
    margin-top: 3rem;
    padding-top: 3rem;
  }
}

@media (max-width: 600px) {
  .branch-map-block__map-wrap {
    margin-bottom: 2.5rem;
  }

  .branch-map-block__info {
    width: min(300px, calc(100% - 1.5rem));
  }

  .branch-map-block__contact {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   23. Products Page (Bernafon catalog layout)
   ========================================================================== */
.products-page {
  --bernafon-red: #e2001a;
  --bernafon-red-dark: #c40016;
  --bernafon-pink: #faf4f3;
  background: var(--color-white);
}

.products-page:not(.prd-page) {
  padding-top: calc(var(--header-float-offset) - 0.35rem);
}

.prd-page {
  --prd-accent: var(--bernafon-red);
}

.products-hero {
  padding: 0.65rem 0 1.15rem;
  border-bottom: 1px solid var(--color-border);
}

.products-hero__inner {
  display: grid;
  gap: 0.45rem;
  max-width: 46rem;
}

.products-hero__logo {
  width: 7.5rem;
  height: auto;
}

.products-hero__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-navy);
}

.products-hero__lead {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text);
  max-width: 40rem;
}

.products-models {
  border-bottom: 1px solid var(--color-border);
}

.products-models__head {
  padding: 1.15rem 0 0.85rem;
}

.products-models__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  color: var(--color-navy);
}

.products-models__subtitle {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.6;
}

.products-models__rows {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-bottom: 1.25rem;
}

.products-style-row {
  display: grid;
  grid-template-columns: minmax(13rem, 17rem) 1fr;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-white);
}

.products-style-row__label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.75rem;
  min-height: 9rem;
  padding: 1.25rem 1.35rem;
  background: var(--bernafon-red);
  color: var(--color-white);
  text-decoration: none;
  transition: background var(--transition);
}

.products-style-row__label:hover {
  background: var(--bernafon-red-dark);
}

.products-style-row__icon {
  width: 4.75rem;
  height: 4.75rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.products-style-row__name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  max-width: 14rem;
}

.products-style-row__track-wrap {
  position: relative;
  overflow: hidden;
  background: var(--color-white);
}

.products-style-row__track {
  display: flex;
  gap: 1.5rem;
  padding: 1.15rem 2.75rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #c8c8c8 transparent;
}

.products-style-row__track::-webkit-scrollbar {
  height: 4px;
}

.products-style-row__track::-webkit-scrollbar-thumb {
  background: #c8c8c8;
  border-radius: 999px;
}

.products-style-row__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-top: -1rem;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-navy);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}

.products-style-row__nav:hover {
  border-color: var(--bernafon-red);
  color: var(--bernafon-red);
}

.products-style-row__nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.products-style-row__nav--prev {
  left: 0.85rem;
}

.products-style-row__nav--next {
  right: 0.85rem;
}

.products-style-row__item {
  flex: 0 0 8.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  text-align: center;
  text-decoration: none;
  color: var(--color-text);
  scroll-snap-align: start;
}

.products-style-row__item img {
  width: 6.5rem;
  height: 6.5rem;
  object-fit: contain;
}

.products-style-row__item-family {
  font-size: 0.6875rem;
  color: var(--color-muted);
  line-height: 1.35;
}

.products-style-row__item-style {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-navy);
  max-width: 8.5rem;
}

.products-style-row__item:hover .products-style-row__item-style {
  color: var(--color-navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.products-catalog {
  padding: 2.5rem 0 3rem;
  background: #f5f5f5;
}

.products-catalog__toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.25rem;
}

.products-catalog__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.products-catalog__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  color: var(--color-navy);
}

.products-catalog__subtitle {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9375rem;
}

.products-toolbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.products-toolbar__search {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: min(100%, 16rem);
  max-width: 22rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 0.5rem 0.95rem;
}

.products-toolbar__icon {
  flex-shrink: 0;
  color: var(--color-muted);
}

.products-toolbar__input {
  border: 0;
  background: transparent;
  width: 100%;
  font: inherit;
  color: var(--color-text);
  outline: none;
}

.products-toolbar__meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.products-toolbar__count {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-muted);
  white-space: nowrap;
}

.products-toolbar__filter-btn {
  display: none;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-navy);
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  padding: 0.5rem 1rem;
  cursor: pointer;
}

.products-catalog__layout {
  display: grid;
  grid-template-columns: 14.5rem 1fr;
  gap: 2rem;
  align-items: start;
}

.products-filters {
  position: sticky;
  top: calc(var(--header-total, 0) + 1rem);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.15rem;
}

.products-filters__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-border);
}

.products-filters__title {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-navy);
}

.products-filters__clear {
  border: 0;
  background: transparent;
  color: var(--bernafon-red);
  font: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.products-filters__group {
  border: 0;
  margin: 0 0 0.85rem;
  padding: 0;
}

.products-filters__legend {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.45rem;
}

.products-filters__option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text);
  margin-bottom: 0.3rem;
  cursor: pointer;
}

.products-filters__option input {
  accent-color: var(--bernafon-red);
}

.products-grid-wrap {
  background: #ececec;
  padding: 1.5rem;
  border-radius: 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.products-grid__empty {
  margin: 0 0 1rem;
  padding: 1rem 1.25rem;
  background: var(--color-white);
  border-radius: var(--radius);
  color: var(--color-muted);
  font-size: 0.9375rem;
}

.products-card {
  position: relative;
}

.products-card.is-hidden {
  display: none;
}

.products-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--color-white);
  border: 0;
  border-radius: 0;
  overflow: visible;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition);
}

.products-card__link:hover {
  box-shadow: 0 8px 24px rgba(16, 42, 67, 0.1);
}

.products-card__visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 11.5rem;
  padding: 2rem 1.25rem 3.5rem;
  background: #ececec;
}

.products-card__img {
  width: auto;
  max-width: 88%;
  max-height: 8.75rem;
  object-fit: contain;
  position: relative;
  z-index: 1;
  margin-bottom: -2.75rem;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.08));
}

.products-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.45rem;
  padding: 0 1.5rem 1.5rem;
  background: var(--color-white);
}

.products-card__family {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-text);
}

.products-card__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-navy);
}

.products-card__meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 1.75rem;
  margin-top: 0.15rem;
}

.products-card__telecoil {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #e8a0a8;
  color: var(--color-white);
  flex-shrink: 0;
}

.products-card__telecoil svg {
  width: 1rem;
  height: 1rem;
}

.products-card__telecoil-t {
  position: absolute;
  right: 0.2rem;
  bottom: 0.15rem;
  font-size: 0.5625rem;
  font-weight: 800;
  line-height: 1;
}

.products-card__colors {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.products-card__swatch {
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.products-card__colors-more {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text);
  margin-left: 0.1rem;
}

.products-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
}

.products-card__feature {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
}

.products-card__feature svg {
  color: var(--bernafon-red);
  flex-shrink: 0;
}

.products-spotlight {
  padding: 3.5rem 0 3rem;
  background: #fcf6f3;
  border-top: 0;
}

.products-spotlight__inner {
  position: relative;
}

.products-spotlight__title {
  margin: 0 0 2rem;
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 500;
  color: var(--color-navy);
}

.products-spotlight__stage {
  position: relative;
  margin-bottom: 2rem;
}

.products-spotlight__accent {
  position: absolute;
  top: 2.5rem;
  left: 18%;
  right: 0;
  bottom: 0;
  background: #f68084;
  z-index: 0;
}

.products-spotlight__track {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.products-spotlight__track::-webkit-scrollbar {
  display: none;
}

.family-card {
  scroll-snap-align: start;
}

.family-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--color-white);
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition), transform var(--transition);
}

.family-card__link:hover {
  box-shadow: 0 10px 28px rgba(16, 42, 67, 0.12);
  transform: translateY(-2px);
}

.family-card__media {
  position: relative;
  aspect-ratio: 379 / 240;
  overflow: hidden;
  background: #f3f3f5;
}

.family-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.family-card__badge {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0.45rem 0.85rem;
  background: var(--bernafon-red);
  color: var(--color-white);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.family-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
  padding: 1.35rem 1.25rem 1.5rem;
}

.family-card__headline {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-navy);
}

.family-card__desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--color-text);
}

.products-spotlight__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.products-spotlight__all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  background: var(--bernafon-red);
  color: var(--color-white);
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--transition);
}

.products-spotlight__all-btn:hover {
  background: var(--bernafon-red-dark);
  color: var(--color-white);
}

.products-spotlight__nav {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.products-spotlight__nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 50%;
  background: #e8e8e8;
  color: #9a9a9a;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.products-spotlight__nav-btn--active,
.products-spotlight__nav-btn:not(:disabled):hover {
  background: var(--bernafon-red);
  color: var(--color-white);
}

.products-spotlight__nav-btn:disabled {
  opacity: 1;
  cursor: default;
}

.products-promo {
  position: relative;
  padding: 4rem 0;
  background: var(--bernafon-pink);
  overflow: hidden;
}

.products-promo__head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.products-promo__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  color: var(--color-navy);
}

.products-promo__lead {
  margin: 0;
  color: var(--color-text);
  line-height: 1.7;
}

.products-promo__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.products-promo-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.products-promo-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.products-promo-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.products-promo-card__media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--color-bg);
}

.products-promo-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products-promo-card__body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.products-promo-card__cat {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bernafon-red);
  margin-bottom: 0.5rem;
}

.products-promo-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  color: var(--color-navy);
}

.products-promo-card__desc {
  margin: 0 0 0.85rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text);
}

.products-promo-card__cta {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--bernafon-red);
}

.products-promo__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

@media (max-width: 1100px) {
  .products-spotlight__track {
    grid-template-columns: repeat(4, minmax(16rem, 1fr));
  }

  .products-promo__grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-catalog__layout {
    grid-template-columns: 13rem 1fr;
  }
}

@media (max-width: 900px) {
  .products-style-row {
    grid-template-columns: 1fr;
  }

  .products-models__rows {
    gap: 0.65rem;
  }

  .products-spotlight__accent {
    left: 10%;
  }

  .products-style-row__label {
    flex-direction: row;
    align-items: center;
    min-height: 0;
    padding: 0.85rem 1rem;
  }

  .products-style-row__icon {
    width: 3.5rem;
    height: 3.5rem;
  }

  .products-style-row__name {
    font-size: 0.9375rem;
  }

  .products-catalog__layout {
    grid-template-columns: 1fr;
  }

  .products-spotlight__track {
    grid-template-columns: repeat(4, minmax(14.5rem, 1fr));
  }

  .products-spotlight__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .products-spotlight__nav {
    align-self: flex-end;
  }

  .products-style-row__nav {
    display: none;
  }

  .products-filters {
    display: none;
    position: static;
  }

  .products-filters.is-open {
    display: block;
    margin-bottom: 1rem;
  }

  .products-toolbar__filter-btn {
    display: inline-flex;
  }

  .products-style-row__track {
    padding: 1rem 1rem 1.15rem;
  }

  .products-catalog__toolbar {
    justify-content: stretch;
  }

  .products-catalog__head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .products-promo__grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .products-hero {
    padding: 0.5rem 0 1rem;
  }

  .products-promo {
    padding: 3rem 0;
  }
}

/* ==========================================================================
   23b. Product Category Subpages
   ========================================================================== */
.products-subnav {
  position: sticky;
  top: calc(var(--header-height, 4rem) + 0.25rem);
  z-index: 40;
  border-bottom: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.prd-subnav {
  margin-bottom: 0;
}

.products-subnav::-webkit-scrollbar {
  display: none;
}

.products-subnav__inner {
  display: flex;
  gap: 0.35rem;
  padding: 0.65rem 0;
  min-width: max-content;
}

.products-subnav__link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-muted);
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.products-subnav__link:hover:not(.is-active) {
  color: var(--color-navy);
  background: var(--color-bg-light);
  border-color: var(--color-border);
}

.products-subnav__link.is-active {
  color: var(--color-white);
  background: var(--bernafon-red, #e2001a);
  border-color: var(--bernafon-red, #e2001a);
}

/* Bernafon App page */
.products-page--app {
  background: var(--color-white);
}

.products-app-hero {
  padding: 0.65rem 0 1rem;
  border-bottom: 1px solid var(--color-border);
}

.products-app-hero__inner {
  max-width: 46rem;
}

.products-app-hero__title {
  margin: 0.75rem 0 0.35rem;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  color: var(--color-navy);
}

.products-app-hero__subtitle {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 500;
  color: var(--color-navy);
}

.products-app-hero__lead {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--color-text);
}

.products-app-hero__note {
  margin: 1rem 0 0;
  font-size: 0.9375rem;
  color: var(--color-muted);
}

.products-app-storeband {
  padding: 2rem 0;
  background: var(--bernafon-pink, #faf4f3);
  border-bottom: 1px solid rgba(226, 0, 26, 0.08);
}

.products-app-storeband__inner {
  text-align: center;
}

.products-app-storeband__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  color: var(--color-navy);
}

.products-app-storeband__badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.products-app-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 11.5rem;
  padding: 0.55rem 1rem 0.55rem 0.85rem;
  background: #111;
  color: var(--color-white);
  border-radius: 0.65rem;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}

.products-app-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  color: var(--color-white);
}

.products-app-badge__icon {
  display: inline-flex;
  flex-shrink: 0;
}

.products-app-badge__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}

.products-app-badge__text small {
  font-size: 0.625rem;
  letter-spacing: 0.02em;
  opacity: 0.9;
}

.products-app-badge__text strong {
  font-size: 1.0625rem;
  font-weight: 700;
}

.products-app-gallery {
  padding: 2.5rem 0 1rem;
}

.products-app-gallery__track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: end;
}

.products-app-gallery__item {
  margin: 0;
  text-align: center;
}

.products-app-gallery__item img {
  width: 100%;
  max-width: 15rem;
  height: auto;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 12px 24px rgba(16, 42, 67, 0.12));
}

.products-app-gallery__caption {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-muted);
}

.products-app-support {
  padding: 2.5rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: #fafbfc;
}

.products-app-support__inner {
  max-width: 40rem;
  text-align: center;
}

.products-app-support__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  color: var(--color-navy);
}

.products-app-support__text {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
}

.products-features--app {
  padding: 2.5rem 0 3rem;
  border-bottom: 0;
}

.products-hero__inner--split {
  display: grid;
  grid-template-columns: 1fr minmax(16rem, 22rem);
  gap: 2rem;
  align-items: center;
  max-width: none;
}

.products-hero__headline {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-teal);
}

.products-hero__note {
  margin: 0.75rem 0 0;
  font-size: 0.9375rem;
  color: var(--color-muted);
}

.products-hero__external {
  margin: 1rem 0 0;
  font-size: 0.9375rem;
}

.products-hero__external a {
  color: var(--color-teal);
  font-weight: 600;
}

.products-hero__visual {
  justify-self: end;
}

.products-hero__image {
  width: 100%;
  max-width: 22rem;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 32px rgba(16, 42, 67, 0.12);
}

.products-app-stores {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.products-features {
  padding: 2.5rem 0 3rem;
  border-bottom: 1px solid var(--color-border);
}

.products-features__title {
  margin: 0 0 1.5rem;
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  color: var(--color-navy);
}

.products-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.products-feature-card {
  padding: 1.25rem;
  background: var(--bernafon-pink, #faf4f3);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 0, 26, 0.08);
}

.products-feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  background: var(--color-white);
  font-size: 1.125rem;
}

.products-feature-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  color: var(--color-navy);
}

.products-feature-card__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text);
}

.products-app-shots {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.products-app-shots__img {
  width: 11rem;
  height: auto;
  border-radius: 1.25rem;
  box-shadow: 0 8px 24px rgba(16, 42, 67, 0.15);
  flex-shrink: 0;
}

.products-features__support {
  margin: 2rem 0 0;
  text-align: center;
}

.products-accessories {
  padding: 2.5rem 0 3rem;
}

.products-accessories__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.products-accessories__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  color: var(--color-navy);
}

.products-accessories__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.products-accessories__filter {
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-navy);
  border-radius: var(--radius-pill);
  padding: 0.45rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
}

.products-accessories__filter.is-active {
  background: var(--bernafon-red, #e2001a);
  border-color: var(--bernafon-red, #e2001a);
  color: var(--color-white);
}

.products-accessories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.products-acc-card.is-hidden {
  display: none;
}

.products-acc-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: #f7f8fa;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.products-acc-card__link:hover {
  box-shadow: 0 12px 28px rgba(16, 42, 67, 0.1);
  transform: translateY(-2px);
}

.products-acc-card__media {
  aspect-ratio: 1;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.products-acc-card__media img {
  width: 100%;
  max-width: 14rem;
  height: auto;
  object-fit: contain;
}

.products-acc-card__body {
  padding: 1.15rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.products-acc-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  color: var(--color-navy);
}

.products-acc-card__desc {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text);
}

.products-acc-card__features {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.products-acc-card__cta {
  margin-top: auto;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--bernafon-red, #e2001a);
}

.products-grid-section {
  padding: 2.5rem 0 3rem;
}

.products-grid-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.products-grid-card__link {
  display: flex;
  gap: 1rem;
  height: 100%;
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition);
}

.products-grid-card__link:hover {
  box-shadow: 0 8px 24px rgba(16, 42, 67, 0.08);
}

.products-grid-card__media {
  flex-shrink: 0;
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bernafon-pink, #faf4f3);
  border-radius: var(--radius);
}

.products-grid-card__media img {
  width: 2.75rem;
  height: 2.75rem;
  object-fit: contain;
}

.prd-grid-card__media--photo {
  width: 5.5rem;
  height: 5.5rem;
  padding: 0.35rem;
  background: var(--color-white);
}

.prd-grid-card__media--photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.products-grid-card__title {
  margin: 0 0 0.35rem;
  font-size: 1.0625rem;
  color: var(--color-navy);
}

.products-grid-card__desc {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--color-text);
}

.products-grid-card__cta {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-teal);
}

@media (max-width: 1024px) {
  .products-app-gallery__track {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-hero__inner--split {
    grid-template-columns: 1fr;
  }

  .products-hero__visual {
    justify-self: start;
  }

  .products-features__grid,
  .products-accessories__grid,
  .products-grid-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .products-app-gallery__track {
    grid-template-columns: 1fr;
    max-width: 16rem;
    margin: 0 auto;
  }

  .products-app-storeband__badges {
    flex-direction: column;
  }

  .products-features__grid,
  .products-accessories__grid,
  .products-grid-section__grid {
    grid-template-columns: 1fr;
  }

  .products-grid-card__link {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   24. Online Hearing Test (Home + Modal)
   ========================================================================== */
.home-hearing-test {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.home-hearing-test__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, #0d4f5c 0%, #147d7e 38%, #1b9aaa 68%, #2ec4c4 100%);
}

.home-hearing-test__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.35;
}

.home-hearing-test__orb--1 { width: 18rem; height: 18rem; top: -4rem; right: 10%; background: #7ef0df; }
.home-hearing-test__orb--2 { width: 14rem; height: 14rem; bottom: -3rem; left: 5%; background: #ffd166; }
.home-hearing-test__orb--3 { width: 10rem; height: 10rem; top: 40%; left: 45%; background: #fff; opacity: 0.15; }

.home-hearing-test__wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.5rem;
  align-items: stretch;
  padding: 3.5rem 0;
}

.home-hearing-test__panel {
  border-radius: var(--radius-lg);
}

.home-hearing-test__panel--visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  text-align: center;
  color: var(--color-white);
}

.home-hearing-test__badge {
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.875rem;
  font-weight: 700;
}

.home-hearing-test__ear-visual {
  position: relative;
  width: 11rem;
  height: 11rem;
}

.home-hearing-test__ear-svg {
  width: 100%;
  height: 100%;
}

.home-hearing-test__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.45);
  animation: ht-home-pulse 2s ease-out infinite;
}

@keyframes ht-home-pulse {
  0% { transform: scale(0.85); opacity: 0.8; }
  100% { transform: scale(1.15); opacity: 0; }
}

.home-hearing-test__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-hearing-test__chips li {
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.875rem;
  font-weight: 600;
}

.home-hearing-test__panel--content {
  padding: 2rem 2.25rem;
  background: var(--color-white);
  box-shadow: 0 20px 50px rgba(16, 42, 67, 0.18);
}

.home-hearing-test__label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-teal);
}

.home-hearing-test__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-heading);
  font-size: clamp(1.625rem, 3vw, 2.125rem);
  line-height: 1.2;
  color: var(--color-navy);
}

.home-hearing-test__lead {
  margin: 0 0 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--color-text);
}

.home-hearing-test__steps {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.home-hearing-test__steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--color-text);
}

.home-hearing-test__step-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: var(--color-bg-light);
  color: var(--color-teal);
  font-size: 0.8125rem;
  font-weight: 700;
}

.home-hearing-test__note {
  margin: 0 0 1.5rem;
  padding: 0.85rem 1rem;
  background: #fff8e8;
  border-left: 4px solid #f0a020;
  font-size: 0.875rem;
  line-height: 1.65;
  color: #5c4a1f;
}

.home-hearing-test__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.home-hearing-test__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 3.5rem;
  padding: 0.85rem 1.75rem;
  border: 0;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
  color: var(--color-white);
  font: inherit;
  font-size: 1.0625rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(193, 18, 31, 0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}

.home-hearing-test__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(193, 18, 31, 0.4);
}

.home-hearing-test__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  font-size: 0.75rem;
}

.home-hearing-test__link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-teal);
  text-decoration: none;
}

.home-hearing-test__link:hover {
  text-decoration: underline;
}

.home-hearing-test__link--muted {
  color: var(--color-muted);
  font-weight: 500;
}

.home-hearing-test--page {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.home-hearing-test--page .home-hearing-test__wrap {
  padding: 2.5rem 0;
}

.ht-page-online {
  padding-top: 0;
  padding-bottom: 0;
}

.ht-page-online .container {
  padding-inline: 0;
  max-width: none;
}

@media (min-width: 769px) {
  .ht-page-online .container {
    padding-inline: var(--container-pad, 1.25rem);
    max-width: var(--max-width);
  }
}

body.ht-modal-open {
  overflow: hidden;
}

.ht-modal[hidden] {
  display: none !important;
}

.ht-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.ht-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 42, 67, 0.6);
}

.ht-modal__dialog {
  position: relative;
  display: grid;
  grid-template-columns: 12rem 1fr;
  width: min(100%, 58rem);
  max-height: min(94vh, 46rem);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(16, 42, 67, 0.25);
  overflow: hidden;
  outline: none;
}

.ht-modal__dialog--results {
  width: min(100%, 58rem);
  max-height: min(96vh, 52rem);
}

.ht-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-navy);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(16, 42, 67, 0.12);
}

.ht-modal__close:hover {
  background: var(--color-bg);
}

.ht-modal__sidebar {
  padding: 2rem 1rem;
  background: #f7f8fa;
  border-right: 1px solid var(--color-border);
}

.ht-progress {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.ht-progress__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-muted);
  font-size: 0.8125rem;
  font-weight: 600;
}

.ht-progress__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  background: #e2e8f0;
  font-size: 0.75rem;
}

.ht-progress__item.is-active {
  color: var(--color-teal);
}

.ht-progress__item.is-active .ht-progress__icon {
  background: var(--color-teal);
  color: var(--color-white);
}

.ht-progress__item.is-done {
  color: var(--color-navy);
}

.ht-progress__item.is-done .ht-progress__icon {
  background: #3d5a45;
  color: var(--color-white);
}

.ht-modal__body {
  position: relative;
  padding: 2.25rem 2rem 2rem;
  overflow-y: auto;
  min-height: 0;
}

.ht-modal__dialog--results .ht-modal__body {
  padding: 1.75rem 2rem 1.5rem;
}

.ht-step__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-teal);
}

.ht-step__badge {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-teal);
}

.ht-step__text--muted {
  font-size: 0.9375rem;
  color: var(--color-muted);
}

.ht-audio-test {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.ht-audio-test__hint {
  font-size: 1rem;
  color: var(--color-muted);
}

.ht-step__title {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.25;
  color: var(--color-navy);
}

.ht-step__text {
  margin: 0 0 1rem;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--color-text);
}

.ht-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.25rem 0;
  font-size: 1rem;
  line-height: 1.6;
  cursor: pointer;
}

.ht-consent input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.15rem;
  accent-color: var(--color-teal);
}

.ht-checklist {
  margin: 0 0 1.5rem;
  padding-left: 1.35rem;
  font-size: 1.0625rem;
  line-height: 1.75;
}

.ht-tone-controls {
  display: grid;
  gap: 1.25rem;
  max-width: 26rem;
}

.ht-tone-answers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.ht-btn-heard {
  min-height: 3.25rem;
  font-size: 1rem !important;
  font-weight: 700 !important;
  border-radius: var(--radius-pill) !important;
}

.ht-btn-heard--yes {
  background: var(--color-teal) !important;
  border-color: var(--color-teal) !important;
  color: var(--color-white) !important;
}

.ht-btn-heard--no {
  background: var(--color-white) !important;
  border: 2px solid var(--color-border) !important;
  color: var(--color-navy) !important;
}

.ht-tone-level {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
}

.ht-step__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.ht-step__actions .btn {
  min-height: 3rem;
  font-size: 1rem;
}

.ht-progress__item.is-active.is-results {
  color: #e85d8a;
}

.ht-progress__item.is-active.is-results .ht-progress__icon {
  background: #e85d8a;
  color: var(--color-white);
}

.ht-progress__item.is-done[data-ht-progress="left"] .ht-progress__icon,
.ht-progress__item.is-done[data-ht-progress="right"] .ht-progress__icon {
  background: #5a6472;
  color: #fdd835;
}

.ht-step--results {
  padding-bottom: 0.5rem;
}

.ht-gauge-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.ht-results-head {
  text-align: center;
  margin-bottom: 1.25rem;
  padding-right: 2.5rem;
}

.ht-results-headline {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.25;
  color: var(--color-navy);
}

.ht-results-em {
  color: #a52a2a;
  font-weight: 700;
}

.ht-results-summary {
  margin: 0 auto;
  max-width: 34rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-muted);
}

.ht-gauges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 2rem;
  max-width: 34rem;
  margin: 0 auto 1.25rem;
  align-items: start;
}

.ht-gauge {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  text-align: center;
}

.ht-gauge__ring {
  position: relative;
  width: 100%;
  max-width: 13.5rem;
  aspect-ratio: 220 / 120;
  margin-bottom: 0.35rem;
}

.ht-gauge__svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 3px 6px rgba(16, 42, 67, 0.1));
}

.ht-gauge__track {
  fill: none;
  stroke: #cfd6df;
  stroke-width: 12;
  stroke-linecap: round;
}

.ht-gauge--normal .ht-gauge__track {
  stroke: #b8c2ce;
}

.ht-gauge__fill {
  fill: none;
  stroke: url(#htGaugeGradient);
  stroke-width: 12;
  stroke-linecap: round;
  stroke-dasharray: 0 100;
  transition: stroke-dasharray 0.7s ease, opacity 0.3s ease;
}

.ht-gauge__dot {
  fill: #fdd835;
  stroke: var(--color-white);
  stroke-width: 3;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ht-gauge__ear {
  display: block;
  margin: 0 0 0.2rem;
  font-size: 0.9375rem;
  color: var(--color-muted);
}

.ht-gauge__status {
  display: block;
  min-height: 2.7rem;
  font-size: 1.0625rem;
  line-height: 1.35;
  font-weight: 700;
  color: var(--color-navy);
}

.ht-gauge--normal .ht-gauge__status {
  color: var(--color-navy);
}

.ht-gauge--possible .ht-gauge__status {
  color: #4a7c59;
}

.ht-gauge--likely .ht-gauge__status {
  color: #3d5a45;
}

.ht-results-legend {
  display: grid;
  gap: 0.65rem;
  max-width: 36rem;
  margin: 0 auto 1.25rem;
  padding: 1rem 1.15rem;
  background: #f8fafc;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.ht-results-legend__title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
}

.ht-results-legend__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--color-text);
}

.ht-results-legend__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
}

.ht-results-legend__icon--ok {
  background: #e6f4ea;
  color: #18794e;
}

.ht-results-legend__icon--warn {
  background: #fff4e5;
  color: #b54708;
}

.ht-results-legend__icon--alert {
  background: #fef3f2;
  color: #b42318;
}

.ht-results-legend__item.is-match {
  background: #f0faf8;
  border: 2px solid var(--color-teal);
  border-radius: var(--radius);
  padding: 0.5rem 0.65rem;
}

.ht-results-legend__item.is-match .ht-results-legend__icon {
  transform: scale(1.08);
}

.ht-result-note {
  margin: 0 auto 1rem;
  max-width: 34rem;
  padding: 0.85rem 1rem;
  background: #f7f8fa;
  border-radius: var(--radius);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text);
  text-align: center;
}

.ht-results-footer {
  margin-top: 0.5rem;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--color-border);
}

.ht-results-footer__actions {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.ht-results-close-hint {
  margin: 0.85rem 0 0;
  font-size: 0.8125rem;
  color: var(--color-muted);
  text-align: center;
}

.ht-btn-find {
  background: #b42318 !important;
  border-color: #b42318 !important;
  color: var(--color-white) !important;
}

.ht-btn-find:hover {
  background: #912018 !important;
  border-color: #912018 !important;
  color: var(--color-white) !important;
}

.ht-wave {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.35rem;
  height: 3.5rem;
  margin: 1.5rem 0;
}

.ht-wave span {
  width: 0.35rem;
  height: 1rem;
  border-radius: 999px;
  background: #e2e8f0;
}

.ht-wave--active span {
  background: var(--color-teal);
  animation: ht-wave 0.9s ease-in-out infinite;
}

.ht-wave--active span:nth-child(2) { animation-delay: 0.1s; }
.ht-wave--active span:nth-child(3) { animation-delay: 0.2s; }
.ht-wave--active span:nth-child(4) { animation-delay: 0.3s; }
.ht-wave--active span:nth-child(5) { animation-delay: 0.4s; }

@keyframes ht-wave {
  0%, 100% { height: 0.75rem; opacity: 0.5; }
  50% { height: 2.75rem; opacity: 1; }
}

@media (max-width: 900px) {
  .home-hearing-test__wrap {
    grid-template-columns: 1fr;
    padding: 2rem 0;
  }

  .ht-modal__dialog {
    grid-template-columns: 1fr;
    max-height: 96vh;
  }

  .ht-modal__sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
    padding: 1rem;
  }

  .ht-progress {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }

  .ht-gauges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
    gap: 0.75rem 1rem;
  }

  .ht-gauge__ring {
    max-width: 11rem;
  }

  .ht-gauge__status {
    min-height: 2.4rem;
    font-size: 0.9375rem;
  }

  .ht-results-head {
    padding-right: 0;
  }

  .ht-results-footer__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ht-modal__dialog--results .ht-modal__body {
    padding: 1.25rem 1rem 1rem;
  }

  .ht-tone-answers {
    grid-template-columns: 1fr;
  }

  .ht-step__actions--results {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ==========================================================================
   Hearing Aids Index â€” colorful category showcase
   ========================================================================== */
.aids-stats {
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
  padding-bottom: 0.5rem;
}

.aids-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.aids-stats__item {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--stat-accent, var(--color-teal));
}

.aids-stats__value {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--stat-accent, var(--color-navy));
  line-height: 1.2;
}

.aids-stats__label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  color: var(--color-muted);
}

.aids-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 3rem;
  align-items: center;
}

.aids-intro__list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.aids-intro__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.55;
}

.aids-intro__check {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-teal), var(--color-navy));
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.aids-intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.aids-intro__card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--color-white);
  border: 1px solid var(--color-border);
}

.aids-intro__card img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.aids-intro__card-caption {
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--card-accent, var(--color-teal));
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-bg) 100%);
}

.aids-intro__card-caption strong {
  display: block;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
  font-size: 1.0625rem;
}

.aids-intro__card-caption p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.aids-categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.aids-category-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.aids-category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.aids-category-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.aids-category-card__media {
  position: relative;
  overflow: hidden;
}

.aids-category-card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.aids-category-card:hover .aids-category-card__media img {
  transform: scale(1.04);
}

.aids-category-card__badge {
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--aid-accent, var(--color-teal));
  color: var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.aids-category-card__body {
  padding: 1.25rem 1.35rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: linear-gradient(180deg, var(--color-white) 0%, var(--aid-accent-light, var(--color-bg)) 100%);
}

.aids-category-card__title {
  font-size: 1.125rem;
  color: var(--color-navy);
  margin: 0 0 0.5rem;
}

.aids-category-card__desc {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0 0 1rem;
  flex: 1;
}

.aids-category-card__tags {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.aids-category-card__tags li {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--color-white);
  color: var(--aid-accent, var(--color-teal));
  border: 1px solid color-mix(in srgb, var(--aid-accent, var(--color-teal)) 25%, transparent);
}

.aids-category-card__cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--aid-accent, var(--color-teal));
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.aids-process__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.aids-process__step {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--step-color, var(--color-teal));
  box-shadow: var(--shadow-sm);
}

.aids-process__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--step-color, var(--color-teal));
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
}

.aids-process__step h3 {
  font-size: 1rem;
  color: var(--color-navy);
  margin: 0 0 0.5rem;
}

.aids-process__step p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.55;
}

.aids-tech__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: start;
}

.aids-tech__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.aids-tech__feature {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.aids-tech__icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.aids-tech__feature h3 {
  font-size: 1rem;
  color: var(--color-white);
  margin: 0 0 0.35rem;
}

.aids-tech__feature p {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.aids-brands__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem 1.5rem;
  align-items: center;
}

.aids-brands__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.25rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  min-height: 4.5rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.aids-brands__item:hover {
  border-color: var(--color-turquoise);
  box-shadow: var(--shadow-sm);
}

.aids-brands__item img {
  max-width: 7rem;
  max-height: 2rem;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
}

.aids-faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto;
}

.aids-faq__item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 0 1.25rem;
}

.aids-faq__item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-navy);
  padding: 1rem 0;
  list-style: none;
}

.aids-faq__item summary::-webkit-details-marker {
  display: none;
}

.aids-faq__item p {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.aids-faq__more {
  text-align: center;
  margin-top: 1.5rem;
}

.aids-faq__more a {
  font-weight: 600;
}

.aids-disclaimer {
  margin: 0;
  border-radius: 0;
}

.aids-disclaimer .container {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.aids-disclaimer p {
  margin: 0;
  font-size: 0.875rem;
}

@media (max-width: 1024px) {
  .aids-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .aids-intro__grid {
    grid-template-columns: 1fr;
  }

  .aids-categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .aids-process__steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .aids-tech__grid {
    grid-template-columns: 1fr;
  }

  .aids-brands__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .aids-stats {
    margin-top: -1.5rem;
  }

  .aids-stats__grid,
  .aids-categories__grid,
  .aids-process__steps,
  .aids-tech__features,
  .aids-faq__grid,
  .aids-brands__grid {
    grid-template-columns: 1fr;
  }

  .aids-intro__actions {
    flex-direction: column;
  }

  .aids-intro__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   Hearing Aid Detail â€” category pages
   ========================================================================== */
.page-content--tight {
  padding-top: 0.5rem;
  padding-bottom: 0;
}

.aid-detail-hero {
  position: relative;
  min-height: clamp(22rem, 52vh, 32rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  overflow: hidden;
  color: var(--color-white);
  padding-bottom: 3.5rem;
}

.aid-detail-hero__trail {
  position: relative;
  z-index: 2;
  width: 100%;
  flex-shrink: 0;
}

.aid-detail-hero > .aid-detail-hero__trail.container {
  max-width: var(--max-width);
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
  padding: calc(var(--header-float-offset) + 0.5rem) 0 0.75rem;
}

.aid-detail-hero > .aid-detail-hero__trail .breadcrumb--hero {
  text-align: left;
  max-width: 42rem;
  padding: 0;
}

.aid-detail-hero__trail .breadcrumb--hero {
  padding: 0;
}

.aid-detail-hero__bg {
  position: absolute;
  inset: 0;
}

.aid-detail-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.aid-detail-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--aid-accent, #E6688B) 82%, #232450) 0%,
    rgba(35, 36, 80, 0.88) 55%,
    rgba(35, 36, 80, 0.72) 100%
  );
}

.aid-detail-hero__content {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 0;
  text-align: left;
  flex-shrink: 0;
}

.aid-detail-hero > .container.aid-detail-hero__content {
  max-width: var(--max-width);
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.aid-detail-hero .aid-detail-hero__badge,
.aid-detail-hero .aid-detail-hero__eyebrow,
.aid-detail-hero .aid-detail-hero__title,
.aid-detail-hero .aid-detail-hero__lead,
.aid-detail-hero .aid-detail-hero__chips,
.aid-detail-hero .aid-detail-hero__actions,
.aid-detail-hero .prd-hero__headline,
.aid-detail-hero .prd-hero__note,
.aid-detail-hero .prd-hero__logo {
  max-width: 42rem;
}

.aid-detail-hero__badge {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.75rem;
  font-weight: 600;
}

.aid-detail-hero__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

.aid-detail-hero__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.15;
  color: var(--color-white);
}

.aid-detail-hero__lead {
  margin: 0 0 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  opacity: 0.92;
}

.aid-detail-hero__chips {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.aid-detail-hero__chips li {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.8125rem;
  font-weight: 600;
}

.aid-detail-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
}

.aid-detail-hero__btn-ghost {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.45);
}

.aid-detail-hero__btn-ghost:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--color-white);
}

.aid-detail-stats {
  margin-top: -2rem;
  position: relative;
  z-index: 2;
  padding-bottom: 0.5rem;
}

.aid-detail-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.aid-detail-stats__item {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--aid-accent, var(--color-teal));
}

.aid-detail-stats__value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--aid-accent, var(--color-navy));
}

.aid-detail-stats__label {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.8125rem;
  color: var(--color-muted);
}

.aid-detail-overview__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 3rem;
  align-items: start;
}

.aid-detail-overview__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  border-bottom: 4px solid var(--aid-accent, var(--color-teal));
}

.aid-detail-overview__frame img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.aid-detail-overview__content p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text);
}

.aid-detail-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.aid-detail-panel {
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--panel-accent, var(--color-teal));
}

.aid-detail-panel--muted {
  background: var(--color-bg);
  border-left-color: var(--color-muted);
}

.aid-detail-panel h3 {
  margin: 0 0 0.65rem;
  font-size: 0.9375rem;
  color: var(--color-navy);
}

.aid-detail-panel ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.55;
}

.aid-detail-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.aid-detail-feature {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.aid-detail-feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--aid-accent, var(--color-teal)) 35%, transparent);
}

.aid-detail-feature__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--aid-accent, var(--color-teal)) 12%, white);
  color: var(--aid-accent, var(--color-teal));
  margin-bottom: 0.85rem;
}

.aid-detail-feature h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  color: var(--color-navy);
}

.aid-detail-feature p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.55;
}

.aid-detail-usecases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.aid-detail-usecase {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-bg) 100%);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--aid-accent, var(--color-teal));
}

.aid-detail-usecase__num {
  display: inline-flex;
  width: 1.75rem;
  height: 1.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--aid-accent, var(--color-teal));
  color: var(--color-white);
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.aid-detail-usecase h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  color: var(--color-navy);
}

.aid-detail-usecase p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.55;
}

.aid-detail-advantages {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
}

.aid-detail-advantages h3 {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  color: var(--color-navy);
}

.aid-detail-advantages__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem 1.25rem;
}

.aid-detail-advantages__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text);
  line-height: 1.5;
}

.aid-detail-advantages__list li span {
  color: var(--color-success);
  font-weight: 700;
  flex-shrink: 0;
}

.aid-detail-process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.aid-detail-process-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.aid-detail-process-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.aid-detail-process-card__step {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--aid-accent, var(--color-teal));
}

.aid-detail-process-card__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--aid-accent, var(--color-teal)) 12%, white);
  color: var(--aid-accent, var(--color-teal));
}

.aid-detail-process-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  color: var(--color-navy);
}

.aid-detail-process-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.55;
}

.aid-detail-compare__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 2rem;
  align-items: start;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--aid-accent-light, #FDE8EF) 0%, var(--color-white) 100%);
  border: 1px solid color-mix(in srgb, var(--aid-accent, var(--color-teal)) 18%, transparent);
}

.aid-detail-compare__row {
  margin-top: 1rem;
}

.aid-detail-compare__pro,
.aid-detail-compare__con {
  margin: 0.5rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text);
}

.aid-detail-tips {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.aid-detail-tips h3 {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  color: var(--color-navy);
}

.aid-detail-tips ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.aid-detail-faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto;
}

.aid-detail-faq__item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 0 1.25rem;
  border-left: 3px solid var(--aid-accent, var(--color-teal));
}

.aid-detail-faq__item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-navy);
  padding: 1rem 0;
  list-style: none;
}

.aid-detail-faq__item summary::-webkit-details-marker {
  display: none;
}

.aid-detail-faq__item p {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.aid-detail-links__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.aid-detail-link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  text-decoration: none;
  color: var(--color-navy);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.aid-detail-link-card:hover {
  border-color: var(--aid-accent, var(--color-teal));
  box-shadow: var(--shadow-sm);
  color: var(--aid-accent, var(--color-teal));
}

.aid-detail-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.aid-detail-related-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.aid-detail-related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.aid-detail-related-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.aid-detail-related-card__body {
  padding: 1rem 1.15rem 1.15rem;
  border-top: 3px solid var(--aid-accent, var(--color-teal));
}

.aid-detail-related-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.9375rem;
  color: var(--color-navy);
}

.aid-detail-related-card p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.aid-detail-disclaimer {
  margin: 0;
  border-radius: 0;
}

.aid-detail-disclaimer .container {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.aid-detail-disclaimer p {
  margin: 0;
  font-size: 0.875rem;
}

@media (max-width: 1024px) {
  .aid-detail-stats__grid,
  .aid-detail-features__grid,
  .aid-detail-process__grid,
  .aid-detail-related__grid,
  .aid-detail-links__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .aid-detail-overview__grid,
  .aid-detail-compare__inner {
    grid-template-columns: 1fr;
  }

  .aid-detail-usecases__grid {
    grid-template-columns: 1fr;
  }

  .aid-detail-advantages__list {
    grid-template-columns: 1fr 1fr;
  }

  .aid-detail-panels {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .aid-detail-stats {
    margin-top: -1.25rem;
  }

  .aid-detail-stats__grid,
  .aid-detail-features__grid,
  .aid-detail-process__grid,
  .aid-detail-faq__grid,
  .aid-detail-related__grid,
  .aid-detail-links__grid,
  .aid-detail-advantages__list {
    grid-template-columns: 1fr;
  }

  .aid-detail-hero__actions {
    flex-direction: column;
  }

  .aid-detail-hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .aid-detail-compare__inner {
    padding: 1.25rem;
  }
}

/* ==========================================================================
   About Page â€” Modern layout
   ========================================================================== */
.about-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-story__visual {
  position: relative;
}

.about-story__frame,
.vm-panel__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  border-bottom: 4px solid var(--about-accent, var(--color-pink));
}

.about-story__frame img,
.vm-panel__frame img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-story__badge {
  position: absolute;
  bottom: 1.25rem;
  left: -0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.15rem;
  background: var(--color-white);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-navy);
}

.about-story__badge svg {
  color: var(--about-accent, var(--color-pink));
}

.about-story__points {
  list-style: none;
  margin: 1.5rem 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-story__points li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.5;
}

.about-story__points svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--about-accent, var(--color-pink));
}

.about-vm {
  padding-top: 0;
}

.about-vm__head {
  margin-bottom: 1.75rem;
}

.vm-tabs--modern {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 2rem;
  padding: 0.35rem;
  background: var(--color-bg-light);
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  width: fit-content;
  margin-inline: auto;
}

.vm-tabs--modern .vm-tabs__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.35rem;
  font-size: 0.9375rem;
  background: transparent;
}

.vm-tabs--modern .vm-tabs__btn:first-child,
.vm-tabs--modern .vm-tabs__btn:last-child {
  border-radius: var(--radius-pill);
  border-left: none;
}

.vm-tabs--modern .vm-tabs__btn.is-active {
  background: var(--about-accent, var(--color-pink));
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.vm-tabs--modern .vm-tabs__btn.is-active::after {
  display: none;
}

.vm-tabs--modern .vm-tabs__btn:not(.is-active):hover {
  background: rgba(255, 255, 255, 0.85);
}

.vm-panels--modern .vm-panel--modern {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-sm);
}

.vm-panels--modern .vm-panel__title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
}

.vm-panels--modern .vm-checklist li::before {
  background: var(--about-accent, var(--color-turquoise));
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.about-value-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.about-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--about-accent, #E6688B) 35%, var(--color-border));
}

.about-value-card__icon {
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--about-accent, #E6688B) 12%, transparent);
  color: var(--about-accent, var(--color-pink));
}

.about-value-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  color: var(--color-navy);
}

.about-value-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.55;
}

.about-approach__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.15rem;
}

.about-approach-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.25rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.about-approach-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--about-accent, var(--color-pink));
}

.about-approach-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.about-approach-card__step {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  line-height: 1;
  color: color-mix(in srgb, var(--about-accent, #E6688B) 28%, transparent);
}

.about-approach-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--about-accent, #E6688B) 12%, transparent);
  color: var(--about-accent, var(--color-pink));
}

.about-approach-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  color: var(--color-navy);
}

.about-approach-card p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--color-muted);
  line-height: 1.55;
}

.about-approach__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.about-branches__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 56rem;
  margin-inline: auto;
}

.about-branch-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.about-branch-card:hover {
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--about-accent, #E6688B) 30%, var(--color-border));
}

.about-branch-card__head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.about-branch-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: color-mix(in srgb, var(--about-accent, #E6688B) 12%, transparent);
  color: var(--about-accent, var(--color-pink));
}

.about-branch-card__head h3 {
  margin: 0 0 0.2rem;
  font-size: 1.125rem;
  color: var(--color-navy);
}

.about-branch-card__district {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--color-muted);
}

.about-branch-card__meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.about-branch-card__meta li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.875rem;
  color: var(--color-text);
  line-height: 1.5;
}

.about-branch-card__meta svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--about-accent, var(--color-pink));
}

.about-branch-card__meta a {
  color: inherit;
  text-decoration: none;
}

.about-branch-card__meta a:hover {
  color: var(--about-accent, var(--color-pink));
}

.about-branch-card__link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--about-accent, var(--color-pink));
  text-decoration: none;
}

.about-branch-card__link:hover {
  text-decoration: underline;
}

.about-branches__note {
  margin: 1.75rem auto 0;
  max-width: 40rem;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--color-muted);
}

.about-branches__note a {
  color: var(--about-accent, var(--color-pink));
  font-weight: 600;
}

.about-disclaimer {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.about-disclaimer p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--color-muted);
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 1100px) {
  .about-story__grid,
  .vm-panel__grid {
    grid-template-columns: 1fr;
  }

  .about-story__visual {
    order: -1;
  }

  .about-values__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-approach__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-story__badge {
    left: 1rem;
    bottom: 1rem;
  }

  .vm-tabs--modern {
    width: 100%;
    flex-direction: column;
    border-radius: var(--radius-lg);
  }

  .vm-tabs--modern .vm-tabs__btn {
    width: 100%;
    justify-content: center;
  }

  .about-values__grid,
  .about-approach__grid,
  .about-branches__grid {
    grid-template-columns: 1fr;
  }

  .about-approach__cta {
    flex-direction: column;
  }

  .about-approach__cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   Services Index â€” Modern layout
   ========================================================================== */
.svc-index-stats {
  margin-top: -2rem;
}

.svc-index-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 3rem;
  align-items: center;
}

.svc-index-intro__list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.svc-index-intro__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.5;
}

.svc-index-intro__check {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--svc-accent, #E6688B) 14%, transparent);
  color: var(--svc-accent, var(--color-pink));
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.svc-index-intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.svc-index-intro__card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  border-bottom: 4px solid var(--card-accent, var(--color-pink));
}

.svc-index-intro__card img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.svc-index-intro__card-caption {
  padding: 1.15rem 1.25rem;
  background: var(--color-white);
}

.svc-index-intro__card-caption strong {
  display: block;
  font-size: 1.0625rem;
  color: var(--color-navy);
  margin-bottom: 0.35rem;
}

.svc-index-intro__card-caption p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.55;
}

.svc-index-catalog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.svc-index-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.svc-index-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--svc-accent, #E6688B) 35%, var(--color-border));
}

.svc-index-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.svc-index-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--svc-accent-light, var(--color-bg));
}

.svc-index-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.svc-index-card:hover .svc-index-card__media img {
  transform: scale(1.05);
}

.svc-index-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--svc-accent, var(--color-pink));
  box-shadow: var(--shadow-sm);
}

.svc-index-card__icon {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--svc-accent, var(--color-pink));
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.svc-index-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
  padding: 1.15rem 1.2rem 1.25rem;
}

.svc-index-card__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  color: var(--color-navy);
}

.svc-index-card__desc {
  margin: 0;
  flex: 1;
  font-size: 0.8125rem;
  color: var(--color-muted);
  line-height: 1.55;
}

.svc-index-card__cta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--svc-accent, var(--color-pink));
}

.svc-index-process__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.svc-index-process__step {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.25rem;
  border-top: 4px solid var(--step-color, var(--color-teal));
}

.svc-index-process__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--step-color, var(--color-teal)) 14%, transparent);
  color: var(--step-color, var(--color-teal));
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.svc-index-process__step h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  color: var(--color-navy);
}

.svc-index-process__step p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--color-muted);
  line-height: 1.55;
}

.svc-index-cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.svc-index-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 1100px) {
  .svc-index-intro__grid {
    grid-template-columns: 1fr;
  }

  .svc-index-intro__visual {
    order: -1;
  }

  .svc-index-catalog__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-index-process__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .svc-index-stats {
    margin-top: -1.25rem;
  }

  .svc-index-catalog__grid,
  .svc-index-process__steps {
    grid-template-columns: 1fr;
  }

  .svc-index-intro__actions,
  .svc-index-cta-band__actions {
    flex-direction: column;
    width: 100%;
  }

  .svc-index-intro__actions .btn,
  .svc-index-cta-band__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .svc-index-cta-band__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   Hearing Test Page â€” Modern layout
   ========================================================================== */
.ht-page-stats {
  margin-top: -2rem;
}

.ht-page-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.ht-page-intro__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  border-bottom: 4px solid var(--ht-accent, var(--color-teal));
}

.ht-page-intro__frame img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ht-page .svc-detail,
.ht-page {
  --svc-accent: var(--ht-accent, #3B6FE8);
}

.ht-page-compare__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 56rem;
  margin-inline: auto;
}

.ht-page-compare-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  border-top: 4px solid var(--ht-accent, #3B6FE8);
}

.ht-page-compare-card--online {
  border-top-color: #1b9aaa;
}

.ht-page-compare-card--clinical {
  border-top-color: var(--ht-accent, #3B6FE8);
}

.ht-page-compare-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--ht-accent, #3B6FE8) 12%, transparent);
  color: var(--ht-accent, #3B6FE8);
}

.ht-page-compare-card--online .ht-page-compare-card__icon {
  background: rgba(27, 154, 170, 0.12);
  color: #1b9aaa;
}

.ht-page-compare-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--color-navy);
}

.ht-page-compare-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.ht-page-compare-card li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.ht-page-compare-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--ht-accent, #3B6FE8);
}

.ht-page-compare-card--online li::before {
  background: #1b9aaa;
}

.ht-page-symptoms__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.ht-page-symptom-card {
  padding: 1.35rem 1.25rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  transition: transform var(--transition), box-shadow var(--transition);
}

.ht-page-symptom-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.ht-page-symptom-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  background: color-mix(in srgb, var(--ht-accent, #3B6FE8) 12%, transparent);
  color: var(--ht-accent, #3B6FE8);
}

.ht-page-symptom-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: var(--color-navy);
}

.ht-page-symptom-card p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--color-muted);
  line-height: 1.55;
}

.ht-page-prep__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.ht-page-prep__list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.ht-page-prep__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.ht-page-prep__list svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--ht-accent, #3B6FE8);
}

.ht-page-prep__cta {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--ht-accent, #3B6FE8) 8%, var(--color-bg-light));
  border: 1px solid color-mix(in srgb, var(--ht-accent, #3B6FE8) 18%, transparent);
}

.ht-page-prep__cta p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.6;
}

.svc-disclaimer p + p {
  margin-top: 0.75rem;
}

@media (max-width: 1100px) {
  .ht-page-intro__grid {
    grid-template-columns: 1fr;
  }

  .ht-page-intro__visual {
    order: -1;
  }

  .ht-page-symptoms__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ht-page-prep__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ht-page-stats {
    margin-top: -1.25rem;
  }

  .ht-page-compare__grid,
  .ht-page-symptoms__grid {
    grid-template-columns: 1fr;
  }

  .home-hearing-test--page .home-hearing-test__wrap {
    grid-template-columns: 1fr;
    padding: 1.5rem 0;
  }
}

/* ==========================================================================
   Tinnitus Page â€” Modern layout
   ========================================================================== */
.tn-page-stats {
  margin-top: -2rem;
}

.tn-page-alerts {
  position: relative;
  z-index: 1;
  padding: 0 0 2rem;
  margin-top: 1.75rem;
}

.tn-page-alerts__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: start;
  padding: 1.75rem 2rem;
  background: linear-gradient(135deg, #1a2744 0%, #243656 100%);
  border-radius: var(--radius-xl);
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
}

.tn-page-alerts__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: #ffb347;
  flex-shrink: 0;
}

.tn-page-alerts__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffb347;
  margin-bottom: 0.35rem;
}

.tn-page-alerts__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-white);
}

.tn-page-alerts__lead {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.tn-page-alerts__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem 1.25rem;
}

.tn-page-alerts__list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.tn-page-alerts__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: #ffb347;
}

.tn-page-alerts__note {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.tn-page-alerts__cta {
  align-self: center;
  white-space: nowrap;
}

.tn-page-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.tn-page-intro__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  border-bottom: 4px solid var(--tn-accent, #5B8DEF);
}

.tn-page-intro__frame img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.tn-page .svc-detail,
.tn-page {
  --svc-accent: var(--tn-accent, #5B8DEF);
}

.tn-page-types__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 56rem;
  margin-inline: auto;
}

.tn-page-type-card {
  padding: 1.75rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  border-top: 4px solid var(--tn-accent, #5B8DEF);
}

.tn-page-type-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: color-mix(in srgb, var(--tn-accent, #5B8DEF) 12%, transparent);
  color: var(--tn-accent, #5B8DEF);
}

.tn-page-type-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--color-navy);
}

.tn-page-type-card > p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.tn-page-type-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.tn-page-type-card li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.875rem;
  color: var(--color-text);
  line-height: 1.5;
}

.tn-page-type-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--tn-accent, #5B8DEF);
}

.tn-page-prevalence {
  padding: 2.5rem 0;
  background: color-mix(in srgb, var(--tn-accent, #5B8DEF) 8%, var(--color-bg-light));
  border-block: 1px solid color-mix(in srgb, var(--tn-accent, #5B8DEF) 15%, transparent);
}

.tn-page-prevalence__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: center;
}

.tn-page-prevalence__copy .mk-title {
  margin-bottom: 0.5rem;
}

.tn-page-prevalence__note {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.tn-page-prevalence__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.tn-page-prevalence__stat {
  padding: 1.25rem 1rem;
  text-align: center;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.tn-page-prevalence__value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--tn-accent, #5B8DEF);
  line-height: 1.2;
}

.tn-page-prevalence__label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: var(--color-muted);
  line-height: 1.4;
}

@media (max-width: 1100px) {
  .tn-page-intro__grid {
    grid-template-columns: 1fr;
  }

  .tn-page-intro__visual {
    order: -1;
  }

  .tn-page-prevalence__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .tn-page-stats {
    margin-top: -1.25rem;
  }

  .tn-page-alerts {
    margin-top: 1.25rem;
  }

  .tn-page-alerts__inner {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .tn-page-alerts__icon {
    display: none;
  }

  .tn-page-alerts__list {
    grid-template-columns: 1fr;
  }

  .tn-page-alerts__cta {
    width: 100%;
    text-align: center;
  }

  .tn-page-types__grid,
  .tn-page-prevalence__stats {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Products Page â€” Modern layout
   ========================================================================== */
.prd-hero .aid-detail-hero__content {
  padding-bottom: 2.5rem;
}

.prd-hero__logo {
  width: 7.5rem;
  height: auto;
  margin-bottom: 0.35rem;
  filter: brightness(0) invert(1);
}

.prd-hero__headline {
  margin: 0 0 0.35rem;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.35;
}

.prd-hero__note {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.prd-hero--app {
  background: linear-gradient(135deg, #1a2744 0%, #2a3f6b 55%, #1a2744 100%);
}

.prd-hero--app .aid-detail-hero__overlay {
  background: transparent;
}

.prd-page-stats {
  margin-top: -2rem;
}

.prd-page-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.prd-page-intro__list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.prd-page-intro__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.prd-page-intro__list svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--prd-accent, var(--bernafon-red));
}

.prd-page-categories__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.prd-cat-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.1rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.prd-cat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: color-mix(in srgb, var(--prd-accent, var(--bernafon-red)) 25%, transparent);
}

.prd-cat-card__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
  background: color-mix(in srgb, var(--prd-accent, var(--bernafon-red)) 10%, transparent);
  color: var(--prd-accent, var(--bernafon-red));
}

.prd-cat-card__label {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-navy);
}

.prd-cat-card__desc {
  font-size: 0.75rem;
  color: var(--color-muted);
  line-height: 1.45;
}

.prd-section-head {
  margin-bottom: 1.75rem;
}

.prd-section-head--center {
  text-align: center;
}

.prd-section-head--center .mk-lead {
  margin-inline: auto;
}

.prd-cat-visual {
  padding: 0 0 1.5rem;
  margin-top: -1rem;
}

.prd-cat-visual__frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  border-bottom: 4px solid var(--prd-accent, var(--bernafon-red));
  max-width: 56rem;
  margin-inline: auto;
  background: var(--color-bg-light);
}

.prd-cat-visual__frame img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  padding: 1.5rem;
}

.prd-feature-card {
  border-top: 3px solid var(--prd-accent, var(--bernafon-red));
}

.prd-feature-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  background: color-mix(in srgb, var(--prd-accent, var(--bernafon-red)) 10%, transparent);
  color: var(--prd-accent, var(--bernafon-red));
}

.prd-features__grid {
  gap: 1.25rem;
}

.prd-acc-filters {
  margin-top: 1rem;
}

.prd-acc-filter {
  border-radius: var(--radius-pill);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.prd-acc-filter.is-active {
  background: var(--bernafon-red);
  border-color: var(--bernafon-red);
  color: var(--color-white);
}

.prd-acc-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.prd-acc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.prd-acc-grid {
  gap: 1.25rem;
}

.prd-grid-cards {
  gap: 1.15rem;
}

.prd-grid-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.prd-grid-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.prd-grid-card__media {
  padding: 1.25rem;
  background: color-mix(in srgb, var(--prd-accent, var(--bernafon-red)) 6%, var(--color-bg-light));
}

.prd-grid-section__footer {
  margin-top: 2rem;
  text-align: center;
}

.prd-app-stores {
  padding-top: 2rem;
}

.prd-app-gallery {
  background: var(--color-bg-light);
}

.prd-app-support {
  text-align: center;
  padding: 3rem 0;
  background: color-mix(in srgb, var(--prd-accent, var(--bernafon-red)) 6%, var(--color-bg-light));
}

.prd-app-support .mk-title {
  margin-bottom: 0.75rem;
}

.prd-cat-info__inner {
  padding: 1.5rem 1.75rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--prd-accent, var(--bernafon-red));
}

.prd-cat-info__inner p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-text);
}

.products-catalog {
  padding: 3rem 0 4rem;
}

.products-models {
  padding-top: 1rem;
}

.products-models__head .mk-label {
  display: block;
  margin-bottom: 0.35rem;
}

@media (max-width: 1100px) {
  .prd-page-intro__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .prd-page-stats {
    margin-top: -1.25rem;
  }

  .prd-page-categories__grid {
    grid-template-columns: 1fr;
  }

  .products-subnav {
    top: calc(var(--header-height, 3.5rem));
  }
}

/* ==========================================================================
   Products Landing â€” Bernafon-style category hub
   ========================================================================== */
.prd-page--landing .prd-page-body {
  padding-bottom: 0;
}

.prd-landing-intro__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.prd-landing-intro__brand {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: color-mix(in srgb, var(--prd-accent, #E2001A) 6%, var(--color-bg-light));
  border: 1px solid color-mix(in srgb, var(--prd-accent, #E2001A) 14%, transparent);
  text-align: center;
}

.prd-landing-intro__brand img {
  margin: 0 auto 1rem;
  display: block;
}

.prd-landing-intro__brand p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-text);
}

.prd-landing-featured {
  padding: 1rem 0 3rem;
}

.prd-landing-feature {
  margin-bottom: 2rem;
}

.prd-landing-feature__link {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 0;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.prd-landing-feature__link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.prd-landing-feature--reverse .prd-landing-feature__link {
  direction: rtl;
}

.prd-landing-feature--reverse .prd-landing-feature__body,
.prd-landing-feature--reverse .prd-landing-feature__media {
  direction: ltr;
}

.prd-landing-feature__media {
  background: var(--color-bg-light);
  min-height: 18rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.prd-landing-feature__media img {
  max-width: 100%;
  max-height: 16rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

.prd-landing-feature__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.65rem;
  padding: 2rem 2.25rem;
}

.prd-landing-feature__section {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--prd-accent, #E2001A);
}

.prd-landing-feature__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  color: var(--color-navy);
  line-height: 1.25;
}

.prd-landing-feature__desc {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-muted);
}

.prd-landing-feature__cta {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--prd-accent, #E2001A);
}

.prd-landing-grid__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.prd-landing-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.prd-landing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.prd-landing-card__media {
  aspect-ratio: 4 / 3;
  background: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  overflow: hidden;
}

.prd-landing-card__media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.prd-landing-card__body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.prd-landing-card__title {
  margin: 0 0 0.35rem;
  font-size: 1.0625rem;
  color: var(--color-navy);
}

.prd-landing-card__desc {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.prd-landing-card__cta {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--prd-accent, #E2001A);
}

.prd-landing-support {
  padding: 3rem 0;
  background: linear-gradient(135deg, #1a2744 0%, #243656 100%);
  color: var(--color-white);
}

.prd-landing-support__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.prd-landing-support__copy .mk-title {
  color: var(--color-white);
}

.prd-landing-support__copy .mk-lead {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

.prd-landing-support__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

@media (max-width: 1100px) {
  .prd-landing-intro__inner {
    grid-template-columns: 1fr;
  }

  .prd-landing-feature__link,
  .prd-landing-feature--reverse .prd-landing-feature__link {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .prd-landing-grid__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .prd-landing-support__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .prd-landing-grid__cards {
    grid-template-columns: 1fr;
  }

  .prd-landing-support__actions {
    flex-direction: column;
  }

  .prd-landing-support__actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   Products Hub — /urunler modern landing
   ========================================================================== */
.prd-hub-page {
  background: var(--color-white);
  overflow-x: clip;
}

/* --- Hero --- */
.prd-hub-hero {
  position: relative;
  padding: calc(var(--header-float-offset, 6.25rem) + 1.5rem) 0 3.5rem;
  background: linear-gradient(160deg, #faf8f7 0%, #fff 45%, color-mix(in srgb, var(--prd-accent, #E2001A) 4%, #fff) 100%);
}

.prd-hub-hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, color-mix(in srgb, var(--prd-accent, #E2001A) 12%, transparent), transparent),
    radial-gradient(ellipse 40% 40% at 10% 80%, color-mix(in srgb, #3B6FE8 8%, transparent), transparent);
  pointer-events: none;
}

.prd-hub-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.prd-hub-hero__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.prd-hub-hero__content .aid-detail-hero__trail {
  margin-bottom: 1.25rem;
}

.prd-hub-hero__logo {
  margin-bottom: 1rem;
}

.prd-hub-hero__badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--prd-accent, #E2001A) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--prd-accent, #E2001A) 22%, transparent);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--prd-accent, #E2001A);
  margin-bottom: 0.75rem;
}

.prd-hub-hero__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
}

.prd-hub-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--color-navy);
}

.prd-hub-hero__lead {
  margin: 0 0 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text);
  max-width: 34rem;
}

.prd-hub-hero__chips {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.prd-hub-hero__chips li {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-navy);
  box-shadow: 0 1px 3px rgba(16, 42, 67, 0.04);
}

.prd-hub-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.prd-hub-hero__visual {
  position: relative;
}

.prd-hub-hero__frame {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow:
    0 1.5rem 3.5rem rgba(35, 36, 80, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  aspect-ratio: 16 / 10;
}

.prd-hub-hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prd-hub-hero__float {
  position: absolute;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 0.5rem 1.5rem rgba(35, 36, 80, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.8);
  text-align: center;
}

.prd-hub-hero__float--1 {
  bottom: 1.25rem;
  left: -1rem;
}

.prd-hub-hero__float--2 {
  top: 1.25rem;
  right: -0.75rem;
}

.prd-hub-hero__float-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--prd-accent, #E2001A);
  line-height: 1;
}

.prd-hub-hero__float-label {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-muted);
}

.prd-hub-stats-bar {
  margin-top: -1.5rem;
  position: relative;
  z-index: 2;
  padding-bottom: 0.5rem;
}

.prd-hub-stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  border-radius: 1.25rem;
  background: var(--color-white);
  box-shadow: 0 0.75rem 2rem rgba(35, 36, 80, 0.1);
  border: 1px solid var(--color-border);
}

.prd-hub-stat {
  text-align: center;
  padding: 0.5rem 0.25rem;
  border-top: 3px solid var(--stat-color, var(--prd-accent, #E2001A));
}

.prd-hub-stat__value {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.1;
}

.prd-hub-stat__label {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-muted);
}

.prd-hub-body {
  padding-bottom: 0;
}

.prd-hub-section {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.prd-hub-section--alt {
  background: var(--color-bg-light);
}

.prd-hub-head {
  margin-bottom: 2rem;
}

.prd-hub-head--center {
  text-align: center;
}

.prd-hub-head--center .prd-hub-head__lead {
  margin-inline: auto;
}

.prd-hub-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.prd-hub-head__label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--prd-accent, #E2001A);
}

.prd-hub-head__title {
  margin: 0 0 0.6rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-navy);
}

.prd-hub-head__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-muted);
  max-width: 38rem;
}

.prd-hub-intro__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.prd-hub-intro__visual {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 1.25rem 3rem rgba(35, 36, 80, 0.12);
}

.prd-hub-intro__visual img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.prd-hub-intro__visual-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: 0.65rem 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 0.25rem 1rem rgba(35, 36, 80, 0.1);
}

.prd-hub-intro__points {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.prd-hub-intro__points li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--color-text);
}

.prd-hub-intro__points svg {
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--prd-accent, #E2001A);
}

.prd-hub-intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.prd-hub-styles__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.prd-hub-style {
  border-radius: 1.35rem;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.prd-hub-style:hover {
  transform: translateY(-6px);
  box-shadow: 0 1.25rem 2.5rem rgba(35, 36, 80, 0.12);
}

.prd-hub-style__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.prd-hub-style__media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(160deg, color-mix(in srgb, var(--card-accent, #E2001A) 6%, #fff) 0%, var(--color-bg-light) 100%);
}

.prd-hub-style__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.prd-hub-style:hover .prd-hub-style__media img {
  transform: scale(1.05);
}

.prd-hub-style__badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--card-accent, #E2001A);
}

.prd-hub-style__body {
  padding: 1.25rem 1.3rem 1.4rem;
  flex: 1;
}

.prd-hub-style__body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.125rem;
  color: var(--color-navy);
}

.prd-hub-style__body p {
  margin: 0 0 0.85rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-muted);
}

.prd-hub-style__tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.prd-hub-style__tags li {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  background: color-mix(in srgb, var(--card-accent, #E2001A) 8%, var(--color-bg-light));
  color: var(--card-accent, #E2001A);
}

.prd-hub-families__scroll {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.prd-hub-family {
  border-radius: 1.2rem;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.prd-hub-family:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.prd-hub-family__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.prd-hub-family__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-bg-light);
}

.prd-hub-family__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.prd-hub-family:hover .prd-hub-family__media img {
  transform: scale(1.06);
}

.prd-hub-family__body {
  padding: 1rem 1.05rem 1.15rem;
}

.prd-hub-family__body h3 {
  margin: 0 0 0.15rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
}

.prd-hub-family__tag {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--prd-accent, #E2001A);
}

.prd-hub-family__desc {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--color-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.prd-hub-tech__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.prd-hub-tech-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.3rem 1.2rem;
  border-radius: 1.2rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.prd-hub-tech-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--card-color, var(--prd-accent, #E2001A));
}

.prd-hub-tech-card.is-wide {
  grid-column: span 2;
}

.prd-hub-tech-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--card-color, #E2001A) 25%, transparent);
}

.prd-hub-tech-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--card-color, #E2001A) 12%, transparent);
  color: var(--card-color, #E2001A);
}

.prd-hub-tech-card__text h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  color: var(--color-navy);
}

.prd-hub-tech-card__text p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.prd-hub-tech-card__go {
  margin-top: auto;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--card-color, #E2001A);
}

.prd-hub-journey__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.prd-hub-step {
  padding: 1.4rem 1.2rem;
  border-radius: 1.2rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-bottom: 4px solid var(--step-color, var(--prd-accent, #E2001A));
}

.prd-hub-step__num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: color-mix(in srgb, var(--step-color, #E2001A) 30%, var(--color-muted));
  margin-bottom: 0.65rem;
}

.prd-hub-step__body h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: var(--color-navy);
}

.prd-hub-step__body p {
  margin: 0 0 0.65rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.prd-hub-step__link {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--step-color, var(--prd-accent, #E2001A));
  text-decoration: none;
}

.prd-hub-step__link:hover {
  text-decoration: underline;
}

.prd-hub-spotlights {
  padding: 2rem 0 3.5rem;
}

.prd-hub-spot {
  margin-bottom: 1.75rem;
}

.prd-hub-spot__link {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 0;
  text-decoration: none;
  color: inherit;
  border-radius: 1.5rem;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: 0 0.5rem 2rem rgba(35, 36, 80, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prd-hub-spot__link:hover {
  transform: translateY(-5px);
  box-shadow: 0 1.5rem 3rem rgba(35, 36, 80, 0.14);
}

.prd-hub-spot.is-flipped .prd-hub-spot__link {
  direction: rtl;
}

.prd-hub-spot.is-flipped .prd-hub-spot__visual,
.prd-hub-spot.is-flipped .prd-hub-spot__content {
  direction: ltr;
}

.prd-hub-spot__visual {
  min-height: 20rem;
  overflow: hidden;
  background: var(--color-bg-light);
}

.prd-hub-spot__visual img {
  width: 100%;
  height: 100%;
  min-height: 20rem;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.prd-hub-spot__link:hover .prd-hub-spot__visual img {
  transform: scale(1.04);
}

.prd-hub-spot__content {
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.prd-hub-spot__label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--prd-accent, #E2001A);
}

.prd-hub-spot__content h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-navy);
}

.prd-hub-spot__content p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-muted);
}

.prd-hub-spot__chips {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.prd-hub-spot__chips li {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: color-mix(in srgb, var(--prd-accent, #E2001A) 8%, var(--color-bg-light));
  color: var(--prd-accent, #E2001A);
}

.prd-hub-spot__cta {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--prd-accent, #E2001A);
}

.prd-hub-eco__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.prd-hub-eco {
  display: flex;
  flex-direction: column;
  border-radius: 1.35rem;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.prd-hub-eco:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.prd-hub-eco__img {
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-white) 100%);
}

.prd-hub-eco__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.prd-hub-eco:hover .prd-hub-eco__img img {
  transform: scale(1.05);
}

.prd-hub-eco__info {
  padding: 1.15rem 1.2rem 1.3rem;
}

.prd-hub-eco__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.55rem;
  background: color-mix(in srgb, var(--prd-accent, #E2001A) 10%, transparent);
  color: var(--prd-accent, #E2001A);
}

.prd-hub-eco__info h3 {
  margin: 0 0 0.35rem;
  font-size: 1.0625rem;
  color: var(--color-navy);
}

.prd-hub-eco__info p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.prd-hub-cta-band {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--color-navy) 0%, color-mix(in srgb, var(--prd-accent, #E2001A) 35%, var(--color-navy)) 100%);
  color: var(--color-white);
}

.prd-hub-cta-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}

.prd-hub-cta-band__copy .prd-hub-head__label {
  color: color-mix(in srgb, var(--color-white) 65%, transparent);
}

.prd-hub-cta-band__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--color-white);
}

.prd-hub-cta-band__copy p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--color-white) 80%, transparent);
  max-width: 32rem;
}

.prd-hub-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.prd-hub-cta-band__ghost {
  color: var(--color-white) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  background: transparent !important;
}

.prd-hub-cta-band__ghost:hover {
  background: rgba(255, 255, 255, 0.12) !important;
}

@media (max-width: 1100px) {
  .prd-hub-hero__inner {
    grid-template-columns: 1fr;
  }

  .prd-hub-hero__visual {
    order: -1;
    max-width: 36rem;
    margin-inline: auto;
    width: 100%;
  }

  .prd-hub-hero__float--1 { left: 0.5rem; }
  .prd-hub-hero__float--2 { right: 0.5rem; }

  .prd-hub-families__scroll {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .prd-hub-tech__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .prd-hub-tech-card.is-wide {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .prd-hub-stats-bar__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .prd-hub-intro__layout {
    grid-template-columns: 1fr;
  }

  .prd-hub-styles__grid,
  .prd-hub-journey__steps,
  .prd-hub-eco__grid {
    grid-template-columns: 1fr;
  }

  .prd-hub-spot__link,
  .prd-hub-spot.is-flipped .prd-hub-spot__link {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .prd-hub-cta-band__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .prd-hub-stats-bar__grid {
    grid-template-columns: 1fr 1fr;
    padding: 1rem;
  }

  .prd-hub-families__scroll {
    grid-template-columns: 1fr;
  }

  .prd-hub-tech__grid {
    grid-template-columns: 1fr;
  }

  .prd-hub-tech-card.is-wide {
    grid-column: span 1;
  }

  .prd-hub-cta-band__actions {
    flex-direction: column;
  }

  .prd-hub-cta-band__actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   Product Category Pages â€” Modern layout
   ========================================================================== */
.prd-cat-page {
  background: var(--color-white);
}

.prd-cat-stats {
  border-bottom: 1px solid var(--color-border);
}

.prd-cat-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: start;
}

.prd-cat-intro__list {
  list-style: none;
  margin: 0;
  padding: 1.25rem 1.5rem;
  display: grid;
  gap: 0.75rem;
  background: color-mix(in srgb, var(--prd-accent, #E2001A) 5%, var(--color-bg-light));
  border: 1px solid var(--color-border);
  border-radius: 1.25rem;
  border-left: 4px solid var(--prd-accent, #E2001A);
}

.prd-cat-intro__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9375rem;
  line-height: 1.55;
}

.prd-cat-intro__list svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--prd-accent, #E2001A);
}

.prd-cat-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.prd-cat-step {
  padding: 1.35rem 1.25rem;
  border-radius: 1.15rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: 0 0.35rem 1.25rem rgba(35, 36, 80, 0.04);
}

.prd-cat-step__num {
  display: inline-flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--step-color, var(--prd-accent));
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.prd-cat-step h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: var(--color-navy);
}

.prd-cat-step p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.prd-cat-gallery__track {
  padding-bottom: 0.5rem;
}

.prd-cat-gallery__item {
  scroll-snap-align: start;
}

.prd-cat-connectivity__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.prd-cat-connect-card {
  padding: 1.35rem 1.25rem;
  border-radius: 1.15rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.prd-cat-connect-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.prd-cat-connect-card__icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--prd-accent, #E2001A) 10%, transparent);
  color: var(--prd-accent, #E2001A);
}

.prd-cat-connect-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: var(--color-navy);
}

.prd-cat-connect-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.prd-cat-battery__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.prd-cat-battery-card {
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  text-align: center;
  border-top: 3px solid var(--bat-color, var(--prd-accent));
}

.prd-cat-battery-card__size {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--bat-color, var(--prd-accent));
  margin-bottom: 0.35rem;
}

.prd-cat-battery-card p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--color-muted);
}

.prd-cat-plugs__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.prd-cat-plug-card {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  transition: transform var(--transition), box-shadow var(--transition);
}

.prd-cat-plug-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.prd-cat-plug-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.prd-cat-plug-card__media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-bg-light);
}

.prd-cat-plug-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.prd-cat-plug-card__media--fit {
  background: var(--color-white);
}

.prd-cat-plug-card__media--fit img {
  object-fit: contain;
  padding: 1rem;
  box-sizing: border-box;
}

.prd-cat-plug-card:hover .prd-cat-plug-card__media img {
  transform: scale(1.04);
}

.prd-cat-plug-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--prd-accent, #E2001A);
}

.prd-cat-plug-card__body {
  padding: 1.15rem 1.2rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.prd-cat-plug-card__body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.0625rem;
  color: var(--color-navy);
}

.prd-cat-plug-card__body p {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-muted);
  flex: 1;
}

.prd-cat-plug-card__cta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--prd-accent, #E2001A);
}

.prd-cat-usecases__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.prd-cat-usecase {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  transition: transform var(--transition), box-shadow var(--transition);
}

.prd-cat-usecase:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.prd-cat-usecase__media {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.prd-cat-usecase__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prd-cat-usecase__icon {
  position: absolute;
  bottom: 0.85rem;
  left: 0.85rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--prd-accent, #E2001A);
  color: var(--color-white);
  box-shadow: 0 0.25rem 0.75rem rgba(35, 36, 80, 0.2);
}

.prd-cat-usecase__body {
  padding: 1.15rem 1.25rem 1.25rem;
}

.prd-cat-usecase__body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.0625rem;
  color: var(--color-navy);
}

.prd-cat-usecase__body p {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-muted);
}

.prd-cat-usecase__tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.prd-cat-usecase__tags li {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--prd-accent, #E2001A) 8%, var(--color-bg-light));
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--prd-accent, #E2001A);
}

.prd-acc-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--prd-accent, #E2001A);
  color: var(--color-white);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.products-acc-card__media {
  position: relative;
}

.prd-cat-tips__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.prd-cat-tip-card {
  padding: 1.25rem 1.2rem;
  border-radius: 1rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--prd-accent, #E2001A);
}

.prd-cat-tip-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  background: color-mix(in srgb, var(--prd-accent, #E2001A) 10%, transparent);
  color: var(--prd-accent, #E2001A);
}

.prd-cat-tip-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: var(--color-navy);
}

.prd-cat-tip-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.prd-cat-info-band .prd-cat-info__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: 1.35rem 1.5rem;
  background: color-mix(in srgb, var(--prd-accent, #E2001A) 5%, var(--color-bg-light));
  border: 1px solid var(--color-border);
  border-radius: 1.15rem;
  border-left: 4px solid var(--prd-accent, #E2001A);
}

.prd-cat-info-band .prd-cat-info__inner svg {
  flex-shrink: 0;
  color: var(--prd-accent, #E2001A);
}

.prd-cat-info-band .prd-cat-info__inner p {
  margin: 0;
  flex: 1;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text);
  min-width: 12rem;
}

@media (max-width: 1100px) {
  .prd-cat-intro__grid,
  .prd-cat-connectivity__grid,
  .prd-cat-battery__grid,
  .prd-cat-plugs__grid,
  .prd-cat-tips__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .prd-cat-steps__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .prd-cat-intro__grid,
  .prd-cat-plugs__grid,
  .prd-cat-usecases__grid,
  .prd-cat-connectivity__grid,
  .prd-cat-battery__grid,
  .prd-cat-tips__grid {
    grid-template-columns: 1fr;
  }

  .prd-cat-info-band .prd-cat-info__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .prd-cat-info-band .prd-cat-info__inner .btn {
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   Contact Page â€” Modern layout
   ========================================================================== */
.ct-page {
  --ct-accent: #1B9AAA;
  --ct-accent-light: #EAF7F7;
  background: var(--color-white);
}

.ct-section-head {
  max-width: 42rem;
  margin-bottom: 2.25rem;
}

.ct-section-head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  max-width: none;
}

.ct-stats {
  border-bottom: 1px solid var(--color-border);
}

.ct-channels__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.ct-channel-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.35rem 1.25rem 1.35rem;
  border-radius: 1.25rem;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
}

.ct-channel-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--ct-card-accent, var(--ct-accent));
  opacity: 0;
  transition: opacity var(--transition);
}

.ct-channel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2.5rem rgba(35, 36, 80, 0.1);
  border-color: color-mix(in srgb, var(--ct-card-accent, var(--ct-accent)) 35%, var(--color-border));
}

.ct-channel-card:hover::before {
  opacity: 1;
}

.ct-channel-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--ct-card-accent, var(--ct-accent)) 12%, var(--color-white));
  color: var(--ct-card-accent, var(--ct-accent));
  margin-bottom: 0.35rem;
}

.ct-channel-card__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
}

.ct-channel-card__value {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.3;
}

.ct-channel-card__desc {
  font-size: 0.8125rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.ct-channel-card__arrow {
  position: absolute;
  top: 1.25rem;
  right: 1rem;
  font-size: 1.125rem;
  color: var(--color-muted);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity var(--transition), transform var(--transition);
}

.ct-channel-card:hover .ct-channel-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

.ct-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: start;
}

.ct-intro__list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.ct-intro__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--color-text);
}

.ct-intro__list svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--ct-accent);
}

.ct-intro__steps {
  display: grid;
  gap: 0.85rem;
}

.ct-step-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-radius: 1rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: 0 0.35rem 1.25rem rgba(35, 36, 80, 0.04);
}

.ct-step-card__num {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-white);
  background: var(--ct-step-color, var(--ct-accent));
}

.ct-step-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  color: var(--color-navy);
}

.ct-step-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.ct-form-section__hours {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  background: var(--ct-accent-light);
  border: 1px solid color-mix(in srgb, var(--ct-accent) 18%, transparent);
  flex-shrink: 0;
}

.ct-form-section__hours svg {
  flex-shrink: 0;
  color: var(--ct-accent);
  margin-top: 0.1rem;
}

.ct-form-section__hours strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--color-navy);
  margin-bottom: 0.15rem;
}

.ct-form-section__hours span {
  font-size: 0.8125rem;
  color: var(--color-muted);
  line-height: 1.45;
}

.contact-split-card--modern {
  border-radius: 1.5rem;
  box-shadow: 0 1.5rem 3.5rem rgba(35, 36, 80, 0.1);
}

.contact-split-card--modern .contact-split-card__aside {
  background: linear-gradient(165deg, #1B9AAA 0%, #147D7E 55%, #0f5f66 100%);
}

.contact-split-form--modern .form-input--line,
.contact-split-form--modern .form-textarea--line {
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--color-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-split-form--modern .form-input--line:focus,
.contact-split-form--modern .form-textarea--line:focus {
  border-color: var(--ct-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--ct-accent) 18%, transparent);
}

.contact-split-form--modern .btn--submit-pill {
  background: var(--ct-accent);
  box-shadow: 0 0.5rem 1.25rem color-mix(in srgb, var(--ct-accent) 35%, transparent);
}

.contact-split-form--modern .btn--submit-pill:hover:not(:disabled) {
  background: #147D7E;
}

.ct-branches__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.ct-branch-card {
  display: flex;
  flex-direction: column;
  border-radius: 1.35rem;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  box-shadow: 0 0.75rem 2rem rgba(35, 36, 80, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.ct-branch-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 1.25rem 2.5rem rgba(35, 36, 80, 0.1);
}

.ct-branch-card__map {
  position: relative;
  height: 220px;
  background: var(--color-bg-light);
}

.ct-branch-card__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(30%) contrast(0.95);
}

.ct-branch-card__map-btn {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-navy);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0.25rem 0.75rem rgba(35, 36, 80, 0.12);
  transition: background var(--transition);
}

.ct-branch-card__map-btn:hover {
  background: var(--color-white);
}

.ct-branch-card__body {
  padding: 1.35rem 1.5rem 1.5rem;
  border-top: 3px solid var(--ct-branch-accent, var(--ct-accent));
}

.ct-branch-card__district {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ct-branch-accent, var(--ct-accent));
  margin-bottom: 0.35rem;
}

.ct-branch-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  color: var(--color-navy);
  line-height: 1.3;
}

.ct-branch-card__address {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-muted);
}

.ct-branch-card__meta {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.ct-branch-card__meta li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.875rem;
  color: var(--color-text);
}

.ct-branch-card__meta svg {
  flex-shrink: 0;
  color: var(--ct-branch-accent, var(--ct-accent));
}

.ct-branch-card__meta a {
  color: inherit;
  text-decoration: none;
}

.ct-branch-card__meta a:hover {
  color: var(--ct-accent);
}

.ct-branch-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.ct-faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: start;
}

.ct-faq__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.ct-faq__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-navy);
  text-decoration: none;
}

.ct-faq__phone:hover {
  color: var(--ct-accent);
}

.ct-faq__phone svg {
  color: var(--ct-accent);
}

.ct-cta-band {
  padding: 3.5rem 0;
  background: linear-gradient(135deg, #102A43 0%, #1a3a5c 55%, #147D7E 100%);
  color: var(--color-white);
}

.ct-cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.ct-cta-band__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  color: var(--color-white);
}

.ct-cta-band__copy p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 38rem;
}

.ct-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .ct-channels__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ct-intro__grid,
  .ct-faq__grid,
  .ct-section-head--split {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .ct-branches__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ct-channels__grid {
    grid-template-columns: 1fr;
  }

  .ct-cta-band__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .ct-cta-band__actions {
    width: 100%;
  }

  .ct-cta-band__actions .btn {
    flex: 1;
    text-align: center;
  }

  .ct-branch-card__actions .btn {
    flex: 1;
    text-align: center;
  }
}

/* ==========================================================================
   Home Body — Modern refresh (hero slider untouched)
   ========================================================================== */
.home-body {
  background: var(--color-white);
  overflow-x: clip;
}

/* Help bar */
.home-help-bar {
  background: linear-gradient(135deg, var(--color-navy) 0%, #2a2d5a 55%, color-mix(in srgb, var(--color-teal) 35%, var(--color-navy)) 100%);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home-help-bar__inner {
  grid-template-columns: minmax(0, auto) minmax(0, 1fr) auto;
  gap: clamp(1rem, 3vw, 2rem);
}

.home-help-bar__icon {
  background: rgba(255, 255, 255, 0.14);
  color: var(--color-white);
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.12);
}

.home-help-bar__title {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 700;
}

.home-help-bar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.home-help-bar__btn--primary {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: transparent;
  font-weight: 700;
}

.home-help-bar__btn--primary:hover {
  background: var(--color-bg-light);
  transform: translateY(-1px);
  box-shadow: 0 0.35rem 1rem rgba(0, 0, 0, 0.15);
}

.home-help-bar__btn--whatsapp {
  background: var(--color-whatsapp);
  border-color: var(--color-whatsapp);
  color: var(--color-white);
}

.home-help-bar__btn--whatsapp:hover {
  background: var(--color-whatsapp-dark);
  border-color: var(--color-whatsapp-dark);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 0.35rem 1rem rgba(37, 211, 102, 0.28);
}

.home-help-bar__btn--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.92);
}

.home-help-bar__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
}

/* Stats — card band below help bar */
.home-body .home-stats {
  margin-top: 0;
  position: relative;
  z-index: 1;
  padding: clamp(1.75rem, 3.5vw, 2.5rem) 0 clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-light);
  border: none;
}

.home-body .home-stats__grid {
  gap: 0.85rem;
  padding: 1.15rem 1.35rem;
  background: var(--color-white);
  border-radius: 1.25rem;
  box-shadow: 0 0.75rem 2.5rem rgba(35, 36, 80, 0.12);
  border: 1px solid var(--color-border);
}

.home-body .home-stat {
  padding: 0.35rem 0.5rem;
  border-top: 3px solid var(--stat-color, var(--color-teal));
}

.home-body .home-stat__value {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  color: var(--color-navy);
}

.home-body .home-stat__label {
  font-size: 0.8125rem;
  font-weight: 600;
}

/* About */
.home-about {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.home-about__visual {
  position: relative;
}

.home-about__badge {
  position: absolute;
  bottom: 1.25rem;
  right: -0.5rem;
  padding: 0.85rem 1.1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 0.5rem 1.5rem rgba(35, 36, 80, 0.14);
  text-align: center;
  border: 1px solid var(--color-border);
}

.home-about__badge-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-teal);
  line-height: 1;
}

.home-about__badge-label {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-muted);
}

.home-about__features {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.home-about__feature {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--feature-color, var(--color-teal));
  transition: transform var(--transition), box-shadow var(--transition);
}

.home-about__feature:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.home-about__feature-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: color-mix(in srgb, var(--feature-color, var(--color-teal)) 12%, transparent);
  color: var(--feature-color, var(--color-teal));
}

.home-about__feature strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--color-navy);
  margin-bottom: 0.15rem;
}

.home-about__feature p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.home-about__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.home-about__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.home-about__phone:hover {
  border-color: color-mix(in srgb, var(--color-teal) 40%, transparent);
  box-shadow: var(--shadow-sm);
}

.home-about__phone-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--color-teal) 12%, transparent);
  color: var(--color-teal);
}

.home-about__phone small {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-muted);
}

.home-about__phone span:last-child {
  font-weight: 700;
  color: var(--color-navy);
}

/* Services showcase refresh */
.home-body .home-svc-showcase-wrap {
  background: linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-white) 100%);
}

.home-body .home-svc-showcase__deco {
  top: 8%;
  left: 12%;
  right: 0;
  bottom: 5%;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, color-mix(in srgb, var(--color-teal) 25%, transparent), color-mix(in srgb, var(--color-pink) 18%, transparent));
  opacity: 0.85;
}

.home-body .home-svc-card {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.home-body .home-svc-card__tag {
  border-radius: 999px 0 0 0;
  background: var(--color-navy);
  font-size: 0.75rem;
}

.home-body .home-svc-showcase__cta {
  background: var(--color-teal);
}

.home-body .home-svc-showcase__cta:hover {
  background: var(--color-pink-dark);
  box-shadow: 0 0.35rem 1.25rem rgba(230, 104, 139, 0.3);
}

.home-body .home-svc-showcase__arrow {
  border-radius: 50%;
  transition: transform var(--transition), border-color var(--transition);
}

.home-body .home-svc-showcase__arrow:hover {
  border-color: var(--color-teal);
  color: var(--color-teal);
}

/* Process timeline */
.home-process {
  background: var(--color-white);
}

.home-process__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  grid-template-areas:
    "intro visual"
    "steps steps";
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}

.home-process__intro {
  grid-area: intro;
}

.home-process__visual {
  grid-area: visual;
}

.home-process__steps {
  grid-area: steps;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-process__step {
  display: flex;
  gap: 0.85rem;
  padding: 1.15rem 1.1rem;
  border-radius: 1.15rem;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.home-process__step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.home-process__num {
  flex-shrink: 0;
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1;
  color: color-mix(in srgb, var(--color-teal) 45%, var(--color-muted));
}

.home-process__step h3 {
  margin: 0 0 0.25rem;
  font-size: 0.9375rem;
  color: var(--color-navy);
}

.home-process__step p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--color-muted);
}

/* Aid cards */
.home-aids__more {
  margin: 2rem 0 0;
  text-align: right;
}

.home-body .home-aid-card {
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.25rem 1.25rem;
  border-radius: 1.2rem;
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--aid-accent, var(--color-teal));
  box-shadow: 0 0.15rem 0.75rem rgba(35, 36, 80, 0.04);
}

.home-body .home-aid-card:hover {
  border-color: color-mix(in srgb, var(--aid-accent, var(--color-teal)) 35%, transparent);
  box-shadow: 0 0.75rem 1.75rem rgba(35, 36, 80, 0.1);
}

.home-aid-card__badge {
  align-self: flex-start;
  margin-bottom: 0.65rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: color-mix(in srgb, var(--aid-accent, var(--color-teal)) 10%, var(--color-bg-light));
  color: var(--aid-accent, var(--color-teal));
}

.home-body .home-aid-card h3 {
  font-size: 1rem;
  padding-right: 0;
  margin-bottom: 0.4rem;
}

.home-aid-card__tags {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.home-aid-card__tags li {
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  background: color-mix(in srgb, var(--aid-accent, var(--color-teal)) 8%, var(--color-bg-light));
  color: var(--aid-accent, var(--color-teal));
}

.home-aid-card__cta {
  margin-top: auto;
  padding-top: 0.85rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--aid-accent, var(--color-teal));
}

.home-body .home-aid-card__arrow {
  display: none;
}

/* Appointment */
.home-appt__split {
  align-items: stretch;
}

.home-appt__form {
  border-radius: 1.35rem;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.12);
}

/* FAQ */
.home-faq__grid .home-faq__item {
  border-radius: 1rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 0.15rem 0.25rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.home-faq__grid .home-faq__item:hover {
  border-color: color-mix(in srgb, var(--color-teal) 30%, transparent);
}

.home-faq__grid .home-faq__item[open] {
  box-shadow: var(--shadow-sm);
  border-color: color-mix(in srgb, var(--color-teal) 25%, transparent);
}

.home-faq__more {
  margin-top: 2rem;
  text-align: right;
}

.home-section-head .mk-lead {
  max-width: 40rem;
}

/* CTA banner */
.home-body .home-cta-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-navy) 0%, #2d3158 50%, color-mix(in srgb, var(--color-teal) 40%, var(--color-navy)) 100%);
}

.home-cta-banner__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 90% 20%, rgba(230, 104, 139, 0.22), transparent),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(59, 111, 232, 0.15), transparent);
  pointer-events: none;
}

.home-cta-banner__inner {
  position: relative;
  z-index: 1;
}

.home-cta-banner__label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
}

.home-body .home-cta-banner h2 {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: -0.02em;
}

@media (max-width: 1024px) {
  .home-process__layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "visual"
      "steps";
  }

  .home-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-help-bar__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .home-help-bar__contact {
    justify-content: center;
  }

  .home-help-bar__actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .home-body .home-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-process__steps,
  .home-aids__grid {
    grid-template-columns: 1fr;
  }

  .home-about__badge {
    right: 0.5rem;
    bottom: 0.75rem;
  }

  .home-about__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-about__phone {
    justify-content: center;
  }

  .home-cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .home-cta-banner__actions {
    width: 100%;
    justify-content: center;
  }

  .home-cta-banner__actions .btn {
    flex: 1;
    min-width: 10rem;
  }
}

@media (max-width: 480px) {
  .home-body .home-stats__grid {
    grid-template-columns: 1fr 1fr;
    padding: 1rem;
  }
}

/* ==========================================================================
   Blog — Hub, cards & article detail
   ========================================================================== */
.blog-page,
.blog-article-page {
  background: var(--color-white);
  color: var(--color-text);
}

.blog-page > :not(.blog-hub-hero):not(.blog-page__cta) {
  color: var(--color-text);
}

/* Hub hero */
.blog-hub-hero {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  padding: calc(var(--header-float-offset, 6.25rem) + 0.75rem) 0 clamp(3rem, 6vw, 4.5rem);
  background: linear-gradient(135deg, var(--color-navy) 0%, #2a2d5a 50%, color-mix(in srgb, var(--blog-accent, #E6688B) 35%, var(--color-navy)) 100%);
}

.blog-hub-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.blog-hub-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}

.blog-hub-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(35, 36, 80, 0.55) 0%, rgba(35, 36, 80, 0.88) 100%);
}

.blog-hub-hero__inner {
  position: relative;
  z-index: 2;
}

.blog-hub-hero__content {
  max-width: 42rem;
  text-align: left;
}

.blog-hub-hero__content .aid-detail-hero__trail {
  width: 100%;
  padding: 0 0 0.75rem;
  margin: 0;
}

.blog-hub-hero__content .aid-detail-hero__trail .breadcrumb--hero {
  padding: 0;
  text-align: left;
}

.blog-hub-hero__badge {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: color-mix(in srgb, var(--blog-accent, #E6688B) 22%, transparent);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.blog-hub-hero__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.blog-hub-hero__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-body);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--color-white);
}

.blog-hub-hero h1.blog-hub-hero__title {
  color: var(--color-white);
}

.blog-hub-hero__lead {
  margin: 0 0 1.25rem;
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.blog-hub-hero__chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.blog-hub-hero__chips li {
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

/* Stats band */
.blog-page__stats {
  margin-top: 0;
  position: relative;
  z-index: 2;
  padding: clamp(1.25rem, 2.5vw, 1.75rem) 0 0.5rem;
}

.blog-page__stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 1.1rem 1.25rem;
  background: var(--color-white);
  border-radius: 1.15rem;
  box-shadow: 0 0.75rem 2rem rgba(35, 36, 80, 0.1);
  border: 1px solid var(--color-border);
}

.blog-page__stat {
  text-align: center;
  padding: 0.25rem 0.35rem;
  border-top: 3px solid var(--blog-accent, #E6688B);
}

.blog-page__stat-value {
  display: block;
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.1;
}

.blog-page__stat-label {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-muted);
}

/* Body */
.blog-page__body {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(3rem, 5vw, 4rem);
}

.blog-page__body .mk-title,
.blog-page__body .blog-page__filter-title,
.blog-page__body .blog-featured__title,
.blog-page__body .blog-card__title,
.blog-page__body .blog-card__title a {
  color: var(--color-navy);
}

.blog-page__body .blog-featured__excerpt,
.blog-page__body .blog-card__excerpt,
.blog-page__body .blog-page__filter-desc {
  color: var(--color-muted);
}

.blog-page__body .blog-card__meta,
.blog-page__body .blog-featured__foot,
.blog-page__body .blog-featured__read {
  color: var(--color-muted);
}

.blog-page__section-head {
  margin-bottom: 1.25rem;
}

.blog-page__featured {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

/* Featured card */
.blog-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 0;
  border-radius: 1.35rem;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 0.75rem 2rem rgba(35, 36, 80, 0.08);
  background: var(--color-white);
}

.blog-featured__media {
  position: relative;
  display: block;
  min-height: 16rem;
  overflow: hidden;
}

.blog-featured__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.blog-featured:hover .blog-featured__media img {
  transform: scale(1.04);
}

.blog-featured__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, color-mix(in srgb, var(--blog-card-accent, #E6688B) 18%, transparent));
  pointer-events: none;
}

.blog-featured__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.35rem, 3vw, 2rem);
  border-left: 4px solid var(--blog-card-accent, #E6688B);
}

.blog-featured__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.blog-featured__cat {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: color-mix(in srgb, var(--blog-card-accent, #E6688B) 10%, var(--color-bg-light));
  color: var(--blog-card-accent, #E6688B);
}

.blog-featured__read {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-muted);
}

.blog-featured__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  line-height: 1.25;
}

.blog-featured__title a {
  color: var(--color-navy);
  text-decoration: none;
}

.blog-featured__title a:hover {
  color: var(--blog-card-accent, #E6688B);
}

.blog-featured__excerpt {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-muted);
}

.blog-featured__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.8125rem;
  color: var(--color-muted);
}

.blog-featured__cta {
  font-weight: 700;
  color: var(--blog-card-accent, #E6688B);
  text-decoration: none;
}

.blog-featured__cta:hover {
  text-decoration: underline;
}

/* Filter */
.blog-page__filter {
  margin-bottom: 1.75rem;
}

.blog-page__filter-head {
  margin-bottom: 1rem;
}

.blog-page__filter-head--solo {
  margin-bottom: 1.75rem;
}

.blog-page__back {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-teal);
  text-decoration: none;
}

.blog-page__back:hover {
  text-decoration: underline;
}

.blog-page__filter-title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--color-navy);
}

.blog-page__filter-desc {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-muted);
}

.blog-page__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.blog-page__pill {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-navy);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.blog-page__pill:hover {
  border-color: color-mix(in srgb, var(--color-teal) 35%, transparent);
}

.blog-page__pill.is-active {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: var(--color-white);
}

/* Grid */
.blog-page__grid,
.blog-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.blog-card.is-hidden {
  display: none;
}

/* Blog card */
.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: 1.15rem;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--blog-card-accent, #E6688B);
  box-shadow: 0 0.15rem 0.75rem rgba(35, 36, 80, 0.04);
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.75rem 1.75rem rgba(35, 36, 80, 0.1);
}

.blog-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__img {
  transform: scale(1.05);
}

.blog-card__cat {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blog-card-accent, #E6688B);
  backdrop-filter: blur(4px);
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.1rem 1.15rem 1.15rem;
}

.blog-card__meta {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0.45rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-muted);
}

.blog-card__title {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  line-height: 1.35;
}

.blog-card__title a {
  color: var(--color-navy);
  text-decoration: none;
}

.blog-card__title a:hover {
  color: var(--blog-card-accent, #E6688B);
}

.blog-card__excerpt {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--color-muted);
  flex: 1;
}

.blog-card__link {
  margin-top: 0.85rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--blog-card-accent, #E6688B);
  text-decoration: none;
}

.blog-card--compact .blog-card__media {
  aspect-ratio: 16 / 9;
}

.blog-card--compact .blog-card__body {
  padding: 0.95rem 1rem 1rem;
}

/* Disclaimer & CTA */
.blog-page__disclaimer {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-top: 2.5rem;
  padding: 1.1rem 1.25rem;
  border-radius: 1rem;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.blog-page__disclaimer svg {
  flex-shrink: 0;
  color: var(--color-teal);
  margin-top: 0.1rem;
}

.blog-page__disclaimer p {
  margin: 0;
}

.blog-page__disclaimer a {
  color: var(--color-teal);
  font-weight: 600;
}

.blog-page__empty,
.blog-page__empty-state {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--color-muted);
}

.blog-page__empty.is-hidden {
  display: none;
}

.blog-page__cta {
  background: linear-gradient(135deg, var(--color-navy) 0%, #2d3158 55%, color-mix(in srgb, var(--color-teal) 35%, var(--color-navy)) 100%);
  color: var(--color-white);
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.blog-page__cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.blog-page__cta-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.65);
}

.blog-page__cta h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 800;
}

.blog-page__cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.blog-page__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* Article hero */
.blog-article-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-white) 100%);
  padding: calc(var(--header-float-offset, 6.25rem) + 0.75rem) 0 clamp(2rem, 4vw, 2.75rem);
  border-bottom: 1px solid var(--color-border);
}

.blog-article-hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 45% 55% at 95% 10%, color-mix(in srgb, var(--blog-accent, #E6688B) 12%, transparent), transparent),
    radial-gradient(ellipse 35% 45% at 5% 90%, color-mix(in srgb, var(--color-teal) 10%, transparent), transparent);
  pointer-events: none;
}

.blog-article-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
}

.blog-article-hero__content .aid-detail-hero__trail {
  width: 100%;
  padding: 0 0 0.65rem;
  margin: 0;
}

.blog-article-hero__content .aid-detail-hero__trail .breadcrumb {
  padding: 0;
  text-align: left;
}

.blog-article-hero__cat {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  background: color-mix(in srgb, var(--blog-accent, #E6688B) 10%, var(--color-white));
  color: var(--blog-accent, #E6688B);
  border: 1px solid color-mix(in srgb, var(--blog-accent, #E6688B) 20%, transparent);
}

.blog-article-hero__cat:hover {
  background: color-mix(in srgb, var(--blog-accent, #E6688B) 16%, var(--color-white));
}

.blog-article-hero__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-body);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-navy);
}

.blog-article-hero__lead {
  margin: 0 0 1rem;
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.65;
  color: var(--color-muted);
  max-width: 38rem;
}

.blog-article-hero__meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
}

.blog-article-hero__meta li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-muted);
}

.blog-article-hero__meta svg {
  color: var(--blog-accent, #E6688B);
}

.blog-article-hero__cover {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 1rem 2.5rem rgba(35, 36, 80, 0.12);
  border: 1px solid var(--color-border);
}

.blog-article-hero__cover img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-read-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 999;
  background: rgba(35, 36, 80, 0.06);
  pointer-events: none;
}

.blog-read-progress__bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blog-accent, #E6688B), var(--color-teal));
  transition: width 0.08s linear;
}

/* Article body */
.blog-article {
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(3rem, 5vw, 4rem);
}

.blog-article__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17.5rem, 22rem);
  gap: 2.5rem;
  align-items: start;
}

.blog-article__prose {
  max-width: none;
}

.blog-article-page .article-trust {
  margin-bottom: 2rem;
  padding: 1.15rem 1.25rem;
  background: linear-gradient(135deg, color-mix(in srgb, var(--color-teal) 6%, #fff) 0%, var(--color-bg-light) 100%);
  border: 1px solid color-mix(in srgb, var(--color-teal) 18%, transparent);
  border-left: 4px solid var(--color-teal);
  border-radius: 1rem;
}

.blog-article__faq {
  margin-top: 2.5rem;
}

.blog-article__faq-grid .faq-accordion__item {
  border-radius: 1rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
}

.blog-article__related-services {
  margin-top: 2.5rem;
}

.blog-article__service-list {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.blog-article__service-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  text-decoration: none;
  color: var(--color-navy);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: border-color var(--transition), transform var(--transition);
}

.blog-article__service-list a:hover {
  border-color: color-mix(in srgb, var(--color-teal) 35%, transparent);
  transform: translateX(4px);
}

.blog-article__service-list svg {
  color: var(--color-teal);
  flex-shrink: 0;
}

/* Related */
.blog-related {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.blog-related__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.blog-related__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-navy);
}

.blog-related__all {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-teal);
  text-decoration: none;
}

.blog-related__all:hover {
  text-decoration: underline;
}

.blog-related__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Article CTA */
.blog-article__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding: 1.35rem 1.5rem;
  border-radius: 1.15rem;
  background: linear-gradient(135deg, var(--color-navy) 0%, #2d3158 60%, color-mix(in srgb, var(--color-teal) 30%, var(--color-navy)) 100%);
  color: var(--color-white);
}

.blog-article__cta-label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.65);
}

.blog-article__cta-copy p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.blog-article__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.blog-article__disclaimer {
  margin-top: 2rem;
  padding: 1rem 1.1rem;
  border-radius: 0.85rem;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--color-muted);
}

/* Sidebar refresh in article context */
.blog-article-page .article-sidebar__card {
  border-radius: 1rem;
  box-shadow: 0 0.15rem 0.75rem rgba(35, 36, 80, 0.04);
}

@media (max-width: 1024px) {
  .blog-page__stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-featured__body {
    border-left: none;
    border-top: 4px solid var(--blog-card-accent, #E6688B);
  }

  .blog-page__grid,
  .blog-related__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-article-hero__inner {
    grid-template-columns: 1fr;
  }

  .blog-article-hero__cover {
    order: -1;
  }

  .blog-article__layout {
    grid-template-columns: 1fr;
  }

  .blog-article-page .article-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .blog-page__stats {
    margin-top: 0;
    padding-top: 1.25rem;
  }

  .blog-page__grid,
  .blog-related__grid {
    grid-template-columns: 1fr;
  }

  .blog-page__cta-inner,
  .blog-article__cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .blog-page__cta-actions,
  .blog-article__cta-actions {
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   Homepage renewal popup
   -------------------------------------------------------------------------- */
.renewal-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.renewal-popup.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.renewal-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(35, 36, 80, 0.62);
  backdrop-filter: blur(6px);
}

.renewal-popup__dialog {
  position: relative;
  width: min(100%, 28rem);
  max-height: min(92vh, 40rem);
  overflow: auto;
  border-radius: 1.5rem;
  background: var(--color-white);
  box-shadow: 0 1.5rem 4rem rgba(35, 36, 80, 0.28);
  transform: translateY(1.25rem) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.renewal-popup.is-open .renewal-popup__dialog {
  transform: translateY(0) scale(1);
}

.renewal-popup__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.renewal-popup__close:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: scale(1.05);
}

.renewal-popup__visual {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem 1.5rem 0 0;
}

.renewal-popup__visual-bg {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 640 / 280;
  object-fit: cover;
}

.renewal-popup__visual-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1.5rem 1.25rem 1rem;
  text-align: center;
}

.renewal-popup__badge {
  display: inline-flex;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(230, 104, 139, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.renewal-popup__logo {
  width: min(14rem, 72%);
  height: auto;
  filter: drop-shadow(0 0.35rem 1rem rgba(0, 0, 0, 0.25));
}

.renewal-popup__tagline {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}

.renewal-popup__body {
  padding: 1.35rem 1.35rem 1.5rem;
}

.renewal-popup__title {
  margin: 0 0 0.55rem;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.2;
}

.renewal-popup__lead {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-muted);
}

.renewal-popup__features {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.renewal-popup__features li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-navy);
}

.renewal-popup__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--color-teal);
}

.renewal-popup__actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.renewal-popup__dismiss {
  margin-top: 0.15rem;
  border: none;
  background: none;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-muted);
  cursor: pointer;
  padding: 0.35rem;
  transition: color var(--transition);
}

.renewal-popup__dismiss:hover {
  color: var(--color-navy);
}

body.renewal-popup-open {
  overflow: hidden;
}

/* Homepage appointment — dual branches */
.home-appt__branches {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.home-appt__branch {
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(4px);
}

.home-appt__branch-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.35rem;
}

.home-appt__branch-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(230, 104, 139, 0.22);
  color: #fff;
}

.home-appt__branch-name {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.home-appt__branch-address {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.home-appt__branch-go {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  color: var(--color-navy);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.home-appt__branch-go:hover {
  background: var(--color-teal);
  color: #fff;
  transform: translateY(-1px);
}

.home-appt__branch-go svg {
  flex-shrink: 0;
}

.home-appt__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1rem;
}

.home-appt__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.home-appt__phone:hover {
  color: var(--color-teal);
}

.home-appt__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: auto;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  border-radius: 999px;
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   FAQ page — modern hub layout
   -------------------------------------------------------------------------- */
.faq-page {
  --faq-accent: #1B9AAA;
  --faq-accent-light: #EAF7F7;
}

.faq-page .blog-hub-hero {
  --blog-accent: var(--faq-accent);
  --blog-accent-light: var(--faq-accent-light);
}

.faq-page__stats {
  margin-top: 0;
  position: relative;
  z-index: 2;
  padding: clamp(1.25rem, 2.5vw, 1.75rem) 0 0.5rem;
}

.faq-page__stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 1.1rem 1.25rem;
  background: var(--color-white);
  border-radius: 1.15rem;
  box-shadow: 0 0.75rem 2rem rgba(35, 36, 80, 0.1);
  border: 1px solid var(--color-border);
}

.faq-page__stat {
  text-align: center;
  padding: 0.25rem 0.35rem;
  border-top: 3px solid var(--faq-accent);
}

.faq-page__stat-value {
  display: block;
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.1;
}

.faq-page__stat-label {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-muted);
}

.faq-page__body {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(3rem, 5vw, 4rem);
}

.faq-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 17rem) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

.faq-page__sidebar {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 6.5rem;
}

.faq-page__sidebar-card {
  padding: 1.15rem 1.1rem;
  border-radius: 1.15rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: 0 0.35rem 1.25rem rgba(35, 36, 80, 0.05);
}

.faq-page__sidebar-card--cta {
  background: linear-gradient(160deg, var(--color-navy) 0%, #2d3158 100%);
  border-color: transparent;
  color: rgba(255, 255, 255, 0.88);
}

.faq-page__sidebar-card--cta .faq-page__sidebar-title {
  color: #fff;
}

.faq-page__sidebar-card--cta p {
  margin: 0 0 0.85rem;
  font-size: 0.875rem;
  line-height: 1.55;
}

.faq-page__sidebar-card--cta .btn--secondary {
  margin-top: 0.45rem;
}

.faq-page__sidebar-title {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--color-navy);
}

.faq-page__pills {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.faq-page__pill {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  background: var(--color-bg-light);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-navy);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.faq-page__pill:hover {
  border-color: color-mix(in srgb, var(--faq-accent) 35%, transparent);
}

.faq-page__pill.is-active {
  background: color-mix(in srgb, var(--faq-accent) 12%, var(--color-white));
  border-color: color-mix(in srgb, var(--faq-accent) 40%, transparent);
  color: var(--faq-accent);
}

.faq-page__list {
  display: grid;
  gap: 0.65rem;
}

.faq-page__item {
  border-radius: 1rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-page__item.is-hidden {
  display: none;
}

.faq-page__item:hover {
  border-color: color-mix(in srgb, var(--faq-accent) 28%, transparent);
}

.faq-page__item[open] {
  box-shadow: 0 0.5rem 1.5rem rgba(35, 36, 80, 0.08);
  border-color: color-mix(in srgb, var(--faq-accent) 35%, transparent);
}

.faq-page__item summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem 0.85rem;
  align-items: center;
  padding: 1rem 1.1rem;
  cursor: pointer;
  list-style: none;
}

.faq-page__item summary::-webkit-details-marker {
  display: none;
}

.faq-page__item summary::after {
  content: '+';
  grid-column: 3;
  grid-row: 1;
  align-self: center;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--faq-accent-light);
  color: var(--faq-accent);
  font-size: 1.125rem;
  font-weight: 700;
  transition: transform var(--transition), background var(--transition);
}

.faq-page__item[open] summary::after {
  content: '−';
  background: var(--faq-accent);
  color: #fff;
}

.faq-page__item-cat {
  grid-column: 1;
  grid-row: 1;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: color-mix(in srgb, var(--faq-accent) 10%, var(--color-bg-light));
  color: var(--faq-accent);
  white-space: nowrap;
}

.faq-page__item-q {
  grid-column: 2;
  grid-row: 1;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.45;
  padding-right: 0.5rem;
}

.faq-page__item-a {
  padding: 0 1.1rem 1.1rem;
  border-top: 1px solid var(--color-border);
}

.faq-page__item-a p {
  margin: 0.85rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-muted);
}

.faq-page__empty {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--color-muted);
}

.faq-page__disclaimer {
  margin-top: 1.5rem;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--color-muted);
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
}

.faq-page__cta {
  background: linear-gradient(135deg, var(--color-navy) 0%, #2d3158 55%, color-mix(in srgb, var(--faq-accent) 35%, var(--color-navy)) 100%);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

.faq-page__cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.faq-page__cta-label {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.faq-page__cta h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  color: #fff;
}

.faq-page__cta p {
  margin: 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.78);
}

.faq-page__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

@media (max-width: 1024px) {
  .faq-page__stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-page__layout {
    grid-template-columns: 1fr;
  }

  .faq-page__sidebar {
    position: static;
  }

  .faq-page__pills {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .faq-page__pill {
    width: auto;
  }
}

@media (max-width: 768px) {
  .faq-page__stats {
    padding-top: 1.25rem;
  }

  .faq-page__item summary {
    grid-template-columns: 1fr auto;
  }

  .faq-page__item-cat {
    grid-column: 1 / span 2;
    grid-row: 1;
    justify-self: start;
  }

  .faq-page__item-q {
    grid-column: 1;
    grid-row: 2;
  }

  .faq-page__item summary::after {
    grid-column: 2;
    grid-row: 2;
  }

  .faq-page__cta-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .faq-page__cta-actions {
    justify-content: center;
  }
}

/* ==========================================================================
   Appointment page — modern layout
   ========================================================================== */
.appt-page {
  --appt-accent: #E6688B;
  --appt-accent-light: #FDE8EF;
}

.appt-hero__overlay {
  background:
    linear-gradient(105deg, rgba(20, 22, 55, 0.88) 0%, rgba(20, 22, 55, 0.62) 42%, rgba(20, 22, 55, 0.35) 100%),
    linear-gradient(0deg, rgba(20, 22, 55, 0.55) 0%, transparent 50%);
}

.appt-stats {
  margin-top: -2rem;
}

.appt-section-head {
  max-width: 42rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.appt-section-head--center {
  margin-inline: auto;
  text-align: center;
}

.appt-section-head--center .mk-lead {
  margin-inline: auto;
}

.appt-reasons__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.appt-reason-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.35rem 1.25rem;
  border-radius: 1.15rem;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 0.35rem 1.25rem rgba(35, 36, 80, 0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.appt-reason-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--appt-reason-accent, var(--appt-accent));
  opacity: 0;
  transition: opacity var(--transition);
}

.appt-reason-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(35, 36, 80, 0.1);
  border-color: color-mix(in srgb, var(--appt-reason-accent, var(--appt-accent)) 35%, var(--color-border));
}

.appt-reason-card:hover::before {
  opacity: 1;
}

.appt-reason-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--appt-reason-accent, var(--appt-accent)) 12%, var(--color-white));
  color: var(--appt-reason-accent, var(--appt-accent));
}

.appt-reason-card__title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.3;
}

.appt-reason-card__desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-muted);
  flex: 1;
}

.appt-reason-card__cta {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--appt-reason-accent, var(--appt-accent));
}

.appt-process__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.appt-process__list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.appt-process__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--color-text);
}

.appt-process__list svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--appt-accent);
}

.appt-process__steps {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.appt-step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 1.25rem;
  border-radius: 1rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.appt-step-card__num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9375rem;
  color: var(--appt-step-color, var(--appt-accent));
  background: color-mix(in srgb, var(--appt-step-color, var(--appt-accent)) 12%, var(--color-white));
}

.appt-step-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  color: var(--color-navy);
}

.appt-step-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.appt-form-section {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.appt-form-section__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.appt-form-section__hours {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  background: var(--appt-accent-light);
  border: 1px solid color-mix(in srgb, var(--appt-accent) 18%, var(--color-border));
  min-width: min(100%, 16rem);
}

.appt-form-section__hours svg {
  flex-shrink: 0;
  color: var(--appt-accent);
  margin-top: 0.1rem;
}

.appt-form-section__hours strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--color-navy);
  margin-bottom: 0.15rem;
}

.appt-form-section__hours span {
  display: block;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--color-muted);
}

.appointment-split-card {
  border-radius: 1.75rem;
  box-shadow: 0 1.35rem 3.25rem rgba(35, 36, 80, 0.12);
}

.appointment-split-card__form {
  background: linear-gradient(180deg, var(--color-white) 0%, #fafafd 100%);
}

.appointment-split-card__form-head {
  margin-bottom: 1.75rem;
}

.appointment-split-card__form-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--appt-accent);
  background: color-mix(in srgb, var(--appt-accent) 12%, var(--color-white));
  margin-bottom: 0.75rem;
}

.appointment-split-card__form-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  color: var(--color-navy);
  line-height: 1.2;
}

.appointment-split-card__form-lead {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-muted);
  max-width: 38rem;
}

.appointment-split-card__aside {
  background: linear-gradient(165deg, #232450 0%, #2f3168 45%, color-mix(in srgb, var(--appt-accent) 55%, #232450) 100%);
}

.appointment-split-card__submit {
  min-width: 13rem;
  gap: 0.5rem;
  background: var(--appt-accent) !important;
  border-color: var(--appt-accent) !important;
  box-shadow: 0 0.5rem 1.25rem rgba(230, 104, 139, 0.32);
}

.appointment-split-card__submit:hover:not(:disabled) {
  background: var(--color-pink-dark) !important;
  border-color: var(--color-pink-dark) !important;
}

.appt-trust {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.appt-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-muted);
}

.appt-trust svg {
  color: var(--appt-accent);
}

.appt-branches .home-appt__branches {
  max-width: 52rem;
  margin-inline: auto;
}

.appt-branches .home-appt__contact {
  justify-content: center;
  margin-top: 1.25rem;
}

.appt-faq__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

.appt-faq__intro .btn {
  margin-top: 1rem;
}

.appt-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.appt-faq__item {
  border-radius: 1rem;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  overflow: hidden;
}

.appt-faq__item summary {
  padding: 1rem 1.15rem;
  font-weight: 600;
  color: var(--color-navy);
}

.appt-faq__item p {
  padding: 0 1.15rem 1rem;
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-text);
}

.appt-cta-band {
  padding: 3.25rem 0;
  background: linear-gradient(135deg, #232450 0%, #2a2d5a 50%, color-mix(in srgb, var(--appt-accent) 40%, #232450) 100%);
  color: var(--color-white);
}

.appt-cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.appt-cta-band__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  color: var(--color-white);
}

.appt-cta-band__copy p {
  margin: 0;
  max-width: 38rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.appt-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 1100px) {
  .appt-reasons__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .appt-process__grid,
  .appt-faq__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .appt-form-section__head {
    flex-direction: column;
  }

  .appt-form-section__hours {
    width: 100%;
  }

  .appt-reasons__grid {
    grid-template-columns: 1fr;
  }

  .appt-cta-band__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .appt-cta-band__actions {
    justify-content: center;
  }

  .appointment-split-card__submit {
    width: 100%;
  }
}

/* ==========================================================================
   Language switcher + RTL (i18n)
   ========================================================================== */

.lang-switch {
  position: relative;
}

.lang-switch__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(35, 36, 80, 0.12);
  border-radius: 999px;
  background: #fff;
  color: var(--color-text);
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
}

.lang-switch__trigger:hover,
.lang-switch__trigger:focus-visible {
  border-color: rgba(35, 36, 80, 0.28);
}

.lang-switch__chevron {
  transition: transform 0.2s ease;
}

.lang-switch__trigger[aria-expanded="true"] .lang-switch__chevron {
  transform: rotate(180deg);
}

.lang-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.625rem;
  height: 1.625rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1.5px solid rgba(35, 36, 80, 0.1);
  box-shadow: 0 1px 3px rgba(35, 36, 80, 0.12);
  background: var(--color-white);
}

.lang-flag--trigger {
  width: 1.375rem;
  height: 1.375rem;
}

.lang-flag--btn {
  width: 1.5rem;
  height: 1.5rem;
}

.lang-flag__svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Shared horizontal flags menu */
.lang-switch__menu--flags {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: max-content;
  max-width: min(calc(100vw - 1rem), 14.5rem);
  margin: 0;
  padding: 0.38rem 0.5rem;
  list-style: none;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-white);
  box-shadow: 0 4px 20px rgba(35, 36, 80, 0.14);
  display: none;
  pointer-events: none;
  z-index: 200;
}

.lang-switch__menu--flags[hidden] {
  display: none !important;
  pointer-events: none;
}

.lang-switch.is-open .lang-switch__menu--flags:not([hidden]) {
  display: flex;
  pointer-events: auto;
}

.lang-switch__menu--flags li {
  margin: 0;
  padding: 0;
  line-height: 0;
  flex-shrink: 0;
}

.lang-switch__flag {
  display: inline-flex;
  padding: 0;
  border: none;
  background: transparent;
  text-decoration: none;
  border-radius: 50%;
  line-height: 0;
  transition: transform 0.15s ease;
}

.lang-switch__flag .lang-flag {
  width: 1.875rem;
  height: 1.875rem;
  border-width: 2px;
  border-color: transparent;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.lang-switch__flag:hover .lang-flag,
.lang-switch__flag:focus-visible .lang-flag {
  transform: scale(1.08);
  border-color: rgba(230, 104, 139, 0.45);
  box-shadow: 0 2px 8px rgba(35, 36, 80, 0.16);
}

.lang-switch__flag.is-active .lang-flag,
.lang-flag.is-active {
  border-color: var(--color-pink);
  box-shadow: 0 0 0 2px rgba(230, 104, 139, 0.25);
}

/* Desktop header */
.mk-header__actions .lang-switch--desktop {
  margin-inline-end: 0.5rem;
}

.lang-switch--desktop .lang-switch__trigger {
  padding: 0.32rem 0.5rem 0.32rem 0.38rem;
}

.lang-switch--desktop .lang-switch__menu--flags {
  position: absolute;
  top: calc(100% + 0.4rem);
  bottom: auto;
  inset-inline-end: 0;
  inset-inline-start: auto;
}

/* Mobile nav drawer */
.lang-switch--mobile {
  width: 100%;
  margin-block: 0.75rem 0.25rem;
}

.lang-switch--mobile .lang-switch__trigger {
  width: 100%;
  justify-content: center;
  padding: 0.65rem 0.75rem;
}

.lang-switch--mobile .lang-switch__menu--flags {
  position: static;
  width: 100%;
  max-width: none;
  margin-top: 0.5rem;
  box-shadow: none;
  border: none;
  background: transparent;
  padding: 0.25rem 0;
}

/* Mobile bottom bar */
.lang-switch--bar.mobile-bar__slot {
  flex: 1;
  min-width: 0;
  display: flex;
  overflow: visible;
}

.lang-switch--bar .lang-switch__trigger {
  width: 100%;
  padding: 0.625rem 0.35rem;
  border: none;
  border-radius: 0;
  background: transparent;
  font-size: 0.6875rem;
  font-weight: 500;
  justify-content: center;
  gap: 0.2rem;
}

.lang-switch--bar .lang-switch__trigger[aria-expanded="true"] {
  color: var(--color-teal);
  background: var(--color-bg-light);
}

.lang-switch--bar .lang-switch__menu--flags {
  position: fixed;
  inset-inline-end: max(0.5rem, env(safe-area-inset-right, 0px));
  inset-inline-start: auto;
  bottom: calc(3.5rem + env(safe-area-inset-bottom, 0px) + 0.45rem);
  top: auto;
  transform: none;
  z-index: 211;
}

/* Keep bar + flag menu above the dim backdrop while language picker is open */
.mobile-bar.is-lang-open {
  z-index: 210;
}

@media (max-width: 1023px) {
  .lang-switch--desktop {
    display: none;
  }
}

@media (min-width: 1024px) {
  .lang-switch--mobile {
    display: none;
  }
}

@media (max-width: 380px) {
  .lang-switch--bar .lang-switch__flag .lang-flag {
    width: 1.625rem;
    height: 1.625rem;
  }

  .lang-switch--bar .lang-switch__menu--flags {
    gap: 0.3rem;
    padding: 0.32rem 0.4rem;
  }
}

.lang-switch-backdrop {
  position: fixed;
  inset: 0;
  /* Below .mobile-bar (90) / .mobile-bar.is-lang-open (210) so flags stay tappable */
  z-index: 200;
  background: rgba(35, 36, 80, 0.25);
  border: none;
  padding: 0;
  cursor: default;
  -webkit-tap-highlight-color: transparent;
}

.lang-switch-backdrop[hidden] {
  display: none !important;
  pointer-events: none;
}

html[dir="rtl"] body.is-rtl {
  font-family: "Noto Sans Arabic", "Plus Jakarta Sans", sans-serif;
}

html[dir="rtl"] .mk-nav__dropdown,
html[dir="rtl"] .mk-footer__grid,
html[dir="rtl"] .footer-cta__inner,
html[dir="rtl"] .contact-split-card,
html[dir="rtl"] .breadcrumb {
  direction: rtl;
}

html[dir="rtl"] .mk-nav__link svg,
html[dir="rtl"] .lang-switch__chevron,
html[dir="rtl"] .btn svg {
  transform: scaleX(-1);
}

html[dir="rtl"] .mk-nav__trigger[aria-expanded="true"] svg,
html[dir="rtl"] .lang-switch__trigger[aria-expanded="true"] .lang-switch__chevron {
  transform: scaleX(-1) rotate(180deg);
}

html[dir="rtl"] [dir="ltr"],
html[dir="rtl"] .mk-footer__contact-list a[dir="ltr"] {
  unicode-bidi: isolate;
  direction: ltr;
  text-align: start;
}

html[dir="rtl"] .mk-header__inner,
html[dir="rtl"] .mk-header__actions,
html[dir="rtl"] .mk-nav__list,
html[dir="rtl"] .mobile-bar {
  direction: rtl;
}

/* ==========================================================================
   End of Nokta İşitme stylesheet
   ========================================================================== */
