/* ── Skeleton loading ────────────────────────────────────────────────────── */
@keyframes sk-shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position:  400px 0; }
}

#page-skeleton {
  display: none; /* shown via inline script once DOM is ready */
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  overflow: hidden;
  transition: opacity 0.3s ease;
}

#page-skeleton.sk-gone {
  opacity: 0;
  pointer-events: none;
}

.sk-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 32px;
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
}

.sk-logo {
  width: 200px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(90deg, #ececec 25%, #f7f7f7 50%, #ececec 75%);
  background-size: 400px 100%;
  animation: sk-shimmer 1.4s ease-in-out infinite;
}

.sk-nav {
  width: 320px;
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(90deg, #ececec 25%, #f7f7f7 50%, #ececec 75%);
  background-size: 400px 100%;
  animation: sk-shimmer 1.4s ease-in-out infinite;
  animation-delay: 0.1s;
}

.sk-hero {
  height: min(420px, 45vh);
  background: linear-gradient(90deg, #e4e4e4 25%, #efefef 50%, #e4e4e4 75%);
  background-size: 400px 100%;
  animation: sk-shimmer 1.4s ease-in-out infinite;
  animation-delay: 0.05s;
}

.sk-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 40px auto;
  padding: 0 32px;
}

.sk-block {
  height: 220px;
  border-radius: 20px;
  background: linear-gradient(90deg, #ececec 25%, #f7f7f7 50%, #ececec 75%);
  background-size: 400px 100%;
  animation: sk-shimmer 1.4s ease-in-out infinite;
}

.sk-block:nth-child(2) { animation-delay: 0.1s; }
.sk-block:nth-child(3) { animation-delay: 0.2s; }

@media (max-width: 768px) {
  .sk-content { grid-template-columns: 1fr; padding: 0 16px; }
  .sk-nav { display: none; }
  .sk-hero { height: 200px; }
}

/* ── Design tokens ────────────────────────────────────────────────────────── */
:root {
  --ehbo-red: #e63946;
  --ehbo-dark: #1d3557;
  --ehbo-cyan: #a8dadc;
  --ehbo-white: #f8fafc;
  --ehbo-ink: #102033;
  --ehbo-muted: #718096;
  --ehbo-line: rgba(16, 32, 51, 0.1);
  --ehbo-shadow: 0 24px 60px rgba(11, 25, 43, 0.14);
  --ehbo-radius: 24px;
  --maxw: 1280px;
}

/* Shared header copied from the global pages. */
body.home-redesign .home-header {
  display: none !important;
}

body.home-redesign .site-desktop-header {
  position: sticky;
  top: 0;
  z-index: 70;
  border-bottom: 1px solid rgba(16, 32, 51, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 30px rgba(12, 28, 50, 0.05);
}

body.home-redesign .site-desktop-header .container {
  width: min(1720px, calc(100% - 48px));
  margin: 0 auto;
}

body.home-redesign .shared-site-header .header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0;
}

body.home-redesign .shared-site-header .brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 300px;
}

body.home-redesign .shared-site-header .brand > img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  padding: 9px;
  border: 1px solid rgba(16, 32, 51, 0.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(12, 28, 50, 0.06);
}

body.home-redesign .shared-site-header .brand-text {
  display: grid;
  gap: 2px;
  line-height: 1.15;
}

body.home-redesign .shared-site-header .brand-text strong {
  font-size: 17px;
  font-weight: 900;
}

body.home-redesign .shared-site-header .brand-text span {
  color: var(--ehbo-muted);
  font-size: 13px;
  font-weight: 800;
}

body.home-redesign .shared-site-header nav,
body.home-redesign .shared-site-header .nav-links,
body.home-redesign .shared-site-header .lang {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

body.home-redesign .shared-site-header .nav-link,
body.home-redesign .shared-site-header .cta,
body.home-redesign .shared-site-header .login-icon,
body.home-redesign .shared-site-header .lang a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 32, 51, 0.08);
  border-radius: 14px;
  background: #fff;
  color: var(--ehbo-ink);
  box-shadow: 0 8px 18px rgba(12, 28, 50, 0.05);
  font-size: 14px;
  font-weight: 900;
}

body.home-redesign .shared-site-header .nav-link,
body.home-redesign .shared-site-header .cta {
  padding: 0 16px;
}

body.home-redesign .shared-site-header .cta {
  background: var(--ehbo-red);
  color: #fff;
  box-shadow: 0 10px 24px rgba(230, 57, 70, 0.24);
}

body.home-redesign .shared-site-header .login-icon,
body.home-redesign .shared-site-header .lang a {
  width: 44px;
  padding: 0;
}

body.home-redesign .shared-mobile-header {
  display: none;
}

body.home-redesign .glass-site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.92), rgba(248, 250, 252, 0.82));
  backdrop-filter: blur(18px);
  border-bottom: 3px solid var(--ehbo-dark);
  box-shadow: 0 14px 34px rgba(12, 28, 50, 0.08);
}

