/* =========================================================
   1) GLOBAL RESET + BASE
   Controls the entire site foundation
   ========================================================= */

html, body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #111827;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
}

/* =========================================================
   2) TOP URGENCY BAR
   Small strip above nav
   ========================================================= */

.urgency-bar {
  background: #dfe9ff;
  color: #20345f;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* =========================================================
   3) NAVIGATION
   Main top nav + active links + mobile menu
   ========================================================= */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #edf1f7;
}

.logo a {
  color: #2f80ed;
  font-weight: 800;
  font-size: 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.nav-links a {
  color: #1f2937;
  font-size: 15px;
  font-weight: 600;
}

.nav-links a.active,
.mobile-menu a.active {
  color: #2f80ed;
  font-weight: 700;
  background: #eef4ff;
  padding: 8px 12px;
  border-radius: 999px;
}

.nav-cta {
  display: flex;
  align-items: center;
}

/* =========================================================
   4) BUTTONS
   Primary and secondary CTA styles
   ========================================================= */

.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.small {
  padding: 10px 16px;
  font-size: 14px;
}

.primary {
  background: linear-gradient(135deg, #1e6bff, #3b82f6);
  color: #fff;
  box-shadow: 0 10px 24px rgba(30, 107, 255, 0.22);
}

.earning-btn {
  background: #ffffff;
  color: #1f2937;
  border: 2px solid #8ad39c;
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.12);
}

/* =========================================================
   5) MOBILE NAV TOGGLE
   Hamburger icon + slide-down menu
   ========================================================= */

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #111827;
  display: block;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: sticky;
  top: 74px;
  z-index: 99;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #eceff4;
  padding: 12px 20px 20px;
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu a {
  color: #111827;
  font-weight: 600;
  padding: 10px 4px;
}

.mobile-download-btn {
  margin-top: 8px;
  text-align: center;
}

/* =========================================================
   6) HERO SECTION BASE
   Controls main top section sizing and structure
   ========================================================= */

.hero-app {
  background: linear-gradient(135deg, #edf4ff, #e9f0ff);
  padding: 56px 20px 40px;
  overflow: hidden;
}

.hero-app-inner {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  align-items: center;
  gap: 40px;
}

/* =========================================================
   7) SHARED SECTION LAYOUTS
   Used by lower sections across tabs
   ========================================================= */

.provider-proof-inner {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 40px;
}

.mini-features-inner {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  align-items: start;
  gap: 28px;
}

/* =========================================================
   8) COPY WRAPPERS
   Keeps text from reading too wide or too far left/right
   ========================================================= */

.hero-app-copy,
.provider-proof-copy,
.mini-features-copy,
.hero-app-visual,
.provider-proof-visual,
.dual-copy,
.dual-image-wrap {
  min-width: 0;
}

.hero-app-copy,
.provider-proof-copy,
.mini-features-copy {
  max-width: 560px;
}

.hero-app-copy {
  justify-self: center;
}

.provider-proof-copy,
.mini-features-copy {
  justify-self: center;
}

/* =========================================================
   9) TYPOGRAPHY
   Headings, eyebrow text, body copy
   ========================================================= */

.eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #2f80ed;
  margin-bottom: 14px;
}

.green-text {
  color: #22a34a;
}

.hero-app-copy h1,
.provider-proof-copy h2,
.final-cta-inner h2,
.mini-features-copy h2,
.section-heading h2,
.dual-copy h2 {
  font-size: 44px;
  line-height: 1.08;
  margin: 0 0 16px;
  letter-spacing: -1px;
  color: #111827;
}

.hero-text,
.provider-proof-copy p,
.mini-features-copy p,
.section-copy,
.dual-copy p,
.final-cta-inner p {
  font-size: 19px;
  line-height: 1.7;
  color: #5d6673;
  max-width: 620px;
}

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

/* =========================================================
   10) CTA GROUPS
   Buttons and pill rows
   ========================================================= */

.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 26px 0 18px;
}

