:root {
  --elmed-red: #E31B23;
  --elmed-red-deep: #B9121B;
  --elmed-green: #22A447;
  --elmed-green-hover: #1c8a3b;
  --elmed-bg: #F4F5F7;
  --elmed-text: #1A1D21;
  --elmed-muted: #5C6370;
  --elmed-white: #ffffff;
  --elmed-border: #E7E9ED;
  --elmed-radius: 20px;
  --elmed-shadow: 0 10px 30px rgba(26, 29, 33, 0.07);
  --elmed-max: 1120px;
  --elmed-font: "Tajawal", sans-serif;
}

html { scroll-behavior: smooth; }

body.elmed-lp {
  margin: 0;
  background: var(--elmed-white);
  color: var(--elmed-text);
  font-family: var(--elmed-font);
  font-size: 16px;
  line-height: 1.7;
  direction: rtl;
  text-align: right;
  padding-bottom: 92px;
}

body.elmed-lp,
body.elmed-lp button,
body.elmed-lp input,
body.elmed-lp select {
  font-family: var(--elmed-font);
}

.elmed-skip { position: absolute; right: -999px; }
.elmed-skip:focus { right: 16px; top: 16px; z-index: 100; background: #fff; padding: 8px 12px; }

.elmed-wrap {
  width: min(var(--elmed-max), calc(100% - 32px));
  margin-inline: auto;
}

.elmed-section { padding-block: 56px; }

.elmed-kicker {
  color: var(--elmed-red);
  font-weight: 700;
  font-size: 13px;
  margin: 0 0 10px;
}

.elmed-h1,
.elmed-h2 {
  font-family: var(--elmed-font);
  font-weight: 800;
  color: var(--elmed-text);
  margin: 0 0 12px;
  line-height: 1.35;
}

.elmed-h1 { font-size: clamp(26px, 7vw, 48px); }
.elmed-h2 { font-size: clamp(22px, 5.6vw, 36px); }

.elmed-lead {
  color: var(--elmed-muted);
  margin: 0 0 20px;
  max-width: 36em;
}

.elmed-original-note {
  width: min(760px, 100%);
  margin: 0 auto 32px;
  padding: clamp(18px, 4vw, 28px) clamp(16px, 5vw, 36px);
  border: 1px solid #ffd5d7;
  border-right: 5px solid var(--elmed-red);
  border-radius: var(--elmed-radius);
  background: #fff8f8;
  box-shadow: 0 12px 28px rgba(185, 18, 27, 0.1);
  box-sizing: border-box;
  text-align: center;
}

.elmed-original-note-text {
  display: grid;
  gap: 6px;
  margin: 0 0 20px;
  line-height: 1.35;
}

.elmed-original-note-alert {
  color: var(--elmed-red-deep);
  font-size: clamp(17px, 3.5vw, 22px);
  font-weight: 800;
}

.elmed-original-note-message {
  color: var(--elmed-text);
  font-size: clamp(21px, 5vw, 34px);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.elmed-original-note-message b {
  color: var(--elmed-red);
}

.elmed-original-note-image {
  display: block;
  width: 100%;
  height: auto;
  margin-inline: auto;
  border-radius: var(--elmed-radius);
  box-shadow: var(--elmed-shadow);
}

@media (max-width: 480px) {
  .elmed-original-note {
    margin-bottom: 24px;
    border-right-width: 4px;
  }

  .elmed-original-note-text {
    margin-bottom: 16px;
  }

  .elmed-original-note-image {
    border-radius: 14px;
  }
}

.elmed-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  box-sizing: border-box;
}

.elmed-btn-primary { background: var(--elmed-green); color: #fff; }
.elmed-btn-primary:hover { background: var(--elmed-green-hover); color: #fff; }
.elmed-btn-secondary {
  background: transparent;
  color: var(--elmed-red);
  border-color: var(--elmed-red);
  min-height: 42px;
  padding: 0 14px;
  font-size: 14px;
}

.elmed-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--elmed-border);
}

.elmed-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

.elmed-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.elmed-logo-img {
  display: block;
  width: auto;
  height: 64px;
  max-width: min(220px, 62vw);
  object-fit: contain;
}

.elmed-hero { padding: 28px 0 40px; }
.elmed-hero-grid { display: grid; }

.elmed-badge {
  display: inline-flex;
  background: #fff1f1;
  color: var(--elmed-red);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}

.elmed-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.elmed-trust span {
  background: #fff1f1;
  border: 2px solid var(--elmed-red);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--elmed-red);
}

