/* ============================================================
   32 Dental Design — dental32-fresh Theme
   Main Stylesheet — custom design system layered on the Bootstrap 5 grid
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand colours */
  --d32-primary:       #092c48;
  --d32-primary-dark:  #061e31;
  --d32-secondary:     #09598f;
  --d32-accent:        #24C36B;
  --d32-accent-dark:   #1BA058;
  --d32-text:          #3d3d3d;
  --d32-muted:         #6d6d6d;
  --d32-border:        #e7e7e7;
  --d32-bg:            #ffffff;
  --d32-bg-soft:       #f8fafc;
  --d32-navy:          #092c48;

  /* Gradients */
  --grad-brand:  linear-gradient(135deg, #092c48 0%, #09598f 100%);
  --grad-green:  linear-gradient(135deg, #24C36B 0%, #1BA058 100%);
  --grad-footer: linear-gradient(90deg, #092c48 0%, #09598f 50%, #24C36B 100%);

  /* Shadows */
  --shadow-sm:   0 4px 16px rgba(9, 44, 72, .08);
  --shadow-md:   0 16px 40px rgba(9, 44, 72, .12);
  --shadow-lg:   0 28px 60px rgba(9, 44, 72, .16);

  /* Motion */
  --ease:        cubic-bezier(.22, .61, .36, 1);
  --dur-fast:    .2s;
  --dur-base:    .35s;
  --dur-slow:    .6s;

  /* Radii */
  --r-sm:   10px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-pill: 999px;

  /* Typography */
  --font-head: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing scale */
  --sp-xs:  .5rem;
  --sp-sm:  1rem;
  --sp-md:  2rem;
  --sp-lg:  4rem;
  --sp-xl:  6rem;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--d32-text);
  background: var(--d32-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--d32-primary);
  line-height: 1.25;
  margin-bottom: .75rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.65rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.05rem; }
h6 { font-size: .95rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--d32-primary);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}
a:hover { color: var(--d32-accent); }

/* Global keyboard focus ring (WCAG 2.4.7). :focus-visible fires only for
   keyboard / assistive-tech users, so mouse clicks never show it — the
   look is unchanged for pointer users while keyboard users get a clear,
   brand-consistent indicator on links, buttons and custom controls.
   Form fields keep their own box-shadow focus styling below. */
:focus-visible {
  outline: 3px solid var(--d32-accent);
  outline-offset: 3px;
  border-radius: 4px;
}
/* Accent green can wash out against the green CTA button itself — use the
   dark navy ring there so the focus state stays visible. */
.d32-btn-green:focus-visible {
  outline-color: var(--d32-primary-dark);
}

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

ul, ol { padding-left: 1.5rem; }
li { margin-bottom: .25rem; }

strong, b { font-weight: 600; }

::selection {
  background: rgba(36, 195, 107, .2);
  color: var(--d32-primary);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--d32-bg-soft); }
::-webkit-scrollbar-thumb {
  background: var(--d32-primary);
  border-radius: var(--r-pill);
}
::-webkit-scrollbar-thumb:hover { background: var(--d32-secondary); }

/* ============================================================
   3. LAYOUT / CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-sm  { max-width: 860px;  }
.container-xs  { max-width: 640px;  }
.container-lg  { max-width: 1600px; }

/* ============================================================
   4. UTILITY CLASSES
   ============================================================ */
.d32-section-pad      { padding: 80px 0; }
.d32-section-pad-sm   { padding: 56px 0; }
.d32-section-pad-lg   { padding: 110px 0; }

.d32-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--d32-accent);
  margin-bottom: .75rem;
}
.d32-eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 3px;
  border-radius: var(--r-pill);
  background: var(--grad-green);
  flex-shrink: 0;
}

.d32-heading {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--d32-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 3rem;
}
.section-header .d32-eyebrow { justify-content: center; }
.section-header p {
  color: var(--d32-muted);
  font-size: 1.05rem;
}

.text-accent  { color: var(--d32-accent) !important; }
.text-navy    { color: var(--d32-primary) !important; }
.text-muted-d { color: var(--d32-muted) !important; }
.bg-navy      { background: var(--d32-primary) !important; }
.bg-soft      { background: var(--d32-bg-soft) !important; }

/* Glass card */
.d32-glass-card {
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--r-md);
}

/* Base card */
.d32-card {
  background: var(--d32-bg);
  border: 1px solid var(--d32-border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease);
}
.d32-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* Gradient divider line */
.d32-rule {
  border: none;
  height: 3px;
  background: var(--grad-footer);
  border-radius: var(--r-pill);
  margin: 0;
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.d32-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  line-height: 1;
  padding: .75rem 1.75rem;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-fast) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              background var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease);
  white-space: nowrap;
  vertical-align: middle;
}

/* Shimmer pseudo-element */
.d32-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.22) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform .5s var(--ease);
}
.d32-btn:hover::after { transform: translateX(100%); }
.d32-btn:hover { transform: translateY(-2px); }
.d32-btn:active { transform: translateY(0); }

/* Primary — navy gradient */
.d32-btn-primary {
  background: var(--grad-brand);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(9, 44, 72, .25);
}
.d32-btn-primary:hover {
  box-shadow: 0 10px 28px rgba(9, 44, 72, .35);
  color: #fff;
}

/* Green accent */
.d32-btn-green {
  background: var(--grad-green);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(36, 195, 107, .3);
}
.d32-btn-green:hover {
  box-shadow: 0 10px 28px rgba(36, 195, 107, .42);
  color: #fff;
}

/* Outline */
.d32-btn-outline {
  background: transparent;
  color: var(--d32-primary);
  border-color: var(--d32-primary);
}
.d32-btn-outline:hover {
  background: var(--d32-primary);
  color: #fff;
}

/* Outline accent */
.d32-btn-outline-accent {
  background: transparent;
  color: var(--d32-accent);
  border-color: var(--d32-accent);
}
.d32-btn-outline-accent:hover {
  background: var(--d32-accent);
  color: #fff;
}

/* White */
.d32-btn-white {
  background: #fff;
  color: var(--d32-primary);
  border-color: #fff;
  box-shadow: 0 4px 16px rgba(9, 44, 72, .12);
}
.d32-btn-white:hover {
  background: var(--d32-bg-soft);
  color: var(--d32-primary);
  box-shadow: 0 8px 24px rgba(9, 44, 72, .18);
}

/* Sizes */
.d32-btn-sm  { font-size: .8rem;  padding: .55rem 1.25rem; }
.d32-btn-lg  { font-size: 1rem;   padding: .9rem 2.25rem;  }
.d32-btn-xl  { font-size: 1.05rem; padding: 1.05rem 2.6rem; }
.d32-btn-block { width: 100%; }

/* Icon-only round button */
.d32-btn-icon {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
  font-size: 1rem;
}

/* ============================================================
   6. HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              backdrop-filter var(--dur-base) var(--ease);
}

/* Transparent over hero */
.site-header.is-transparent {
  background: transparent;
}

/* Glass when page has no hero */
.site-header.is-glass {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 2px 20px rgba(9, 44, 72, .08);
}

/* Solid scrolled state */
.site-header.is-scrolled {
  background: var(--d32-primary);
  box-shadow: 0 4px 24px rgba(9, 44, 72, .22);
  backdrop-filter: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}

/* Brand / logo */
.header-brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.header-brand img {
  height: 44px;
  width: auto;
  transition: opacity var(--dur-fast) var(--ease);
}
.site-header.is-scrolled .header-brand img { opacity: .95; }

/* Nav */
.header-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item { position: relative; }

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 500;
  color: var(--d32-primary);
  padding: .5rem .75rem;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--d32-accent);
  background: rgba(36, 195, 107, .08);
}

/* Nav on glass header */
.site-header.is-glass .nav-link { color: var(--d32-primary); }

/* Nav on scrolled / transparent (over dark hero) */
.site-header.is-scrolled .nav-link,
.site-header.is-transparent .nav-link {
  color: rgba(255, 255, 255, .9);
}
.site-header.is-scrolled .nav-link:hover,
.site-header.is-transparent .nav-link:hover {
  color: var(--d32-accent);
  background: rgba(255, 255, 255, .1);
}
.site-header.is-scrolled .nav-link.active,
.site-header.is-transparent .nav-link.active {
  color: var(--d32-accent);
}

/* Dropdown chevron */
.nav-link .nav-chevron {
  font-size: .7rem;
  transition: transform var(--dur-fast) var(--ease);
}
.nav-item.has-dropdown:hover .nav-chevron,
.nav-item.has-dropdown:focus-within .nav-chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-item.has-dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--d32-border);
  padding: .5rem;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease),
              visibility var(--dur-fast) var(--ease);
  z-index: 100;
}

.nav-item.has-dropdown:hover .dropdown-menu,
.nav-item.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .87rem;
  font-weight: 500;
  color: var(--d32-text);
  padding: .6rem .9rem;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease);
}
.dropdown-menu li a:hover {
  background: var(--d32-bg-soft);
  color: var(--d32-primary);
}
.dropdown-menu li a .bi {
  color: var(--d32-accent);
  font-size: .9rem;
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-order {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  padding: .5rem 1.2rem;
  border-radius: var(--r-pill);
  background: var(--grad-green);
  color: #fff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: box-shadow var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn-order:hover {
  box-shadow: 0 6px 18px rgba(36, 195, 107, .38);
  transform: translateY(-1px);
  color: #fff;
}

.btn-stl {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  padding: .5rem 1.2rem;
  border-radius: var(--r-pill);
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .5);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn-stl:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .8);
  color: #fff;
}