.live-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.live-pills span {
  background: #ffffff;
  border: 1px solid #d9e6fb;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 700;
  color: #1f3f75;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
}

.dot {
  display: none;
}

/* =========================================================
   11) HERO VISUAL / PHONE MOCKUP AREA
   This is the homepage phone zone
   ========================================================= */

.hero-emotional-visual {
  position: relative;
  min-height: 520px;
}

.hero-bg-card {
  position: absolute;
  right: 20px;
  top: 18px;
  width: min(420px, 100%);
  max-width: 100%;
  height: 500px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.12);
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.22));
}

.hero-app-visual,
.provider-proof-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-shell {
  transform: translateX(-40px);
  background: #111827;
  padding: 8px;
  border-radius: 32px;
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.16);
  display: inline-flex;
  max-width: 100%;
}

.app-shot {
  width: 100%;
  max-width: 260px;
  height: auto;
  border-radius: 26px;
}

.provider-shot {
  max-width: 240px;
}

/* =========================================================
   12) MINI FEATURE SECTION
   Small cards used in multiple pages
   ========================================================= */

.mini-features {
  background: #ffffff;
  padding: 18px 20px 32px;
}

.mini-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.mini-feature-card {
  background: #ffffff;
  border: 1px solid #e8edf5;
  border-radius: 18px;
  padding: 20px 18px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
  min-width: 0;
  width: 100%;
  min-height: 210px;
}

.mini-feature-card h3 {
  margin: 10px 0 8px;
  font-size: 17px;
  line-height: 1.25;
}

.mini-feature-card p {
  margin: 0;
  color: #5d6673;
  line-height: 1.5;
  font-size: 14px;
}

.mini-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
}

.mini-icon.blue {
  background: #e6efff;
  color: #2f80ed;
}

.mini-icon.green {
  background: #e9f9ee;
  color: #22a34a;
}

.mini-icon.orange {
  background: #fff2e8;
  color: #f08b2e;
}

/* =========================================================
   13) PROVIDER PROOF / SPLIT SECTION
   Two-column section used on multiple tabs
   ========================================================= */

.provider-proof {
  background: #eef6ef;
  padding: 42px 20px;
}

.proof-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 26px;
  display: grid;
  gap: 12px;
}

.proof-list li {
  background: transparent;
  color: #1f2937;
  font-weight: 600;
  position: relative;
  padding-left: 24px;
}

.proof-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #22a34a;
  font-weight: 800;
}

/* =========================================================
   14) TRUST BAND / THREE-CARD INFO STRIPS
   ========================================================= */

.trust-band {
  background: #ffffff;
  padding: 48px 20px;
}

.center-tight,
.section-heading {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.trust-grid {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.trust-card {
  background: #f3f7ff;
  border-radius: 18px;
  padding: 24px 22px;
  border: 1px solid #e3ebfb;
  min-width: 0;
  width: 100%;
}

.icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2f80ed;
  color: #fff;
  font-weight: 800;
  margin-bottom: 14px;
}

.trust-card h3 {
  font-size: 18px;
  margin: 0 0 8px;
  line-height: 1.3;
}

.trust-card p {
  color: #5d6673;
  line-height: 1.55;
  margin: 0;
  font-size: 15px;
}

/* =========================================================
   15) HOME DUAL PANELS
   Customer and provider panels on homepage
   ========================================================= */

.dual-panels {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 20px 48px;
  display: grid;
  gap: 18px;
}

.dual-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  border-radius: 20px;
  padding: 24px;
  width: 100%;
}

.customer-panel {
  background: #eef4ff;
}

.provider-panel {
  background: #eef7ef;
}

.dual-copy {
  text-align: left;
  max-width: 560px;
}

.panel-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 26px;
  display: grid;
  gap: 10px;
}

.panel-list li {
  padding-left: 22px;
  position: relative;
  font-weight: 600;
  color: #1f2937;
}

