:root{
  --ink:#07142f;
  --muted:#53657f;
  --blue:#268ff0;
  --blue-strong:#1f6fff;
  --green:#18c97c;
  --line:#dfe8f0;
  --white:#ffffff;
}

/* RESET */

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
  -webkit-text-size-adjust:100%;
}

body{
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  background:#ffffff;
  color:var(--ink);
  overflow-x:hidden;

  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

img{
  display:block;
  max-width:100%;
}

a{
  color:inherit;
  text-decoration:none;
}

ul{
  list-style:none;
}

.page{
  width:100%;
  overflow:hidden;
  background:#ffffff;
}

.wrap{
  width:min(calc(100% - 48px),1180px);
  margin:0 auto;
}

/* BRAND LOGO */

.brand-mark{
  width:44px;
  height:44px;
  padding:7px;

  display:flex;
  align-items:center;
  justify-content:center;

  flex:0 0 44px;
  overflow:hidden;

  border-radius:12px;
  background:#58ace0;

  box-shadow:
    0 7px 18px rgba(38,143,240,.18);
}

.brand-mark img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.brand-name,
.mobile-brand-name,
.footer-brand-name{
  color:#07142f;
  font-size:20px;
  line-height:1;
  font-weight:900;
}

/* MOBILE HEADER */

.mobile-header-banner{
  display:none;
}

/* DESKTOP HEADER */

.site-header{
  position:relative;
  z-index:50;

  padding:14px 0 8px;
  background:#ffffff;
}

.nav-wrap{
  width:min(calc(100% - 44px),1180px);
  margin:0 auto;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:11px;
  flex:0 0 auto;
}

.nav-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:34px;
  margin-left:auto;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:34px;
}

.nav-links a{
  color:#07142f;
  font-size:13px;
  line-height:1;
  font-weight:700;
  white-space:nowrap;

  transition:opacity .18s ease;
}

.nav-links a:hover{
  opacity:.72;
}

.nav-cta{
  min-height:42px;
  padding:0 22px;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  border-radius:999px;

  background:
    linear-gradient(
      135deg,
      #2d7cff,
      #1f6fff
    );

  color:#ffffff;
  font-size:13px;
  line-height:1;
  font-weight:800;
  white-space:nowrap;

  box-shadow:
    0 12px 28px rgba(31,111,255,.22);

  transition:
    transform .18s ease,
    box-shadow .18s ease;
}

.nav-cta:hover{
  transform:translateY(-2px);

  box-shadow:
    0 16px 30px rgba(31,111,255,.28);
}

/* STAR RATING */

.stars{
  position:relative;
  display:inline-block;

  color:#d8e3f2;
  line-height:1;
  letter-spacing:2px;
  font-weight:900;
}

.stars::before{
  content:"★★★★★";

  position:absolute;
  inset:0 auto 0 0;

  width:90%;
  overflow:hidden;
  white-space:nowrap;

  color:#2463eb;
}

.stars-45{
  color:#d8e3f2;
}

/* HERO */

.mobile-hero-card{
  display:none;
}

.hero-v4{
  min-height:520px;
  padding:6px 0 26px;

  background:
    radial-gradient(
      circle at 8% 24%,
      rgba(38,143,240,.055),
      transparent 25%
    ),
    radial-gradient(
      circle at 92% 22%,
      rgba(24,201,124,.065),
      transparent 26%
    ),
    #ffffff;
}

.hero-v4-grid{
  width:min(calc(100% - 44px),1180px);
  min-height:500px;
  margin:0 auto;

  display:grid;
  grid-template-columns:305px 435px 340px;
  align-items:center;
  justify-content:center;
  gap:22px;
}

/* HERO COPY */

.hero-copy{
  position:relative;
  z-index:5;
  align-self:center;
}

.hero-copy h1{
  max-width:330px;

  color:var(--ink);
  font-size:34px;
  line-height:1.03;
  letter-spacing:-1.65px;
  font-weight:900;
}

.hero-copy h1 span{
  display:block;
  margin-top:3px;
  color:var(--blue-strong);
}

