/* =========================================================
   MUNIR Website
   Version: 2.0
   ========================================================= */


/* =========================================================
1. Reset & Base
   ========================================================= */


/* =========================================================
2. Navigation
   ========================================================= */


/* =========================================================
3. Hero
   ========================================================= */


/* =========================================================
4. Why MUNIR
   ========================================================= */


/* =========================================================
5. Feature Sections
   ========================================================= */


/* =========================================================
6. Download CTA
   ========================================================= */


/* =========================================================
7. Footer
   ========================================================= */


/* =========================================================
8. Responsive
   ========================================================= */

    :root {
      --emerald: #123f36;
      --emerald-dark: #0b2d27;
      --emerald-soft: #dce9e3;
      --ivory: #f8f5ed;
      --cream: #efe9dc;
      --gold: #b89555;
      --charcoal: #1e2925;
      --muted: #66736e;
      --white: #ffffff;
      --border: rgba(18, 63, 54, 0.12);
      --shadow: 0 24px 70px rgba(11, 45, 39, 0.12);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Plus Jakarta Sans", sans-serif;
      background: var(--ivory);
      color: var(--charcoal);
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .page-shell {
      min-height: 100vh;
      background:
        radial-gradient(
          circle at 85% 10%,
          rgba(184, 149, 85, 0.15),
          transparent 28%
        ),
        radial-gradient(
          circle at 10% 25%,
          rgba(18, 63, 54, 0.08),
          transparent 30%
        ),
        var(--ivory);
    }

    .container {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
    }

    header {
      padding: 24px 0;
    }

    .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 13px;
    }

    .brand-mark {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      background: var(--emerald);
      color: var(--ivory);
      display: grid;
      place-items: center;
      font-size: 22px;
      font-weight: 800;
      box-shadow: 0 12px 28px rgba(18, 63, 54, 0.18);
    }

    .brand-name {
      font-size: 20px;
      font-weight: 800;
      letter-spacing: 0.16em;
      color: var(--emerald-dark);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 600;
    }

    .nav-links a {
      transition: color 0.2s ease;
    }

    .nav-links a:hover {
      color: var(--emerald);
    }

    .hero {
      min-height: 720px;
      display: grid;
      grid-template-columns: 1.08fr 0.92fr;
      align-items: center;
      gap: 70px;
      padding: 70px 0 100px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 9px 14px;
      border-radius: 999px;
      background: rgba(18, 63, 54, 0.08);
      color: var(--emerald);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.04em;
      margin-bottom: 24px;
    }

    .eyebrow-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--gold);
    }

    h1 {
      max-width: 720px;
      font-size: clamp(48px, 7vw, 84px);
      line-height: 1.02;
      letter-spacing: -0.055em;
      color: var(--emerald-dark);
      margin-bottom: 26px;
    }

    .hero-highlight {
      color: var(--gold);
    }

    .hero-copy {
      max-width: 610px;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.8;
      margin-bottom: 34px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 34px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 54px;
      padding: 0 24px;
      border-radius: 16px;
      font-size: 14px;
      font-weight: 700;
      transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
    }

    .button:hover {
      transform: translateY(-2px);
    }


    .hero-actions img:hover {
      transform: translateY(-2px);
      filter: brightness(1.04);
    }

    .button-primary {
      background: var(--emerald);
      color: var(--white);
      box-shadow: 0 14px 30px rgba(18, 63, 54, 0.22);
    }

    .button-primary:hover {
      background: var(--emerald-dark);
    }

    .button-secondary {
      border: 1px solid var(--border);
      background: rgba(255, 255, 255, 0.55);
      color: var(--emerald);
    }

    .release-note {
      color: var(--muted);
      font-size: 13px;
    }

    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 560px;
    }

    .glow {
      position: absolute;
      width: 620px;
      height: 620px;
      border-radius: 50%;
      background:
        radial-gradient(
          circle,
          rgba(184,149,85,0.26) 0%,
          rgba(18,63,54,0.14) 42%,
          transparent 72%
        );
      filter: blur(32px);
      animation: breathe 8s ease-in-out infinite;
    }

    @keyframes breathe {
      0% {
        transform: scale(0.96);
        opacity: 0.72;
      }

      50% {
        transform: scale(1.04);
        opacity: 1;
      }

      100% {
        transform: scale(0.96);
        opacity: 0.72;
      }
    }

    .phone {
      position: relative;
      width: 300px;
      height: 610px;
      padding: 13px;
      border-radius: 48px;
      background: #13211d;
      box-shadow:
        0 45px 90px rgba(11, 45, 39, 0.25),
        inset 0 0 0 2px rgba(255, 255, 255, 0.08);
      transform: rotate(3deg);
      z-index: 2;
    }

    .phone-side {
      position: absolute;
      width: 255px;
      height: 520px;
      opacity: 0.92;
      z-index: 1;
      filter: saturate(0.88);
      transition: transform 0.35s ease, opacity 0.35s ease;
    }

    .phone-left {
      left: -85px;
      top: 115px;
      transform: rotate(-7deg) scale(0.9);
    }

    .phone-right {
      right: -85px;
      top: 115px;
      transform: rotate(7deg) scale(0.9);
    }

    .phone-side:hover {
      opacity: 1;
    }

    .phone-left:hover {
      transform: rotate(-4deg) scale(0.94) translateY(-8px);
    }

    .phone-right:hover {
      transform: rotate(4deg) scale(0.94) translateY(-8px);
    }

    .hero-visual > .phone:not(.phone-side) {
      z-index: 3;
      transform: rotate(1deg);
    }

    .phone-screen {
      position: relative;
      height: 100%;
      overflow: hidden;
      border-radius: 37px;
      background:
        radial-gradient(
          circle at 80% 0%,
          rgba(184, 149, 85, 0.22),
          transparent 33%
        ),
        #f7f3e8;
      padding: 30px 20px 22px;
    }

    .phone-screenshot {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: top center;
    }

    .phone-notch {
      position: absolute;
      top: 21px;
      left: 50%;
      width: 92px;
      height: 24px;
      border-radius: 20px;
      background: #13211d;
      transform: translateX(-50%);
      z-index: 3;
    }

    .phone-welcome {
      margin-top: 26px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 600;
    }

    .phone-title {
      color: var(--emerald-dark);
      font-size: 25px;
      line-height: 1.2;
      margin-top: 4px;
      margin-bottom: 20px;
    }

    .prayer-card {
      padding: 20px;
      border-radius: 24px;
      background: var(--emerald);
      color: var(--white);
      box-shadow: 0 18px 35px rgba(18, 63, 54, 0.2);
    }

    .prayer-label {
      color: rgba(255, 255, 255, 0.65);
      font-size: 11px;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .prayer-name {
      font-size: 22px;
      font-weight: 800;
    }

    .prayer-time {
      color: #ddc490;
      font-size: 13px;
      margin-top: 6px;
    }

    .phone-section-label {
      margin: 22px 0 12px;
      color: var(--emerald-dark);
      font-size: 13px;
      font-weight: 800;
    }

    .phone-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }

    .phone-tile {
      min-height: 96px;
      padding: 14px;
      border: 1px solid rgba(18, 63, 54, 0.08);
      border-radius: 19px;
      background: rgba(255, 255, 255, 0.72);
    }

    .phone-icon {
      font-size: 20px;
      margin-bottom: 9px;
    }

    .phone-tile strong {
      display: block;
      color: var(--emerald-dark);
      font-size: 12px;
    }

    .phone-tile span {
      display: block;
      color: var(--muted);
      font-size: 9px;
      margin-top: 3px;
    }

    .floating-card {
      position: absolute;
      z-index: 3;
      padding: 16px 18px;
      border: 1px solid rgba(18, 63, 54, 0.08);
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.84);
      backdrop-filter: blur(14px);
      box-shadow: var(--shadow);
    }

    .floating-card strong {
      display: block;
      color: var(--emerald-dark);
      font-size: 13px;
    }

    .floating-card span {
      color: var(--muted);
      font-size: 11px;
    }

    .floating-one {
      display: none;
      top: 88px;
      right: -10px;
    }

    .floating-two {
      display: none;
      bottom: 90px;
      left: -8px;
    }

    .features {
      padding: 110px 0;
      background: var(--white);
    }

    .section-heading {
      max-width: 720px;
      margin: 0 auto 56px;
      text-align: center;
    }

    .section-heading .eyebrow {
      margin-bottom: 18px;
    }

    h2 {
      color: var(--emerald-dark);
      font-size: clamp(36px, 5vw, 56px);
      line-height: 1.12;
      letter-spacing: -0.04em;
      margin-bottom: 20px;
    }

    .section-heading p {
      color: var(--muted);
      font-size: 17px;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .feature-card {
      min-height: 290px;
      padding: 34px;
      border: 1px solid var(--border);
      border-radius: 28px;
      background: #fbfaf6;
      transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
    }

    .feature-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow);
    }

    .feature-icon {
      width: 54px;
      height: 54px;
      border-radius: 17px;
      background: var(--emerald-soft);
      display: grid;
      place-items: center;
      font-size: 24px;
      margin-bottom: 28px;
    }

    .feature-card h3 {
      color: var(--emerald-dark);
      font-size: 21px;
      margin-bottom: 12px;
    }

    .feature-card p {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.75;
    }

    .intention {
      padding: 120px 0;
      background: var(--emerald-dark);
      color: var(--white);
    }

    .intention-inner {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      align-items: center;
      gap: 90px;
    }

    .intention-mark {
      width: min(360px, 100%);
      aspect-ratio: 1;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 50%;
      display: grid;
      place-items: center;
      margin: 0 auto;
      background:
        radial-gradient(
          circle,
          rgba(184, 149, 85, 0.18),
          transparent 64%
        );
    }

    .intention-letter {
      color: var(--cream);
      font-size: 150px;
      font-weight: 800;
      letter-spacing: -0.12em;
      transform: translateX(-8px);
    }

    .intention-copy .eyebrow {
      background: rgba(255, 255, 255, 0.08);
      color: #e5d2ab;
    }

    .intention-copy h2 {
      color: var(--white);
    }

    .intention-copy p {
      max-width: 620px;
      color: rgba(255, 255, 255, 0.68);
      font-size: 17px;
      line-height: 1.85;
      margin-bottom: 22px;
    }

    .quote {
      color: #e5d2ab;
      font-size: 18px;
      font-weight: 700;
    }

    .cta {
      padding: 110px 0;
    }

    .cta-box {
      padding: 70px 42px;
      border-radius: 36px;
      text-align: center;
      background:
        radial-gradient(
          circle at 80% 0%,
          rgba(184, 149, 85, 0.2),
          transparent 35%
        ),
        var(--emerald);
      color: var(--white);
      box-shadow: var(--shadow);
    }

    .cta-box h2 {
      color: var(--white);
      max-width: 760px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-box p {
      max-width: 610px;
      margin: 0 auto 30px;
      color: rgba(255, 255, 255, 0.7);
      font-size: 17px;
    }

    .cta-box .button {
      background: var(--cream);
      color: var(--emerald-dark);
    }

    footer {
      padding: 28px 0 40px;
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding-top: 28px;
      border-top: 1px solid var(--border);
      color: var(--muted);
      font-size: 13px;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 22px;
      font-weight: 600;
    }

    .footer-links a:hover {
      color: var(--emerald);
    }

    @media (max-width: 900px) {
      .nav-links {
        display: none;
      }

      .hero {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-top: 55px;
        text-align: center;
      }

      .hero-copy {
        margin-left: auto;
        margin-right: auto;
      }

      .hero-actions {
        justify-content: center;
      }

      .hero-visual {
        margin-top: 20px;
      }

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

      .feature-card {
        min-height: auto;
      }

      .intention-inner {
        grid-template-columns: 1fr;
        gap: 55px;
        text-align: center;
      }

      .intention-copy p {
        margin-left: auto;
        margin-right: auto;
      }
    }

    @media (max-width: 560px) {
      .container {
        width: min(100% - 26px, 1180px);
      }

      header {
        padding-top: 18px;
      }

      .brand-mark {
        width: 42px;
        height: 42px;
      }

      .brand-name {
        font-size: 17px;
      }

      .hero {
        min-height: auto;
        padding: 50px 0 80px;
      }

      h1 {
        font-size: 48px;
      }

      .hero-copy {
        font-size: 16px;
      }

      .hero-actions {
        flex-direction: column;
      }

      .button {
        width: 100%;
      }

      .hero-visual {
        min-height: 540px;
      }

      .phone {
        width: 265px;
        height: 540px;
      }

      .floating-card {
        display: none;
      }

      .features,
      .intention,
      .cta {
        padding: 80px 0;
      }

      .feature-card {
        padding: 28px;
      }

      .intention-mark {
        width: 270px;
      }

      .intention-letter {
        font-size: 112px;
      }

      .cta-box {
        padding: 55px 24px;
      }

      .footer-inner {
        flex-direction: column;
        text-align: center;
      }
    }

/* =========================================================
   Prayer Showcase
   ========================================================= */

.showcase-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
}