.panel-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #2f80ed;
  font-size: 20px;
  line-height: 1;
}

.green-list li::before {
  color: #22a34a;
}

/* =========================================================
   16) STANDARD SECTION IMAGE
   Smaller supporting image used below main banners
   ========================================================= */

.dual-image-wrap {
  display: flex;
  justify-content: center;
}

.dual-image {
  width: 100%;
  max-width: 360px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

/* =========================================================
   17) FINAL CTA / FOOTER
   ========================================================= */

.final-cta-light {
  background: #dfe9ff;
  padding: 28px 20px 22px;
}

.final-cta-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.final-cta-inner h2 {
  font-size: 46px;
  margin-bottom: 12px;
}

.footer {
  text-align: center;
  padding: 22px 20px 28px;
}

.footer-light {
  background: #dfe9ff;
  color: #6b7280;
}

/* =========================================================
   18) BANNER PREMIUM IMAGE WRAPPER
   Only used when page uses an actual img tag hero
   ========================================================= */

.banner-premium-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
}

.banner-premium-image {
  width: 100%;
  max-width: 380px;
  height: 440px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.14);
}

/* =========================================================
   19) CUSTOMER PAGE HERO BANNER
   body class="customer-page"
   Controls top banner on customer page
   ========================================================= */

.customer-page .hero-app {
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url("../images/hero-home.jpg") center/cover no-repeat;
  color: #ffffff;
  padding: 80px 20px;
}

.customer-page .hero-app h1,
.customer-page .hero-app .hero-text,
.customer-page .hero-app .eyebrow {
  color: #ffffff;
}

.customer-page .hero-app .live-pills span {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #ffffff;
}

/* =========================================================
   20) PROVIDER PAGE HERO BANNER
   body class="provider-page"
   Controls top banner on provider page
   ========================================================= */

.provider-page .hero-app {
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url("../images/provider-banner-premium.jpg") center 25% / cover no-repeat;
  color: #ffffff;
  padding: 5px 10px;
  min-height: 360px;
  display: flex;
  align-items: center;
}

.provider-page .hero-app h1,
.provider-page .hero-app .hero-text,
.provider-page .hero-app .eyebrow {
  color: #ffffff;
}

.provider-page .hero-app .live-pills span {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #ffffff;
}

/* =========================================================
   21) EARNINGS PAGE HERO BANNER
   body class="earnings-page"
   Controls top banner on earnings page
   ========================================================= */

.earnings-page .hero-app {
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url("../images/earnings-premium.jpg") center 35% / cover no-repeat;
  color: #ffffff;
  padding: 20px 10px;
  min-height: 360px;
  display: flex;
  align-items: center;
}

.earnings-page .hero-app h1,
.earnings-page .hero-app .hero-text,
.earnings-page .hero-app .eyebrow {
  color: #ffffff;
}

/* =========================================================
   22) ABOUT PAGE HERO BANNER
   body class="about-page"
   Controls top banner on about page
   ========================================================= */

.about-page .hero-app {
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url("../images/about-banner-premium.jpg") center 35% / cover no-repeat;
  color: #ffffff;
  padding: 20px 10px;
  min-height: 360px;
  display: flex;
  align-items: center;
}

.about-page .hero-app h1,
.about-page .hero-app .hero-text,
.about-page .hero-app .eyebrow {
  color: #ffffff;
}

/* =========================================================
   23) SAFETY PAGE HERO BANNER
   body class="safety-page"
   Controls top banner on safety page
   ========================================================= */

.safety-page .hero-app {
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url("../images/safety-banner-premium.jpg") center 25% / cover no-repeat;
  color: #ffffff;
  padding: 10px 10px;
  min-height: 360px;
  display: flex;
  align-items: center;
}

.safety-page .hero-app h1,
.safety-page .hero-app .hero-text,
.safety-page .hero-app .eyebrow {
  color: #ffffff;
}