.site-header.is-glass .btn-stl {
  color: var(--d32-primary);
  border-color: var(--d32-primary);
}
.site-header.is-glass .btn-stl:hover {
  background: var(--d32-primary);
  color: #fff;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  border-radius: var(--r-sm);
  transition: background var(--dur-fast);
  flex-shrink: 0;
}
.nav-toggle:hover { background: rgba(255,255,255,.12); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--dur-base) var(--ease),
              opacity var(--dur-fast) var(--ease),
              width var(--dur-fast) var(--ease);
}
.site-header.is-glass .nav-toggle span { background: var(--d32-primary); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   7. MOBILE NAV OVERLAY
   ============================================================ */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--d32-primary);
  display: flex;
  flex-direction: column;
  padding: 90px 32px 40px;
  transform: translateX(100%);
  transition: transform var(--dur-base) var(--ease);
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }

.mobile-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.mobile-nav-menu li { border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-nav-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  padding: 1rem 0;
  text-decoration: none;
  transition: color var(--dur-fast);
}
.mobile-nav-menu li a:hover { color: var(--d32-accent); }

.mobile-nav-sub {
  list-style: none;
  padding: 0 0 .5rem 1rem;
  margin: 0;
  display: none;
}
.mobile-nav-sub.is-open { display: block; }
.mobile-nav-sub li a {
  font-size: .95rem;
  font-weight: 400;
  border-bottom: none;
  padding: .5rem 0;
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 2rem;
}

/* ---- Mobile nav overlay wrapper (full-screen backdrop) ---- */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(9, 44, 72, .5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease);
}
.mobile-nav-overlay--open {
  display: block;
  opacity: 1;
}

/* ---- Mobile nav brand ---- */
.mobile-nav-brand {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}
.mobile-nav-brand .d32-logo,
.mobile-nav-brand .brand {
  color: #fff;
}
.mobile-nav-brand .custom-logo-link img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* ---- Mobile menu list ---- */
.mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.mobile-menu-item {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
  padding: .95rem 0;
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease);
  text-align: left;
}
.mobile-menu-link:hover { color: var(--d32-accent); }
.mobile-menu-link .mobile-arrow {
  font-size: .8rem;
  transition: transform var(--dur-fast) var(--ease);
  flex-shrink: 0;
}
.mobile-menu-link--open .mobile-arrow { transform: rotate(180deg); }

/* ---- Mobile submenu ---- */
.mobile-submenu {
  list-style: none;
  padding: 0 0 .75rem 1rem;
  margin: 0;
}
.mobile-submenu-link {
  display: block;
  font-size: .92rem;
  font-weight: 400;
  color: rgba(255, 255, 255, .75);
  padding: .5rem 0;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}
.mobile-submenu-link:hover { color: var(--d32-accent); }

/* ---- Mobile action buttons (inside overlay) ---- */
.btn-order--mobile,
.btn-stl--mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: .75rem 1.5rem;
  border-radius: var(--r-pill);
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease);
}
.btn-order--mobile {
  background: var(--grad-green);
  color: #fff;
}
.btn-stl--mobile {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .6);
}
.btn-order--mobile:hover,
.btn-stl--mobile:hover { opacity: .88; transform: translateY(-1px); color: #fff; }

.mobile-phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, .8);
  font-size: .92rem;
  font-weight: 500;
  text-decoration: none;
  padding: .5rem 0;
  transition: color var(--dur-fast);
}
.mobile-phone-link:hover { color: var(--d32-accent); }

/* ---- Header phone link ---- */
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease);
}
.header-phone:hover { color: var(--d32-accent); }
.site-header.is-glass .header-phone { color: var(--d32-primary); }

/* ---- Preloader ---- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--d32-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s var(--ease), visibility .5s var(--ease);
}
.preloader--done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

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

.preloader-logo {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.04em;
  margin-bottom: 1.5rem;
  animation: preloader-pulse 1.2s ease-in-out infinite;
}

@keyframes preloader-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .7; transform: scale(.96); }
}

.preloader-bar {
  width: 180px;
  height: 4px;
  background: rgba(255, 255, 255, .18);
  border-radius: var(--r-pill);
  overflow: hidden;
  margin: 0 auto;
}

.preloader-fill {
  height: 100%;
  width: 30%;
  background: var(--d32-accent);
  border-radius: var(--r-pill);
  animation: preloader-bar 1.4s var(--ease) infinite;
}

@keyframes preloader-bar {
  0%   { transform: translateX(-100%) scaleX(.5); }
  50%  { transform: translateX(133%) scaleX(1); }
  100% { transform: translateX(500%) scaleX(.5); }
}

/* ---- Body scroll lock when mobile nav is open ---- */
body.mobile-nav-active { overflow: hidden; }

/* ============================================================
   8. HERO CAROUSEL
   ============================================================ */
.d32-hero-section {
  position: relative;
  overflow: hidden;
}
.d32-hero-section .hero-swiper,
.d32-hero-section .swiper-wrapper,
.d32-hero-section .swiper-slide { height: 100%; }

.hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
}

/* Overlay: deepen the left for text contrast + faint blueprint grid */
.hero-slide__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(4, 20, 33, .92) 0%,
    rgba(6, 30, 49, .70) 45%,
    rgba(9, 89, 143, .12) 100%
  );
}
.hero-slide__overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse at 72% 50%, #000 8%, transparent 70%);
          mask-image: radial-gradient(ellipse at 72% 50%, #000 8%, transparent 70%);
}

.hero-slide__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding-top: 104px;   /* clear the fixed header */
  padding-bottom: 72px;
}

.hero-slide__content {
  color: #fff;
  max-width: 620px;
  flex: 1 1 auto;
}

/* Eyebrow (green) */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--d32-accent);
  margin-bottom: 1.1rem;
}
.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 3px;
  border-radius: var(--r-pill);
  background: var(--d32-accent);
  flex-shrink: 0;
}

/* Heading — overrides .d32-heading (which is navy) to white */
.hero-heading {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.3rem, 5.2vw, 4rem);
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.2rem;
}
.hero-heading__accent {
  background: var(--grad-green);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--d32-accent); /* fallback */
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .82);
  margin-bottom: 0;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Outline button on the dark hero → white border/text */
.hero-btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, .5);
}
.hero-btn-outline:hover {
  background: #fff;
  color: var(--d32-primary);
  border-color: #fff;
}

/* Trust row */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
}
.hero-trust__item {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255, 255, 255, .9);
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
}
.hero-trust__item i { color: var(--d32-accent); font-size: 1.05rem; }

/* ---- Floating visual (right side, lg+) ---- */
.hero-slide__visual {
  position: relative;
  flex: 0 0 380px;
  width: 380px;
  height: 380px;
  align-items: center;
  justify-content: center;
}
.hero-visual-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.hero-visual-ring--outer {
  width: 360px; height: 360px;
  border: 1px dashed rgba(255, 255, 255, .20);
  animation: heroSpin 30s linear infinite;
}
.hero-visual-ring--inner {
  width: 280px; height: 280px;
  border: 1px solid rgba(36, 195, 107, .30);
  animation: heroSpin 22s linear infinite reverse;
}
@keyframes heroSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.hero-visual-disc {
  position: relative;
  z-index: 1;
  width: 224px; height: 224px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
}
.hero-visual-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.hero-visual-badge__num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.6rem;
  color: #fff;
}
.hero-visual-badge__label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .6);
  margin-top: .25rem;
}

/* Floating glass cards */
.hero-float-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .7rem .9rem;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
  animation: heroFloat 6s var(--ease) infinite;
}
.hero-float-card i { color: var(--d32-accent); font-size: 1.3rem; }
.hero-float-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: .85rem;
  color: #fff;
}
.hero-float-card span {
  display: block;
  font-size: .72rem;
  color: rgba(255, 255, 255, .6);
}
.hero-float-card--1 { top: 6%;    left: -10%; }
.hero-float-card--2 { bottom: 8%; right: -8%; animation-delay: 2.5s; }
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* Swiper pagination */
.d32-hero-section .swiper-pagination {
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
}
.d32-hero-section .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, .45);
  opacity: 1;
  transition: background var(--dur-fast), width var(--dur-base) var(--ease);
  border-radius: var(--r-pill);
}
.d32-hero-section .swiper-pagination-bullet-active {
  background: var(--d32-accent);
  width: 28px;
}

/* Swiper nav arrows */
.d32-hero-section .swiper-button-prev,
.d32-hero-section .swiper-button-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  transition: background var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease);
  top: 50%;
  margin-top: -25px;
}
.d32-hero-section .swiper-button-prev:hover,
.d32-hero-section .swiper-button-next:hover {
  background: rgba(255, 255, 255, .25);
  transform: scale(1.08);
}
.d32-hero-section .swiper-button-prev::after,
.d32-hero-section .swiper-button-next::after {
  font-size: 1rem;
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual-ring--outer,
  .hero-visual-ring--inner,
  .hero-float-card { animation: none; }
}

/* ============================================================
   9. STATS RIBBON
   ============================================================ */
.stats-ribbon {
  background: var(--d32-bg);
  border-bottom: 1px solid var(--d32-border);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 10;
}

