/* ==========================================================================
   MedStoc — Medical Cabinet Management Software
   Main Stylesheet
   Brand: teal + dark navy medical palette, Manrope typeface
   Part of the Dianys CRM ecosystem
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CUSTOM PROPERTIES
   -------------------------------------------------------------------------- */
:root {
  --ms-900: #061B23;
  --ms-800: #0A2A35;
  --ms-700: #0E3D4A;
  --ms-600: #12505F;
  --ms-500: #0E8A7D;
  --ms-400: #2FB5A5;
  --ms-300: #5DD4C6;
  --ms-200: #B8EDE6;
  --ms-100: #E6F8F5;
  --ms-50:  #F4FBFA;

  --accent:   #D95D39;
  --accent-h: #E57252;
  --gold:     #C9A24A;
  --white:    #FFFFFF;

  --gray-50:  #F7F9FA;
  --gray-100: #EEF1F3;
  --gray-200: #DCE1E5;
  --gray-300: #B8C0C8;
  --gray-400: #8A96A3;
  --gray-500: #5A6B7A;
  --gray-600: #3D4F5F;
  --gray-700: #2E3D4A;
  --gray-800: #1A2A35;

  --text:       #2E3D4A;
  --text-soft:  #5A6B7A;
  --text-muted: #8A96A3;

  --font: 'Manrope', system-ui, -apple-system, sans-serif;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.15);
  --transition: .2s ease;
}

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

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

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: transparent;
  color: inherit;
}

input, textarea, select {
  font: inherit;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.15;
  font-weight: 800;
  color: var(--gray-800);
}

/* Skip link — sr-only, visible on focus */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--ms-500);
  color: var(--white);
  font-weight: 700;
  border-radius: var(--radius);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.skip-link:focus {
  top: 16px;
  opacity: 1;
  pointer-events: auto;
  outline: 2px solid var(--ms-300);
  outline-offset: 2px;
}

/* Progressive-enhancement hook */
html.js .no-js-only { display: none; }

/* --------------------------------------------------------------------------
   3. CONTAINER
   -------------------------------------------------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --------------------------------------------------------------------------
   4. TOPBAR
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--ms-800);
  color: rgba(255,255,255,.7);
  font-size: 13px;
  line-height: 36px;
  height: 36px;
  overflow: hidden;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar a {
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
}
.topbar a:hover {
  color: var(--white);
}

.topbar__left > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar__left a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar__left svg {
  width: 14px;
  height: 14px;
  stroke: var(--ms-300);
  flex-shrink: 0;
  vertical-align: middle;
}

.topbar__right {
  font-size: 12px;
  opacity: .8;
}

@media (max-width: 768px) {
  .topbar { display: none; }
}

/* --------------------------------------------------------------------------
   5. SITE HEADER
   -------------------------------------------------------------------------- */
.site-header {
  background: var(--ms-700);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background .3s ease, box-shadow .3s ease;
}

.site-header.scrolled {
  background: rgba(14,61,74,.97);
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

/* --------------------------------------------------------------------------
   5a. Brand
   -------------------------------------------------------------------------- */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand__mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.brand__mark svg {
  width: 100%;
  height: 100%;
}

.brand__name {
  display: flex;
  flex-direction: column;
}

.brand__name .wm {
  color: var(--white);
  font-weight: 800;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.brand__name .wm em {
  font-style: normal;
  color: var(--ms-300);
}

.brand__name .slogan {
  color: var(--ms-200);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   6. PRIMARY MENU
   -------------------------------------------------------------------------- */
.primary {
  display: flex;
  align-items: center;
  gap: 0;
}

.primary > ul {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
}

.menu-item {
  position: relative;
}

.menu-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 8px 16px;
  text-decoration: none;
  transition: color var(--transition);
  white-space: nowrap;
}

.menu-link:hover,
.menu-item.open .menu-link {
  color: var(--ms-300);
}

.caret {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 2.5;
  transition: transform .25s ease;
  flex-shrink: 0;
}

.menu-item.open .caret {
  transform: rotate(180deg);
}

.menu-item--hot .menu-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ms-300);
}

@media (max-width: 1024px) {
  .primary { display: none; }
}

/* --------------------------------------------------------------------------
   7. MEGA MENU
   -------------------------------------------------------------------------- */
.mega {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  top: 100%;
  width: 720px;
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border-top: 3px solid var(--ms-500);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 900;
  padding: 8px 0;
}

.menu-item.open .mega {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega--wide {
  width: 920px;
}

.mega--res {
  width: 480px;
}

.mega--spec {
  width: 1080px;
}

/* Prevent mega panels from overflowing viewport */
.mega,
.mega--wide,
.mega--spec {
  max-width: calc(100vw - 48px);
}

/* On narrower desktops, anchor wide megas to left of nav */
@media (min-width: 1025px) and (max-width: 1280px) {
  .mega--wide,
  .mega--spec,
  .mega--res {
    left: 0;
    transform: translateY(8px);
  }
  .menu-item.open .mega--wide,
  .menu-item.open .mega--spec,
  .menu-item.open .mega--res {
    transform: translateY(0);
  }
}

/* Mega grid */
.mega__grid {
  display: grid;
  gap: 0;
}
.mega__grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.mega__grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.mega__grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Column titles */
.mega__col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ms-500);
  padding: 16px 20px 8px;
  margin: 0;
}

/* Mega link */
.mlink {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  text-decoration: none;
  color: var(--text);
  transition: background .15s ease;
  border-radius: 0;
}

.mlink:hover {
  background: var(--ms-50);
}
.mlink:hover b,
.mlink:hover .mlink-tx b {
  color: var(--ms-700, #094240);
}
.mlink:hover span,
.mlink:hover .mlink-tx > span {
  color: var(--text-soft);
}

.mlink-ico {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ms-100);
  border-radius: var(--radius);
  flex-shrink: 0;
}

.mlink-ico svg {
  width: 18px;
  height: 18px;
  stroke: var(--ms-500);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mlink-tx {
  display: flex;
  flex-direction: column;
}

.mlink-tx b {
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-700);
}