/* =========================================================
   24) CONTACT PAGE HERO BANNER
   body class="contact-page"
   Controls top banner on contact page
   ========================================================= */

.contact-page .hero-app {
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url("../images/contact-banner-premium.jpg") center 35% / cover no-repeat;
  color: #ffffff;
  padding: 20px 10px;
  min-height: 360px;
  display: flex;
  align-items: center;
}

.contact-page .hero-app h1,
.contact-page .hero-app .hero-text,
.contact-page .hero-app .eyebrow {
  color: #ffffff;
}

/* =========================================================
   25) SMALL SUPPORT TEXT / MICRO BARS
   ========================================================= */

.sub-tagline {
  margin: 10px 0 0;
  font-size: 15px;
  font-weight: 700;
  color: #1f2937;
}

.micro-trust {
  margin-top: 14px;
  font-size: 14px;
  color: #4b5563;
}

.fomo-bar {
  background: #eef6ef;
  padding: 14px 20px;
  text-align: center;
}

.fomo-bar p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
}

.tiny-trust {
  margin-top: 12px;
  font-size: 14px;
  color: #6b7280;
}

.provider-page .sub-tagline,
.provider-page .micro-trust {
  color: #ffffff;
}

/* =========================================================
   26) SAFETY / ABOUT / CONTACT / LOWER IMAGE HELPERS
   ========================================================= */

.provider-proof-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-image {
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

/* =========================================================
   27) TABLET BREAKPOINT
   Tightens layout before mobile
   ========================================================= */

@media (max-width: 960px) {
  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    justify-content: space-between;
    align-items: center;
  }

  .hero-app-inner,
  .provider-proof-inner,
  .mini-features-inner,
  .dual-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-app-copy h1,
  .provider-proof-copy h2,
  .mini-features-copy h2,
  .section-heading h2,
  .dual-copy h2,
  .final-cta-inner h2 {
    font-size: 42px;
  }

  .hero-app-copy,
  .provider-proof-copy,
  .mini-features-copy,
  .dual-copy {
    text-align: center;
    max-width: 100%;
  }

  .hero-text,
  .provider-proof-copy p,
  .mini-features-copy p,
  .section-copy,
  .dual-copy p,
  .final-cta-inner p {
    margin-left: auto;
    margin-right: auto;
  }

  .proof-list,
  .panel-list {
    text-align: left;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }

  .live-pills,
  .cta-buttons {
    justify-content: center;
  }

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

  .hero-emotional-visual {
    min-height: auto;
  }

  .hero-bg-card {
    position: relative;
    width: 100%;
    max-width: 360px;
    height: 280px;
    right: auto;
    top: auto;
    margin: 0 auto 18px;
  }

  .phone-shell {
    transform: translateX(0);
    margin: 0 auto;
  }
}

/* =========================================================
   28) MOBILE BREAKPOINT
   Main mobile cleanup
   ========================================================= */

@media (max-width: 768px) {
  .nav {
    padding: 16px 20px;
  }

  .hero-app {
    padding: 34px 18px 26px;
  }

  .hero-app-inner,
  .provider-proof-inner,
  .mini-features-inner,
  .dual-panel,
  .trust-grid,
  .mini-feature-grid {
    gap: 18px;
  }

  .hero-text,
  .provider-proof-copy p,
  .mini-features-copy p,
  .section-copy,
  .dual-copy p,
  .final-cta-inner p {
    font-size: 16px;
  }

  .hero-app-copy h1,
  .provider-proof-copy h2,
  .mini-features-copy h2,
  .section-heading h2,
  .dual-copy h2,
  .final-cta-inner h2 {
    font-size: 32px;
  }

  .app-shot {
    max-width: 240px;
  }

  .provider-shot {
    max-width: 220px;
  }

  .phone-shell {
    transform: translateX(0);
    margin: 0 auto;
  }

  .hero-app-visual,
  .provider-proof-visual,
  .dual-image-wrap,
  .banner-premium-wrap {
    justify-content: center;
  }

  .mini-feature-card,
  .trust-card {
    padding: 20px 18px;
  }

  .dual-panel {
    padding: 20px;
  }

  .banner-premium-image {
    max-width: 100%;
    height: 260px;
    border-radius: 22px;
  }

  .dual-image,
  .section-image {
    max-width: 100%;
  }

  .sub-tagline,
  .micro-trust,
  .tiny-trust,
  .fomo-bar p {
    font-size: 13px;
  }
}
/* =========================================================
   DOWNLOAD PAGE HERO BANNER
   body class="download-page"
   Controls top banner on download page
   ========================================================= */