.rib-stats-wrap {
  display: flex;
  align-items: stretch;
}

.rib-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--d32-border);
  transition: background var(--dur-fast);
}
.rib-stat:last-child { border-right: none; }
.rib-stat:hover { background: var(--d32-bg-soft); }

.rib-stat-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--d32-primary);
  margin-bottom: .3rem;
}
.rib-stat-num sup {
  font-size: 1.1rem;
  vertical-align: super;
  font-weight: 700;
}
.rib-stat-label {
  font-size: .83rem;
  color: var(--d32-muted);
  font-weight: 500;
  letter-spacing: .03em;
}

/* ============================================================
   10. CRAFTING / INTRO SECTION
   ============================================================ */
.crafting-section {
  background: var(--d32-bg);
  overflow: hidden;
}

.crafting-lead {
  font-size: 1.08rem;
  color: var(--d32-muted);
  margin-bottom: 1.75rem;
  line-height: 1.75;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.feature-box {
  background: var(--d32-bg-soft);
  border: 1px solid var(--d32-border);
  border-radius: var(--r-md);
  padding: 1.5rem;
  transition: transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease);
}
.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(36, 195, 107, .3);
}

.feature-box-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-sm);
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.feature-box-icon.accent { background: var(--grad-green); }

.feature-box h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--d32-primary);
  margin-bottom: .4rem;
}
.feature-box p {
  font-size: .88rem;
  color: var(--d32-muted);
  margin: 0;
  line-height: 1.6;
}

/* Image wrap with accent frame */
.crafting-img-wrap {
  position: relative;
}
.crafting-img-wrap img {
  border-radius: var(--r-lg);
  width: 100%;
  object-fit: cover;
}
.crafting-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--grad-green);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  padding: 1rem 1.5rem;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  line-height: 1.3;
  z-index: 2;
}
.crafting-badge span {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

/* ============================================================
   11. SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--d32-bg);
  border: 1px solid var(--d32-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease);
  position: relative;
  counter-increment: service-counter;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(36, 195, 107, .35);
}

/* Decorative counter bg */
.service-card::before {
  content: counter(service-counter, decimal-leading-zero);
  position: absolute;
  top: -10px;
  right: 16px;
  font-family: var(--font-head);
  font-size: 5.5rem;
  font-weight: 800;
  color: var(--d32-primary);
  opacity: .04;
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}

.services-grid { counter-reset: service-counter; }

.service-card-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.service-card:hover .service-card-img img { transform: scale(1.07); }

.service-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,44,72,.55), transparent 55%);
}

.service-card-body {
  padding: 1.5rem;
  position: relative;
  z-index: 1;
}

.service-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--d32-bg-soft);
  border: 1px solid var(--d32-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--d32-primary);
  margin-bottom: 1rem;
  transition: background var(--dur-fast), color var(--dur-fast);
}
.service-card:hover .service-card-icon {
  background: var(--d32-primary);
  color: #fff;
  border-color: var(--d32-primary);
}

.service-card-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--d32-primary);
  margin-bottom: .5rem;
}

.service-card-desc {
  font-size: .9rem;
  color: var(--d32-muted);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .87rem;
  font-weight: 600;
  color: var(--d32-accent);
  text-decoration: none;
  transition: gap var(--dur-fast) var(--ease);
}
.service-card-link:hover {
  gap: 10px;
  color: var(--d32-accent-dark);
}

/* ============================================================
   12. PRODUCT CARDS
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.product-card {
  background: var(--d32-bg);
  border: 1px solid var(--d32-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.product-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.product-card:hover .product-card-img img { transform: scale(1.06); }

.product-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: var(--r-pill);
  background: var(--grad-green);
  color: #fff;
  z-index: 1;
}
.product-card-tag.navy { background: var(--grad-brand); }

.product-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .97rem;
  color: var(--d32-primary);
  margin-bottom: .4rem;
}

.product-card-desc {
  font-size: .85rem;
  color: var(--d32-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .75rem;
  border-top: 1px solid var(--d32-border);
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--d32-primary);
  text-decoration: none;
  transition: gap var(--dur-fast), color var(--dur-fast);
}
.product-card-link:hover {
  color: var(--d32-accent);
  gap: 10px;
}

.product-card-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--d32-bg-soft);
  border: 1px solid var(--d32-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--d32-primary);
  transition: background var(--dur-fast), color var(--dur-fast), transform var(--dur-fast);
}
.product-card:hover .product-card-arrow {
  background: var(--d32-primary);
  color: #fff;
  transform: rotate(-45deg);
}

/* ============================================================
   13. JOURNEY / STATS SECTION
   ============================================================ */
.journey-section {
  background: var(--d32-primary);
  position: relative;
  overflow: hidden;
}
.journey-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36,195,107,.1) 0%, transparent 70%);
  pointer-events: none;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.journey-card {
  padding: 2rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-md);
  text-align: center;
  transition: border-color var(--dur-base) var(--ease),
              background var(--dur-base) var(--ease),
              transform var(--dur-base) var(--ease);
}
.journey-card:hover {
  border-color: rgba(36, 195, 107, .4);
  background: rgba(255,255,255,.05);
  transform: translateY(-5px);
}

.journey-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1;
  color: var(--d32-accent);
  margin-bottom: .35rem;
}
.journey-num sup {
  font-size: 1.1rem;
  font-weight: 700;
}

.journey-label {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .75);
  line-height: 1.4;
}

.journey-desc {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  margin-top: .35rem;
}

.journey-icon {
  font-size: 1.8rem;
  color: rgba(255,255,255,.25);
  margin-bottom: .75rem;
  display: block;
}

/* ============================================================
   14. TESTIMONIAL CARDS
   ============================================================ */
.testimonials-section { background: var(--d32-bg-soft); }

.testimonial-card {
  background: var(--d32-bg);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* Gradient top border */
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-footer);
  border-radius: var(--r-md) var(--r-md) 0 0;
}

/* Large quote mark */
.testimonial-quote-mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--d32-accent);
  opacity: .18;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  pointer-events: none;
  user-select: none;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}
.testimonial-stars i {
  color: #f59e0b;
  font-size: .9rem;
}

.testimonial-text {
  font-size: .95rem;
  color: var(--d32-text);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  color: var(--d32-primary);
  margin-bottom: .1rem;
}
.testimonial-author-role {
  font-size: .82rem;
  color: var(--d32-muted);
}

/* Swiper for testimonials */
.testimonials-slider .swiper-slide { height: auto; }
.testimonials-slider .swiper-pagination { position: static; margin-top: 2rem; }
.testimonials-slider .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--d32-border);
  opacity: 1;
  transition: background var(--dur-fast), width var(--dur-base) var(--ease);
  border-radius: var(--r-pill);
}
.testimonials-slider .swiper-pagination-bullet-active {
  background: var(--d32-primary);
  width: 24px;
}

/* ============================================================
   15. CATALOGUE SECTION
   ============================================================ */
.catalogue-section {
  background: linear-gradient(140deg, #e8f1f9 0%, var(--d32-bg-soft) 100%);
  overflow: hidden;
  position: relative;
}
.catalogue-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(9,89,143,.08) 0%, transparent 70%);
  pointer-events: none;
}

.catalogue-img-wrap {
  position: relative;
}
.catalogue-img-wrap img {
  border-radius: var(--r-lg);
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.catalogue-badge {
  position: absolute;
  top: 24px;
  right: -16px;
  background: var(--d32-primary);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .82rem;
  padding: .75rem 1.25rem;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  line-height: 1.35;
  z-index: 2;
}
.catalogue-badge strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--d32-accent);
  line-height: 1;
}

.catalogue-form-card {
  background: var(--d32-bg);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
}

.catalogue-form-card h3 {
  font-size: 1.4rem;
  margin-bottom: .5rem;
}
.catalogue-form-card p {
  color: var(--d32-muted);
  font-size: .93rem;
  margin-bottom: 1.75rem;
}

/* ============================================================
   16. FORMS (global)
   ============================================================ */
.d32-form .form-group,
.d32-form .mb-3 { margin-bottom: 1.25rem; }

.d32-form label,
.form-label {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  color: var(--d32-primary);
  margin-bottom: .4rem;
  display: block;
}

.d32-form input[type="text"],
.d32-form input[type="email"],
.d32-form input[type="tel"],
.d32-form input[type="number"],
.d32-form input[type="password"],
.d32-form input[type="url"],
.d32-form input[type="search"],
.d32-form select,
.d32-form textarea,
.form-control,
.form-select {
  width: 100%;
  font-family: var(--font-body);
  font-size: .93rem;
  color: var(--d32-text);
  background: var(--d32-bg);
  border: 1.5px solid var(--d32-border);
  border-radius: var(--r-sm);
  padding: .72rem 1rem;
  outline: none;
  transition: border-color var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.d32-form input:focus,
.d32-form select:focus,
.d32-form textarea:focus,
.form-control:focus,
.form-select:focus {
  border-color: var(--d32-secondary);
  box-shadow: 0 0 0 3px rgba(9, 89, 143, .12);
  outline: none;
}

.d32-form textarea { resize: vertical; min-height: 110px; }

.d32-form input::placeholder,
.d32-form textarea::placeholder { color: rgba(109,109,109,.55); }

/* Floating label */
.d32-form .form-floating label {
  font-size: .88rem;
  color: var(--d32-muted);
}

/* Radio / Checkbox */
.d32-form .form-check-input:checked {
  background-color: var(--d32-primary);
  border-color: var(--d32-primary);
}
.d32-form .form-check-input:focus { box-shadow: 0 0 0 3px rgba(9,44,72,.15); }

/* Submit button full-width green */
.form-submit-green {
  width: 100%;
  background: var(--grad-green);
  color: #fff;
  border: none;
  border-radius: var(--r-pill);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: .85rem 2rem;
  cursor: pointer;
  transition: box-shadow var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: .5rem;
}
.form-submit-green:hover {
  box-shadow: 0 8px 24px rgba(36,195,107,.38);
  transform: translateY(-2px);
}

/* ============================================================
   17. PARTNER / LOGO SLIDER
   ============================================================ */
.partner-slider-section {
  background: var(--d32-bg);
  border-top: 1px solid var(--d32-border);
  border-bottom: 1px solid var(--d32-border);
  padding: 2.5rem 0;
}

.partner-label {
  text-align: center;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--d32-muted);
  margin-bottom: 1.5rem;
}