.hero-copy p{
  max-width:315px;
  margin-top:14px;

  color:#53657f;
  font-size:11.8px;
  line-height:1.46;
  font-weight:500;
}

/* DESKTOP DOWNLOAD QR */

.desktop-download-qr{
  display:flex;
  align-items:center;
  gap:12px;

  border:1px solid #cfe1ee;
  border-radius:18px;

  background:
    linear-gradient(
      145deg,
      #f5faff,
      #effbf6
    );

  box-shadow:
    0 10px 24px rgba(7,20,47,.055);
}

.desktop-download-qr-image{
  width:76px;
  height:76px;
  padding:5px;

  display:flex;
  align-items:center;
  justify-content:center;

  flex:0 0 76px;

  border-radius:13px;
  background:#ffffff;

  box-shadow:
    0 6px 14px rgba(7,20,47,.06);
}

.desktop-download-qr-image img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.desktop-download-qr-copy{
  min-width:0;
}

.desktop-download-qr-copy strong{
  display:block;

  color:#07142f;
  font-size:12px;
  line-height:1.2;
  font-weight:900;
}

.desktop-download-qr-copy span{
  display:block;
  margin-top:5px;

  color:#53657f;
  font-size:9.5px;
  line-height:1.35;
  font-weight:700;
}

/* HERO BENEFITS */

.hero-benefits{
  max-width:300px;
  margin-top:18px;

  display:grid;
  grid-template-columns:1fr;
  gap:8px;
}

.hero-benefit{
  min-height:50px;
  padding:8px 11px;

  display:grid;
  grid-template-columns:30px 1fr;
  align-items:center;
  gap:9px;

  border:1px solid var(--line);
  border-radius:14px;
  background:#ffffff;

  box-shadow:
    0 10px 24px rgba(7,20,47,.042);
}

.hero-benefit em{
  width:30px;
  height:30px;

  display:grid;
  place-items:center;

  border-radius:50%;
  background:#eef6ff;
  color:#07142f;

  font-size:13px;
  font-style:normal;
}

.hero-benefit strong{
  display:block;

  color:#07142f;
  font-size:12px;
  line-height:1.1;
  font-weight:900;
}

.hero-benefit span{
  display:block;
  margin-top:1px;

  color:#53657f;
  font-size:10.2px;
  line-height:1.25;
  font-weight:800;
}

.join-badge{
  width:max-content;
  max-width:300px;
  min-height:34px;

  margin:18px 0 0;
  padding:0 14px;

  display:flex;
  align-items:center;
  justify-content:flex-start;

  border:1px solid #cfeeda;
  border-radius:999px;

  background:#eefaf2;
  color:#168a50;

  font-size:10.5px;
  line-height:1;
  font-weight:900;

  box-shadow:
    0 8px 20px rgba(24,201,124,.08);
}

/* HERO CENTER IMAGE */

.hero-image-area{
  position:relative;
  z-index:4;

  width:435px;
  height:500px;

  display:flex;
  align-items:center;
  justify-content:center;

  overflow:visible;
}

.hero-main-image{
  display:block;

  width:auto;
  height:auto;

  max-width:435px;
  max-height:485px;

  transform:translateY(14px);

  object-fit:contain;

  filter:
    drop-shadow(
      0 18px 28px rgba(7,20,47,.07)
    );
}

/* DESKTOP PROOF CARD */

.hero-proof-card{
  align-self:center;
  margin-top:34px;

  width:340px;
  min-height:515px;
  padding:18px;

  display:flex;
  flex-direction:column;
  gap:16px;

  border:1px solid var(--line);
  border-radius:27px;

  background:#ffffff;

  box-shadow:
    0 16px 38px rgba(7,20,47,.052);
}

/* PROOF CARD QR */

.desktop-qr{
  width:100%;
  padding:14px;

  display:grid;
  grid-template-columns:144px minmax(0,1fr);
  align-items:center;
  gap:14px;

  border:1px solid #cfe1ee;
  border-radius:19px;

  background:
    linear-gradient(
      145deg,
      #f5faff,
      #effbf6
    );
}