body.home-redesign .glass-site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

body.home-redesign .glass-brand,
body.home-redesign .glass-action,
body.home-redesign .glass-lang-link {
  color: var(--ehbo-ink);
  text-decoration: none;
}

body.home-redesign .glass-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

body.home-redesign .glass-brand__mark {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(16, 32, 51, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(12, 28, 50, 0.08);
}

body.home-redesign .glass-brand__mark img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

body.home-redesign .glass-brand__text {
  display: grid;
  gap: 2px;
  line-height: 1.16;
}

body.home-redesign .glass-brand__text strong {
  font-size: 14px;
  font-weight: 900;
}

body.home-redesign .glass-brand__text span {
  color: var(--ehbo-muted);
  font-size: 12px;
  font-weight: 800;
}

body.home-redesign .glass-site-header__panel {
  display: grid;
  gap: 12px;
  width: 100%;
}

body.home-redesign .glass-site-header__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 10px;
  width: 100%;
}

body.home-redesign .glass-site-header__divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(16, 32, 51, 0), rgba(16, 32, 51, 0.12) 14%, rgba(16, 32, 51, 0.12) 86%, rgba(16, 32, 51, 0));
}

body.home-redesign .glass-action {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid rgba(16, 32, 51, 0.08);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(12, 28, 50, 0.06);
  font-size: 13.5px;
  font-weight: 900;
  text-align: center;
}

body.home-redesign .glass-action--primary {
  background: var(--ehbo-red);
  color: #fff;
  border-color: rgba(0, 0, 0, 0.03);
  box-shadow: 0 14px 28px rgba(230, 57, 70, 0.25);
}

body.home-redesign .glass-site-header__langs {
  display: flex;
  gap: 10px;
  width: 100%;
}

body.home-redesign .glass-lang-link {
  flex: 1 1 0;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 32, 51, 0.08);
  border-radius: 12px;
  background: #fff;
}

body.home-redesign .glass-lang-link.active {
  border-color: rgba(230, 57, 70, 0.35);
}

body.home-redesign .lang-flag {
  width: 24px;
  height: 24px;
  display: inline-flex;
  border-radius: 999px;
  overflow: hidden;
}