.showcase-copy {
  max-width: 560px;
}

.showcase-copy h2 {
  margin: 20px 0 22px;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.showcase-copy > p {
  max-width: 540px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.showcase-points {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.showcase-point {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 0.98rem;
  font-weight: 600;
}

.showcase-point span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(24, 92, 72, 0.1);
  color: var(--emerald);
  font-size: 0.82rem;
}

.showcase-visual {
  position: relative;
  display: grid;
  min-height: 650px;
  place-items: center;
}

.showcase-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(198, 174, 119, 0.2) 0%,
      rgba(119, 166, 146, 0.15) 38%,
      rgba(255, 255, 255, 0) 72%
    );
  filter: blur(8px);
}

.showcase-phone {
  position: relative;
  z-index: 1;
  width: min(330px, 82%);
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 48px;
  background: rgba(255,255,255,.55);
  box-shadow:
    0 70px 140px rgba(12, 32, 25, 0.18),
    0 30px 60px rgba(12, 32, 25, 0.10),
    0 10px 18px rgba(255,255,255,0.55) inset;
  backdrop-filter: blur(18px);
  transform: rotate(2.5deg);
  transition:
    transform 350ms ease,
    box-shadow 350ms ease;
}

.showcase-phone:hover {
  transform: rotate(0deg) translateY(-8px);
  box-shadow:
    0 55px 110px rgba(28, 54, 45, 0.21),
    0 16px 36px rgba(28, 54, 45, 0.11);
}