.desktop-qr-image-wrap{
  width:144px;
  height:144px;
  padding:7px;

  display:flex;
  align-items:center;
  justify-content:center;

  overflow:hidden;

  border-radius:14px;
  background:#ffffff;

  box-shadow:
    0 6px 14px rgba(7,20,47,.06);
}

.desktop-qr-image{
  width:100%;
  height:100%;
  object-fit:contain;
}

.desktop-qr-copy{
  min-width:0;
}

.desktop-qr-copy strong{
  display:block;

  color:#07142f;
  font-size:15px;
  line-height:1.2;
  font-weight:900;
}

.desktop-qr-copy span{
  display:block;
  margin-top:6px;

  color:#53657f;
  font-size:11px;
  line-height:1.35;
  font-weight:700;
}

/* PROOF RATING */

.proof-main{
  margin:0;
}

.proof-label{
  display:block;
  margin-bottom:5px;

  color:#07142f;
  font-size:10.5px;
  line-height:1.3;
  font-weight:900;
}

.hero-proof-card h2{
  color:#07142f;

  font-size:16px;
  line-height:1.2;
  letter-spacing:-.4px;
  font-weight:900;
}

.proof-rating{
  margin-top:14px;

  display:flex;
  flex-direction:column;
  gap:5px;
}

.proof-rating strong{
  color:#07142f;

  font-size:31px;
  line-height:1;
  letter-spacing:-1px;
  font-weight:900;
}

.proof-rating span{
  font-size:15px;
}

.hero-proof-card p{
  margin-top:8px;

  color:#53657f;
  font-size:9.8px;
  line-height:1.4;
  font-weight:800;
}

/* FEATURED IN */

.featured-in{
  margin-top:0;
  padding-top:15px;

  display:flex;
  flex-direction:column;
  gap:11px;

  border-top:1px solid var(--line);
}

.featured-in span{
  color:#53657f;
  font-size:9.8px;
  line-height:1;
  font-weight:900;
}

.featured-in strong{
  display:block;
  color:#07142f;
  line-height:1;
}

.featured-in .forbes{
  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:23px;
  letter-spacing:-1px;
}

.featured-in .techcrunch{
  font-size:14px;
  letter-spacing:-.65px;
}

.featured-in .verge{
  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:22px;
  letter-spacing:-1.1px;
}

/* GENERAL SECTIONS */

.why-section,
.providers-section,
.reviews-section,
.trust-section,
.final-cta{
  padding:0 0 80px;
  background:#ffffff;
}

.why-section{
  padding-top:24px;
}

.section-head{
  max-width:760px;
  margin-bottom:34px;
}

.section-head h2,
.providers-head h2,
.reviews-intro h2,
.trust-copy h2,
.final-card h2{
  color:var(--ink);

  font-size:46px;
  line-height:1.05;
  letter-spacing:-2px;
  font-weight:900;
}

.section-head p{
  margin-top:12px;

  color:var(--muted);
  font-size:18px;
  line-height:1.5;
}

/* WHY SECTION */

.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.why-card{
  position:relative;

  min-height:360px;
  padding:30px;

  border:1px solid var(--line);
  border-radius:30px;

  background:#ffffff;
}

.why-card.featured{
  border-color:transparent;

  background:
    linear-gradient(
      160deg,
      #cff5e3,
      #e9f8ff
    );
}

.number{
  color:var(--blue);
  font-size:16px;
  font-weight:900;
}

.why-icon{
  position:absolute;
  top:26px;
  right:26px;

  width:48px;
  height:48px;

  display:grid;
  place-items:center;

  border-radius:50%;
  background:#ffffff;

  box-shadow:
    0 8px 18px rgba(7,20,47,.06);
}

.why-card h3{
  margin-top:70px;
  margin-bottom:14px;

  color:var(--ink);
  font-size:25px;
  line-height:1.15;
  letter-spacing:-.8px;
  font-weight:900;
}

.why-card p{
  margin-bottom:18px;

  color:#5f6b7a;
  font-size:16px;
  line-height:1.55;
  font-weight:600;
}