.partner-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--d32-bg-soft);
  border: 1px solid var(--d32-border);
  border-radius: var(--r-pill);
  padding: .55rem 1.4rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .88rem;
  color: var(--d32-primary);
  white-space: nowrap;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}
.partner-pill img {
  height: 22px;
  width: auto;
  object-fit: contain;
}
.partner-pill:hover {
  border-color: var(--d32-secondary);
  background: rgba(9,89,143,.05);
}

.partner-slider { overflow: hidden; }

/* ============================================================
   18. BLOG CARDS
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  background: var(--d32-bg);
  border: 1px solid var(--d32-border);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.blog-card-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }

.blog-card-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: var(--r-pill);
  background: var(--d32-primary);
  color: #fff;
  z-index: 1;
}

.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .78rem;
  color: var(--d32-muted);
  margin-bottom: .75rem;
}
.blog-card-meta i { color: var(--d32-accent); }

.blog-card-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--d32-primary);
  margin-bottom: .6rem;
  line-height: 1.35;
  transition: color var(--dur-fast);
}
.blog-card:hover .blog-card-title { color: var(--d32-secondary); }

.blog-card-excerpt {
  font-size: .88rem;
  color: var(--d32-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: .87rem;
  font-weight: 600;
  color: var(--d32-accent);
  text-decoration: none;
  transition: gap var(--dur-fast), color var(--dur-fast);
  margin-top: auto;
}
.blog-card-link:hover {
  color: var(--d32-accent-dark);
  gap: 10px;
}

/* ============================================================
   20. PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--grad-brand);
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Wave at bottom */
.page-hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  line-height: 0;
}
.page-hero-wave svg { display: block; width: 100%; }

.page-hero-content { position: relative; z-index: 1; }

.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  margin-bottom: .75rem;
}
.page-hero p {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 0;
}

/* Breadcrumb */
.d32-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  font-size: .82rem;
}
.d32-breadcrumb li { display: flex; align-items: center; gap: 6px; }
.d32-breadcrumb a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color var(--dur-fast);
}
.d32-breadcrumb a:hover { color: var(--d32-accent); }
.d32-breadcrumb .sep { color: rgba(255,255,255,.35); font-size: .7rem; }
.d32-breadcrumb .active { color: var(--d32-accent); font-weight: 600; }

/* ============================================================
   21. ABOUT PAGE
   ============================================================ */

/* Timeline */
.timeline {
  position: relative;
  padding-left: 2.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--d32-primary), var(--d32-accent));
  border-radius: var(--r-pill);
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px dashed var(--d32-border);
}
.timeline-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -2.9rem;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--d32-bg);
  border: 3px solid var(--d32-primary);
  transition: border-color var(--dur-fast), background var(--dur-fast);
}
.timeline-item:hover .timeline-dot {
  background: var(--d32-accent);
  border-color: var(--d32-accent);
}

.timeline-year {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--d32-accent);
  text-transform: uppercase;
  margin-bottom: .3rem;
}
.timeline-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--d32-primary);
  margin-bottom: .4rem;
}
.timeline-text {
  font-size: .9rem;
  color: var(--d32-muted);
  line-height: 1.65;
  margin: 0;
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  background: var(--d32-bg);
  border: 1px solid var(--d32-border);
  border-radius: var(--r-md);
  overflow: hidden;
  text-align: center;
  transition: transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease);
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.team-card-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.team-card:hover .team-card-img img { transform: scale(1.07); }

.team-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9,44,72,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease);
}
.team-card:hover .team-card-overlay { opacity: 1; }
.team-card-overlay a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .9rem;
  text-decoration: none;
  transition: background var(--dur-fast);
}
.team-card-overlay a:hover { background: var(--d32-accent); }

.team-card-body { padding: 1.25rem 1rem; }
.team-card-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--d32-primary);
  margin-bottom: .2rem;
}
.team-card-role {
  font-size: .82rem;
  color: var(--d32-accent);
  font-weight: 500;
}

/* Cert badges */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  align-items: center;
}
.cert-badge {
  background: var(--d32-bg-soft);
  border: 1px solid var(--d32-border);
  border-radius: var(--r-md);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: transform var(--dur-fast), box-shadow var(--dur-fast);
}
.cert-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}
.cert-badge img {
  max-height: 56px;
  width: auto;
  margin: 0 auto;
  filter: grayscale(1);
  opacity: .65;
  transition: filter var(--dur-fast), opacity var(--dur-fast);
}
.cert-badge:hover img { filter: grayscale(0); opacity: 1; }
.cert-badge span {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  color: var(--d32-muted);
  margin-top: .5rem;
}

/* ============================================================
   22. CONTACT PAGE
   ============================================================ */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-info-card {
  background: var(--d32-bg);
  border: 1px solid var(--d32-border);
  border-radius: var(--r-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease);
}
.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.contact-info-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--d32-bg-soft);
  border: 2px solid var(--d32-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--d32-primary);
  margin: 0 auto 1rem;
  transition: background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
}
.contact-info-card:hover .contact-info-icon {
  background: var(--d32-primary);
  color: #fff;
  border-color: var(--d32-primary);
}

.contact-info-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--d32-primary);
  margin-bottom: .4rem;
}
.contact-info-detail {
  font-size: .9rem;
  color: var(--d32-muted);
  line-height: 1.6;
}
.contact-info-detail a {
  color: var(--d32-muted);
  text-decoration: none;
  transition: color var(--dur-fast);
}
.contact-info-detail a:hover { color: var(--d32-accent); }

/* Map embed */
.contact-map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--d32-border);
}
.contact-map-wrap iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
}

/* Contact form card */
.contact-form-card {
  background: var(--d32-bg);
  border: 1px solid var(--d32-border);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   23. SERVICES ARCHIVE
   ============================================================ */
.filter-tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 2.5rem;
}

.filter-tab {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  padding: .5rem 1.25rem;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--d32-border);
  background: var(--d32-bg);
  color: var(--d32-muted);
  cursor: pointer;
  transition: border-color var(--dur-fast), background var(--dur-fast), color var(--dur-fast);
  text-decoration: none;
}
.filter-tab:hover {
  border-color: var(--d32-secondary);
  color: var(--d32-primary);
}
.filter-tab.active {
  background: var(--d32-primary);
  border-color: var(--d32-primary);
  color: #fff;
}

/* ============================================================
   24. FAQ ACCORDION
   ============================================================ */
.faq-section { background: var(--d32-bg-soft); }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--d32-bg);
  border: 1.5px solid var(--d32-border);
  border-radius: var(--r-md);
  margin-bottom: .75rem;
  overflow: hidden;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.faq-item.is-open {
  border-color: var(--d32-primary);
  box-shadow: 0 4px 20px rgba(9,44,72,.09);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--d32-primary);
  user-select: none;
  transition: background var(--dur-fast);
}
.faq-question:hover { background: var(--d32-bg-soft); }
.faq-item.is-open .faq-question { background: transparent; }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--d32-bg-soft);
  border: 1.5px solid var(--d32-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .8rem;
  color: var(--d32-muted);
  transition: background var(--dur-fast), color var(--dur-fast),
              border-color var(--dur-fast), transform var(--dur-base) var(--ease);
}
.faq-item.is-open .faq-icon {
  background: var(--d32-accent);
  border-color: var(--d32-accent);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease), padding .3s var(--ease);
  padding: 0 1.5rem;
}
.faq-item.is-open .faq-answer {
  max-height: 600px;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  font-size: .92rem;
  color: var(--d32-muted);
  line-height: 1.75;
  margin: 0;
}

/* ============================================================
   25. GALLERY
   ============================================================ */
.gallery-section { background: var(--d32-bg); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item.wide  { grid-column: span 2; }
.gallery-item.tall  { grid-row:    span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
  display: block;
}
.gallery-item:hover img { transform: scale(1.07); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9,44,72,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: 2px solid rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  transition: background var(--dur-fast), transform var(--dur-fast);
}
.gallery-item:hover .gallery-overlay-icon {
  background: var(--d32-accent);
  border-color: var(--d32-accent);
  transform: scale(1.1);
}

/* ============================================================
   26. ORDER FORM PAGE
   ============================================================ */
.order-page { background: var(--d32-bg-soft); }

/* Step indicators */
.order-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.order-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: .75rem 1.5rem;
  position: relative;
}
.order-step::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 30px;
  background: var(--d32-border);
}
.order-step:last-child::after { display: none; }