.elmed-hero-photo {
  display: block;
  width: min(560px, 100%);
  height: auto;
  max-height: min(72vh, 560px);
  object-fit: cover;
  object-position: center 12%;
  margin: 0 auto 20px;
  border-radius: 20px;
}

.elmed-demo { background: var(--elmed-bg); text-align: center; }
.elmed-demo .elmed-h2,
.elmed-demo .elmed-lead,
.elmed-form-sec .elmed-h2,
.elmed-form-sec .elmed-lead { margin-inline: auto; text-align: center; }

.elmed-reel {
  width: min(328px, 100%);
  margin: 24px auto 0;
  padding: 4px 4px 0;
  border-radius: 28px;
  background: var(--elmed-green);
  box-shadow: 0 16px 40px rgba(34, 164, 71, 0.28);
  box-sizing: border-box;
}
.elmed-video {
  position: relative;
  width: 100%;
  margin: 0;
  aspect-ratio: 9 / 16;
  max-height: min(70vh, calc(100dvh - 230px));
  background: #111;
  border-radius: 24px 24px 14px 14px;
  overflow: hidden;
}
.elmed-video iframe { width: 100%; height: 100%; border: 0; display: block; }
.elmed-reel-foot {
  display: grid;
  place-items: center;
  height: 32px;
}
.elmed-reel-foot i {
  width: 92px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}
.elmed-video-note { margin: 12px auto 0; color: var(--elmed-muted); font-size: 13px; }

.elmed-video-start {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #111;
  position: relative;
  font-family: var(--elmed-font);
}
.elmed-video-start img { width: 100%; height: 100%; object-fit: cover; display: block; }
.elmed-video-start::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.32);
  z-index: 1;
}
.elmed-video-start-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 68px;
  height: 68px;
  margin: 0;
  border-radius: 50%;
  background: var(--elmed-green);
  transform: translate(-50%, -50%);
  z-index: 2;
  box-shadow: 0 10px 24px rgba(34,164,71,.45);
}
.elmed-video-start-icon::after {
  content: "";
  position: absolute;
  inset: 22px 20px 22px 28px;
  background: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.elmed-video-start-label {
  position: absolute;
  bottom: 14px;
  left: 12px;
  right: 12px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  z-index: 2;
  text-shadow: 0 1px 8px rgba(0,0,0,.55);
}

.elmed-path {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.elmed-path-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
  align-items: stretch;
}

.elmed-path-card {
  display: grid;
  grid-template-columns: 1fr 46px;
  gap: 14px;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 8px 26px rgba(26, 29, 33, 0.07);
  border: 1px solid rgba(231, 233, 237, 0.9);
}

.elmed-path-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--elmed-red);
  flex-shrink: 0;
  background: rgba(228, 30, 38, 0.08);
  border: 1px solid rgba(228, 30, 38, 0.14);
  border-radius: 14px;
}
.elmed-path-icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

.elmed-path-body h3 {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 800;
  color: var(--elmed-text);
}
.elmed-path-body p {
  margin: 0;
  color: var(--elmed-muted);
  font-size: 14px;
  line-height: 1.65;
}

.elmed-path-rail {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
}
.elmed-path-rail::before {
  content: "";
  position: absolute;
  top: -7px;
  bottom: -7px;
  inset-inline-end: 50%;
  transform: translateX(50%);
  width: 3px;
  background: var(--elmed-red);
  border-radius: 99px;
  z-index: 0;
}
.elmed-path-step:first-child .elmed-path-rail::before { top: 50%; }
.elmed-path-step:last-child .elmed-path-rail::before { bottom: 50%; }

.elmed-path-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--elmed-red);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 18px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.elmed-path-step:not(:last-child) .elmed-path-rail::after {
  content: "";
  position: absolute;
  bottom: -11px;
  inset-inline-end: 50%;
  transform: translateX(50%);
  width: 11px;
  height: 11px;
  border: 2px solid var(--elmed-red);
  border-radius: 50%;
  background: #fff;
  z-index: 2;
}

.elmed-proof { background: var(--elmed-bg); }