.download-page .hero-app {
  background:
    linear-gradient(rgba(0,0,0,0.50), rgba(0,0,0,0.50)),
    url("../images/download-banner-premium.jpg") center center / cover no-repeat;
  color: #ffffff;
  padding: 10px 10px;
  min-height: 360px;
  display: flex;
  align-items: center;
}

.download-page .hero-app h1,
.download-page .hero-app .hero-text,
.download-page .hero-app .eyebrow {
  color: #ffffff;
}

.download-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.download-badges span {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.24);
  color: #ffffff;
  border-radius: 999px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
}

/* =========================================================
   DOWNLOAD OPTIONS
   ========================================================= */

.download-options {
  background: #ffffff;
  padding: 48px 20px;
}

.download-options-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.download-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px;
  margin-top: 24px;
}

.download-card {
  border-radius: 22px;
  padding: 5px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  color: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 200px;
  position: relative;
  overflow: hidden;
}

.customer-download-card {
  background: linear-gradient(135deg, #eef4ff, #dfe9ff);
  border: 1px solid #d8e6ff;
}

.provider-download-card {
  background: linear-gradient(135deg, #eef8f1, #dff3e5);
  border: 1px solid #d6ecd9;
}

.download-card-content h3 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 30px;
}

.download-card-content p {
  margin: 0 0 14px;
  color: #4b5563;
  line-height: 1.65;
  max-width: 420px;
}

.download-link {
  color: #2f80ed;
  font-weight: 700;
  font-size: 15px;
}

.provider-download-card .download-link {
  color: #1f8b4c;
}

.download-card-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
}

.store-badge-image {
  height: 100px;
  width: auto;
  max-width: none;
  transition: transform 0.2s ease;
}

.download-card-content {
  padding-right: 110px;
}
.store-badge-link:hover .store-badge-image {
  transform: scale(1.05);
}
/* =========================================================
   BENEFITS STRIP
   ========================================================= */

.download-benefits {
  background: #f8fbff;
  padding: 0 20px 42px;
}

.download-benefits-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.benefit-strip {
  background: #ffffff;
  border: 1px solid #e5ebf5;
  border-radius: 22px;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.benefit-item {
  text-align: center;
}

.benefit-item strong {
  display: block;
  color: #111827;
  font-size: 16px;
  margin-bottom: 6px;
}

.benefit-item span {
  color: #5d6673;
  font-size: 15px;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 960px) {
  .download-card-grid,
  .benefit-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .store-badge-image {
    height: 48px;
  }

  .download-card {
    min-height: auto;
    padding: 22px;
  }

  .download-card-badge {
    justify-content: center;
  }

  .benefit-strip {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .download-card-badge {
    position: static;
    margin-top: 16px;
    display: flex;
    justify-content: center;
  }

  .download-card-content {
    padding-right: 0;
  }

  .store-badge-image {
    height: 60px;
  }
}
.customer-download-card {
  background:
    linear-gradient(135deg, rgba(238,244,255,0.85), rgba(223,233,255,0.75)),
    url("../images/customer-bg.jpg") right center / cover no-repeat;
}

.provider-download-card {
  background:
    linear-gradient(135deg, rgba(238,248,241,0.85), rgba(223,243,229,0.75)),
    url("../images/provider-bg.jpg") right center / cover no-repeat;
}