.order-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--d32-border);
  color: var(--d32-muted);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur-fast), color var(--dur-fast);
}
.order-step.active .order-step-num {
  background: var(--d32-primary);
  color: #fff;
}
.order-step.done .order-step-num {
  background: var(--d32-accent);
  color: #fff;
}

.order-step-label {
  font-family: var(--font-head);
  font-size: .83rem;
  font-weight: 600;
  color: var(--d32-muted);
}
.order-step.active .order-step-label { color: var(--d32-primary); }
.order-step.done .order-step-label { color: var(--d32-accent); }

/* Order form card */
.order-form-card {
  background: var(--d32-bg);
  border: 1px solid var(--d32-border);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.order-form-section-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--d32-primary);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--d32-bg-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}
.order-form-section-title i { color: var(--d32-accent); }

/* File upload area */
.file-upload-area {
  border: 2px dashed var(--d32-border);
  border-radius: var(--r-md);
  padding: 2.5rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--dur-fast), background var(--dur-fast);
  position: relative;
}
.file-upload-area:hover,
.file-upload-area.dragover {
  border-color: var(--d32-secondary);
  background: rgba(9,89,143,.03);
}
.file-upload-area input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.file-upload-icon {
  font-size: 2.5rem;
  color: var(--d32-muted);
  margin-bottom: .75rem;
  display: block;
}
.file-upload-area h5 {
  font-size: .97rem;
  color: var(--d32-primary);
  margin-bottom: .3rem;
}
.file-upload-area p {
  font-size: .82rem;
  color: var(--d32-muted);
  margin: 0;
}

/* ============================================================
   27. PARTNER PAGE
   ============================================================ */
.partner-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.partner-benefit-card {
  background: var(--d32-bg);
  border: 1px solid var(--d32-border);
  border-radius: var(--r-md);
  padding: 2rem 1.5rem;
  transition: transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease);
}
.partner-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(36,195,107,.3);
}

.partner-benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(9,44,72,.08), rgba(9,44,72,.04));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--d32-primary);
  margin-bottom: 1.25rem;
  border: 1px solid rgba(9,44,72,.1);
}

.partner-benefit-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--d32-primary);
}
.partner-benefit-card p {
  font-size: .9rem;
  color: var(--d32-muted);
  line-height: 1.65;
  margin: 0;
}

/* Partner signup form */
.partner-signup-card {
  background: var(--d32-bg);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 3rem;
  max-width: 680px;
  margin: 0 auto;
}
.partner-signup-card h3 {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: .5rem;
}
.partner-signup-card .sub {
  text-align: center;
  color: var(--d32-muted);
  margin-bottom: 2rem;
}

/* ============================================================
   28. AOS ANIMATIONS
   ============================================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--dur-slow) var(--ease),
              transform var(--dur-slow) var(--ease);
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
}
[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-aos="fade-down"] {
  opacity: 0;
  transform: translateY(-30px);
}
[data-aos="fade-down"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-aos="fade-left"] {
  opacity: 0;
  transform: translateX(30px);
}
[data-aos="fade-left"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}
[data-aos="fade-right"] {
  opacity: 0;
  transform: translateX(-30px);
}
[data-aos="fade-right"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}
[data-aos="zoom-in"] {
  opacity: 0;
  transform: scale(.9);
}
[data-aos="zoom-in"].aos-animate {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
[data-aos-delay="100"] { transition-delay: .1s; }
[data-aos-delay="150"] { transition-delay: .15s; }
[data-aos-delay="200"] { transition-delay: .2s; }
[data-aos-delay="250"] { transition-delay: .25s; }
[data-aos-delay="300"] { transition-delay: .3s; }
[data-aos-delay="400"] { transition-delay: .4s; }
[data-aos-delay="500"] { transition-delay: .5s; }

/* ============================================================
   29. KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

@keyframes pulse-ring {
  0%   { transform: scale(1);    opacity: .6; }
  100% { transform: scale(1.55); opacity: 0;  }
}

@keyframes shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%);  }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes countUp {
  from { opacity: 0; transform: scale(.8); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes borderPulse {
  0%, 100% { border-color: rgba(36,195,107,.3); }
  50%       { border-color: rgba(36,195,107,.8); }
}

/* Floating elements */
.anim-float { animation: float 4s ease-in-out infinite; }
.anim-float-slow { animation: float 6s ease-in-out infinite; }

/* Pulse ring (for CTA highlights) */
.anim-pulse-ring {
  position: relative;
}
.anim-pulse-ring::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 2px solid var(--d32-accent);
  animation: pulse-ring 1.8s var(--ease) infinite;
  pointer-events: none;
}

/* Shimmer loading state */
.shimmer {
  position: relative;
  overflow: hidden;
  background: var(--d32-bg-soft);
}
.shimmer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  animation: shimmer 1.5s infinite;
}

/* ============================================================
   30. SWIPER GLOBAL OVERRIDES (supplement only)
   ============================================================ */
.swiper { width: 100%; overflow: hidden; }

.swiper-pagination-bullet {
  opacity: 1;
  transition: width var(--dur-base) var(--ease),
              background var(--dur-fast) var(--ease);
}

.swiper-button-prev,
.swiper-button-next {
  --swiper-navigation-size: 18px;
}

/* ============================================================
   31. SKIP LINK (accessibility)
   ============================================================ */
.skip-link {
  position: fixed;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: var(--d32-primary);
  color: #fff;
  font-weight: 600;
  font-size: .88rem;
  padding: .6rem 1.2rem;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: top var(--dur-fast);
}
.skip-link:focus { top: 1rem; color: #fff; }

/* ============================================================
   32. BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  border: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--dur-base) var(--ease),
              transform var(--dur-base) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
  z-index: 900;
  text-decoration: none;
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.back-to-top:hover {
  box-shadow: var(--shadow-lg);
  color: #fff;
  transform: translateY(-3px);
}

/* ============================================================
   33. COOKIE BAR
   ============================================================ */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--d32-primary);
  color: rgba(255,255,255,.85);
  z-index: 990;
  padding: 1rem 0;
  border-top: 3px solid var(--d32-accent);
  transform: translateY(100%);
  transition: transform var(--dur-base) var(--ease);
}
.cookie-bar.is-visible { transform: translateY(0); }
.cookie-bar-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-bar p {
  flex: 1;
  font-size: .87rem;
  margin: 0;
}
.cookie-bar a {
  color: var(--d32-accent);
  text-decoration: underline;
}