.mlink-tx > span {
  font-size: 12px;
  color: var(--text-soft);
  margin-top: 2px;
  line-height: 1.4;
}

.mega a {
  color: var(--text);
}

/* Mega footer */
.mega__foot {
  grid-column: 1 / -1;
  border-top: 1px solid var(--gray-100);
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Mega feature promo block */
.mega__feature {
  grid-column: 1 / -1;
  padding: 0 20px 12px;
}

/* "Vezi toate" link */
.alllink {
  font-size: 13px;
  font-weight: 600;
  color: var(--ms-500);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: color var(--transition);
}
.alllink:hover {
  color: var(--ms-400);
}
.alllink svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
}

/* Mega promo card inside specialties */
.mega-promo {
  background: var(--ms-50);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.mega-promo h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.mega-promo p {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 16px;
}

/* --------------------------------------------------------------------------
   8. NAV ACTIONS
   -------------------------------------------------------------------------- */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-btn:hover {
  background: rgba(255,255,255,.1);
}

.nav__cta {
  font-size: 14px;
}

/* Burger — mobile only */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s ease, opacity .15s ease;
}

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .burger { display: flex; }
  .nav__cta { display: none; }
}

/* --------------------------------------------------------------------------
   9. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius);
  padding: 12px 24px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  border: none;
  line-height: 1.2;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--accent-h);
  box-shadow: 0 4px 16px rgba(217,93,57,.3);
}

.btn--dark {
  background: var(--ms-700);
  color: var(--white);
}
.btn--dark:hover {
  background: var(--ms-600);
}

.btn--light {
  background: var(--white);
  color: var(--ms-700);
  border: 1px solid var(--gray-200);
}
.btn--light:hover {
  border-color: var(--ms-500);
  color: var(--ms-500);
}

.btn--ghost {
  background: transparent;
  color: var(--ms-500);
  border: 1px solid var(--ms-500);
}
.btn--ghost:hover {
  background: var(--ms-50);
}

.btn--lg {
  padding: 16px 32px;
  font-size: 16px;
}

/* --------------------------------------------------------------------------
   10. SEARCHBAR
   -------------------------------------------------------------------------- */
.searchbar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.searchbar.open {
  max-height: 80px;
}

.searchbar__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}

.searchbar__input {
  flex: 1;
  font-size: 16px;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text);
  padding: 8px 0;
}

.searchbar__input::placeholder {
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   11. MOBILE DRAWER
   -------------------------------------------------------------------------- */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform .3s ease;
  display: flex;
  flex-direction: column;
}

.drawer.open {
  transform: translateX(0);
}

.drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-100);
  flex-shrink: 0;
}

.drawer__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition);
}
.drawer__close:hover {
  background: var(--gray-50);
}
.drawer__close svg {
  width: 20px;
  height: 20px;
  stroke: var(--gray-500);
}

.drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
  -webkit-overflow-scrolling: touch;
}

.drawer__foot {
  padding: 16px 20px;
  border-top: 1px solid var(--gray-100);
  flex-shrink: 0;
}

/* Drawer accordion items */
.drawer__item {
  border-bottom: 1px solid var(--gray-100);
}

.drawer__toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 14px 20px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  background: none;
  border: none;
  text-align: left;
}

.drawer__toggle svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-muted);
  transition: transform .25s ease;
}

.drawer__item.open .drawer__toggle svg {
  transform: rotate(180deg);
}

.drawer__sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.drawer__sub a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px 10px 32px;
  font-size: 14px;
  color: var(--text-soft);
  transition: color var(--transition), background var(--transition);
}

.drawer__sub a:hover {
  color: var(--ms-500);
  background: var(--ms-50);
}

/* Drawer nav (JS-generated classes) */
.dnav-group {
  border-bottom: 1px solid var(--gray-100);
}
.dnav-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 14px 20px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}
.dnav-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-muted);
  transition: transform .25s ease;
  flex-shrink: 0;
}
.dnav-group.open .dnav-btn svg {
  transform: rotate(180deg);
}
.dnav-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.dnav-group.open .dnav-body {
  max-height: 800px;
}
.dnav-sublink {
  display: block;
  padding: 10px 20px 10px 32px;
  font-size: 14px;
  color: var(--text-soft);
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
}
.dnav-sublink:hover {
  color: var(--ms-500);
  background: var(--ms-50);
}
.dnav-link {
  display: block;
  padding: 14px 20px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--gray-100);
  transition: color var(--transition);
}
.dnav-link:hover {
  color: var(--ms-500);
}

/* --------------------------------------------------------------------------
   12. SECTIONS
   -------------------------------------------------------------------------- */
.section {
  padding: 80px 0;
}

.section--tint {
  background: var(--gray-50);
}

.section--dark {
  background: var(--ms-800);
  color: var(--white);
}
.section--dark h2,
.section--dark h3 {
  color: var(--white);
}
.section--dark .kicker {
  color: var(--ms-300);
}
.section--dark .lead,
.section--dark .lead2 {
  color: rgba(255,255,255,.7);
}

.section--med {
  background: var(--ms-50);
}

/* Section header block */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.kicker {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ms-500);
  margin-bottom: 12px;
  display: block;
}

h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--gray-800);
  text-wrap: balance;
}

.lead,
.lead2 {
  font-size: 18px;
  color: var(--text-soft);
  max-width: 60ch;
  line-height: 1.65;
}

.section-head .lead,
.section-head .lead2 {
  margin: 16px auto 0;
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  h2 { font-size: 28px; }
  .section-head { margin-bottom: 36px; }
}

/* --------------------------------------------------------------------------
   12-B. BREADCRUMB
   -------------------------------------------------------------------------- */
.breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  padding: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
  width: 1px;
  clip: rect(0,0,0,0);
}
.breadcrumb--visible {
  height: auto;
  overflow: visible;
  position: relative;
  width: auto;
  clip: auto;
  padding: 12px 0;
  background: var(--ms-800);
  color: rgba(255,255,255,.6);
}
.breadcrumb--visible .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.breadcrumb--visible a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
}
.breadcrumb--visible a:hover {
  color: #fff;
}
.breadcrumb--visible [aria-current] {
  color: #fff;
  font-weight: 600;
}
.breadcrumb--visible svg {
  opacity: .5;
  flex-shrink: 0;
}
.breadcrumb a {
  color: var(--ms-600);
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   13. HERO
   -------------------------------------------------------------------------- */
.hero {
  background: linear-gradient(135deg, var(--ms-900) 0%, var(--ms-700) 50%, #0A4D5E 100%);
  color: var(--white);
  padding: 100px 0 80px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14,138,125,.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14,138,125,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Hero copy */
.hero__copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ms-300);
  margin-bottom: 20px;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ms-300);
  position: relative;
  flex-shrink: 0;
}

.pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--ms-300);
  animation: pulse 2s ease-out infinite;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.hero h1 .hl {
  color: var(--ms-300);
}

.hero .lead {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  max-width: 50ch;
}

.cta-row {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.trust {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.15);
}

.trust .t {
  text-align: left;
}

.trust .n {
  font-size: 28px;
  font-weight: 800;
  color: var(--ms-300);
  line-height: 1.1;
}

.trust .l {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
  line-height: 1.3;
}

/* Hero visual */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  color: var(--text);
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
  width: 100%;
  max-width: 480px;
}

@media (max-width: 1024px) {
  .hero { padding: 80px 0 60px; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero .lead { margin: 0 auto; }
  .cta-row { justify-content: center; }
  .trust { justify-content: center; }
  .trust .t { text-align: center; }
  .hero__visual { order: -1; }
  .hero-card { max-width: 400px; }
}

@media (max-width: 480px) {
  .hero { padding: 64px 0 48px; }
  .cta-row { flex-direction: column; }
  .cta-row .btn { width: 100%; }
  .trust { flex-wrap: wrap; gap: 20px; }
}

/* Hero Ecosystem Bar (Zarina CRM) */
.hero-ecosystem {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding: 16px 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  flex-wrap: wrap;
  justify-content: center;
}
.hero-eco__label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}
.hero-eco__brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ms-300);
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s ease;
}
.hero-eco__brand:hover {
  color: var(--ms-200);
}
.hero-eco__brand svg {
  stroke: var(--ms-300);
  flex-shrink: 0;
}
.hero-eco__sep {
  color: rgba(255,255,255,.25);
  font-size: 18px;
}
.hero-eco__modules {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.hero-eco__tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .02em;
  border-radius: 100px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.08);
  white-space: nowrap;
}
.hero-eco__tag--active {
  background: rgba(14,138,125,.3);
  color: var(--ms-200);
  border-color: rgba(14,138,125,.4);
}
@media (max-width: 768px) {
  .hero-ecosystem {
    border-radius: 16px;
    padding: 14px 16px;
    gap: 8px;
  }
  .hero-eco__sep { display: none; }
  .hero-eco__label { width: 100%; text-align: center; }
  .hero-eco__brand { font-size: 13px; }
}

/* --------------------------------------------------------------------------
   14. TRUST BAND
   -------------------------------------------------------------------------- */
.trustband {
  background: var(--ms-50);
  border-top: 1px solid var(--ms-200);
  border-bottom: 1px solid var(--ms-200);
}

.trustband__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.trustband .cell {
  padding: 24px 16px;
}

.trustband .num {
  font-size: 28px;
  font-weight: 800;
  color: var(--ms-500);
  line-height: 1.1;
}

.trustband .cap {
  font-size: 13px;
  color: var(--text-soft);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .trustband__inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .trustband__inner { grid-template-columns: 1fr 1fr; }
  .trustband .num { font-size: 24px; }
}


/* --------------------------------------------------------------------------
   14-B. AEO BLOCK (Answer Engine Optimization)
   -------------------------------------------------------------------------- */