.elmed-audio-row {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.elmed-voice {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(180deg, #f7fcf8 0%, #e8f6ec 100%);
  border: 1px solid rgba(34, 164, 71, 0.2);
  border-start-start-radius: 10px;
  border-start-end-radius: 26px;
  border-end-start-radius: 26px;
  border-end-end-radius: 26px;
  padding: 14px 16px;
  box-shadow: 0 12px 28px rgba(34, 164, 71, 0.12);
}

.elmed-audio-btn {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  padding: 0;
  flex-shrink: 0;
  box-sizing: border-box;
  border: 0;
  border-radius: 50%;
  background: var(--elmed-green);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(34, 164, 71, 0.38);
  appearance: none;
}
.elmed-audio-btn:hover { background: var(--elmed-green-hover); }
.elmed-voice.is-playing .elmed-audio-btn {
  background: var(--elmed-red);
  box-shadow: 0 8px 18px rgba(227, 27, 35, 0.32);
}

.elmed-voice-main { flex: 1; min-width: 0; }
.elmed-voice-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 8px;
}
.elmed-voice-who { font-size: 13px; color: var(--elmed-muted); }
.elmed-voice-who b { color: var(--elmed-text); font-weight: 700; }
.elmed-voice-time {
  font-size: 12px;
  font-weight: 700;
  color: var(--elmed-green);
  background: rgba(34, 164, 71, 0.14);
  border-radius: 999px;
  padding: 3px 9px;
  font-variant-numeric: tabular-nums;
  min-width: 42px;
  text-align: center;
}

.elmed-wave {
  position: relative;
  height: 32px;
  display: flex;
  align-items: center;
  gap: 2.5px;
  overflow: hidden;
  border-radius: 8px;
}
.elmed-wave i {
  flex: 1;
  height: 32%;
  background: #b7e0c4;
  border-radius: 99px;
}
.elmed-wave i:nth-of-type(3n) { height: 64%; }
.elmed-wave i:nth-of-type(4n) { height: 46%; }
.elmed-wave i:nth-of-type(5n) { height: 88%; }
.elmed-wave i:nth-of-type(7n) { height: 38%; }
.elmed-wave-fill {
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: 0;
  background: rgba(34, 164, 71, .22);
  pointer-events: none;
}
.elmed-voice.is-playing .elmed-wave i {
  background: var(--elmed-green);
  animation: elmed-wave .85s ease-in-out infinite alternate;
}

.elmed-voice-video {
  flex-wrap: wrap;
  align-items: flex-start;
}
.elmed-voice-video .elmed-voice-main {
  flex: 1 1 calc(100% - 66px);
  min-width: 0;
}
.elmed-voice-screen {
  position: relative;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
}
.elmed-voice-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #111;
}
.elmed-voice-screen .elmed-wave-fill {
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  height: 4px;
  width: 0;
  background: var(--elmed-green);
  pointer-events: none;
  z-index: 2;
}
.elmed-voice-video.is-playing .elmed-voice-screen {
  box-shadow: 0 0 0 2px rgba(34, 164, 71, 0.35);
}

@keyframes elmed-wave {
  from { transform: scaleY(.55); }
  to { transform: scaleY(1); }
}

.elmed-reviews {
  margin-top: 28px;
  max-width: 440px;
  margin-inline: auto;
}

.elmed-reviews-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  padding-inline: 4px;
}

.elmed-reviews-top .elmed-kicker {
  margin: 0;
}

.elmed-reviews-count {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--elmed-muted);
  font-variant-numeric: tabular-nums;
  background: #fff;
  border: 1px solid var(--elmed-border);
  border-radius: 999px;
  padding: 4px 10px;
}

.elmed-reviews-shell {
  position: relative;
}

.elmed-reviews-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 14px;
  padding: 6px 2px 10px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.elmed-reviews-track::-webkit-scrollbar {
  display: none;
}

.elmed-reviews-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 36px rgba(26, 29, 33, 0.1);
  border: 1px solid rgba(231, 233, 237, 0.95);
}

.elmed-reviews-slide img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(68vh, 560px);
  object-fit: contain;
  background: linear-gradient(180deg, #fafbfc 0%, #f4f5f7 100%);
}

.elmed-reviews-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--elmed-text);
  box-shadow: 0 8px 22px rgba(26, 29, 33, 0.14);
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  flex: 0 0 auto;
  appearance: none;
  -webkit-appearance: none;
  line-height: 1;
}

body.elmed-lp button.elmed-reviews-nav {
  padding: 0 !important;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;
  max-width: 40px !important;
  background: rgba(255, 255, 255, 0.94) !important;
  color: var(--elmed-text) !important;
  border: 0 !important;
  flex: 0 0 auto !important;
  box-shadow: 0 8px 22px rgba(26, 29, 33, 0.14);
}