/* ============================================================
   34. WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
  text-decoration: none;
  z-index: 890;
  transition: transform var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(37,211,102,.55);
  color: #fff;
}

/* ============================================================
   35. RESPONSIVE — 1200px
   ============================================================ */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid     { grid-template-columns: repeat(3, 1fr); }
  .cert-grid     { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   36. RESPONSIVE — 992px
   ============================================================ */
@media (max-width: 992px) {
  /* Header */
  .header-nav                   { display: none; }
  .nav-toggle                   { display: flex; }
  .header-actions .btn-stl      { display: none; }
  .header-actions .header-phone { display: none; }

  /* Sections */
  .d32-section-pad    { padding: 60px 0; }
  .d32-section-pad-lg { padding: 80px 0; }

  /* Grids */
  .services-grid         { grid-template-columns: repeat(2, 1fr); }
  .products-grid         { grid-template-columns: repeat(2, 1fr); }
  .journey-grid          { grid-template-columns: repeat(3, 1fr); }
  .team-grid             { grid-template-columns: repeat(2, 1fr); }
  .cert-grid             { grid-template-columns: repeat(3, 1fr); }
  .contact-info-grid     { grid-template-columns: repeat(2, 1fr); }
  .partner-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid             { grid-template-columns: repeat(2, 1fr); }


  /* Feature grid on crafting */
  .feature-grid { grid-template-columns: 1fr 1fr; }

  /* Rib stats */
  .rib-stats-wrap { flex-wrap: wrap; }
  .rib-stat { flex: 1 1 50%; border-right: none; border-bottom: 1px solid var(--d32-border); }
  .rib-stat:nth-child(odd) { border-right: 1px solid var(--d32-border); }
  .rib-stat:nth-last-child(-n+2) { border-bottom: none; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item.wide { grid-column: span 1; }

  /* Hero */
  .hero-heading { font-size: clamp(2rem, 5.5vw, 3rem); }
}

/* ============================================================
   37. RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  /* Container */
  .container { padding-left: 16px; padding-right: 16px; }

  /* Sections */
  .d32-section-pad    { padding: 48px 0; }
  .d32-section-pad-sm { padding: 36px 0; }
  .d32-section-pad-lg { padding: 60px 0; }

  /* Header */
  .header-inner { height: 62px; }
  .btn-order { display: none; }

  /* Hero */
  .hero-slide { min-height: 88svh; }
  .hero-slide__inner { padding-top: 88px; padding-bottom: 56px; }
  .hero-slide__content { max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .d32-btn { width: 100%; justify-content: center; max-width: 320px; }

  /* Stats */
  .rib-stat { flex: 1 1 100%; border-right: none; }
  .rib-stat:nth-child(odd) { border-right: none; }
  .rib-stat { border-bottom: 1px solid var(--d32-border); }
  .rib-stat:last-child { border-bottom: none; }

  /* Crafting */
  .crafting-badge { right: 12px; bottom: -16px; }
  .feature-grid { grid-template-columns: 1fr; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Products */
  .products-grid { grid-template-columns: repeat(2, 1fr); }

  /* Journey */
  .journey-grid { grid-template-columns: repeat(2, 1fr); }

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

  /* Cert */
  .cert-grid { grid-template-columns: repeat(2, 1fr); }

  /* Contact */
  .contact-info-grid { grid-template-columns: 1fr; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }

  /* Partner benefits */
  .partner-benefits-grid { grid-template-columns: 1fr; }


  /* Catalogue */
  .catalogue-form-card { padding: 1.75rem; }
  .catalogue-badge { display: none; }

  /* Order steps */
  .order-steps { flex-direction: column; align-items: flex-start; gap: 8px; }
  .order-step::after { display: none; }
  .order-form-card { padding: 1.5rem; }

  /* Partner signup */
  .partner-signup-card { padding: 2rem 1.5rem; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; }

  /* Page hero */
  .page-hero { padding: 110px 0 60px; }

  /* Section header */
  .section-header { margin-bottom: 2rem; }
}

/* ============================================================
   38. RESPONSIVE — 576px
   ============================================================ */
@media (max-width: 576px) {
  /* Type scale */
  h1 { font-size: clamp(1.65rem, 7vw, 2.25rem); }
  h2 { font-size: clamp(1.4rem, 5vw, 1.85rem); }

  /* Products */
  .products-grid { grid-template-columns: 1fr; }

  /* Journey */
  .journey-grid { grid-template-columns: 1fr; }

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

  /* Cert */
  .cert-grid { grid-template-columns: repeat(2, 1fr); }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }

  /* Crafting badge & feature grid */
  .crafting-img-wrap { margin-bottom: 1.5rem; }

  /* Stats */
  .rib-stat-num { font-size: 2rem; }

  /* Hero */
  .hero-actions .d32-btn { max-width: 100%; }

  /* Buttons – allow smaller padding */
  .d32-btn    { padding: .7rem 1.4rem; font-size: .87rem; }
  .d32-btn-xl { padding: .85rem 1.8rem; font-size: .95rem; }


  /* Back to top / whatsapp */
  .back-to-top    { bottom: 1rem; right: 1rem; width: 40px; height: 40px; font-size: .9rem; }
  .whatsapp-float { bottom: 4.5rem; right: 1rem; }

  /* Filter tabs */
  .filter-tabs { gap: 6px; }
  .filter-tab { font-size: .8rem; padding: .42rem 1rem; }

  /* Timeline */
  .timeline { padding-left: 1.75rem; }
  .timeline-dot { left: -2.15rem; }
}

/* ============================================================
   39. PRINT
   ============================================================ */
@media print {
  .site-header,
  .mobile-nav,
  .d32-hero-section .swiper-button-prev,
  .d32-hero-section .swiper-button-next,
  .back-to-top,
  .whatsapp-float,
  .cookie-bar,
  .nav-toggle { display: none !important; }

  body { color: #000; font-size: 12pt; }
  a { color: inherit; }
  .page-hero { background: #092c48 !important; -webkit-print-color-adjust: exact; }
}

/* ============================================================
   40. DARK-MODE PREP (CSS custom property swap)
   ============================================================ */
@media (prefers-color-scheme: dark) {
  /* Opt-in only — add class="theme-dark" to <html> to activate */
  html.theme-dark {
    --d32-bg:        #0e1a26;
    --d32-bg-soft:   #14243a;
    --d32-text:      #d4dde8;
    --d32-muted:     #8a9ab0;
    --d32-border:    #1d3047;
    --d32-primary:   #4a9fd8;
    --d32-accent:    #24C36B;
    color-scheme: dark;
  }
}

/* ============================================================
   41. MISC / LAST OVERRIDES
   ============================================================ */

/* Lazy-load fade-in */
img.lazy { opacity: 0; transition: opacity .4s var(--ease); }
img.lazy.loaded { opacity: 1; }

/* Word break for narrow containers */
.break-word { word-break: break-word; overflow-wrap: anywhere; }

/* Smooth image placeholder */
.img-placeholder {
  background: var(--d32-bg-soft);
  border-radius: var(--r-md);
  overflow: hidden;
}
.img-placeholder img { transition: opacity .4s var(--ease); }

/* Divider with text */
.d32-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--d32-muted);
  font-size: .82rem;
  margin: 1.5rem 0;
}
.d32-divider::before,
.d32-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--d32-border);
}

/* Tag pill — generic */
.d32-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .28rem .75rem;
  border-radius: var(--r-pill);
}
.d32-tag-navy  { background: var(--d32-primary); color: #fff; }
.d32-tag-green { background: var(--grad-green);  color: #fff; }
.d32-tag-soft  { background: var(--d32-bg-soft); color: var(--d32-primary); border: 1px solid var(--d32-border); }

/* Status dots */
.d32-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.d32-dot-green  { background: var(--d32-accent); }
.d32-dot-navy   { background: var(--d32-primary); }
.d32-dot-yellow { background: #f59e0b; }

/* Tooltip (pure CSS) */
[data-tooltip] {
  position: relative;
  cursor: default;
}
[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--d32-primary);
  color: #fff;
  font-size: .75rem;
  font-weight: 500;
  padding: .4rem .8rem;
  border-radius: var(--r-sm);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease);
  z-index: 100;
}
[data-tooltip]:hover::after { opacity: 1; }

/* Section bg variants */
.section-bg-navy  { background: var(--d32-primary); }
.section-bg-soft  { background: var(--d32-bg-soft); }
.section-bg-white { background: var(--d32-bg); }

/* Responsive iframe / video embed */
.embed-responsive {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}
.embed-responsive iframe,
.embed-responsive video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.embed-responsive-rounded { border-radius: var(--r-md); overflow: hidden; }

/* ============================================================
   30. CONTACT PAGE + SHARED PAGE HERO  (visual redesign)
   ------------------------------------------------------------
   Defines the previously-unstyled .d32-page-hero used by the
   contact / about / services templates, plus the redesigned
   contact info cards, map, form card, order steps and STL card.
   ============================================================ */

/* ---- Shared dark page hero ------------------------------- */
.d32-page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 170px 0 120px;
  background: var(--grad-brand);
}
.d32-page-hero--navy { background: var(--grad-brand); }

/* Soft wave that melts the navy hero into the page below */
.d32-page-hero__wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  line-height: 0;
  z-index: 2;
  pointer-events: none;
}
.d32-page-hero__wave svg { display: block; width: 100%; height: 70px; }
@media (max-width: 767.98px) {
  .d32-page-hero__wave svg { height: 44px; }
}

.d32-page-hero__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
/* Blueprint / CAD scan grid — fades out toward the edges */
.d32-page-hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 35%, transparent 80%);
          mask-image: radial-gradient(ellipse at center, #000 35%, transparent 80%);
}
.d32-page-hero__ring {
  position: absolute;
  border-radius: 50%;
}
.d32-page-hero__ring--1 {
  width: 440px; height: 440px;
  top: -170px; right: -130px;
  border: 64px solid rgba(255, 255, 255, .045);
  animation: d32HeroFloat 15s var(--ease) infinite;
}
.d32-page-hero__ring--2 {
  width: 280px; height: 280px;
  bottom: -120px; left: -90px;
  border: 42px solid rgba(36, 195, 107, .10);
  animation: d32HeroFloat 12s var(--ease) infinite reverse;
}
@keyframes d32HeroFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(28px) rotate(10deg); }
}

.d32-page-hero__inner   { position: relative; z-index: 1; }
.d32-page-hero__content { max-width: 740px; margin: 0 auto; }
.d32-page-hero__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.1rem, 5vw, 3.35rem);
  color: #fff;
  line-height: 1.1;
  margin: 0 0 1rem;
}
.d32-page-hero__accent {
  width: 92px; height: 5px;
  margin: 0 auto 1.25rem;
  border-radius: var(--r-pill);
  background: var(--grad-green);
}
.d32-page-hero__lead {
  max-width: 620px;
  margin: 0 auto 1.5rem;
  color: rgba(255, 255, 255, .78);
  font-size: 1.05rem;
  line-height: 1.7;
}
.d32-hero-badges {
  list-style: none;
  padding: 0;
  margin: 0 auto 1.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
}
.d32-hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem 1rem;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
}
.d32-hero-badges i { color: var(--d32-accent); font-size: .95rem; }
.d32-page-hero .d32-breadcrumb { justify-content: center; margin-bottom: 0; }

/* Light eyebrow variant (dark backgrounds) */
.d32-eyebrow--light          { color: rgba(255, 255, 255, .85); }
.d32-eyebrow--light::before  { background: var(--grad-green); }

/* ---- Contact info cards ---------------------------------- */
.d32-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--d32-bg);
  border: 1px solid var(--d32-border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease);
}
.d32-contact-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--card-accent, var(--d32-primary));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--dur-base) var(--ease);
}
.d32-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.d32-contact-card:hover::before { transform: scaleY(1); }

.d32-contact-card__icon {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  background: var(--card-accent, var(--d32-primary));
  box-shadow: 0 6px 16px rgba(9, 44, 72, .18);
}
.d32-contact-card__label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--d32-muted);
  margin-bottom: .2rem;
}
.d32-contact-card__value,
.d32-contact-card__value a {
  color: var(--d32-primary);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  white-space: pre-line;
  transition: color var(--dur-fast) var(--ease);
}
.d32-contact-card__value a:hover { color: var(--d32-accent); }