.aeo-section {
  padding-top: 64px;
  padding-bottom: 0;
}
.aeo-block {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg, 16px);
  border: 1px solid var(--gray-100);
  padding: 40px 48px;
  box-shadow: 0 1px 3px rgba(0,0,0,.04), 0 8px 32px rgba(0,0,0,.03);
}
.aeo-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 3px;
  background: linear-gradient(90deg, var(--ms-500), var(--ms-300));
  border-radius: 0 0 3px 3px;
}
.aeo-block__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.aeo-block__head svg {
  width: 24px;
  height: 24px;
  stroke: var(--ms-500);
  flex-shrink: 0;
}
.aeo-block__head h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin: 0;
}
.aeo-answer {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-soft);
  margin: 0 0 28px;
}
.aeo-answer strong {
  color: var(--text);
  font-weight: 700;
}
.aeo-answer a {
  color: var(--ms-600);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
.aeo-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
}
.aeo-hl {
  text-align: center;
  padding: 16px 8px;
  border-radius: var(--radius);
  background: var(--ms-50);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
}
.aeo-hl:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(14,138,125,.1);
}
.aeo-hl--price {
  background: linear-gradient(135deg, var(--ms-700) 0%, #0A4D5E 100%);
  padding: 22px 12px 18px;
}
.aeo-hl--price .aeo-hl__val {
  color: #fff;
  font-size: 20px;
}
.aeo-hl--price .aeo-hl__lab {
  color: rgba(255,255,255,.7);
}
.aeo-hl--price:hover {
  box-shadow: 0 6px 20px rgba(14,61,74,.35);
}
.aeo-hl__badge {
  display: inline-block;
  background: var(--cta);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  line-height: 1.4;
}
.aeo-hl__val {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--ms-600);
  margin-bottom: 4px;
}
.aeo-hl__lab {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}
@media (max-width: 768px) {
  .aeo-block {
    padding: 28px 20px;
  }
  .aeo-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .aeo-highlights {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

/* --------------------------------------------------------------------------
   15. FEATURE CARDS
   -------------------------------------------------------------------------- */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feat-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .25s ease;
}

.feat-card:hover {
  border-color: var(--ms-300);
  box-shadow: 0 8px 24px rgba(14,138,125,.08);
  transform: translateY(-2px);
}

.feat-card .fi {
  width: 48px;
  height: 48px;
  background: var(--ms-100);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feat-card .fi svg {
  width: 24px;
  height: 24px;
  stroke: var(--ms-500);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feat-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
}

.feat-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 1024px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .feat-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   16. SPECIALTIES GRID
   -------------------------------------------------------------------------- */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.spec-tile {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
  transition: all .2s ease;
}

.spec-tile:hover {
  border-color: var(--ms-400);
  background: var(--ms-50);
  color: var(--ms-500);
}

.spec-tile svg.arrow {
  width: 16px;
  height: 16px;
  stroke: var(--ms-500);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .2s ease, transform .2s ease;
  margin-left: auto;
  flex-shrink: 0;
}

.spec-tile:hover svg.arrow {
  opacity: 1;
  transform: translateX(0);
}

/* --------------------------------------------------------------------------
   17. STEPS / HOW IT WORKS
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.step {
  position: relative;
  padding: 32px 28px;
  text-align: center;
}

.step::after {
  content: '';
  position: absolute;
  top: 52px;
  right: -20px;
  width: 40px;
  height: 2px;
  background: var(--ms-200);
}

/* Remove connector on last of each row */
.step:nth-child(3n)::after,
.step:last-child::after {
  display: none;
}

.st-num {
  width: 40px;
  height: 40px;
  background: var(--ms-500);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; gap: 8px; }
  .step::after { display: none; }
  .step { padding: 24px 16px; }
}

/* --------------------------------------------------------------------------
   18. COMPARISON TABLE
   -------------------------------------------------------------------------- */
.compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare-tbl {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.compare-tbl th {
  background: var(--ms-700);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

.compare-tbl th:first-child {
  border-radius: var(--radius) 0 0 0;
}
.compare-tbl th:last-child {
  border-radius: 0 var(--radius) 0 0;
}

.compare-tbl td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
  vertical-align: middle;
}

.compare-tbl tr:hover td {
  background: var(--ms-50);
}

.ck-yes,
.ck-no,
.ck-partial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 14px;
}

.ck-yes {
  background: var(--ms-100);
  color: var(--ms-500);
}
.ck-yes svg {
  width: 14px;
  height: 14px;
  stroke: var(--ms-500);
  stroke-width: 3;
}

.ck-no {
  background: var(--gray-50);
  color: var(--gray-400);
}
.ck-no svg {
  width: 12px;
  height: 12px;
  stroke: var(--gray-400);
  stroke-width: 3;
}

.ck-partial {
  background: #FFF3E0;
  color: #E68A00;
  font-weight: 700;
  font-size: 16px;
}

/* --------------------------------------------------------------------------
   19. FAQ
   -------------------------------------------------------------------------- */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--gray-100);
  margin: 0;
}

.faq__item summary {
  padding: 20px 0;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  color: var(--text);
  transition: color var(--transition);
}

.faq__item summary:hover {
  color: var(--ms-500);
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::marker {
  display: none;
  content: '';
}

.faq__item summary::after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%238A96A3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform .2s ease;
}

.faq__item[open] summary::after {
  transform: rotate(180deg);
}

.faq__a {
  padding: 0 0 20px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}
@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* --------------------------------------------------------------------------
   SUBPAGES: PAGE HERO, FORMS, LINKS, CONTACT
   -------------------------------------------------------------------------- */
.page-hero {
  background: linear-gradient(135deg, var(--ms-900) 0%, var(--ms-700) 50%, #0A4D5E 100%);
  color: #fff;
  padding: 100px 0 56px;
  text-align: center;
}
.page-hero .eyebrow { color: rgba(255,255,255,.7); }
.page-hero .eyebrow .pulse { background: #5EECD5; }
.page-hero h1 { color: #fff; font-size: clamp(28px,4vw,42px); margin-bottom: 16px; }
.page-hero .lead { color: rgba(255,255,255,.8); max-width: 640px; margin: 0 auto 28px; }
.hero--short {
  background: linear-gradient(135deg, var(--ms-900) 0%, var(--ms-700) 50%, #0A4D5E 100%);
  padding: 100px 0 72px;
}
.hero--short h1 { font-size: clamp(28px,4vw,42px); }

.form-card {
  background: var(--surface);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg, 16px);
  padding: 36px 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 15px;
  font-family: inherit;
  border: 1px solid var(--gray-200, #D1D5DB);
  border-radius: var(--radius, 8px);
  background: var(--surface);
  color: var(--text);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ms-500);
  box-shadow: 0 0 0 3px rgba(14,138,125,.12);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-group--full {
  grid-column: 1 / -1;
}
.form-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.5;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.link-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius, 8px);
  text-decoration: none;
  color: var(--text);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.link-card:hover {
  border-color: var(--ms-300);
  box-shadow: 0 4px 12px rgba(14,138,125,.1);
  transform: translateY(-2px);
}
.link-card__ico {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ms-50);
  border-radius: 10px;
  color: var(--ms-600);
}
.link-card__ico svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.link-card__tx {
  font-size: 15px;
  font-weight: 600;
  color: var(--ms-700);
}
.link-card__arr {
  margin-left: auto;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform .2s ease;
}
.link-card:hover .link-card__arr {
  transform: translateX(3px);
  color: var(--ms-500);
}
.link-card__arr svg {
  width: 16px;
  height: 16px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius, 8px);
}
.info-card__ico {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ms-50);
  border-radius: 12px;
  color: var(--ms-600);
}
.info-card__ico svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.info-card__body h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.info-card__body p,
.info-card__body a {
  font-size: 15px;
  color: var(--text-soft);
}
.info-card__body a {
  color: var(--ms-600);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.demo-form,
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}
@media (max-width: 600px) {
  .demo-form,
  .contact-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-hero { padding: 80px 0 40px; }
  .hero--short { padding: 80px 0 56px; }
  .form-card { padding: 28px 20px; }
}

/* --------------------------------------------------------------------------
   20. CTA BAND
   -------------------------------------------------------------------------- */
.ctaband {
  background: linear-gradient(135deg, var(--ms-700), var(--ms-500));
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  text-align: center;
}