.why-card li{
  position:relative;
  padding-left:24px;

  color:#475467;
  font-size:14px;
  line-height:1.5;
  font-weight:800;
}

.why-card li::before{
  content:"✓";

  position:absolute;
  left:0;

  color:var(--green);
  font-weight:900;
}

/* PROVIDERS */

.providers-head{
  margin-bottom:30px;
  text-align:center;
}

.providers-row{
  padding:28px;

  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:16px;

  border:1px solid var(--line);
  border-radius:30px;

  background:#f5f8fb;
}

.provider-item{
  min-height:82px;

  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
}

.provider-icon{
  width:42px;
  height:42px;

  display:grid;
  place-items:center;

  border-radius:12px;

  color:#ffffff;
  font-size:20px;
  font-weight:900;
}

.provider-item span{
  color:#37517a;
  font-size:18px;
  font-weight:800;
}

.gmail{
  color:#3a7bd5;

  background:
    linear-gradient(
      135deg,
      #f4e5ff,
      #c9dfff
    );
}

.outlook{
  background:
    linear-gradient(
      135deg,
      #67ccf7,
      #3887d9
    );
}

.yahoo{
  color:#8f59d7;

  background:
    linear-gradient(
      135deg,
      #ecdfff,
      #d6c7fa
    );
}

.icloud{
  background:
    linear-gradient(
      135deg,
      #9ed7ff,
      #68b6f0
    );
}

.more{
  color:#2497e3;

  background:
    linear-gradient(
      135deg,
      #e2f7ff,
      #d8f7e8
    );
}

/* REVIEWS */

.reviews-card{
  padding:34px;

  display:grid;
  grid-template-columns:1.05fr repeat(3,1fr);
  gap:28px;

  border:1px solid var(--line);
  border-radius:32px;

  background:#ffffff;

  box-shadow:
    0 18px 48px rgba(7,20,47,.05);
}

.reviews-intro{
  align-self:center;
}

.reviews-intro h2{
  font-size:38px;
  line-height:1.12;
  letter-spacing:-1.7px;
}

.rating{
  margin:52px 0 20px;

  display:flex;
  align-items:center;
  gap:14px;
}

.rating strong{
  font-size:48px;
  line-height:1;
  font-weight:900;
}

.rating .stars{
  font-size:24px;
}

.reviews-intro p{
  color:#52607a;
  font-size:15px;
  font-weight:700;
}

.review{
  min-height:330px;
  padding:34px;

  border:1px solid var(--line);
  border-radius:24px;

  background:#ffffff;
}

.review div{
  color:#2463eb;
  font-size:24px;
  letter-spacing:3px;
}

.review p{
  margin:36px 0;

  color:#3e5a84;
  font-size:16px;
  line-height:1.65;
  font-weight:650;
}

.review strong{
  font-size:15px;
  font-weight:900;
}

/* TRUST */

.trust-card{
  padding:44px;

  display:grid;
  grid-template-columns:370px 1fr;
  align-items:center;
  gap:42px;

  border:1px solid var(--line);
  border-radius:36px;

  background:#ffffff;

  box-shadow:
    0 18px 48px rgba(7,20,47,.06);
}

.trust-copy span,
.final-card > span{
  margin-bottom:18px;
  padding:9px 15px;

  display:inline-flex;

  border:1px solid var(--line);
  border-radius:999px;

  color:var(--blue);
  font-size:13px;
  font-weight:900;
}

.trust-list{
  display:grid;
  gap:14px;
}

.trust-item{
  padding:18px;

  display:grid;
  grid-template-columns:34px 1fr;
  gap:16px;

  border:1px solid var(--line);
  border-radius:22px;

  background:#f8fbfd;
}

.trust-item em{
  width:34px;
  height:34px;

  display:grid;
  place-items:center;

  border-radius:50%;

  background:#c8f1df;
  color:#0d7444;

  font-style:normal;
  font-weight:900;
}

.trust-item strong{
  display:block;
  margin-bottom:4px;

  font-size:18px;
  font-weight:900;
}