body.home-redesign .lang-flag svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 900px) {
  body.home-redesign .site-desktop-header {
    display: none;
  }

  body.home-redesign .shared-mobile-header {
    display: block;
  }

  body.home-redesign .glass-site-header__inner {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    width: min(100% - 22px, 360px);
    margin: 0 auto;
    padding: 10px 12px;
    border: 1px solid rgba(16, 32, 51, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 24px rgba(12, 28, 50, 0.05);
  }

  body.home-redesign .glass-brand {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    min-height: 62px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body.home-redesign .glass-mobile-toggle {
    border: 0;
    background: transparent;
    box-shadow: none;
  }
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body.home-redesign {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--ehbo-white);
  color: var(--ehbo-ink);
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
}

body.modal-open {
  overflow: hidden;
}

body.home-redesign a {
  color: inherit;
  text-decoration: none;
}

body.home-redesign button,
body.home-redesign input,
body.home-redesign textarea {
  font: inherit;
}

body.home-redesign a:focus-visible,
body.home-redesign button:focus-visible {
  outline: 3px solid rgba(230, 57, 70, 0.45);
  outline-offset: 4px;
}

.home-shell {
  width: min(var(--maxw), calc(100% - 48px));
  margin: 0 auto;
}

.home-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(16, 32, 51, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 30px rgba(12, 28, 50, 0.05);
  transition: background-color 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}

.home-header.is-scrolled,
.home-header.is-open {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 34px rgba(12, 28, 50, 0.07);
}

.home-nav-wrap {
  width: min(var(--maxw), calc(100% - 48px));
  height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.home-brand {
  display: inline-flex;
  align-items: center;
  min-width: 360px;
  gap: 14px;
}

.brand-logo {
  width: 64px;
  height: 52px;
  flex: 0 0 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(16, 32, 51, 0.08);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(12, 28, 50, 0.06);
}

.brand-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-mark {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(12, 28, 50, 0.16);
  overflow: hidden;
}

.brand-mark img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1.12;
}

.brand-copy strong,
.footer-brand-row strong,
.home-section-heading h2,
.hero-content h1,
.footer-cta h2 {
  font-family: "Plus Jakarta Sans", "Nunito Sans", sans-serif;
}

.brand-copy strong {
  color: #1b1f27;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-copy span {
  color: #5b6472;
  font-size: 13px;
  font-weight: 700;
}

.home-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.home-nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.home-nav-links a {
  position: relative;
  padding: 6px 0;
  color: #15171c;
  font-size: 15px;
  font-weight: 900;
  transition: color 0.2s ease;
}

.home-nav-links a::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 3px;
  left: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--ehbo-red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.home-nav-links a:hover {
  color: var(--ehbo-red);
}

.home-nav-links a:hover::after {
  transform: scaleX(1);
}

.home-lang {
  display: flex;
  gap: 8px;
  margin-left: 0;
  padding-left: 0;
  border-left: 0;
}

.home-lang a,
.home-mobile-lang a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(16, 32, 51, 0.1);
  border-radius: 14px;
  color: #657085;
  background: #fff;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(20, 22, 26, 0.05);
}

.home-lang a.active {
  border-color: rgba(230, 57, 70, 0.32);
  background: #fff;
  box-shadow: 0 10px 22px rgba(230, 57, 70, 0.12);
}

.lang-flag {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(20, 22, 26, 0.12);
}

.lang-flag svg {
  width: 100%;
  height: 100%;
  display: block;
}

.home-quote-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  padding: 14px 24px;
  border-radius: 13px;
  background: var(--ehbo-red);
  color: #fff;
  box-shadow: 0 8px 22px rgba(230, 57, 70, 0.32);
  font-family: "Plus Jakarta Sans", "Nunito Sans", sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-transform: lowercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-quote-link:hover,
.home-login-icon:hover,
.home-btn:hover,
.emergency-trigger:hover {
  transform: translateY(-2px);
}

.home-login-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 32, 51, 0.1);
  border-radius: 14px;
  background: #fff;
  color: var(--ehbo-dark);
  box-shadow: 0 8px 18px rgba(20, 22, 26, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.home-login-icon:hover {
  border-color: rgba(230, 57, 70, 0.3);
  color: var(--ehbo-red);
  box-shadow: 0 10px 22px rgba(230, 57, 70, 0.12);
}

.home-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ehbo-dark);
  cursor: pointer;
}

.home-menu-btn .icon-close,
.home-menu-btn[aria-expanded="true"] .icon-open {
  display: none;
}

.home-menu-btn[aria-expanded="true"] .icon-close {
  display: inline-flex;
}

.home-mobile-drawer {
  height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(18px);
  transition: height 0.28s ease;
}

.home-mobile-drawer.open {
  height: auto;
  border-top: 1px solid rgba(16, 32, 51, 0.08);
}

.home-mobile-links {
  width: min(var(--maxw), calc(100% - 48px));
  margin: 0 auto;
  padding: 12px 0 24px;
  display: grid;
  gap: 8px;
}

.home-mobile-links > a {
  padding: 13px 16px;
  border-radius: 14px;
  color: var(--ehbo-dark);
  font-weight: 800;
}

.home-mobile-links > a:hover {
  background: #f4f7fb;
}