.ctaband h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.ctaband p {
  color: rgba(255,255,255,.8);
  font-size: 18px;
  max-width: 56ch;
  margin: 0 auto 32px;
}

.ctaband .cta-row {
  justify-content: center;
  margin-top: 0;
}

@media (max-width: 768px) {
  .ctaband { padding: 40px 24px; border-radius: var(--radius-lg); }
}

/* --------------------------------------------------------------------------
   21. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background: var(--ms-900);
  color: rgba(255,255,255,.7);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 64px 0 48px;
}

.footer__brand {
  padding-right: 24px;
}

.footer__brand .brand {
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer__nap {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.8;
}
.footer__nap a {
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer__nap a:hover {
  color: var(--white);
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.footer__social a:hover {
  background: var(--ms-500);
}

.footer__social svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
}

/* Footer columns */
.footer__col h3 {
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer__col ul {
  list-style: none;
}

.footer__col li {
  margin-bottom: 10px;
}

.footer__col a {
  color: rgba(255,255,255,.6);
  font-size: 14px;
  transition: color var(--transition);
}

.footer__col a:hover {
  color: var(--white);
}

/* Footer bar */
.footer__bar {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bar a {
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}

.footer__bar a:hover {
  color: var(--white);
}

@media (max-width: 1024px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .footer__top { grid-template-columns: 1fr; gap: 32px; padding: 48px 0 32px; }
  .footer__bar { flex-direction: column; text-align: center; }
}

/* --------------------------------------------------------------------------
   22. COOKIE BANNER
   -------------------------------------------------------------------------- */
.cookie {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 520px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: 0 16px 48px rgba(0,0,0,.15);
  z-index: 2000;
  transition: opacity .3s ease, transform .3s ease;
}

.cookie.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(20px);
}

.cookie h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gray-800);
}

.cookie p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.55;
  margin: 0;
}

.cookie__actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .cookie {
    bottom: 12px;
    left: 12px;
    right: 12px;
    width: auto;
    max-width: none;
    transform: none;
    padding: 20px;
  }
  .cookie.hidden {
    transform: translateY(20px);
  }
  .cookie__actions { flex-direction: column; }
  .cookie__actions .btn { width: 100%; }
}

/* --------------------------------------------------------------------------
   23. COOKIE PREFERENCES MODAL
   -------------------------------------------------------------------------- */
.cprefs__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 2100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.cprefs__backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.cprefs__card {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  max-width: 520px;
  width: calc(100% - 48px);
  border-radius: var(--radius-xl);
  padding: 32px;
  z-index: 2150;
  max-height: 90vh;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.cprefs__backdrop.open + .cprefs__card,
.cprefs__card.open {
  opacity: 1;
  pointer-events: auto;
}

.cprefs__card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.cprefs__card > p {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 24px;
}

/* Cookie group */
.cgroup {
  border-bottom: 1px solid var(--gray-100);
  padding: 16px 0;
}

.cgroup:last-of-type {
  border-bottom: none;
}

.cgroup__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.cgroup__head strong {
  font-size: 15px;
  font-weight: 600;
}

.cgroup__head .tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ms-500);
  background: var(--ms-100);
  padding: 2px 8px;
  border-radius: 4px;
}

.cgroup p {
  font-size: 13px;
  color: var(--text-soft);
  margin-top: 4px;
}

/* Toggle switch */
.switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.track {
  position: absolute;
  inset: 0;
  background: var(--gray-200);
  border-radius: 12px;
  cursor: pointer;
  transition: background .2s ease;
}

.track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 50%;
  transition: transform .2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,.15);
}

.switch input:checked + .track {
  background: var(--ms-500);
}

.switch input:checked + .track::after {
  transform: translateX(20px);
}

.switch input:disabled + .track {
  opacity: .6;
  cursor: not-allowed;
}

.cprefs__actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-end;
}

/* --------------------------------------------------------------------------
   24. COOKIE FAB (floating action button)
   -------------------------------------------------------------------------- */
.cookie-fab {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 44px;
  height: 44px;
  background: var(--ms-700);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1900;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  transition: background var(--transition), transform var(--transition);
  opacity: 0;
  pointer-events: none;
}

.cookie-fab.visible {
  opacity: 1;
  pointer-events: auto;
}

.cookie-fab:hover {
  background: var(--ms-500);
  transform: scale(1.08);
}

.cookie-fab svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* --------------------------------------------------------------------------
   25. BREADCRUMBS
   -------------------------------------------------------------------------- */
.crumbs {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-bottom: 20px;
}

.crumbs ol {
  list-style: none;
  display: flex;
  gap: 4px;
  padding: 0;
  flex-wrap: wrap;
}

.crumbs a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

.crumbs a:hover {
  color: var(--white);
}

.sep {
  margin: 0 4px;
}

/* Light variant for non-hero pages */
.crumbs--light {
  color: var(--text-soft);
}

.crumbs--light a:hover {
  color: var(--ms-500);
}

/* --------------------------------------------------------------------------
   26. CHECKLIST (utility)
   -------------------------------------------------------------------------- */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  display: flex;
  gap: 12px;
  padding: 6px 0;
  font-size: 15px;
  align-items: flex-start;
}

.ck {
  width: 24px;
  height: 24px;
  background: var(--ms-100);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.ck svg {
  width: 14px;
  height: 14px;
  stroke: var(--ms-500);
  stroke-width: 3;
  fill: none;
}

/* --------------------------------------------------------------------------
   27. UTILITY CLASSES
   -------------------------------------------------------------------------- */
.center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* --------------------------------------------------------------------------
   28. ANIMATIONS
   -------------------------------------------------------------------------- */
@keyframes pulse {
  0%   { opacity: 1; transform: scale(1); }
  50%  { opacity: .4; transform: scale(1.6); }
  100% { opacity: 0; transform: scale(2); }
}

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

/* Reveal on scroll — elements start hidden, JS adds .reveal */
.reveal {
  animation: fadeUp .5s ease forwards;
}

.d1 { animation-delay: .1s; }
.d2 { animation-delay: .2s; }
.d3 { animation-delay: .3s; }

/* Pre-reveal state: hidden until JS triggers */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
}