.trust-item p{
  color:#667085;
  font-size:15px;
  line-height:1.45;
}

/* FINAL CTA */

.final-card{
  position:relative;

  max-width:880px;
  margin:0 auto;
  padding:40px;

  border:1px solid var(--line);
  border-radius:34px;

  text-align:center;

  background:
    radial-gradient(
      circle at 10% 15%,
      rgba(44,150,232,.08),
      transparent 32%
    ),
    radial-gradient(
      circle at 90% 85%,
      rgba(24,201,124,.08),
      transparent 32%
    ),
    #ffffff;

  box-shadow:
    0 24px 70px rgba(7,20,47,.08);
}

.final-card p{
  max-width:620px;
  margin:14px auto 26px;

  color:var(--muted);
  font-size:20px;
  line-height:1.5;
}

.final-desktop-qr{
  width:360px;
  margin:0 auto 22px;
  padding:12px;

  text-align:left;
}

.final-desktop-qr .desktop-download-qr-image{
  width:92px;
  height:92px;
  flex-basis:92px;
}

.final-desktop-qr .desktop-download-qr-copy strong{
  font-size:15px;
}

.final-desktop-qr .desktop-download-qr-copy span{
  font-size:11px;
}

.final-buttons{
  display:none;
  max-width:560px;
  margin:0 auto 20px;
}

.store-buttons{
  align-items:center;
  gap:18px;
  margin-bottom:18px;
}

.store-buttons a{
  display:block;
  flex:1;
  min-width:0;

  transition:
    transform .18s ease,
    filter .18s ease;
}

.store-buttons a:hover{
  transform:translateY(-3px);

  filter:
    drop-shadow(
      0 10px 16px rgba(7,20,47,.14)
    );
}

.store-buttons img{
  width:100%;
  height:auto;
  max-height:56px;
  object-fit:contain;
}

.final-proof{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
}

.final-proof span{
  margin:0;
  padding:9px 15px;

  display:inline-flex;

  border:1px solid var(--line);
  border-radius:999px;

  color:#334155;
  font-size:13px;
  font-weight:900;
}

/* FOOTER */

.footer{
  padding:28px 0;
  border-top:1px solid var(--line);
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:22px;
}

.footer-brand{
  display:flex;
  align-items:center;
  gap:11px;
}

.footer-brand-mark{
  width:42px;
  height:42px;
  flex-basis:42px;
}

.footer-brand-name{
  font-size:20px;
}

.footer-links{
  display:flex;
  gap:24px;
}

.footer-links a,
.footer p{
  color:#667085;
  font-size:14px;
  font-weight:700;
}

/* TABLET */

@media(max-width:1180px){

  .hero-v4{
    min-height:auto;
    padding:14px 0 42px;
  }

  .hero-v4-grid{
    width:min(calc(100% - 36px),980px);
    min-height:auto;

    grid-template-columns:320px 1fr;
    gap:22px;
  }

  .hero-image-area{
    width:100%;
    height:440px;
  }

  .hero-main-image{
    max-width:100%;
    max-height:425px;
  }

  .hero-proof-card{
    grid-column:1 / -1;

    width:100%;
    min-height:220px;
    padding:20px;
    margin-top:0;

    display:grid;
    grid-template-columns:230px 1fr 1fr;
    align-items:center;
    gap:28px;
  }

  .desktop-qr{
    height:100%;

    grid-template-columns:1fr;
    justify-items:center;

    text-align:center;
  }

  .desktop-qr-image-wrap{
    width:132px;
    height:132px;
  }

  .proof-main{
    margin:0;
  }

  .featured-in{
    margin:0;
    padding:0 0 0 28px;

    border-top:0;
    border-left:1px solid var(--line);
  }

  .hero-copy h1{
    font-size:34px;
  }

  .reviews-card{
    grid-template-columns:1fr 1fr;
  }

}

/* MOBILE */

