.download-page {
  background: #fff;
}
.download-hero {
  position: relative;
  width: 100%;
  max-height: 520px;
  overflow: hidden;
}
.download-hero img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
}
.download-toolbar {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.download-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 6px;
  background: rgba(30, 80, 140, 0.75);
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  backdrop-filter: blur(4px);
}
.download-back:hover {
  background: rgba(30, 80, 140, 0.9);
  color: #fff;
}
.download-panel {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px 56px;
  text-align: center;
}
.download-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  border-radius: 999px;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.download-pill:hover {
  background: #fafafa;
  color: #111;
}
.download-pill svg {
  flex-shrink: 0;
}
.download-cta-wrap {
  background: #f8f8f8;
  padding: 72px 24px 88px;
}
.download-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) {
  .download-cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .download-cta-visual {
    order: -1;
  }
}
.download-cta-inner h2 {
  margin: 0 0 28px;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: #f79414;
  text-align: left;
}
@media (max-width: 900px) {
  .download-cta-inner h2 {
    text-align: center;
  }
}
.download-cta-inner .download-pill {
  font-size: 15px;
  text-transform: none;
}
.download-cta-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 220px;
}
.download-mglass {
  position: relative;
  width: 200px;
  height: 200px;
  border: 10px solid rgba(180, 190, 200, 0.85);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 248, 252, 0.9) 100%);
  box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.8), 0 20px 50px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.download-mglass::after {
  content: "";
  position: absolute;
  width: 72px;
  height: 14px;
  background: linear-gradient(180deg, #c8d0d8 0%, #a8b0b8 100%);
  border-radius: 8px;
  bottom: -8px;
  right: -36px;
  transform: rotate(42deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.download-mglass span {
  font-size: 26px;
  font-weight: 800;
  color: #f79414;
  transform: scale(1.08);
  letter-spacing: 0.02em;
}