body.elmed-lp button.elmed-reviews-nav:hover {
  background: #fff !important;
  color: var(--elmed-red) !important;
}

.elmed-reviews-nav:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.elmed-reviews-prev {
  inset-inline-end: 10px;
}

.elmed-reviews-next {
  inset-inline-start: 10px;
}

.elmed-reviews-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.elmed-reviews-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  min-height: 8px;
  max-height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #d5d9e0;
  cursor: pointer;
  flex: 0 0 auto;
  appearance: none;
  -webkit-appearance: none;
  line-height: 1;
  transition: width .25s ease, background .25s ease;
}

body.elmed-lp button.elmed-reviews-dot {
  padding: 0 !important;
  width: 8px !important;
  height: 8px !important;
  min-width: 8px !important;
  min-height: 8px !important;
  max-width: 22px !important;
  max-height: 8px !important;
  background: #d5d9e0 !important;
  border: 0 !important;
  flex: 0 0 auto !important;
}

body.elmed-lp button.elmed-reviews-dot.is-active {
  width: 22px !important;
  min-width: 22px !important;
  background: var(--elmed-red) !important;
}

.elmed-reviews-dot.is-active {
  width: 22px;
  min-width: 22px;
  background: var(--elmed-red);
}

.elmed-msg-row {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  margin-top: 20px;
  margin-inline: -16px;
  padding: 4px 16px 10px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.elmed-msg-row::-webkit-scrollbar { display: none; }
.elmed-msg-row .elmed-msg {
  flex: 0 0 86%;
  scroll-snap-align: start;
}
.elmed-msg {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 18px 16px 16px;
  box-shadow: 0 10px 28px rgba(26, 29, 33, 0.06);
  border: 1px solid rgba(227, 27, 35, 0.07);
}
.elmed-msg::before {
  content: "\201D";
  position: absolute;
  top: 8px;
  left: 12px;
  right: auto;
  font-size: 44px;
  line-height: 1;
  color: var(--elmed-red);
  opacity: 0.16;
  font-family: Georgia, "Times New Roman", serif;
  pointer-events: none;
}
.elmed-msg-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.elmed-msg-ava {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: #fff1f1;
  color: var(--elmed-red);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 16px;
}
.elmed-msg-head strong { display: block; font-size: 15px; line-height: 1.3; white-space: nowrap; }
.elmed-msg-head small { display: block; margin: 2px 0 0; color: var(--elmed-muted); font-size: 12px; }
.elmed-msg p { margin: 0; font-size: 15px; line-height: 1.75; color: var(--elmed-text); }

.elmed-offer.elmed-section {
  background: var(--elmed-white);
  color: var(--elmed-text);
  padding: 0 0 32px;
}
.elmed-offer-scene {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.elmed-offer-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
  z-index: 0;
}
.elmed-offer-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.06) 32%, rgba(70, 12, 16, 0.22) 62%, rgba(50, 8, 12, 0.48) 100%);
}
.elmed-offer-scene-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  min-height: 720px;
  padding: 84px 0 28px;
}
.elmed-offer-scene .elmed-h2 {
  color: #fff;
  text-align: center;
  margin: 0;
  max-width: 14em;
  margin-inline: auto;
  font-size: clamp(22px, 6vw, 36px);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}