/* ---- Map ------------------------------------------------- */
.d32-map-wrap {
  height: 300px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--d32-border);
  box-shadow: var(--shadow-sm);
  background: var(--d32-bg-soft);
}
.d32-map-wrap iframe { display: block; width: 100%; height: 100%; border: 0; }
.d32-map-placeholder {
  width: 100%; height: 100%;
  background: var(--grad-brand);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .75rem; padding: 2rem; text-align: center;
}
.d32-map-placeholder i { font-size: 3rem; color: rgba(255, 255, 255, .4); }
.d32-map-placeholder p { color: rgba(255, 255, 255, .6); font-size: .9rem; margin: 0; }

/* ---- Form card ------------------------------------------- */
.d32-formcard {
  position: relative;
  background: var(--d32-bg);
  border: 1px solid var(--d32-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 2.75rem;
  overflow: hidden;
}
/* Brand gradient accent bar along the top edge */
.d32-formcard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--grad-footer);
}
.d32-formcard__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--d32-primary);
  margin-bottom: 1.5rem;
}
@media (max-width: 575.98px) {
  .d32-formcard { padding: 1.5rem; }
}

/* ---- Order process steps --------------------------------- */
.d32-steps { position: relative; }
@media (min-width: 768px) {
  .d32-steps::before {                 /* dashed connector behind cards */
    content: '';
    position: absolute;
    top: 74px;
    left: 16.66%; right: 16.66%;
    height: 2px;
    background: repeating-linear-gradient(
      90deg, var(--d32-border) 0 10px, transparent 10px 20px);
    z-index: 0;
  }
}
.d32-step {
  position: relative;
  height: 100%;
  padding: 2.25rem 1.5rem;
  text-align: center;
  background: var(--d32-bg);
  border: 1px solid var(--d32-border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease);
}
.d32-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.d32-step__num {
  position: absolute;
  top: -.75rem; right: .6rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 5.5rem;
  line-height: 1;
  color: #eef2f7;
  z-index: 0;
  pointer-events: none;
}
.d32-step__icon {
  width: 76px; height: 76px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.75rem;
  position: relative;
  z-index: 1;
  background: var(--step-accent, var(--d32-primary));
  box-shadow: 0 10px 24px rgba(9, 44, 72, .20);
}
.d32-step__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--d32-primary);
  margin-bottom: .75rem;
  position: relative;
  z-index: 1;
}
.d32-step__desc {
  color: var(--d32-muted);
  line-height: 1.75;
  font-size: .9rem;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ---- STL submission card --------------------------------- */
.d32-stl-card {
  position: relative;
  overflow: hidden;
  color: #fff;
  border-radius: var(--r-lg);
  padding: clamp(2rem, 4vw, 3.25rem);
  background: var(--grad-brand);
  box-shadow: var(--shadow-lg);
}
.d32-stl-card__ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.d32-stl-card__ring--1 {
  width: 300px; height: 300px; top: -80px; right: -80px;
  border: 40px solid rgba(255, 255, 255, .04);
}
.d32-stl-card__ring--2 {
  width: 200px; height: 200px; bottom: -60px; left: -60px;
  border: 30px solid rgba(36, 195, 107, .08);
}
.d32-stl-card__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  margin-bottom: 1rem;
}
.d32-stl-card__lead { color: rgba(255, 255, 255, .75); line-height: 1.8; margin-bottom: 1.5rem; }

.d32-stl-formats {
  list-style: none; padding: 0; margin: 0 0 1.5rem;
  display: flex; flex-wrap: wrap; gap: .75rem;
}
.d32-stl-formats span {
  display: inline-block;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--r-sm);
  padding: .25rem .8rem;
  font-size: .8rem;
  font-weight: 600;
  font-family: var(--font-head);
}

.d32-stl-contact {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem;
  border-radius: var(--r-md);
  text-decoration: none;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  transition: background var(--dur-base) var(--ease),
              transform var(--dur-base) var(--ease);
}
.d32-stl-contact:hover { background: rgba(255, 255, 255, .15); transform: translateX(5px); }
.d32-stl-contact__icon {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.2rem; flex-shrink: 0;
}
.d32-stl-contact__label {
  font-size: .75rem; font-weight: 600;
  color: rgba(255, 255, 255, .55);
  text-transform: uppercase; letter-spacing: .05em;
  margin-bottom: .2rem;
}
.d32-stl-contact__value { font-size: .95rem; font-weight: 600; color: #fff; word-break: break-word; }

/* ---- Responsive + reduced motion ------------------------- */
@media (max-width: 767.98px) {
  .d32-page-hero { padding: 130px 0 64px; }
}
@media (prefers-reduced-motion: reduce) {
  .d32-page-hero__ring--1,
  .d32-page-hero__ring--2 { animation: none; }
}

/* ============================================================
   30b. FLOATING SPLIT CONTACT PANEL  (unique UI)
   ------------------------------------------------------------
   A single elevated card that floats up over the hero: a navy
   info side (white text, blueprint grid) + a white form side.
   ============================================================ */
.d32-contact-panel {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 5fr 7fr;
  margin-top: -150px;                 /* float up over the hero wave */
  background: var(--d32-bg);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
/* Gradient hairline across the top of the whole panel */
.d32-contact-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--grad-footer);
  z-index: 6;
}
@media (max-width: 991.98px) {
  .d32-contact-panel { grid-template-columns: 1fr; margin-top: -80px; }
}

/* ---- Left: navy info side ---- */
.d32-contact-panel__info {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--grad-brand);
  color: #fff;
  padding: clamp(2rem, 3vw, 3rem);
}
.d32-contact-panel__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 36px 36px;
  -webkit-mask-image: radial-gradient(ellipse at 25% 15%, #000 35%, transparent 80%);
          mask-image: radial-gradient(ellipse at 25% 15%, #000 35%, transparent 80%);
}
.d32-contact-panel__ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}
.d32-contact-panel__ring--1 {
  width: 220px; height: 220px; top: -70px; right: -70px;
  border: 36px solid rgba(255, 255, 255, .05);
}
.d32-contact-panel__ring--2 {
  width: 150px; height: 150px; bottom: -50px; left: -45px;
  border: 26px solid rgba(36, 195, 107, .10);
}
.d32-contact-panel__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.55rem;
  color: #fff;
  margin-bottom: .6rem;
}
.d32-contact-panel__sub {
  color: rgba(255, 255, 255, .72);
  font-size: .92rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

/* Contact lines (replaces the old separate cards) */
.d32-contact-lines {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.d32-contact-line { display: flex; align-items: flex-start; gap: .9rem; }
.d32-contact-line__icon {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.05rem;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .16);
  transition: transform var(--dur-base) var(--ease),
              background var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease);
}
.d32-contact-line:hover .d32-contact-line__icon {
  transform: translateY(-3px);
  background: var(--line-accent, var(--d32-accent));
  border-color: transparent;
}
.d32-contact-line__label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .7rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: .15rem;
}
.d32-contact-line__value,
.d32-contact-line__value a {
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  white-space: pre-line;
  transition: color var(--dur-fast) var(--ease);
}
.d32-contact-line__value a:hover { color: var(--d32-accent); }

/* Map inside the navy panel */
.d32-contact-panel__map {
  height: 200px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
}
.d32-contact-panel__map iframe { display: block; width: 100%; height: 100%; border: 0; }
.d32-contact-panel__map-empty {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .5rem; padding: 1.25rem; text-align: center;
  background: rgba(255, 255, 255, .04);
}
.d32-contact-panel__map-empty i { font-size: 2rem; color: rgba(255, 255, 255, .35); }
.d32-contact-panel__map-empty p { font-size: .8rem; color: rgba(255, 255, 255, .5); margin: 0; }

/* ---- Right: form side ---- */
.d32-contact-panel__form {
  padding: clamp(2rem, 3vw, 3rem);
  background: var(--d32-bg);
}

/* ============================================================
   33. HOME SECTIONS — bespoke section classes (were unstyled)
   ------------------------------------------------------------
   The home template parts use BEM section classes that had no
   CSS. This block styles: shared subheads, the button-variant
   base fallback, stats ribbon, journey (navy), testimonials,
   blog cards, partners strip, and the final CTA band.
   ============================================================ */

/* ---- Shared section helpers ---- */
.d32-section-sub {
  color: var(--d32-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}
.d32-section-sub--light { color: rgba(255, 255, 255, .75); }
.d32-heading--white { color: #fff; }

/* ---- Button variant base fallback ----
   Several templates use .d32-btn-green / -primary / -outline WITHOUT the
   .d32-btn base, so they lost layout. Restore it here. border-width/style
   (not the `border` shorthand) preserves each variant's own border-color. */
.d32-btn-primary,
.d32-btn-green,
.d32-btn-white,
.d32-btn-outline,
.d32-btn-outline-accent,
.d32-btn-outline--white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1;
  border-width: 2px;
  border-style: solid;
  border-radius: var(--r-pill);
  cursor: pointer;
  text-decoration: none;
  vertical-align: middle;
  transition: transform var(--dur-fast) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              background var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease);
}
/* :where() keeps specificity 0 so .d32-btn-lg / -sm / -xl still win */
:where(.d32-btn-primary, .d32-btn-green, .d32-btn-white,
       .d32-btn-outline, .d32-btn-outline-accent, .d32-btn-outline--white) {
  padding: .75rem 1.75rem;
  font-size: .9rem;
}
.d32-btn-primary:hover,
.d32-btn-green:hover { transform: translateY(-2px); }