.showcase-phone img {
  display: block;
  width: 100%;
  border-radius: 39px;
}

.prayer-showcase {
  background:
    linear-gradient(
      180deg,
      rgba(248, 246, 239, 0) 0%,
      rgba(237, 242, 237, 0.72) 50%,
      rgba(248, 246, 239, 0) 100%
    );
}

@media (max-width: 900px) {
  .showcase-section {
    padding: 90px 0;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .showcase-copy {
    max-width: 680px;
  }

  .showcase-visual {
    min-height: 560px;
  }
}

@media (max-width: 600px) {
  .showcase-section {
    padding: 72px 0;
  }

  .showcase-copy h2 {
    font-size: clamp(2.3rem, 12vw, 3.5rem);
  }

  .showcase-visual {
    min-height: 500px;
  }

  .showcase-phone {
    width: min(300px, 88%);
    border-radius: 42px;
  }

  .showcase-phone img {
    border-radius: 34px;
  }
}

/* =========================================================
   Adhkar Showcase
   ========================================================= */

.adhkar-showcase {
  background:
    linear-gradient(
      180deg,
      rgba(248, 246, 239, 0) 0%,
      rgba(245, 238, 226, 0.72) 50%,
      rgba(248, 246, 239, 0) 100%
    );
}

.showcase-grid-reverse {
  grid-template-columns: 1fr 1fr;
}

.showcase-dual-visual {
  position: relative;
  min-height: 700px;
}

.showcase-phone-front,
.showcase-phone-back {
  position: absolute;
}

.showcase-phone-front {
  z-index: 2;
  right: 7%;
  transform: rotate(3deg);
}

.showcase-phone-back {
  z-index: 1;
  left: 5%;
  transform: rotate(-7deg) translateY(34px) scale(0.92);
  opacity: 0.9;
}

.showcase-phone-front:hover {
  transform: rotate(0deg) translateY(-8px);
}

.showcase-phone-back:hover {
  transform: rotate(-3deg) translateY(20px) scale(0.95);
  opacity: 1;
}

@media (max-width: 900px) {
  .showcase-grid-reverse {
    grid-template-columns: 1fr;
  }

  .showcase-dual-visual {
    order: 2;
    min-height: 620px;
  }

  .adhkar-showcase .showcase-copy {
    order: 1;
  }
}

@media (max-width: 600px) {
  .showcase-dual-visual {
    min-height: 520px;
  }

  .showcase-phone-front {
    right: 1%;
    width: min(245px, 68%);
  }

  .showcase-phone-back {
    left: 0;
    width: min(230px, 64%);
  }
}

/* =========================================================
   Qur'an Showcase
   ========================================================= */

.quran-showcase {
  background:
    linear-gradient(
      180deg,
      rgba(248,246,239,0) 0%,
      rgba(235,244,240,0.70) 50%,
      rgba(248,246,239,0) 100%
    );
}

/* =========================================================
   Qiblah Showcase
   ========================================================= */

.qiblah-showcase {
  background:
    linear-gradient(
      180deg,
      rgba(248,246,239,0) 0%,
      rgba(240,246,244,0.72) 50%,
      rgba(248,246,239,0) 100%
    );
}

/* =========================================================
   Hifz Showcase
   ========================================================= */

.hifz-showcase {
  background:
    linear-gradient(
      180deg,
      rgba(248,246,239,0) 0%,
      rgba(246,242,232,0.70) 50%,
      rgba(248,246,239,0) 100%
    );
}
/* =========================================================
   The Heart of MUNIR
   ========================================================= */

.heart-section {
  position: relative;
  padding: 130px 0 150px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 15%,
      rgba(198, 174, 119, 0.16),
      rgba(198, 174, 119, 0) 34%
    ),
    linear-gradient(
      180deg,
      #f8f6ef 0%,
      #f2eee4 52%,
      #f8f6ef 100%
    );
}