.elmed-offer-facespace {
  flex: 1 0 340px;
  min-height: 340px;
}
.elmed-offer-card {
  width: 100%;
  margin: 0;
  background: #fff;
  color: var(--elmed-text);
  border-radius: 24px;
  padding: 16px 16px 14px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(26, 29, 33, 0.22);
  position: relative;
  z-index: 3;
}
.elmed-offer .elmed-lead {
  color: var(--elmed-muted);
  margin-inline: auto;
  text-align: center;
}
.elmed-offer-intro { text-align: right; font-size: 14px; margin: 0 0 8px; }
.elmed-offer-card .elmed-btn { width: 100%; }
.elmed-offer-card .elmed-kicker { font-size: 12px; margin: 0 0 4px; }
.elmed-price {
  font-size: clamp(32px, 8vw, 44px);
  font-weight: 800;
  color: var(--elmed-red);
  margin: 2px 0 2px;
  line-height: 1;
}
.elmed-price-note { color: var(--elmed-muted); margin: 0 0 10px; font-size: 13px; }
.elmed-check { list-style: none; margin: 0 0 14px; padding: 0; text-align: right; }
.elmed-check li { display: flex; gap: 10px; margin-bottom: 6px; font-size: 14px; line-height: 1.5; }
.elmed-check li::before {
  content: "";
  width: 18px; height: 18px; min-width: 18px; margin-top: 2px; border-radius: 50%;
  background: var(--elmed-green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' d='M1 5l3.2 3L11 1'/%3E%3C/svg%3E") center / 10px 8px no-repeat;
}
.elmed-offer-card .elmed-lead { font-size: 13px; margin: 0 0 12px; }

.elmed-trust-row {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.elmed-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--elmed-border);
  border-radius: 16px;
  padding: 12px 14px;
  text-align: right;
}
.elmed-trust-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 14px;
  background: #eaf7ee;
  color: var(--elmed-green);
  display: grid;
  place-items: center;
}
.elmed-trust-item b { display: block; font-size: 15px; margin-bottom: 2px; }
.elmed-trust-item p { display: block; margin: 0; color: var(--elmed-muted); font-size: 13px; line-height: 1.5; }

.elmed-steps-row { display: grid; gap: 18px; margin-top: 24px; }
.elmed-step { text-align: center; }
.elmed-step-num {
  width: 52px; height: 52px; margin: 0 auto 10px; border-radius: 16px;
  background: #fff1f1; color: var(--elmed-red);
  display: grid; place-items: center; font-size: 24px; font-weight: 800;
}

.elmed-footer {
  border-top: 1px solid var(--elmed-border);
  padding: 24px 0 36px;
  color: var(--elmed-muted);
  font-size: 13px;
  text-align: center;
}

.elmed-hero .elmed-btn-primary { width: 100%; }

@media (min-width: 768px) {
  body.elmed-lp { font-size: 18px; padding-bottom: 0; }
  .elmed-wrap { width: min(var(--elmed-max), calc(100% - 48px)); }
  .elmed-header-inner { min-height: 88px; }
  .elmed-logo-img {
    height: 76px;
    max-width: 242px;
  }
  .elmed-section { padding-block: 88px; }
  .elmed-hero { padding: 48px 0 72px; }
  .elmed-hero .elmed-btn-primary { width: auto; }
  .elmed-hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    grid-template-areas:
      "copy photo"
      "actions photo";
    column-gap: 40px;
    row-gap: 16px;
    align-items: center;
  }
  .elmed-hero-copy { grid-area: copy; }
  .elmed-hero-actions { grid-area: actions; }
  .elmed-hero-photo {
    grid-area: photo;
    width: 100%;
    max-width: none;
    max-height: min(78vh, 640px);
    margin: 0;
  }
  .elmed-proof .elmed-h2,
  .elmed-proof .elmed-lead { margin-inline: auto; text-align: center; }
  .elmed-audio-row { max-width: 720px; margin-inline: auto; }
  .elmed-reviews { max-width: 400px; }
  .elmed-reviews-slide img { max-height: 620px; }
  .elmed-path { gap: 16px; max-width: 720px; margin-inline: auto; }
  .elmed-path-card { padding: 18px 22px; grid-template-columns: 1fr 52px; }
  .elmed-path-icon { width: 52px; height: 52px; }
  .elmed-path-icon svg { width: 38px; height: 38px; }
  .elmed-path-body h3 { font-size: 18px; }
  .elmed-path-body p { font-size: 15px; }
  .elmed-voice-screen { height: 160px; }
  .elmed-msg-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow: visible;
    margin-inline: 0;
    padding: 4px 0 0;
  }
  .elmed-msg-row .elmed-msg { flex: none; min-width: 0; }
  .elmed-steps-row { grid-template-columns: repeat(3, 1fr); }
  .elmed-trust-row { grid-template-columns: repeat(3, 1fr); }
  .elmed-offer.elmed-section { padding: 0 0 88px; }
  .elmed-offer-scene-inner {
    min-height: 760px;
    padding: 84px 0 40px;
  }
  .elmed-offer-facespace {
    flex-basis: 380px;
    min-height: 380px;
  }
  .elmed-offer-card { width: min(460px, 100%); margin-inline: auto; }
}

@media (min-width: 1024px) {
  .elmed-msg-row { grid-template-columns: repeat(4, 1fr); }
}