/* White outline (dark backgrounds) */
.d32-btn-outline--white {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, .6);
}
.d32-btn-outline--white:hover {
  background: #fff;
  color: var(--d32-primary);
  border-color: #fff;
}

/* ---- Stats ribbon (white) ---- */
.stat-ribbon-card {
  position: relative;
  text-align: center;
  padding: 1rem 1.25rem;
}
.stat-ribbon-card--bordered::after {
  content: '';
  position: absolute;
  top: 18%; right: 0;
  height: 64%;
  width: 1px;
  background: var(--d32-border);
}
@media (max-width: 767.98px) {
  .stat-ribbon-card--bordered::after { display: none; }
}
.stat-ribbon-card__icon {
  width: 56px; height: 56px;
  margin: 0 auto .85rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--d32-secondary);
  background: rgba(9, 89, 143, .08);
}
.stat-ribbon-card__num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--d32-primary);
}
.stat-ribbon-card__unit { color: var(--d32-accent); }
.stat-ribbon-card__label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--d32-primary);
  margin-top: .5rem;
}
.stat-ribbon-card__desc {
  color: var(--d32-muted);
  font-size: .85rem;
  margin-top: .2rem;
}

/* ---- Journey (dark navy counters) ---- */
.d32-journey-section {
  position: relative;
  overflow: hidden;
  background: var(--grad-brand);
}
.d32-journey-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 25%, transparent 78%);
          mask-image: radial-gradient(ellipse at center, #000 25%, transparent 78%);
}
.d32-journey-section .container { position: relative; z-index: 1; }
.d32-journey-card {
  height: 100%;
  text-align: center;
  padding: 1.75rem 1.25rem;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  transition: transform var(--dur-base) var(--ease),
              background var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease);
}
.d32-journey-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(36, 195, 107, .35);
}
.d32-journey-card__icon {
  width: 60px; height: 60px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--d32-accent);
  background: rgba(36, 195, 107, .12);
  border: 1px solid rgba(36, 195, 107, .25);
}
.d32-journey-card__num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1;
  color: #fff;
}
.d32-journey-card__unit { color: var(--d32-accent); }
.d32-journey-card__label {
  font-family: var(--font-head);
  font-weight: 600;
  color: #fff;
  margin-top: .5rem;
}
.d32-journey-card__sub {
  color: rgba(255, 255, 255, .6);
  font-size: .85rem;
  margin-top: .25rem;
}
.d32-journey-divider {
  height: 1px;
  max-width: 600px;
  margin: 1.5rem auto;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent);
}

/* ---- Testimonials ---- */
.testimonials-swiper { padding-bottom: .5rem; }
.testimonials-swiper .swiper-slide { height: auto; }
.d32-testimonial-card {
  height: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.d32-testimonial-card__stars {
  display: flex;
  gap: 3px;
  color: #f5b50a;
  font-size: .95rem;
  margin-bottom: 1rem;
}
.d32-testimonial-card__quote {
  flex: 1 1 auto;
  margin: 0 0 1.5rem;
  color: var(--d32-text);
  font-size: .98rem;
  line-height: 1.75;
  font-style: normal;
}
.d32-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-top: auto;
}
.d32-testimonial-card__avatar {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
}
.d32-testimonial-card__meta { display: flex; flex-direction: column; line-height: 1.35; }
.d32-testimonial-card__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  color: var(--d32-primary);
}
.d32-testimonial-card__role { color: var(--d32-secondary); font-size: .82rem; font-weight: 600; }
.d32-testimonial-card__clinic { color: var(--d32-muted); font-size: .8rem; }
.testimonials-swiper-pagination {
  position: static;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.testimonials-swiper-pagination .swiper-pagination-bullet {
  width: 8px; height: 8px;
  background: var(--d32-border);
  opacity: 1;
  border-radius: var(--r-pill);
  transition: background var(--dur-fast), width var(--dur-base) var(--ease);
}
.testimonials-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--d32-accent);
  width: 28px;
}

/* ---- Blog cards ---- */
.d32-blog-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.d32-blog-card__thumb-link { display: block; }
.d32-blog-card__thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.d32-blog-card__thumb--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.d32-blog-card__thumb--placeholder i { font-size: 2.5rem; color: rgba(255, 255, 255, .55); }
.d32-blog-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}
.d32-blog-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: .75rem;
}
.d32-blog-card__cat {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--d32-accent);
  text-decoration: none;
}
.d32-blog-card__date { font-size: .78rem; color: var(--d32-muted); }
.d32-blog-card__title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: .6rem;
}
.d32-blog-card__title a { color: var(--d32-primary); text-decoration: none; }
.d32-blog-card__title a:hover { color: var(--d32-accent); }
.d32-blog-card__excerpt {
  flex: 1 1 auto;
  color: var(--d32-muted);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.d32-blog-card__readmore {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .85rem;
  color: var(--d32-secondary);
  text-decoration: none;
}
.d32-blog-card__readmore:hover { color: var(--d32-accent); }

/* ---- Partners strip (marquee) ---- */
.d32-partners-strip {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.partner-swiper .swiper-wrapper { transition-timing-function: linear !important; }
.partner-pill-slide { width: auto; }
.d32-partner-pill {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .65rem 1.1rem .65rem .65rem;
  white-space: nowrap;
  background: var(--d32-bg);
  border: 1px solid var(--d32-border);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
}
.d32-partner-pill__avatar,
.d32-partner-pill__logo {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.d32-partner-pill__avatar {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  color: #fff;
  background: var(--grad-brand);
}
.d32-partner-pill__text { display: flex; flex-direction: column; line-height: 1.3; }
.d32-partner-pill__name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  color: var(--d32-primary);
}
.d32-partner-pill__loc { color: var(--d32-muted); font-size: .78rem; }
.d32-partner-pill__loc i { color: var(--d32-accent); }
.d32-partners-cta-text {
  margin: 0;
  color: var(--d32-text);
  font-size: 1.05rem;
  font-weight: 600;
}

/* ---- Final CTA band (navy) ---- */
.d32-cta-section {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  color: #fff;
  background: var(--grad-brand);
}
.d32-cta-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.d32-cta-bg__ring { position: absolute; border-radius: 50%; }
.d32-cta-bg__ring--1 { width: 300px; height: 300px; top: -100px; left: -80px;  border: 50px solid rgba(255, 255, 255, .04); }
.d32-cta-bg__ring--2 { width: 200px; height: 200px; bottom: -60px; right: 10%;  border: 30px solid rgba(36, 195, 107, .10); }
.d32-cta-bg__ring--3 { width: 140px; height: 140px; top: 28%; right: -40px;     border: 24px solid rgba(255, 255, 255, .04); }
.d32-cta-inner { position: relative; z-index: 1; }
.d32-cta-heading {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin: 0;
}
.d32-cta-sub {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .75);
  font-size: 1.1rem;
  line-height: 1.7;
}
.d32-cta-trust__item {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255, 255, 255, .9);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .85rem;
}
.d32-cta-trust__item i { color: var(--d32-accent); font-size: 1.1rem; }

/* ============================================================
   34. CATALOGUE SECTION — visual badge, features, form card
   (bespoke classes that previously had no CSS)
   ============================================================ */

/* ---- Left: badge + features ---- */
.d32-catalogue-badge {
  padding: 2.5rem 2rem;
  text-align: center;
  color: #fff;
  border-radius: var(--r-lg);
  background: var(--grad-brand);
  box-shadow: var(--shadow-md);
}
.d32-catalogue-badge__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
}
.d32-catalogue-badge__icon { font-size: 3rem; color: var(--d32-accent); margin-bottom: .5rem; }
.d32-catalogue-badge__title { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; }
.d32-catalogue-badge__sub { color: rgba(255, 255, 255, .7); font-size: .9rem; }
.d32-catalogue-badge__pages {
  margin-top: .65rem;
  padding: .25rem .9rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--d32-accent);
  background: rgba(36, 195, 107, .12);
  border: 1px solid rgba(36, 195, 107, .3);
  border-radius: var(--r-pill);
}
.d32-catalogue-features__heading {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--d32-primary);
  margin-bottom: 1rem;
}
.d32-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.d32-check-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  color: var(--d32-text);
  font-size: .95rem;
}
.d32-check-list i { color: var(--d32-accent); font-size: 1.1rem; margin-top: .1rem; flex-shrink: 0; }

/* ---- Right: form card ---- */
.d32-form-card { padding: 0; overflow: hidden; }
.d32-form-card__header { padding: 2rem 2rem 0; }
.d32-form-card__sub { color: var(--d32-muted); line-height: 1.7; }
.d32-form-card__body { padding: 1.5rem 2rem 2rem; }
@media (max-width: 575.98px) {
  .d32-form-card__header { padding: 1.5rem 1.5rem 0; }
  .d32-form-card__body   { padding: 1.25rem 1.5rem 1.5rem; }
}
.d32-form-label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .85rem;
  color: var(--d32-primary);
  margin-bottom: .4rem;
}
.d32-form-required { color: var(--d32-accent); }
.d32-form-trust {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.d32-form-trust li {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--d32-muted);
  font-size: .88rem;
}
.d32-form-trust i { color: var(--d32-accent); font-size: 1rem; flex-shrink: 0; }
