.download-body {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  gap: 0;
}

.download-hero {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: clamp(36px, 5vw, 64px);
  row-gap: clamp(20px, 3vw, 32px);
  padding: clamp(56px, 8vw, 90px) clamp(24px, 8vw, 96px);
  width: 100%;
  border-radius: 0;
  color: #1f1640;
  background: rgba(255, 255, 255, 0.9);
  isolation: isolate;
}

.download-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--download-bg);
  background-size: cover;
  background-position: center;
  filter: saturate(120%);
  opacity: 0.55;
}

.download-hero__content,
.download-hero__media {
  position: relative;
  z-index: 1;
}

.download-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(16px, 3vw, 26px);
  flex: 1 1 320px;
  max-width: 540px;
}

.download-hero__content h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 60px);
  color: #14092a;
}

.download-hero__content p {
  margin: 0;
  font-size: var(--font-size-md);
  line-height: 1.8;
}

.download-hero__media {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 320px;
}

.download-hero__media img {
  width: 100%;
  height: auto;
}

.download-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1fr);
  gap: clamp(32px, 5vw, 64px);
  padding: clamp(48px, 7vw, 72px) clamp(24px, 8vw, 96px);
  border-radius: 0;
  background: #9013fe;
  color: #fef5ff;
  box-shadow: 0 26px 46px rgba(23, 0, 53, 0.35);
  width: 100%;
  align-items: stretch;
}

.download-feature__media {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.download-feature__media img {
  width: min(420px, 100%);
  max-width: 520px;
}

.download-feature__content {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 3vw, 22px);
  justify-content: center;
}

.download-feature__content h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 46px);
}

.download-feature__content p {
  margin: 0;
  font-size: var(--font-size-md);
  line-height: 1.7;
}

.download-feature__list {
  margin: 0;
  padding-left: 20px;
  font-size: var(--font-size-sm);
  line-height: 1.8;
  color: rgba(254, 245, 255, 0.85);
}

.download-cta {
  position: relative;
  border-radius: 0;
  padding: clamp(48px, 9vw, 74px) clamp(24px, 8vw, 96px);
  background: rgba(255, 255, 255, 0.85);
  overflow: hidden;
  width: 100%;
  isolation: isolate;
}

.download-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--download-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  filter: saturate(115%);
}

.download-cta__glow {
  position: absolute;
  inset: 10% -20% -20% 45%;
  background: radial-gradient(circle at center, rgba(255, 210, 77, 0.5), rgba(255, 105, 0, 0));
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.download-cta__body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 6vw, 56px);
  align-items: stretch;
}

.download-cta__content {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vw, 28px);
  align-self: center;
  max-width: 520px;
}

.download-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(31, 22, 64, 0.08);
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(31, 22, 64, 0.8);
}

.download-cta__content h3 {
  margin: 0;
  font-size: clamp(34px, 5vw, 48px);
  color: #1b1238;
}

.download-cta__content p {
  margin: 0;
  font-size: var(--font-size-sm);
  line-height: 1.7;
  color: rgba(31, 22, 64, 0.82);
}

.download-cta__perks {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: var(--font-size-sm);
  line-height: 1.8;
  color: rgba(31, 22, 64, 0.78);
}

.download-cta__panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(18px, 4vw, 26px);
}

.download-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 3vw, 20px);
  padding: clamp(26px, 4vw, 34px);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 32px 60px rgba(30, 8, 68, 0.18);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  text-align: left;
}

.download-card--primary {
  background: linear-gradient(150deg, rgba(255, 240, 180, 0.92), rgba(255, 140, 20, 0.82));
  color: #1c1039;
  box-shadow: 0 36px 70px rgba(255, 140, 20, 0.28);
}

.download-card--secondary {
  background: rgba(255, 255, 255, 0.72);
}

.download-card__badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(41, 16, 72, 0.12);
  color: rgba(41, 16, 72, 0.88);
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.download-card__badge--outline {
  background: transparent;
  border: 1px solid rgba(41, 16, 72, 0.22);
}

.download-card h4 {
  margin: 0;
  font-size: clamp(24px, 4vw, 32px);
  color: #1b1238;
}

.download-card__subtitle {
  margin: 0;
  font-size: var(--font-size-sm);
  line-height: 1.6;
  color: rgba(27, 18, 56, 0.78);
}

.download-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(130deg, #ffde5c, #ff9204);
  color: #291048;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  box-shadow: 0 16px 30px rgba(41, 16, 72, 0.25);
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--duration-fast) var(--easing-primary),
    box-shadow var(--duration-fast) var(--easing-primary);
}

.download-card__button:hover,
.download-card__button:focus-visible {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 36px rgba(41, 16, 72, 0.32);
}

.download-card__button--ghost {
  background: rgba(41, 16, 72, 0.08);
  color: rgba(41, 16, 72, 0.86);
  box-shadow: none;
}

.download-card__button--ghost:hover,
.download-card__button--ghost:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(41, 16, 72, 0.15);
}

.download-card__meta {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: var(--font-size-xs);
  line-height: 1.7;
  color: rgba(27, 18, 56, 0.72);
}

.download-card__foot {
  margin-top: auto;
}

.download-card__stamp {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 12px;
  border: 1px dashed rgba(27, 18, 56, 0.2);
  font-size: var(--font-size-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(27, 18, 56, 0.65);
}

@media (max-width: 1024px) {
  .download-hero__content,
  .download-feature__content,
  .download-cta__content {
    align-items: center;
    text-align: center;
  }

  .download-feature {
    grid-template-columns: 1fr;
  }

  .download-hero__content p,
  .download-feature__content p,
  .download-cta__content p {
    max-width: 600px;
  }

  .download-cta__body {
    grid-template-columns: 1fr;
  }

  .download-feature__media img {
    max-width: 360px;
  }

  .download-cta__panel {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .download-body {
    gap: clamp(20px, 7vh, 36px);
  }

  .download-hero,
  .download-feature,
  .download-cta {
    padding: clamp(32px, 12vw, 44px) clamp(18px, 9vw, 32px);
    text-align: center;
  }

  .download-hero__content,
  .download-feature__content {
    align-items: center;
  }

  .download-cta__perks {
    padding-left: 0;
    list-style-position: inside;
  }

  .download-feature__list {
    padding-left: 0;
    list-style-position: inside;
  }

  .download-feature__list {
    padding-left: 0;
  }

}