.home-mobile-links .mobile-cta {
  background: var(--ehbo-red);
  color: #fff;
  text-align: center;
}

.home-mobile-lang {
  display: flex;
  gap: 8px;
  padding-top: 6px;
}

.home-mobile-lang a {
  flex: 1;
  border: 1px solid rgba(16, 32, 51, 0.1);
}

.home-mobile-lang a.active {
  border-color: var(--ehbo-red);
  background: #fff;
}

.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ehbo-dark);
}

.hero-dot-grid {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 28px 28px;
}

.hero-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 57%;
}

.hero-media img,
.hero-mobile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--ehbo-dark) 0%, rgba(29, 53, 87, 0.9) 30%, rgba(29, 53, 87, 0.18) 70%, rgba(29, 53, 87, 0.05) 100%);
  z-index: 1;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(29, 53, 87, 0.38), transparent 55%);
}

.hero-mobile-media {
  display: none;
}

.hero-shell {
  position: relative;
  z-index: 3;
  padding: 128px 0 82px;
}

.hero-content {
  width: min(580px, 100%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 700;
}

.hero-badge svg {
  color: var(--ehbo-cyan);
}

.hero-content h1 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(2.6rem, 5.4vw, 4.35rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.hero-content h1 span {
  position: relative;
  display: inline-block;
  color: var(--ehbo-red);
}

.hero-content h1 span i {
  position: absolute;
  right: 0;
  bottom: 0.03em;
  left: 0;
  height: 0.16em;
  border-radius: 999px;
  background: rgba(230, 57, 70, 0.22);
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineIn 0.58s ease 0.7s forwards;
}

.hero-content p {
  max-width: 480px;
  margin: 0 0 40px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
  line-height: 1.72;
}

.hero-points {
  display: grid;
  gap: 10px;
  max-width: 540px;
  margin: 0 0 32px;
}

.hero-point {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.hero-point__icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 14px 28px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-family: "Plus Jakarta Sans", "Nunito Sans", sans-serif;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.home-btn.primary {
  background: var(--ehbo-red);
  color: #fff;
  box-shadow: 0 12px 26px rgba(230, 57, 70, 0.35);
}

.home-btn.ghost {
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
  background: rgba(255, 255, 255, 0.01);
}

.home-btn.outline {
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
}


.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 14px;
  font-weight: 800;
}

.hero-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 560px;
  margin-top: 24px;
}

.hero-trust-item {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.hero-trust-item strong {
  color: #fff;
  font-family: "Plus Jakarta Sans", "Nunito Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
}

.hero-trust-item span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  z-index: 4;
  transform: translateX(-50%);
}

.scroll-cue span {
  display: block;
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3));
  animation: scrollCue 2s ease-in-out infinite;
}

.tiles-section {
  position: relative;
  z-index: 2;
  padding: 96px 0;
  background:
    radial-gradient(700px 360px at 10% 10%, rgba(230, 57, 70, 0.08), transparent 60%),
    #f8fafc;
}

.home-section-heading {
  max-width: 660px;
  margin-bottom: 48px;
}

.home-section-heading > span {
  display: block;
  margin-bottom: 12px;
  color: var(--ehbo-red);
  font-family: "Plus Jakarta Sans", "Nunito Sans", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-section-heading h2 {
  margin: 0 0 12px;
  color: var(--ehbo-dark);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.home-section-heading p {
  margin: 0;
  color: #64748b;
  font-size: 16px;
}

.home-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-tile {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  border: 1.5px solid rgba(16, 32, 51, 0.07);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(16, 32, 51, 0.04);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  transition-delay: var(--delay, 0ms);
}

.home-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 57, 70, 0.28);
  box-shadow: 0 18px 46px rgba(16, 32, 51, 0.1);
}

.home-tile.highlight {
  border-color: rgba(230, 57, 70, 0.3);
  background: var(--ehbo-red);
  color: #fff;
  box-shadow: 0 18px 44px rgba(230, 57, 70, 0.24);
}

.tile-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(16, 32, 51, 0.045);
  font-size: 28px;
}

.home-tile.highlight .tile-icon {
  background: rgba(255, 255, 255, 0.18);
}