html.js [data-reveal].reveal {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   29. RESPONSIVE — TABLET (max-width: 1024px)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .mega {
    display: none;
  }
  .container {
    padding: 0 20px;
  }
}

/* --------------------------------------------------------------------------
   30. RESPONSIVE — MOBILE (max-width: 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .trustband__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .spec-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* --------------------------------------------------------------------------
   31. RESPONSIVE — SMALL MOBILE (max-width: 480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  body { font-size: 15px; }

  .container { padding: 0 16px; }

  h2 { font-size: 24px; }

  .lead, .lead2 { font-size: 16px; }

  .btn { width: 100%; justify-content: center; }
  .btn--lg { padding: 14px 24px; font-size: 15px; }

  .nav { height: 60px; }
  .brand__mark { width: 36px; height: 36px; }
  .brand__name .wm { font-size: 18px; }

  .hero h1 { font-size: 28px; }

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

  .ctaband .cta-row { flex-direction: column; }

  .footer__bar { padding: 16px 0; gap: 8px; }
}

/* --------------------------------------------------------------------------
   32. TRUST SHIELD (Security section)
   -------------------------------------------------------------------------- */
.shield-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.shield-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.shield-ico {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ms-100);
  border-radius: 50%;
}

.shield-ico svg {
  width: 28px;
  height: 28px;
  stroke: var(--ms-500);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shield-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gray-700);
}

.shield-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .shield-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 480px) {
  .shield-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   33. NEWSLETTER SECTION
   -------------------------------------------------------------------------- */
.nl-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  align-items: center;
  gap: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.nl-card__copy {
  flex: 1;
}

.nl-card__copy h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.nl-card__copy p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.6;
}

.nl-card__form {
  flex: 0 0 380px;
}

.nl-form {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.nl-form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 15px;
  transition: border-color var(--transition);
  background: var(--gray-50);
}

.nl-form input[type="email"]:focus {
  outline: none;
  border-color: var(--ms-500);
  background: var(--white);
}

.nl-form .btn {
  white-space: nowrap;
  flex-shrink: 0;
}

.nl-note {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .nl-card {
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
  }
  .nl-card__form { flex: none; width: 100%; }
  .nl-form { flex-direction: column; }
}

/* --------------------------------------------------------------------------
   34. BACK TO TOP
   -------------------------------------------------------------------------- */
.btt {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ms-500);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, background .2s ease;
  z-index: 1050;
  box-shadow: 0 4px 16px rgba(14,138,125,.3);
}

.btt.visible {
  opacity: 1;
  pointer-events: auto;
}

.btt:hover {
  background: var(--ms-600);
  transform: translateY(-3px);
}

.btt svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --------------------------------------------------------------------------
   35-A. ADAPT BADGE (Hero)
   -------------------------------------------------------------------------- */
.adapt-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 8px 16px;
  background: rgba(14, 138, 125, .15);
  border: 1px solid rgba(14, 138, 125, .3);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ms-200);
  letter-spacing: .02em;
}
.adapt-badge svg {
  flex-shrink: 0;
  stroke: var(--ms-300);
}

/* --------------------------------------------------------------------------
   35-B. ADAPTABILITY SECTION
   -------------------------------------------------------------------------- */
.adapt-section {
  padding-top: 0;
}
.adapt-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: linear-gradient(135deg, var(--ms-50) 0%, #E6F7F5 100%);
  border: 1px solid var(--ms-200);
  border-radius: var(--radius-lg, 16px);
  padding: 48px 56px;
}
.adapt-banner__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.adapt-banner__icon-circle {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ms-500);
  border-radius: 18px;
}
.adapt-banner__icon-circle svg {
  width: 34px;
  height: 34px;
  stroke: var(--white);
}
.adapt-banner__icon h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  color: var(--ms-700, #094240);
  margin: 0;
  line-height: 1.3;
}
.adapt-banner__content > p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
  margin: 0 0 20px;
}
.adapt-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.adapt-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.adapt-point svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  stroke: var(--ms-500);
}
@media (max-width: 768px) {
  .adapt-banner {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    gap: 24px;
  }
  .adapt-banner__icon {
    align-items: flex-start;
    text-align: left;
  }
  .adapt-badge {
    font-size: 12px;
    padding: 6px 12px;
  }
}

/* --------------------------------------------------------------------------
   35-C. ENHANCED MICRO-INTERACTIONS & PREMIUM UX
   -------------------------------------------------------------------------- */

/* Card depth system — unified hover lift */
.feat-card,
.shield-card,
.step-card {
  transition: transform .3s cubic-bezier(.2,.8,.3,1), box-shadow .3s ease;
}
.feat-card:hover,
.shield-card:hover,
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(14,61,74,.1), 0 2px 6px rgba(0,0,0,.04);
}

.spec-tile {
  transition: transform .25s cubic-bezier(.2,.8,.3,1), box-shadow .25s ease, border-color .25s ease;
}
.spec-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(14,138,125,.1);
  border-color: var(--ms-400);
}
.spec-tile:hover .arrow {
  transform: translateX(3px);
  stroke: var(--ms-500);
}
.spec-tile .arrow {
  transition: transform .25s ease, stroke .25s ease;
}

/* Problem cards */
.prob-card {
  transition: transform .3s cubic-bezier(.2,.8,.3,1), box-shadow .3s ease;
}
.prob-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

/* Hero card floating animation */
.hero-card {
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Section gradient accents */
.section--tint {
  position: relative;
}
.section--tint::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--ms-200) 50%, transparent 90%);
}

/* Section dark premium gradient */
.section--dark {
  position: relative;
}
.section--dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(14,138,125,.15) 0%, transparent 70%);
  pointer-events: none;
}

/* Kicker accent bar */
.kicker::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 3px;
  background: var(--ms-500);
  border-radius: 2px;
  margin-right: 10px;
  vertical-align: middle;
}
.section--dark .kicker::before {
  background: var(--ms-300);
}