.heart-heading {
  max-width: 820px;
  margin: 0 auto 72px;
  text-align: center;
}

.heart-heading .eyebrow {
  justify-content: center;
}

.heart-heading h2 {
  margin: 22px 0 24px;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.heart-heading p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.heart-grid{
    display:grid;

    grid-template-columns:
        1fr
        1.22fr
        1fr;

    gap:34px;

    align-items:start;
}

.heart-card {
  position: relative;
  overflow: hidden;
  padding: 12px 12px 30px;
  border: 1px solid rgba(198, 174, 119, 0.24);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow:
    0 36px 80px rgba(14, 37, 29, 0.12),
    0 12px 28px rgba(14, 37, 29, 0.07);
  backdrop-filter: blur(16px);
  transition:
    transform .45s ease,
    box-shadow .45s ease;
}

.heart-card:hover{

    transform:
        translateY(-14px)
        scale(1.015);

    box-shadow:
        0 60px 130px rgba(14,37,29,.18),
        0 18px 40px rgba(14,37,29,.08);

}

.heart-card:nth-child(2){

    transform:translateY(-28px);

}

.heart-card:nth-child(2):hover{

    transform:
        translateY(-42px)
        scale(1.02);

}

.heart-card img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top center;
  border-radius: 24px;
}