.home-tile strong {
  margin-bottom: 8px;
  color: var(--ehbo-dark);
  font-family: "Plus Jakarta Sans", "Nunito Sans", sans-serif;
  font-size: 16px;
  font-weight: 800;
}

.home-tile.highlight strong {
  color: #fff;
}

.tile-text {
  color: #64748b;
  flex: 1;
  font-size: 14px;
  line-height: 1.65;
}

.home-tile.highlight .tile-text {
  color: rgba(255, 255, 255, 0.76);
}

.tile-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  color: var(--ehbo-red);
  font-size: 13px;
  font-weight: 900;
}

.home-tile.highlight .tile-more {
  color: rgba(255, 255, 255, 0.92);
}

.stats-section {
  position: relative;
  z-index: 2;
  padding: 74px 0;
  background: var(--ehbo-dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  text-align: center;
}

.stat-card {
  display: grid;
  justify-items: center;
}

.stat-card span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 17px;
  background: rgba(230, 57, 70, 0.16);
  color: var(--ehbo-red);
}

.stat-card strong {
  color: #fff;
  font-family: "Plus Jakarta Sans", "Nunito Sans", sans-serif;
  font-size: clamp(2rem, 4vw, 2.55rem);
  font-weight: 800;
  line-height: 1;
}

.stat-card em {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.testimonials-section {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 112px 0;
  background-image: var(--team-image);
  background-size: cover;
  background-position: center;
}

.testimonial-overlay {
  position: absolute;
  inset: 0;
  background: rgba(29, 53, 87, 0.88);
  backdrop-filter: blur(4px);
}

.testimonial-panel {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100% - 48px));
  text-align: center;
}

.quote-icon {
  display: inline-flex;
  margin-bottom: 30px;
  color: rgba(230, 57, 70, 0.78);
}

.testimonial-slides {
  position: relative;
  min-height: 224px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  opacity: 0;
  filter: blur(7px);
  transform: translateY(14px);
  transition: opacity 0.42s ease, transform 0.42s ease, filter 0.42s ease;
  pointer-events: none;
}

.testimonial-slide.active {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  pointer-events: auto;
}

.testimonial-slide p {
  margin: 0 0 28px;
  color: #fff;
  font-family: "Plus Jakarta Sans", "Nunito Sans", sans-serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.42;
  letter-spacing: -0.03em;
}

.testimonial-slide strong {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 900;
}

.testimonial-slide span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 12px;
  font-weight: 700;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 34px;
}

.testimonial-controls > button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.66);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.testimonial-dots {
  display: flex;
  gap: 7px;
  align-items: center;
}

.testimonial-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: width 0.28s ease, background-color 0.28s ease;
}

.testimonial-dots button.active {
  width: 30px;
  background: var(--ehbo-red);
}

.home-footer {
  position: relative;
  z-index: 2;
  background: var(--ehbo-dark);
  color: #fff;
}

.footer-cta {
  background: var(--ehbo-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 64px 0;
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-cta h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.footer-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(140px, 0.72fr));
  gap: 46px;
  padding: 64px 0;
}

.footer-brand-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-brand-row .brand-mark {
  width: 34px;
  height: 34px;
  flex-basis: 34px;
}

.footer-brand p {
  max-width: 360px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 14px;
  line-height: 1.68;
}

.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-contact a,
.footer-contact span,
.footer-contact small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 13px;
  font-weight: 700;
}

.footer-contact small {
  color: rgba(255, 255, 255, 0.24);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 800;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.footer-socials a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-col h3 {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.36);
  font-family: "Plus Jakarta Sans", "Nunito Sans", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 800;
  transition: color 0.18s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.22);
  font-size: 12px;
  font-weight: 700;
}

.care-contact-trigger {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--ehbo-red);
  box-shadow: 0 10px 24px rgba(16, 32, 51, 0.18);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.care-contact-trigger:hover,
.care-contact-trigger[aria-expanded="true"] {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(16, 32, 51, 0.22);
}

.care-contact-panel {
  position: fixed;
  right: 24px;
  bottom: 84px;
  z-index: 90;
  width: min(360px, calc(100vw - 32px));
}