/* CTA button glow on hover */
.btn--primary {
  position: relative;
}
.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity .3s ease;
  box-shadow: 0 0 24px rgba(217,93,57,.35);
  pointer-events: none;
}
.btn--primary:hover::after {
  opacity: 1;
}

/* Compare table row highlight */
.compare-tbl tbody tr {
  transition: background .2s ease;
}
.compare-tbl tbody tr:hover {
  background: var(--ms-50);
}

/* Newsletter card gradient border */
.nl-card {
  position: relative;
}
.nl-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: calc(var(--radius-lg, 16px) + 1px);
  background: linear-gradient(135deg, var(--ms-500), var(--ms-300), var(--cta));
  z-index: -1;
  opacity: .15;
}

/* Stagger reveal animations */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .12s; }
.reveal-d2 { transition-delay: .24s; }
.reveal-d3 { transition-delay: .36s; }
.reveal-d4 { transition-delay: .48s; }

/* Smooth scrollbar styling */
html {
  scroll-behavior: smooth;
}

/* Focus visible states */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--ms-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Selection color */
::selection {
  background: rgba(14,138,125,.2);
  color: var(--text);
}

/* Footer brand em */
.footer .brand__name .wm em {
  font-style: normal;
  color: var(--ms-400);
}

/* Trustband subtle animation */
.trustband .num {
  transition: color .3s ease;
}
.trustband .cell:hover .num {
  color: var(--ms-500);
}

/* Hero visual glow ring */
.hero__visual {
  position: relative;
}
.hero__visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(14,138,125,.08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   37. PREMIUM SUBPAGE COMPONENTS
   -------------------------------------------------------------------------- */

/* Hero inner — enhanced version for subpages */
.hero--inner {
  background: linear-gradient(135deg, var(--ms-900) 0%, var(--ms-700) 40%, #0A4D5E 100%);
  color: #fff;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero--inner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14,138,125,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero--inner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(93,212,198,.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero--inner .container { position: relative; z-index: 1; }
.hero--inner .hero__inner { max-width: 720px; margin: 0 auto; text-align: center; }
.hero--inner .hero__copy { display: flex; flex-direction: column; align-items: center; }
.hero--inner .eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ms-300);
  margin-bottom: 16px;
}
.hero--inner h1 {
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
}
.hero--inner h1 .hl {
  background: linear-gradient(135deg, var(--ms-300), #5EECD5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero--inner .lead {
  font-size: 17px;
  color: rgba(255,255,255,.78);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto 28px;
}
.hero--inner .hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .hero--inner { padding: 80px 0 44px; }
}

/* Section modifiers */
.section--no-top { padding-top: 0; }
.section--dark {
  background: linear-gradient(135deg, #0a2e38 0%, #0E3D4A 50%, #0d4a4a 100%);
  color: #fff;
}
.section--dark .section-head h2,
.section--dark h2 { color: #fff; }

/* Comparison grid — "Fără / Cu MedStoc" */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.compare-col {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 32px 28px;
}
.compare-col--positive {
  background: rgba(14,138,125,.15);
  border-color: rgba(94,236,213,.15);
}
.compare-col h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
.compare-col--negative h3 { color: #E8654A; }
.compare-col--positive h3 { color: #5EECD5; }
.compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,.85);
  line-height: 1.5;
}
.compare-list svg {
  flex-shrink: 0;
  margin-top: 2px;
}
@media (max-width: 768px) {
  .compare-grid { grid-template-columns: 1fr; }
}

/* Demo two-column layout */
.demo-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.demo-layout h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--text-heading, #0E3D4A);
}
.demo-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.demo-layout .form-card {
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(14,61,74,.10);
}
.demo-layout .form-card h2 {
  margin-bottom: 6px;
}
.demo-layout .form-sub {
  margin: 0 0 24px;
  font-size: .95rem;
  color: var(--text-muted, #5a6a72);
}
@media (max-width: 768px) {
  .demo-layout { grid-template-columns: 1fr; }
}

/* Link-grid 4 columns */
.link-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .link-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .link-grid--4 { grid-template-columns: 1fr; }
}

/* Full-width button */
.btn--full { width: 100%; }

/* Pricing centered section (narrow container, overlaps hero) */
.section--pricing {
  padding-top: 0;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}
.section--pricing .container { max-width: 560px; }

/* Pricing card — premium centered design */
.price-card {
  background: linear-gradient(135deg, #12505F 0%, #0E8A7D 100%);
  border-radius: 20px;
  padding: 48px 40px 44px;
  text-align: center;
  color: #fff;
  box-shadow: 0 12px 40px rgba(14,58,74,.22), 0 0 0 1px rgba(255,255,255,.06) inset;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.price-card__badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 24px;
  margin-bottom: 24px;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.price-card__amount {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}
.price-card__amount small {
  font-size: 22px;
  font-weight: 600;
  opacity: .8;
}
.price-card__sub {
  font-size: 16px;
  opacity: .75;
  margin-bottom: 32px;
}
.price-card__list {
  list-style: none;
  padding: 0;
  margin: 0 auto 36px;
  max-width: 380px;
  text-align: left;
}
.price-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  line-height: 1.45;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.price-card__list li:last-child { border-bottom: none; }
.price-card__list .ck-ico {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
}
.price-card__list .ck-ico svg {
  width: 22px;
  height: 22px;
  stroke: #5EECD5;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.price-card__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.price-card__actions .btn--white {
  background: #fff;
  color: #12505F;
  font-weight: 700;
  width: 100%;
  max-width: 340px;
}
.price-card__actions .btn--white:hover {
  background: var(--ms-50);
}
.price-card__actions .btn--outline-w {
  border: 1.5px solid rgba(255,255,255,.35);
  color: #fff;
  width: 100%;
  max-width: 340px;
  background: transparent;
}
.price-card__actions .btn--outline-w:hover {
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.08);
}
.price-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-soft);
  margin-top: 24px;
  line-height: 1.65;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 600px) {
  .price-card { padding: 36px 24px 32px; }
  .price-card__amount { font-size: 44px; }
}

/* Why-choose section — benefit cards with numbers */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 32px 24px;
  position: relative;
  transition: transform .3s cubic-bezier(.2,.8,.3,1), box-shadow .3s ease;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(14,61,74,.1);
}
.why-card__num {
  font-size: 42px;
  font-weight: 800;
  color: var(--ms-100);
  line-height: 1;
  margin-bottom: 12px;
}
.why-card__ico {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ms-50);
  border-radius: 12px;
  margin-bottom: 16px;
}
.why-card__ico svg {
  width: 24px;
  height: 24px;
  stroke: var(--ms-500);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.65;
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* Stats bar — numbers inline */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.stat-item {
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid var(--gray-100);
}
.stat-item:last-child { border-right: none; }
.stat-item__num {
  font-size: 32px;
  font-weight: 800;
  color: var(--ms-500);
  line-height: 1.1;
}
.stat-item__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  margin-top: 4px;
}
@media (max-width: 768px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(-n+2) { border-bottom: 1px solid var(--gray-100); }
}
@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--gray-100); }
  .stat-item:last-child { border-bottom: none; }
}