@media(max-width:900px){

  .mobile-header-banner{
    position:sticky;
    top:0;
    z-index:100;

    width:100%;
    min-height:58px;
    padding:8px 10px;

    display:grid;
    grid-template-columns:auto minmax(0,1fr) auto;
    align-items:center;
    gap:8px;

    border-bottom:1px solid var(--line);

    background:rgba(255,255,255,.98);

    box-shadow:
      0 8px 24px rgba(7,20,47,.08);

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
  }

  /* MOBILE BRAND */

  .mobile-brand{
    min-width:0;

    display:flex;
    align-items:center;
    gap:6px;
  }

  .mobile-brand .brand-mark{
    width:33px;
    height:33px;
    padding:5px;

    flex:0 0 33px;

    border-radius:9px;
  }

  .mobile-brand-name{
    font-size:13px;
    line-height:1;
    white-space:nowrap;
  }

  /* MOBILE LINKS */

  .mobile-nav-links{
    min-width:0;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
  }

  .mobile-nav-links a{
    color:#334155;

    font-size:9.5px;
    line-height:1;
    font-weight:800;

    white-space:nowrap;

    transition:color .18s ease;
  }

  .mobile-nav-links a:hover{
    color:#1f6fff;
  }

  /* MOBILE FREE BUTTON */

  .mobile-header-proof{
    min-height:34px;
    padding:0 12px;

    display:flex;
    align-items:center;
    justify-content:center;

    flex:0 0 auto;

    border-radius:999px;

    background:
      linear-gradient(
        135deg,
        #2d7cff,
        #1f6fff
      );

    color:#ffffff;

    font-size:9.5px;
    line-height:1;
    font-weight:900;

    white-space:nowrap;

    box-shadow:
      0 7px 16px rgba(31,111,255,.22);
  }

  /* HIDE DESKTOP HEADER */

  .site-header{
    display:none;
  }

  .wrap{
    width:calc(100% - 24px);
  }

  /* HIDE DESKTOP QR DOWNLOAD BLOCKS */

  .desktop-download-qr{
    display:none;
  }

  /* MOBILE HERO */

  .hero-v4{
    min-height:auto;
    padding:18px 0 44px;
    background:#ffffff;
  }

  .hero-v4-grid{
    width:min(calc(100% - 22px),430px);
    min-height:auto;

    display:grid;
    grid-template-columns:1fr;
    gap:0;
  }

  .hero-copy{
    width:100%;
    text-align:center;
  }

  .hero-copy h1{
    max-width:360px;
    margin:0 auto;

    font-size:33px;
    line-height:1.02;
    letter-spacing:-1.45px;

    text-align:center;
  }

  .hero-copy h1 span{
    margin-top:3px;
  }

  /* HIDE DESKTOP HERO ELEMENTS */

  .hero-copy p,
  .hero-benefits,
  .join-badge,
  .hero-image-area,
  .hero-proof-card{
    display:none;
  }

  /* MOBILE HERO CARD */

  .mobile-hero-card{
    width:100%;
    margin-top:14px;

    display:block;
    overflow:hidden;

    border-radius:28px;

    background:
      radial-gradient(
        circle at 86% 12%,
        rgba(221,250,235,.95) 0 110px,
        transparent 255px
      ),
      radial-gradient(
        circle at 8% 80%,
        rgba(231,246,255,.95) 0 140px,
        transparent 260px
      ),
      linear-gradient(
        145deg,
        #edf8ff 0%,
        #e8f6ff 46%,
        #e3f8ef 100%
      );

    box-shadow:
      0 18px 44px rgba(7,20,47,.10);
  }

  .mobile-image-wrap{
    width:100%;
    padding:10px 18px 16px;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;
    background:transparent;
  }

  .mobile-image-wrap img{
    display:block;

    width:100%;
    max-width:296px;
    height:auto;

    object-fit:contain;
  }

  /* MOBILE DOWNLOAD PANEL */

  .mobile-download-panel{
    position:relative;
    z-index:12;

    width:calc(100% - 28px);

    margin:0 auto 14px;
    padding:18px 16px 16px;

    border-radius:22px;
    background:#ffffff;

    text-align:left;

    box-shadow:
      0 16px 34px rgba(7,20,47,.09);

    scroll-margin-top:74px;
  }

  .mobile-download-badge{
    width:max-content;
    max-width:100%;

    margin-bottom:13px;
    padding:8px 11px;

    display:inline-flex;
    align-items:center;

    border:1px solid #c7efd8;
    border-radius:999px;

    background:#dff9ec;
    color:#0c9b5e;

    font-size:9.5px;
    line-height:1;
    font-weight:900;
    letter-spacing:.035em;

    text-transform:uppercase;
  }

  .mobile-download-panel h2{
    margin-bottom:8px;

    color:var(--ink);

    font-size:25px;
    line-height:1.04;
    letter-spacing:-1px;
    font-weight:900;
  }

  .mobile-download-panel p{
    margin-bottom:14px;

    color:#53657f;

    font-size:12px;
    line-height:1.45;
    font-weight:500;
  }

  .mobile-store-buttons{
    margin-bottom:14px;

    display:flex;
    align-items:center;
    gap:10px;
  }

  .mobile-store-buttons a{
    display:block;
    flex:1;
    min-width:0;
  }

  .mobile-store-buttons img{
    width:100%;
    max-height:40px;
    object-fit:contain;
  }

  .mobile-proof-row{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:7px;
  }

  .mobile-proof-row span{
    min-height:32px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid var(--line);
    border-radius:999px;

    background:#ffffff;
    color:#334155;

    font-size:8.2px;
    line-height:1;
    font-weight:800;
    white-space:nowrap;
  }

  /* FINAL CTA MOBILE BUTTONS */

  .final-buttons{
    display:flex;
  }

  /* MOBILE SECTIONS */

  .why-grid,
  .providers-row,
  .reviews-card,
  .trust-card{
    grid-template-columns:1fr;
  }

  .section-head h2,
  .providers-head h2,
  .reviews-intro h2,
  .trust-copy h2,
  .final-card h2{
    font-size:30px;
    line-height:1.12;
    letter-spacing:-1.1px;
  }

  .why-card{
    min-height:auto;
    padding:22px;
    border-radius:24px;
  }

  .providers-row{
    padding:18px;
    border-radius:24px;
  }

  .provider-item{
    min-height:62px;
    justify-content:flex-start;
  }

  .reviews-card{
    padding:22px;
    border-radius:24px;
  }

  .rating{
    margin:24px 0 12px;
  }

  .review{
    min-height:auto;
    padding:24px;
  }

  .review p{
    margin:20px 0;
  }

  .trust-card{
    padding:24px;
    border-radius:24px;
  }

  .final-card{
    padding:24px 16px;
    border-radius:24px;
  }

  .final-card p{
    font-size:15px;
  }

  .store-buttons{
    gap:12px;
  }

  .store-buttons img{
    max-height:43px;
  }

  .footer-inner{
    flex-direction:column;
    text-align:center;
  }

}

/* SMALL MOBILE */

@media(max-width:380px){

  .mobile-header-banner{
    min-height:54px;
    padding:7px;
    gap:6px;
  }

  .mobile-brand{
    gap:4px;
  }

  .mobile-brand .brand-mark{
    width:29px;
    height:29px;
    flex-basis:29px;
  }

  .mobile-brand-name{
    font-size:10.5px;
  }

  .mobile-nav-links{
    gap:7px;
  }

  .mobile-nav-links a{
    font-size:8.3px;
  }

  .mobile-header-proof{
    min-height:31px;
    padding:0 9px;
    font-size:8.5px;
  }

  .hero-copy h1{
    max-width:330px;
    font-size:31px;
  }

  .mobile-image-wrap img{
    max-width:280px;
  }

  .mobile-download-panel{
    margin:0 auto 14px;
    padding:16px 14px 14px;
  }

  .mobile-download-panel h2{
    font-size:23px;
  }

  .mobile-store-buttons img{
    max-height:37px;
  }

  .mobile-proof-row{
    gap:5px;
  }

  .mobile-proof-row span{
    font-size:7.5px;
  }

  .store-buttons img{
    max-height:39px;
  }

}