.download-section {
  position: relative;
  scroll-margin-top: 96px;
  padding: 88px 0;
  background:
    radial-gradient(circle at 84% 4%, rgba(0, 200, 128, 0.10), transparent 32%),
    linear-gradient(180deg, #fff 0%, #f6faf8 100%);
  border-top: 1px solid #e8edf3;
  border-bottom: 1px solid #e8edf3;
}

.download-section.dark {
  background:
    radial-gradient(circle at 82% 0%, rgba(78, 226, 169, 0.16), transparent 34%),
    linear-gradient(135deg, #073b2b 0%, #075f42 54%, #08734f 100%);
  border: 0;
  color: #fff;
}

.download-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1fr);
  gap: 72px;
  align-items: center;
}

.download-kicker {
  margin-bottom: 14px;
  color: #08734f;
  font-size: 13px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.download-section.dark .download-kicker {
  color: rgba(255,255,255,0.70);
}

.download-copy h2 {
  margin: 0 0 14px;
  color: #111827;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.14;
  font-weight: 950;
  letter-spacing: 0;
}

.download-section.dark .download-copy h2 {
  color: #fff;
}

.download-copy p {
  margin: 0;
  max-width: 520px;
  color: #667085;
  font-size: 16px;
  line-height: 1.72;
  font-weight: 680;
}

.download-section.dark .download-copy p {
  color: rgba(255,255,255,0.72);
}

.download-panel {
  position: relative;
  padding: 10px 0;
  background: transparent;
}

.download-section.dark .download-panel {
  background: transparent;
}

.download-panel::before {
  content: none;
}

.download-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 0;
}

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

.download-button {
  min-height: 76px;
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 15px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.94);
  color: #111827;
  text-decoration: none;
  border: 1px solid rgba(223, 231, 240, 0.96);
  box-shadow: 0 12px 28px rgba(20, 32, 51, 0.08);
  backdrop-filter: blur(10px);
}

.download-button.apk {
  grid-column: auto;
  background: rgba(255,255,255,0.98);
  color: #08734f;
  border: 1.5px solid rgba(0, 200, 128, 0.56);
  box-shadow: 0 12px 26px rgba(0, 200, 128, 0.10);
}

.download-button small {
  display: block;
  margin-bottom: 4px;
  color: #667085;
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
}

.download-button.apk small {
  color: #667085;
}

.download-button strong {
  display: block;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 950;
  white-space: nowrap;
}

.download-mark,
.download-arrow {
  display: grid;
  place-items: center;
}

.download-mark svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.download-mark.google svg {
  fill: none;
}

.download-arrow svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.download-note {
  margin-top: 16px;
  color: #667085;
  font-size: 12px;
  line-height: 1.6;
  font-weight: 680;
}

.download-section.dark .download-note {
  color: rgba(255,255,255,0.56);
}

@media (max-width: 980px) {
  .download-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .download-panel {
    padding: 0;
  }
}

@media (max-width: 640px) {
  .download-section {
    padding: 64px 0;
  }

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

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

  .download-button {
    min-height: 78px;
  }

  .download-button strong {
    font-size: 20px;
  }
}