/* Enhanced feature card with icon accent bar */
.feat-card--premium {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.2,.8,.3,1), box-shadow .3s ease, border-color .25s ease;
}
.feat-card--premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ms-500), var(--ms-300));
  opacity: 0;
  transition: opacity .3s ease;
}
.feat-card--premium:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(14,61,74,.1);
  border-color: var(--ms-200);
}
.feat-card--premium:hover::before {
  opacity: 1;
}
.feat-card--premium .fi {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ms-50), var(--ms-100));
  border-radius: 14px;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.feat-card--premium .fi svg {
  width: 26px;
  height: 26px;
  stroke: var(--ms-500);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feat-card--premium h2,
.feat-card--premium h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.feat-card--premium p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.65;
  flex-grow: 1;
}
.feat-card--premium .card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ms-500);
  margin-top: 14px;
  transition: gap .2s ease;
}
.feat-card--premium:hover .card-link {
  gap: 8px;
}
.feat-card--premium .card-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

/* Enhanced link card with description */
.link-card--rich {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  text-decoration: none;
  color: var(--text);
  transition: transform .25s cubic-bezier(.2,.8,.3,1), box-shadow .25s ease, border-color .25s ease;
}
.link-card--rich:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(14,138,125,.1);
  border-color: var(--ms-200);
}
.link-card--rich h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.link-card--rich p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 14px;
  flex-grow: 1;
}
.link-card--rich .link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ms-500);
  transition: gap .2s ease;
}
.link-card--rich:hover .link-arrow {
  gap: 10px;
}
.link-card--rich .link-arrow svg {
  width: 16px;
  height: 16px;
}

/* Contact page — enhanced layout */
.contact-hero-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}
.contact-info-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.contact-info-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.contact-info-pill__ico {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ms-50), var(--ms-100));
  border-radius: 12px;
}
.contact-info-pill__ico svg {
  width: 22px;
  height: 22px;
  stroke: var(--ms-500);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-info-pill__text h3 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.contact-info-pill__text p,
.contact-info-pill__text a {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-700);
}
.contact-info-pill__text a {
  color: var(--ms-600);
  text-decoration: none;
}
.contact-info-pill__text a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 900px) {
  .contact-hero-info { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .contact-hero-info { grid-template-columns: 1fr; margin-top: -24px; }
}

/* Contact form section — wider, centered */
.contact-section {
  max-width: 720px;
  margin: 0 auto;
}
.contact-section .form-card {
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.contact-section .form-card h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--gray-700);
}
.contact-section .form-card .form-sub {
  font-size: 15px;
  color: var(--text-soft);
  margin-bottom: 28px;
}
@media (max-width: 600px) {
  .contact-section .form-card { padding: 28px 20px; }
}

/* Enhanced FAQ section */
.faq-section-head {
  text-align: center;
  margin-bottom: 40px;
}
.faq-section-head h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.faq-section-head p {
  font-size: 15px;
  color: var(--text-soft);
  max-width: 540px;
  margin: 0 auto;
}

/* Category heading for grouped FAQs */
.faq-cat {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-700);
  margin: 48px 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ms-100);
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq-cat:first-of-type { margin-top: 0; }
.faq-cat__ico {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ms-50);
  border-radius: 8px;
  flex-shrink: 0;
}
.faq-cat__ico svg {
  width: 18px;
  height: 18px;
  stroke: var(--ms-500);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --------------------------------------------------------------------------
   35-D. REDUCED MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-card { animation: none; }
}

/* --------------------------------------------------------------------------
   36. PRINT STYLES
   -------------------------------------------------------------------------- */
@media print {
  .site-header,
  .topbar,
  .footer,
  .cookie,
  .cookie-fab,
  .cprefs__backdrop,
  .cprefs__card,
  .searchbar,
  .drawer,
  .overlay,
  .nav__actions,
  .burger,
  .btn,
  .ctaband {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 12pt;
    line-height: 1.5;
  }

  h1, h2, h3, h4 {
    color: #000;
    page-break-after: avoid;
  }

  a { color: #000; text-decoration: underline; }

  .hero {
    background: none !important;
    color: #000;
    padding: 24pt 0;
  }
  .hero h1, .hero .lead { color: #000; }
  .hero h1 .hl { color: #333; }
  .trust .n { color: #333; }
  .trust .l { color: #555; }

  .section { padding: 24pt 0; }
  .section--dark,
  .section--med,
  .section--tint {
    background: none !important;
    color: #000;
  }
  .section--dark h2,
  .section--dark h3,
  .section--dark .kicker,
  .section--dark .lead {
    color: #000;
  }

  .feat-card {
    border: 1px solid #ccc;
    box-shadow: none;
    break-inside: avoid;
  }

  .compare-tbl th {
    background: #eee;
    color: #000;
  }

  .trustband { border-color: #ccc; background: none; }
  .trustband .num { color: #333; }

  .btt,
  .cookie-fab { display: none !important; }

  .shield-card { border: 1px solid #ccc; box-shadow: none; break-inside: avoid; }
  .nl-card { box-shadow: none; border: 1px solid #ccc; }

  img { max-width: 100% !important; }
}