.care-contact-panel[hidden] {
  display: none !important;
}

.care-contact-card {
  overflow: hidden;
  border: 1px solid rgba(16, 32, 51, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(11, 25, 43, 0.22);
}

.care-contact-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 20px 14px;
  border-bottom: 1px solid rgba(16, 32, 51, 0.08);
}

.care-contact-head span {
  display: block;
  margin-bottom: 5px;
  color: var(--ehbo-red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.care-contact-head h2 {
  margin: 0;
  color: var(--ehbo-dark);
  font-family: "Plus Jakarta Sans", "Nunito Sans", sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.care-contact-close {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(16, 32, 51, 0.06);
  color: #64748b;
  cursor: pointer;
}

.care-contact-list {
  max-height: min(62vh, 520px);
  overflow: auto;
  padding: 14px;
}

.care-contact-list section {
  display: grid;
  gap: 8px;
  padding: 12px 0;
}

.care-contact-list section + section {
  border-top: 1px solid rgba(16, 32, 51, 0.08);
}

.care-contact-list h3 {
  margin: 0 0 2px;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.care-contact-list a {
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #f8fafc;
  color: var(--ehbo-ink);
}

.care-contact-list a:hover {
  background: rgba(230, 57, 70, 0.08);
}

.care-contact-list strong {
  font-size: 15px;
  font-weight: 900;
}

.care-contact-list span {
  color: #64748b;
  font-size: 12.5px;
  font-weight: 700;
}

.care-contact-note {
  margin: 0;
  padding: 14px 20px 18px;
  border-top: 1px solid rgba(16, 32, 51, 0.08);
  color: #64748b;
  font-size: 12px;
  line-height: 1.55;
}

.emergency-trigger {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 21px;
  border: 0;
  border-radius: 999px;
  background: var(--ehbo-red);
  color: #fff;
  box-shadow: 0 14px 34px rgba(230, 57, 70, 0.34);
  font-family: "Plus Jakarta Sans", "Nunito Sans", sans-serif;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.emergency-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 24px;
}

.emergency-modal.open {
  display: grid;
}

.emergency-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(29, 53, 87, 0.94);
}

.emergency-dialog {
  position: relative;
  width: min(460px, 100%);
  display: grid;
  justify-items: center;
  padding: 48px 40px;
  border-radius: 26px;
  background: #fff;
  text-align: center;
  box-shadow: var(--ehbo-shadow);
  animation: modalIn 0.24s ease;
}

.emergency-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #94a3b8;
  cursor: pointer;
}

.emergency-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 999px;
  background: rgba(230, 57, 70, 0.08);
  color: var(--ehbo-red);
}

.emergency-dialog h2 {
  margin: 0 0 12px;
  color: var(--ehbo-dark);
  font-family: "Plus Jakarta Sans", "Nunito Sans", sans-serif;
  font-size: 1.55rem;
  letter-spacing: -0.035em;
}

.emergency-dialog p {
  margin: 0 0 30px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.65;
}

.emergency-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border-radius: 999px;
  background: var(--ehbo-red);
  color: #fff;
  box-shadow: 0 10px 24px rgba(230, 57, 70, 0.28);
  font-family: "Plus Jakarta Sans", "Nunito Sans", sans-serif;
  font-size: 17px;
  font-weight: 800;
}

.poison-line {
  width: 100%;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #edf2f7;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 700;
}

.vital-line {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.vital-line svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.vital-line path {
  fill: none;
  stroke: var(--ehbo-red);
  stroke-width: 1.5;
  stroke-opacity: 0.06;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0ms);
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(24px);
}

.has-js .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.hero-content .reveal:nth-child(2) {
  transition-delay: 120ms;
}

.hero-content .reveal:nth-child(3) {
  transition-delay: 240ms;
}

.hero-content .reveal:nth-child(4) {
  transition-delay: 360ms;
}

.hero-content .reveal:nth-child(5) {
  transition-delay: 520ms;
}

@keyframes underlineIn {
  to {
    transform: scaleX(1);
  }
}

@keyframes scrollCue {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.65);
    opacity: 0;
  }
}