.heart-card h3 {
  margin: 26px 18px 10px;
  color: var(--emerald);
  font-size: 1.45rem;
  line-height: 1.2;
}

.heart-card p {
  margin: 0 18px;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 1000px) {
  .heart-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .heart-card:last-child {
    grid-column: 1 / -1;
    width: min(520px, 100%);
    justify-self: center;
  }
}

@media (max-width: 700px) {
  .heart-section {
    padding: 92px 0 105px;
  }

  .heart-heading {
    margin-bottom: 48px;
  }

  .heart-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .heart-card,
  .heart-card:last-child {
    width: 100%;
    grid-column: auto;
  }

  .heart-card img {
    aspect-ratio: 4 / 5;
  }
}
/* =========================================================
   Download Actions
   ========================================================= */

.download-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.download-badge {
  display: block;
  width: 190px;
  height: auto;
  transition:
    transform 250ms ease,
    filter 250ms ease;
}

.download-badge:hover {
  transform: translateY(-3px);
  filter: brightness(1.04);
}

.download-support-link {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid rgba(248, 246, 239, 0.34);
  border-radius: 16px;
  color: #f8f6ef;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 250ms ease,
    transform 250ms ease;
}

.download-support-link:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

@media (max-width: 600px) {
  .download-actions {
    flex-direction: column;
  }

  .download-support-link {
    width: min(280px, 100%);
  }
}