@keyframes beat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1120px) {
  .home-nav-links {
    gap: 14px;
  }

  .home-nav-links a {
    font-size: 14px;
  }

  .home-brand {
    min-width: 300px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy span {
    font-size: 12px;
  }
}

@media (max-width: 960px) {
  .home-nav-links,
  .home-lang,
  .home-quote-link,
  .home-login-icon {
    display: none;
  }

  .home-menu-btn {
    display: inline-grid;
    place-items: center;
  }

  .brand-logo {
    width: 56px;
    height: 48px;
    flex-basis: 56px;
  }

  .brand-logo img {
    width: 38px;
    height: 38px;
  }

  .home-hero {
    min-height: 820px;
  }

  .hero-media {
    display: none;
  }

  .hero-mobile-media {
    position: absolute;
    inset: 0;
    display: block;
  }

  .hero-mobile-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(29, 53, 87, 0.96), rgba(29, 53, 87, 0.72) 55%, rgba(29, 53, 87, 0.93));
  }

  .hero-shell {
    padding-top: 118px;
  }

  .home-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-cta-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .home-shell,
  .home-nav-wrap,
  .home-mobile-links {
    width: min(100% - 32px, var(--maxw));
  }

  .home-nav-wrap {
    height: 68px;
  }

  .home-brand {
    min-width: 0;
  }

  .brand-logo {
    width: 50px;
    height: 44px;
    flex-basis: 50px;
  }

  .brand-logo img {
    width: 34px;
    height: 34px;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .brand-copy span {
    display: none;
  }

  .home-hero {
    min-height: 760px;
  }

  .hero-shell {
    padding: 108px 0 76px;
  }

  .hero-badge {
    margin-bottom: 24px;
    font-size: 12px;
  }

  .hero-content h1 {
    font-size: clamp(2.2rem, 13vw, 3.45rem);
  }

  .hero-content p {
    font-size: 15.5px;
  }

  .hero-points,
  .hero-trust-strip {
    max-width: none;
  }

  .hero-trust-strip {
    grid-template-columns: 1fr;
  }

  .home-btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .tiles-section {
    padding: 72px 0;
  }

  .home-section-heading {
    margin-bottom: 32px;
  }

  .home-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .home-tile {
    min-height: 218px;
    padding: 18px;
    border-radius: 18px;
  }

  .home-tile.highlight {
    order: -1;
    grid-column: 1 / -1;
    min-height: 0;
  }

  .tile-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
    border-radius: 14px;
    font-size: 23px;
  }

  .home-tile strong {
    font-size: 14px;
  }

  .tile-text {
    font-size: 12.5px;
    line-height: 1.55;
  }

  .tile-more {
    margin-top: 16px;
    font-size: 12px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 18px;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-col {
    gap: 10px;
  }

  .footer-col h3 {
    min-height: 14px;
    margin-bottom: 6px;
  }

  .testimonials-section {
    min-height: 600px;
    padding: 86px 0;
  }

  .testimonial-slides {
    min-height: 315px;
  }

  .footer-cta {
    padding: 48px 0;
  }

  .footer-actions {
    width: 100%;
  }

  .footer-main {
    padding: 48px 0;
    gap: 30px;
  }

  .care-contact-trigger {
    right: 18px;
    bottom: 18px;
  }

  .care-contact-panel {
    right: 16px;
    bottom: 78px;
    width: calc(100vw - 32px);
  }

  .emergency-trigger {
    left: 18px;
    bottom: 18px;
    padding: 12px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

body.home-redesign .hero-shell {
  padding-top: 82px;
}

@media (max-width: 900px) {
  body.home-redesign .hero-shell {
    padding-top: 54px;
  }
}

body.home-redesign .glass-site-header.shared-site-header{
  display:block;
  position:sticky;
  top:0;
  z-index:80;
}
body.home-redesign .glass-site-header.shared-site-header .glass-site-header__inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  padding:12px 0 16px;
}
body.home-redesign .glass-site-header.shared-site-header .glass-site-header__panel{
  display:grid !important;
  justify-items:stretch;
  gap:12px;
  width:min(100%, 430px);
  margin-left:auto;
}
body.home-redesign .glass-site-header.shared-site-header .glass-brand{
  min-height:62px;
  padding:10px 12px;
  border:1px solid rgba(16,32,51,.08);
  border-radius:20px;
  background:rgba(255,255,255,.78);
  box-shadow:0 10px 24px rgba(12,28,50,.05);
}
body.home-redesign .glass-site-header.shared-site-header .glass-site-header__actions{
  display:grid !important;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px 10px;
  width:100%;
}
body.home-redesign .glass-site-header.shared-site-header .glass-menu-toggle{
  width:100%;
  min-height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border:1px solid rgba(16,32,51,.08);
  border-radius:12px;
  background:#fff;
  color:var(--ehbo-ink);
  box-shadow:0 8px 18px rgba(12,28,50,.05);
  font-weight:900;
  cursor:pointer;
}
body.home-redesign .glass-site-header.shared-site-header .glass-menu-toggle svg{
  width:18px;
  height:18px;
  transition:transform .18s ease;
}
body.home-redesign .glass-site-header.shared-site-header.is-open .glass-menu-toggle svg{
  transform:rotate(180deg);
}
body.home-redesign .glass-site-header.shared-site-header .glass-site-header__menu{
  display:grid;
  gap:12px;
}
body.home-redesign .glass-site-header.shared-site-header .glass-site-header__menu[hidden]{
  display:none !important;
}

body.home-redesign .glass-mobile-toggle{
  width:52px;
  height:52px;
  flex:0 0 52px;
  min-height:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  position:relative;
  border:1px solid rgba(16,32,51,.08);
  border-radius:14px;
  background:#fff;
  color:var(--ehbo-ink);
  box-shadow:0 8px 18px rgba(12,28,50,.05);
  font-size:14px;
  font-weight:900;
  cursor:pointer;
}
body.home-redesign .glass-mobile-toggle svg{
  width:20px;
  height:20px;
  transition:opacity .18s ease, transform .24s ease;
}
body.home-redesign .glass-mobile-toggle .sr-only{
  display:none;
}
body.home-redesign .glass-mobile-toggle__close{
  position:absolute;
  opacity:0;
  transform:scale(.72) rotate(-90deg);
  pointer-events:none;
}
body.home-redesign .glass-mobile-toggle__open{
  opacity:1;
  transform:scale(1) rotate(0deg);
}
body.home-redesign .shared-mobile-header.is-open .glass-mobile-toggle__open{
  opacity:0;
  transform:scale(.72) rotate(90deg);
}
body.home-redesign .shared-mobile-header.is-open .glass-mobile-toggle__close{
  opacity:1;
  transform:scale(1) rotate(0deg);
}
body.home-redesign .shared-mobile-header [hidden]{
  display:none !important;
}

@media (max-width:900px){
  body.home-redesign .shared-mobile-header .glass-site-header__inner{
    align-items:center;
    flex-direction:row;
    flex-wrap:wrap;
    gap:10px;
    width:min(100% - 22px, 360px);
    margin:0 auto;
    padding:10px 12px;
    border:1px solid rgba(16,32,51,.08);
    border-radius:20px;
    background:rgba(255,255,255,.78);
    box-shadow:0 10px 24px rgba(12,28,50,.05);
  }
  body.home-redesign .shared-mobile-header .glass-brand{
    flex:1 1 0;
    width:auto;
    min-width:0;
    min-height:62px;
    padding:0;
    border:0;
    border-radius:0;
    background:transparent;
    box-shadow:none;
  }
  body.home-redesign .shared-mobile-header .glass-mobile-toggle{
    border:0;
    background:transparent;
    box-shadow:none;
  }
  body.home-redesign .glass-site-header.shared-site-header .glass-site-header__inner{
    flex-direction:row;
    flex-wrap:wrap;
    width:min(100% - 22px, 360px);
  }
  body.home-redesign .glass-site-header.shared-site-header .glass-site-header__panel{
    width:100%;
  }
  body.home-redesign .glass-site-header.shared-site-header .glass-brand{
    flex:1 1 0;
    width:auto;
    min-width:0;
  }
  body.home-redesign .glass-site-header.shared-site-header .glass-site-header__panel{
    order:3;
  }
}
