:root{
  --green:#355F7C;
  --green-2:#7FA3B8;
  --lime:#7FA3B8;
  --cream:#DCEAF0;
  --white:#fffdf8;
  --ink:#24313A;
  --muted:#5f7480;
  --line:#c9d9e1;
  --clay:#C9876D;
  --gold:#f2c24d;
  --shadow:0 24px 80px rgba(36,49,58,.20);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--ink);
  background:var(--cream);
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

.topbar{
  position:fixed;
  inset:0 0 auto 0;
  z-index:50;
  height:70px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 clamp(20px,5vw,64px);
  background:rgba(7,24,22,.72);
  color:white;
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,.1);
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand img{
  width:48px;
  height:48px;
  border-radius:12px;
  object-fit:cover;
}
.brand strong{display:block;font-size:18px;line-height:1}
.brand small{display:block;color:rgba(255,255,255,.76);font-size:13px;margin-top:5px}
.topbar nav{
  display:flex;
  align-items:center;
  gap:34px;
  font-weight:900;
}
.nav-button{
  background:var(--lime);
  color:white;
  padding:13px 24px;
  border-radius:999px;
  box-shadow:0 12px 35px rgba(37,200,90,.32);
}

.hero{
  min-height:860px;
  position:relative;
  isolation:isolate;
  overflow:hidden;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:40px;
  padding:110px clamp(28px,6vw,76px) 90px;
  color:white;
}
.hero-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(0,0,0,.82),rgba(0,0,0,.58),rgba(0,0,0,.72)),
    radial-gradient(circle at 25% 45%,rgba(37,200,90,.24),transparent 25%),
    url("https://images.unsplash.com/photo-1517430816045-df4b7de11d1d?auto=format&fit=crop&w=1800&q=80");
  background-size:cover;
  background-position:center;
  z-index:-3;
}
.hero-dark{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.1),rgba(0,0,0,.55));
  z-index:-2;
}
.eyebrow{
  margin:0 0 14px;
  color:var(--lime);
  letter-spacing:.25em;
  text-transform:uppercase;
  font-size:14px;
  font-weight:950;
}
.hero h1{
  font-size:clamp(68px,8vw,118px);
  line-height:.86;
  letter-spacing:-.08em;
  margin:0 0 22px;
}
.hero h1 span{color:var(--lime)}
.hero-text{
  max-width:650px;
  margin:0 0 36px;
  font-size:24px;
  line-height:1.35;
  font-weight:650;
}
.waitlist-form h2{
  margin:0 0 6px;
  font-size:28px;
}
.waitlist-form > p{
  margin:0 0 18px;
  font-weight:700;
  color:rgba(255,255,255,.82);
}
.form-row{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:12px;
  margin-bottom:14px;
}
label span{position:absolute;left:-9999px}
input{
  width:100%;
  border:1px solid rgba(255,255,255,.28);
  border-radius:10px;
  min-height:58px;
  padding:0 18px;
  font:inherit;
  font-weight:700;
  background:white;
  color:var(--ink);
}
.waitlist-form button,.footer-form button{
  width:100%;
  min-height:58px;
  border:0;
  border-radius:10px;
  background:linear-gradient(90deg,var(--lime),#5f8aa2);
  color:white;
  font:inherit;
  font-weight:950;
  font-size:19px;
  cursor:pointer;
  box-shadow:0 16px 45px rgba(37,200,90,.28);
}
.form-message{
  min-height:22px;
  color:#DCEAF0!important;
  margin-top:10px!important;
}
.trust-row{
  display:flex;
  align-items:center;
  gap:16px;
  margin-top:18px;
}
.avatars{display:flex}
.avatars span{
  width:42px;
  height:42px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#e9c3a9,#8f5d49);
  border:2px solid white;
  color:white;
  font-weight:900;
  margin-left:-10px;
}
.avatars span:first-child{margin-left:0}
.trust-row strong{color:#ffc928;letter-spacing:.12em}
.trust-row p{margin:3px 0 0;font-weight:850}

.hero-visual{
  position:relative;
  min-height:620px;
}
.phone-main{
  position:absolute;
  left:10%;
  top:0;
  width:min(430px,62%);
  border-radius:34px;
  filter:drop-shadow(0 35px 70px rgba(0,0,0,.45));
  z-index:3;
}
.deal-float{
  position:absolute;
  right:3%;
  top:30px;
  z-index:4;
  width:265px;
  display:flex;
  align-items:center;
  gap:14px;
  background:white;
  color:var(--ink);
  padding:14px;
  border-radius:20px;
  transform:rotate(6deg);
  box-shadow:var(--shadow);
}
.deal-img{
  width:78px;
  height:78px;
  display:grid;
  place-items:center;
  border-radius:16px;
  font-size:48px;
  background:#fff3db;
}
.deal-float small{display:block;color:var(--green-2);font-weight:900}
.deal-float strong{display:block;color:var(--green-2);font-size:28px;line-height:1}
.deal-float span{display:block;font-size:13px;font-weight:750}
.deal-float b{
  display:inline-block;
  margin-top:7px;
  background:var(--green-2);
  color:white;
  padding:7px 12px;
  border-radius:7px;
  font-size:12px;
}
.qr-float{
  position:absolute;
  right:5%;
  bottom:20px;
  z-index:5;
  width:300px;
  background:white;
  color:var(--ink);
  border-radius:22px;
  padding:26px;
  transform:rotate(8deg);
  box-shadow:var(--shadow);
}
.qr-float small{
  color:var(--green-2);
  text-transform:uppercase;
  letter-spacing:.13em;
  font-weight:950;
}
.qr-float strong{display:block;font-size:24px;margin:10px 0}
.qr-pattern{
  height:205px;
  margin:12px 0 14px;
  background:
    linear-gradient(90deg,#000 10px,transparent 10px 18px,#000 18px 28px,transparent 28px 36px),
    linear-gradient(0deg,transparent 10px,#000 10px 18px,transparent 18px 30px,#000 30px 38px);
  background-size:36px 36px;
  border:10px solid white;
  outline:2px solid #111;
}
.qr-float b,.qr-float span{display:block;text-align:center}
.qr-float b{font-size:17px}
.qr-float span{color:var(--green-2);font-weight:950;margin-top:5px}

.stats{
  width:min(1120px,92%);
  margin:-70px auto 70px;
  position:relative;
  z-index:10;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
  background:rgba(255,255,255,.92);
  border:1px solid var(--line);
  border-radius:24px;
  padding:28px;
  box-shadow:var(--shadow);
}
.stats article{
  display:flex;
  align-items:center;
  gap:18px;
  padding:10px 18px;
}
.stat-icon{
  width:58px;height:58px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#e9f2f6;
  color:var(--green-2);
  font-size:27px;
}
.stat-icon.gold{background:#fff1c7}
.stats strong{font-size:34px;color:var(--green);line-height:1}
.stats p{margin:4px 0 0;color:var(--muted);font-weight:750}

.categories-savings{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:70px;
  padding:0 clamp(28px,6vw,76px) 70px;
}
.categories-savings .eyebrow,.how .eyebrow,.business .eyebrow{color:var(--green-2)}
.categories h2,.savings h2,.how h2,.business h2,.vip-section h2{
  margin:0 0 25px;
  color:var(--green);
  font-size:clamp(36px,4vw,58px);
  line-height:.98;
  letter-spacing:-.05em;
}
.category-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
  margin:28px 0;
}
.category-grid article{text-align:center}
.category-grid span{
  margin:auto;
  width:66px;height:66px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#DCEAF0;
  color:var(--green-2);
  font-size:28px;
}
.category-grid p{margin:10px 0 0;color:var(--muted);font-weight:800}
.outline-button{
  display:inline-flex;
  border:1.5px solid var(--green-2);
  color:var(--green-2);
  border-radius:8px;
  padding:14px 28px;
  font-weight:950;
}

.saving-cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.saving-cards article{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:12px;
  overflow:hidden;
}
.card-img{height:90px;background-size:cover;background-position:center}
.pizza{background:linear-gradient(135deg,#d96335,#ffe4b8)}
.oil{background:linear-gradient(135deg,#1e1e1e,#9f9f9f)}
.coffee{background:linear-gradient(135deg,#8e5c31,#f6e2c8)}
.burger{background:linear-gradient(135deg,#c2773d,#f6d48c)}
.saving-cards p{margin:12px 14px 4px;font-weight:850}
.saving-cards small{margin:0 14px;color:var(--muted);display:block}
.saving-cards strong{display:block;margin:0 14px 16px;font-size:30px;color:var(--green)}
.total-card{
  margin-top:18px;
  min-height:100px;
  border-radius:14px;
  background:linear-gradient(135deg,#24313A,#355F7C);
  color:white;
  display:grid;
  grid-template-columns:auto 1fr 280px;
  align-items:center;
  gap:18px;
  padding:20px 28px;
  overflow:hidden;
}
.total-card p{margin:0;font-weight:850}
.total-card strong{font-size:46px;color:var(--lime)}
.total-card span{font-weight:700}
.total-card svg{color:var(--lime);opacity:.7}

.how{
  text-align:center;
  padding:80px clamp(28px,6vw,76px);
}
.steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.steps article{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:24px;
  padding:38px 32px;
}
.steps span{
  width:70px;height:70px;
  margin:auto;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#DCEAF0;
  color:var(--green);
  font-size:26px;
  font-weight:950;
}
.steps h3{font-size:27px;margin:20px 0 12px;color:var(--green)}
.steps p{color:var(--muted);font-weight:780;font-size:18px;line-height:1.45}

.vip-section{
  width:min(1180px,92%);
  margin:0 auto 92px;
  border-radius:28px;
  background:var(--green);
  color:white;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:28px;
  padding:50px 44px;
}
.vip-section .eyebrow{color:white}
.vip-section h2{color:white;font-size:clamp(42px,6vw,74px)}
.vip-section p{font-size:18px;font-weight:780;margin:0;color:rgba(255,255,255,.86)}
.vip-section a,.business-button{
  white-space:nowrap;
  background:var(--clay);
  color:white;
  padding:15px 24px;
  border-radius:11px;
  font-weight:950;
}

.business{
  display:grid;
  grid-template-columns:.9fr 1fr .9fr;
  gap:46px;
  align-items:center;
  padding:0 clamp(28px,6vw,76px) 70px;
}
.business-image{
  min-height:250px;
  border-radius:18px;
  overflow:hidden;
  display:grid;
  grid-template-columns:1fr 1fr;
  background:var(--green);
  box-shadow:var(--shadow);
}
.merchant-photo{
  background:
    linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2)),
    url("https://images.unsplash.com/photo-1556157382-97eda2d62296?auto=format&fit=crop&w=600&q=80");
  background-size:cover;
  background-position:center;
}
.merchant-form{
  background:white;
  padding:24px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.merchant-form small{
  text-transform:uppercase;
  color:var(--green);
  font-weight:900;
}
.merchant-form label{
  display:block;
  color:var(--muted);
  font-size:12px;
  font-weight:800;
}
.merchant-form input{
  min-height:38px;
  border:1px solid var(--line);
  margin-top:4px;
  border-radius:5px;
  font-size:13px;
}
.merchant-form button{
  border:0;
  border-radius:6px;
  background:var(--green-2);
  color:white;
  min-height:42px;
  font-weight:900;
}
.business ul{list-style:none;padding:0;margin:0 0 24px}
.business li{
  margin:7px 0;
  color:var(--green);
  font-weight:800;
}
.business li:before{
  content:"✓";
  color:var(--lime);
  font-weight:950;
  margin-right:8px;
}
.business-performance{
  min-height:250px;
  border-radius:18px;
  background:#edf0ec;
  display:grid;
  place-items:center;
  position:relative;
  overflow:hidden;
}
.business-performance img{
  width:125px;
  border-radius:22px;
  box-shadow:var(--shadow);
}
.performance-card{
  position:absolute;
  right:25px;
  bottom:25px;
  width:190px;
  background:white;
  border-radius:15px;
  padding:18px;
  box-shadow:var(--shadow);
}
.performance-card small{display:block;color:var(--muted);font-weight:850}
.performance-card div{display:inline-block;margin:10px 15px 6px 0}
.performance-card strong{display:block;font-size:20px;color:var(--green)}
.performance-card span{font-size:11px;color:var(--muted)}
.performance-card svg{color:var(--lime)}

.logos{
  padding:30px clamp(28px,6vw,76px) 50px;
  border-top:1px solid var(--line);
  text-align:center;
}
.logos p{
  color:var(--green-2);
  text-transform:uppercase;
  letter-spacing:.25em;
  font-weight:950;
}
.logos div{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:22px;
  align-items:center;
}
.logos strong{
  font-family:Georgia, serif;
  font-size:22px;
  color:#151f1c;
}
.logos small{display:block;font-family:inherit;font-size:11px;text-transform:uppercase}

.footer{
  background:#24313A;
  color:white;
  display:grid;
  grid-template-columns:1.3fr .65fr .65fr 1.2fr;
  gap:38px;
  padding:42px clamp(28px,6vw,76px) 28px;
}
.footer .brand small{color:rgba(255,255,255,.72)}
.socials{display:flex;gap:12px;margin-top:18px}
.socials a{
  width:28px;height:28px;
  display:grid;place-items:center;
  border-radius:50%;
  background:rgba(255,255,255,.12);
  font-weight:900;
}
.footer h3{margin:0 0 12px;text-transform:uppercase;font-size:13px;letter-spacing:.15em;color:rgba(255,255,255,.7)}
.footer a{display:block;margin:7px 0;font-weight:700}
.footer-form p{margin:0 0 10px;color:rgba(255,255,255,.7)}
.footer-form div{display:flex;gap:8px}
.footer-form input{min-height:42px;border-radius:6px}
.footer-form button{width:auto;min-height:42px;border-radius:6px;padding:0 14px;font-size:14px}
.copyright,.terms{
  grid-column:1/-1;
  margin:0;
  text-align:center;
  color:rgba(255,255,255,.72);
}
.terms a{display:inline-block;margin:0 16px}

@media(max-width:980px){
  .topbar{position:relative;background:var(--green)}
  .topbar nav a:not(.nav-button){display:none}
  .hero{
    grid-template-columns:1fr;
    min-height:auto;
    padding:70px 22px 60px;
  }
  .hero-visual{min-height:620px}
  .phone-main{left:0;width:72%}
  .deal-float{right:0;width:220px}
  .qr-float{right:0;width:240px}
  .form-row{grid-template-columns:1fr}
  .stats{grid-template-columns:1fr 1fr;margin:0 auto 45px}
  .categories-savings,.business{grid-template-columns:1fr;padding:0 22px 55px}
  .saving-cards,.category-grid{grid-template-columns:1fr 1fr}
  .total-card{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .vip-section{display:block;padding:32px 24px}
  .vip-section a{display:inline-block;margin-top:22px}
  .logos div{grid-template-columns:1fr 1fr}
  .footer{grid-template-columns:1fr}
}

@media(max-width:560px){
  .topbar{height:auto;padding:14px 18px}
  .brand strong{font-size:16px}
  .brand small{display:none}
  .hero h1{font-size:64px}
  .hero-text{font-size:19px}
  .hero-visual{min-height:520px}
  .phone-main{width:86%}
  .deal-float{top:255px;right:4px}
  .qr-float{bottom:0;width:235px}
  .stats{grid-template-columns:1fr}
  .business-image{grid-template-columns:1fr}
  .merchant-photo{min-height:180px}
}


/* FULL WIDTH HERO VIDEO */
.hero-video-section{
  width:100%;
  background:#000;
  overflow:hidden;
  margin-top:70px;
}
.hero-video{
  width:100%;
  display:block;
  object-fit:cover;
  max-height:700px;
}

/* Production screenshot-backed marketing sections */
.section-image{
  width:100%;
  background:#f7f2e8;
  padding:0;
  margin:0;
  display:block;
}
.section-image img{
  display:block;
  width:100%;
  height:auto;
  margin:0 auto;
}
.section-image-save{
  margin-top:0;
}
.section-image-how{
  scroll-margin-top:90px;
}

@media(max-width:980px){
  .section-image{
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
  }
  .section-image img{
    min-width:900px;
  }
}

@media(max-width:560px){
  .section-image img{
    min-width:760px;
  }
}


/* Download App Store / Google Play Section */
.download-card{
  width:100%;
  max-width:720px;
  margin:0 0 28px;
  padding:0;
  color:white;
}
.download-card h2{
  margin:0 0 8px;
  font-size:30px;
  line-height:1.05;
}
.download-card p{
  margin:0 0 18px;
  font-weight:800;
  color:rgba(255,255,255,.86);
}
.store-buttons{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.store-badge{
  min-width:205px;
  height:66px;
  border-radius:14px;
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 18px;
  color:white;
  box-shadow:0 18px 48px rgba(0,0,0,.28);
  border:1px solid rgba(255,255,255,.18);
}
.store-icon{
  font-size:32px;
  line-height:1;
  font-weight:900;
}
.store-badge small{
  display:block;
  font-size:11px;
  line-height:1;
  letter-spacing:.04em;
  opacity:.86;
  text-transform:uppercase;
}
.store-badge strong{
  display:block;
  font-size:24px;
  line-height:1.1;
  font-weight:950;
}
.app-store{
  background:#355F7C;
}
.google-play{
  background:#24313A;
}
.download-note{
  margin-top:12px!important;
  font-size:14px;
  color:#DCEAF0!important;
}
.footer-download p{
  margin:0 0 12px;
  color:rgba(255,255,255,.72);
}
.footer-store-buttons{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.mini-store-badge{
  display:inline-flex!important;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:0 14px;
  border-radius:7px;
  background:rgba(255,255,255,.12);
  color:white;
  font-weight:950!important;
  margin:0!important;
}
@media(max-width:560px){
  .store-buttons{
    display:grid;
    grid-template-columns:1fr;
  }
  .store-badge{
    width:100%;
    min-width:0;
  }
}


/* NAVY MOBILE APP PALETTE OVERRIDE */
:root{
  --green:#355F7C;
  --green-2:#7FA3B8;
  --lime:#7FA3B8;
  --cream:#DCEAF0;
  --white:#fffdf8;
  --ink:#24313A;
  --muted:#5f7480;
  --line:#c9d9e1;
  --clay:#C9876D;
  --gold:#f2c24d;
  --shadow:0 24px 80px rgba(36,49,58,.20);
}
body{color:var(--ink);background:var(--cream);}
.topbar{background:rgba(36,49,58,.82);border-bottom:1px solid rgba(220,234,240,.18);}
.nav-button{background:#7FA3B8;box-shadow:0 12px 35px rgba(127,163,184,.34);}
.eyebrow,.hero h1 span{color:#DCEAF0;}
.hero-bg{
  background:
    linear-gradient(90deg,rgba(36,49,58,.90),rgba(36,49,58,.62),rgba(36,49,58,.78)),
    radial-gradient(circle at 25% 45%,rgba(127,163,184,.28),transparent 25%),
    url("assets/hero-background.png") !important;
}
.unmute-button{background:rgba(53,95,124,.94)!important;}
.unmute-button:hover{background:rgba(127,163,184,.95)!important;}
.store-badge.app-store{background:#355F7C;}
.store-badge.google-play{background:#24313A;}
.deal-float small,.deal-float strong,.qr-float small,.qr-float span,.logos p,.categories-savings .eyebrow,.how .eyebrow,.business .eyebrow{color:#355F7C;}
.deal-float b,.merchant-form button{background:#355F7C;}
.stats strong,.categories h2,.savings h2,.how h2,.business h2,.vip-section h2,.steps h3{color:#24313A;}
.stat-icon,.category-grid span,.steps span{background:#DCEAF0;color:#355F7C;}
.vip-section,.footer{background:#24313A;}
.business-image{background:#355F7C;}
.business-button,.vip-section a{background:#C9876D;}
.total-card{background:linear-gradient(135deg,#24313A,#355F7C);}
.total-card strong,.total-card svg{color:#DCEAF0;}
.section-image{background:#DCEAF0;}
.mini-store-badge{background:rgba(127,163,184,.22);}


/* FINAL NAVY FIXES - logo, navy section images, readable VIP/footer copy */
.brand img,
.footer-brand img{
  object-fit:cover;
  background:#24313A;
}

.vip-section{
  background:#24313A !important;
  color:#ffffff !important;
  min-height:230px;
}

.vip-section .eyebrow,
.vip-section h2,
.vip-section p{
  color:#ffffff !important;
}

.vip-section h2{
  display:block !important;
  opacity:1 !important;
  visibility:visible !important;
  font-size:clamp(42px,6vw,74px) !important;
  line-height:.95 !important;
  margin:0 0 16px !important;
}

.vip-section p{
  color:rgba(255,255,255,.88) !important;
  max-width:820px;
}

.vip-section a{
  background:#C9876D !important;
  color:#ffffff !important;
}

.section-image{
  background:#DCEAF0 !important;
}

.section-image-save img,
.section-image-how img{
  width:100%;
  height:auto;
  display:block;
}

.footer{
  background:#24313A !important;
  color:#ffffff !important;
}

.footer h3,
.footer p,
.footer a,
.footer small,
.footer strong{
  color:#ffffff !important;
}

.footer .brand small,
.footer-download p,
.copyright,
.terms{
  color:rgba(255,255,255,.78) !important;
}

.nav-button,
.store-badge.app-store{
  background:#7FA3B8 !important;
}

.store-badge.google-play{
  background:#24313A !important;
}

.download-note{
  color:#DCEAF0 !important;
}


/* FINAL HERO APP + QR IMAGE UPDATE */
.hero-visual-clean{
  min-height:680px !important;
}

.hero-visual-clean .phone-main{
  width:min(400px,48%) !important;
  left:4% !important;
  top:0 !important;
  border-radius:34px !important;
  object-fit:contain !important;
  filter:drop-shadow(0 34px 70px rgba(0,0,0,.50)) !important;
}

.hero-visual-clean .qr-image-card{
  width:min(315px,40%) !important;
  right:5% !important;
  top:255px !important;
  border-radius:24px !important;
  object-fit:contain !important;
  transform:rotate(7deg) !important;
  filter:drop-shadow(0 30px 65px rgba(0,0,0,.42)) !important;
  box-shadow:none !important;
}

.hero-visual-clean .clean-deal-float{
  right:3% !important;
  top:48px !important;
}

.business-performance img{
  content:url("assets/app-map-final.png");
}

@media(max-width:980px){
  .hero-visual-clean{
    min-height:650px !important;
  }
  .hero-visual-clean .phone-main{
    width:56% !important;
    left:0 !important;
  }
  .hero-visual-clean .qr-image-card{
    width:270px !important;
    right:0 !important;
    top:250px !important;
  }
}

@media(max-width:560px){
  .hero-visual-clean{
    min-height:570px !important;
  }
  .hero-visual-clean .phone-main{
    width:72% !important;
    left:0 !important;
  }
  .hero-visual-clean .clean-deal-float{
    width:185px !important;
    right:0 !important;
    top:25px !important;
  }
  .hero-visual-clean .qr-image-card{
    width:220px !important;
    right:0 !important;
    top:270px !important;
  }
}


/* BUSINESS + FOOTER CLEANUP FIX */
.business{
  background:#DCEAF0 !important;
  position:relative !important;
  overflow:hidden !important;
}

.business::before,
.business::after,
.logos::before,
.logos::after,
.footer::before,
.footer::after{
  content:none !important;
  display:none !important;
}

.business-image{
  background:#355F7C !important;
  border-radius:18px !important;
}

.business-button{
  background:#C9876D !important;
  color:#ffffff !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:auto !important;
  min-width:260px !important;
  min-height:52px !important;
  padding:0 22px !important;
  border-radius:10px !important;
}

.business-performance{
  background:#DCEAF0 !important;
  border:14px solid #C9876D !important;
  border-radius:12px !important;
}

.logos{
  background:#DCEAF0 !important;
  border-top:1px solid #c9d9e1 !important;
}

.footer{
  background:#24313A !important;
  color:#ffffff !important;
  position:relative !important;
  overflow:hidden !important;
}

.footer > *,
.footer .brand,
.footer .footer-brand,
.footer-download,
.footer div{
  background:transparent !important;
}

.footer h3,
.footer p,
.footer a,
.footer small,
.footer strong{
  color:#ffffff !important;
}

/* Keep only intended brown CTA accents */
.vip-section a,
.business-button{
  background:#C9876D !important;
}

/* Hero video height update */
.hero-video-section{
  height:820px !important;
  max-height:none !important;
  overflow:hidden !important;
}

.hero-video{
  width:100% !important;
  height:100% !important;
  max-height:none !important;
  object-fit:cover !important;
  object-position:center center !important;
}

@media(max-width:980px){
  .hero-video-section{
    height:620px !important;
  }
}

@media(max-width:560px){
  .hero-video-section{
    height:520px !important;
  }
}


/* FINAL BUSINESS SECTION POLISH - remove clay border, navy buttons */
.business-performance{
  background:#DCEAF0 !important;
  border:6px solid #ffffff !important;
  border-radius:18px !important;
  min-height:230px !important;
  box-shadow:0 18px 50px rgba(36,49,58,.12) !important;
  overflow:hidden !important;
}

.business-performance img{
  width:155px !important;
  max-height:210px !important;
  object-fit:contain !important;
  border-radius:20px !important;
  box-shadow:0 18px 45px rgba(36,49,58,.20) !important;
}

.performance-card{
  right:18px !important;
  bottom:18px !important;
  width:176px !important;
  border-radius:14px !important;
  box-shadow:0 18px 44px rgba(36,49,58,.18) !important;
}

.business-button,
.vip-section a{
  background:#355F7C !important;
  color:#ffffff !important;
  box-shadow:0 14px 34px rgba(53,95,124,.24) !important;
}

.business-button:hover,
.vip-section a:hover{
  background:#24313A !important;
}

.nav-button{
  background:#7FA3B8 !important;
}

.merchant-form button{
  background:#355F7C !important;
  color:#ffffff !important;
}

/* remove any leftover clay blocks/borders in this lower section */
.business,
.logos,
.footer{
  border-color:#c9d9e1 !important;
}

@media(max-width:980px){
  .business-performance{
    min-height:260px !important;
  }
  .business-performance img{
    width:145px !important;
  }
}


/* MOBILE HEADER + PORTRAIT VIDEO FIX */
.hero-video-actions{
  position:absolute;
  left:24px;
  right:24px;
  bottom:24px;
  z-index:25;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  pointer-events:none;
}

.hero-video-actions button{
  pointer-events:auto;
}

.next-video-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:0;
  border-radius:999px;
  padding:14px 18px;
  background:rgba(36,49,58,.86);
  color:#fff;
  font:inherit;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 14px 38px rgba(0,0,0,.28);
  backdrop-filter:blur(10px);
}

.next-video-button:hover{
  background:rgba(53,95,124,.96);
}

@media(max-width:560px){
  body{
    overflow-x:hidden;
  }

  .topbar{
    position:relative !important;
    height:68px !important;
    padding:8px 14px !important;
    background:#24313A !important;
    backdrop-filter:none !important;
  }

  .topbar .brand{
    gap:8px !important;
  }

  .topbar .brand img{
    width:38px !important;
    height:38px !important;
    border-radius:10px !important;
  }

  .topbar .brand strong{
    font-size:15px !important;
    line-height:1.05 !important;
  }

  .topbar .brand small{
    display:block !important;
    font-size:10px !important;
    margin-top:2px !important;
    line-height:1.05 !important;
    color:rgba(255,255,255,.78) !important;
  }

  .topbar nav{
    gap:0 !important;
  }

  .topbar nav a:not(.nav-button){
    display:none !important;
  }

  .topbar .nav-button{
    padding:10px 18px !important;
    min-width:132px !important;
    min-height:46px !important;
    border-radius:999px !important;
    font-size:15px !important;
    line-height:1.05 !important;
    text-align:center !important;
    background:#7FA3B8 !important;
    color:#ffffff !important;
    box-shadow:none !important;
  }

  .hero-video-section{
    margin-top:0 !important;
    height:calc(100svh - 68px) !important;
    min-height:520px !important;
    max-height:760px !important;
    background:#000 !important;
  }

  .hero-video{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    object-position:center top !important;
    display:block !important;
  }

  .hero-video-actions{
    left:12px !important;
    right:12px !important;
    bottom:14px !important;
    justify-content:space-between !important;
    gap:8px !important;
  }

  .unmute-button,
  .next-video-button{
    position:static !important;
    right:auto !important;
    bottom:auto !important;
    padding:10px 12px !important;
    min-height:40px !important;
    border-radius:999px !important;
    font-size:12px !important;
    line-height:1 !important;
    white-space:nowrap !important;
    box-shadow:0 10px 24px rgba(0,0,0,.26) !important;
  }

  .unmute-button{
    background:rgba(53,95,124,.94) !important;
  }

  .next-video-button{
    background:rgba(36,49,58,.90) !important;
  }

  main#home{
    margin-top:0 !important;
  }
}


/* MOBILE HEADER DOWNLOAD BUTTON + VIDEO SPACING POLISH */
.nav-download-button{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:9px !important;
  text-align:center !important;
}

.store-mini-icons{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:4px !important;
  flex:0 0 auto !important;
  font-size:15px !important;
  line-height:1 !important;
  opacity:.95 !important;
}

.store-mini-icons span{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:20px !important;
  height:20px !important;
  border-radius:50% !important;
  background:rgba(255,255,255,.16) !important;
  color:#ffffff !important;
  font-size:12px !important;
  font-weight:950 !important;
}

.download-label{
  display:inline-block !important;
  line-height:1.05 !important;
  text-align:center !important;
}

@media(max-width:560px){
  .topbar .nav-download-button{
    min-width:142px !important;
    min-height:48px !important;
    padding:8px 12px !important;
    gap:7px !important;
  }

  .topbar .store-mini-icons{
    gap:3px !important;
  }

  .topbar .store-mini-icons span{
    width:18px !important;
    height:18px !important;
    font-size:11px !important;
  }

  .topbar .download-label{
    font-size:14px !important;
    font-weight:950 !important;
    line-height:1.05 !important;
  }

  /* Keep the portrait video nice, but push the next hero section lower */
  .hero-video-section{
    margin-bottom:54px !important;
  }

  .hero{
    padding-top:34px !important;
  }
}

@media(max-width:380px){
  .topbar .nav-download-button{
    min-width:128px !important;
    padding:8px 10px !important;
  }

  .topbar .download-label{
    font-size:13px !important;
  }

  .topbar .store-mini-icons span{
    width:16px !important;
    height:16px !important;
    font-size:10px !important;
  }
}


/* FINAL MOBILE HEADER TWEAK - one-line brand, smaller download button, tighter section spacing */
@media(max-width:560px){
  .topbar{
    height:62px !important;
    padding:7px 12px !important;
  }

  .topbar .brand{
    min-width:0 !important;
    flex:1 1 auto !important;
    max-width:220px !important;
    gap:7px !important;
  }

  .topbar .brand img{
    width:34px !important;
    height:34px !important;
    border-radius:8px !important;
    flex:0 0 auto !important;
  }

  .topbar .brand span{
    min-width:0 !important;
    display:block !important;
  }

  .topbar .brand strong{
    display:block !important;
    white-space:nowrap !important;
    font-size:13px !important;
    line-height:1 !important;
    letter-spacing:.02em !important;
    overflow:visible !important;
    text-overflow:clip !important;
  }

  .topbar .brand small{
    display:block !important;
    white-space:nowrap !important;
    font-size:10px !important;
    line-height:1 !important;
    margin-top:3px !important;
  }

  .topbar nav{
    flex:0 0 auto !important;
  }

  .topbar .nav-download-button{
    min-width:106px !important;
    min-height:38px !important;
    padding:6px 10px !important;
    gap:5px !important;
    border-radius:999px !important;
  }

  .topbar .store-mini-icons{
    gap:2px !important;
    font-size:10px !important;
  }

  .topbar .store-mini-icons span{
    width:15px !important;
    height:15px !important;
    font-size:9px !important;
    background:rgba(255,255,255,.18) !important;
  }

  .topbar .store-mini-icons i{
    display:inline-block !important;
    font-style:normal !important;
    color:rgba(255,255,255,.55) !important;
    font-weight:900 !important;
    margin:0 1px !important;
  }

  .topbar .download-label{
    font-size:11px !important;
    letter-spacing:.02em !important;
    font-weight:950 !important;
    line-height:1 !important;
  }

  .hero-video-section{
    height:calc(100svh - 62px) !important;
    min-height:520px !important;
    max-height:760px !important;
    margin-bottom:16px !important;
  }

  .hero{
    padding-top:12px !important;
  }
}

@media(max-width:380px){
  .topbar .brand{
    max-width:205px !important;
  }

  .topbar .brand strong{
    font-size:12px !important;
  }

  .topbar .brand small{
    font-size:9px !important;
  }

  .topbar .nav-download-button{
    min-width:98px !important;
    padding:6px 8px !important;
  }

  .topbar .download-label{
    font-size:10px !important;
  }
}


/* FINAL MOBILE VIDEO GAP FIX */
@media(max-width:560px){
  .hero-video-section{
    margin-bottom:-18px !important;
  }

  main#home{
    margin-top:0 !important;
    padding-top:0 !important;
  }

  main#home > .hero:first-child{
    margin-top:0 !important;
    padding-top:0 !important;
  }
}

@media(max-width:380px){
  .hero-video-section{
    margin-bottom:-22px !important;
  }
}


/* RIGHT-SIDE HERO IMAGE UPDATE ONLY - new blue app screenshots */
.hero-visual-clean .phone-main{
  width:min(390px,47%) !important;
  max-height:640px !important;
  object-fit:contain !important;
  object-position:top center !important;
  border-radius:28px !important;
}

.hero-visual-clean .qr-image-card{
  width:min(305px,38%) !important;
  max-height:520px !important;
  object-fit:contain !important;
  object-position:top center !important;
  border-radius:24px !important;
}

@media(max-width:980px){
  .hero-visual-clean .phone-main{
    width:55% !important;
    max-height:610px !important;
  }

  .hero-visual-clean .qr-image-card{
    width:255px !important;
    max-height:470px !important;
  }
}

@media(max-width:560px){
  .hero-visual-clean .phone-main{
    width:72% !important;
    max-height:540px !important;
  }

  .hero-visual-clean .qr-image-card{
    width:215px !important;
    max-height:410px !important;
  }
}


/* EC logo/header refresh */
.topbar{
  background: linear-gradient(90deg, #1976E8 0%, #1565D8 45%, #0D47C7 100%) !important;
}
@media(max-width:560px){
  .topbar{
    background: linear-gradient(90deg, #1976E8 0%, #1565D8 45%, #0D47C7 100%) !important;
  }
}
.brand img,
.footer-brand img{
  object-fit:contain !important;
  background:transparent !important;
  border-radius:12px;
  box-shadow:0 6px 16px rgba(0,0,0,.18);
}


/* CLEAN BUSINESS PROMO BANNER - replaces old business/logos section */
.business-banner-clean{
  width:100%;
  background:#ffffff;
  padding:40px 0 20px;
  display:flex;
  justify-content:center;
  align-items:center;
  border-top:1px solid #e8eef2;
}

.business-banner-clean img{
  width:min(1500px,96%);
  height:auto;
  display:block;
  border-radius:24px;
  box-shadow:0 24px 80px rgba(36,49,58,.10);
}

@media (max-width:980px){
  .business-banner-clean{
    padding:20px 0;
  }

  .business-banner-clean img{
    width:100%;
    border-radius:0;
    box-shadow:none;
  }
}

/* BLUE GRADIENT DOWNLOAD STRIP BETWEEN IMAGE SECTIONS */
.launch-waitlist{
  width:100%;
  background:#ffffff;
  padding:26px clamp(22px,5vw,64px) 0;
}

.launch-waitlist-inner{
  width:min(1380px,100%);
  margin:0 auto;
  border-radius:24px;
  padding:24px 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  background:linear-gradient(135deg,#F3FAFF 0%,#E3F2FF 100%);
  border:1px solid #b9dcf7;
  box-shadow:0 18px 50px rgba(10,92,210,.12);
}

.launch-waitlist-copy{
  min-width:0;
}

.launch-waitlist-copy span{
  display:block;
  margin-bottom:6px;
  color:#0B6FE8;
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:12px;
  font-weight:950;
}

.launch-waitlist-copy strong{
  display:block;
  color:#08294A;
  font-size:clamp(24px,2.4vw,36px);
  line-height:1.04;
  letter-spacing:-.035em;
  font-weight:950;
}

.launch-waitlist-copy p{
  margin:8px 0 0;
  color:#526B7A;
  font-size:16px;
  font-weight:750;
}

.launch-waitlist-form{
  width:min(520px,100%);
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.launch-waitlist-form label{
  flex:1;
}

.launch-waitlist-form input{
  min-height:56px;
  border:1px solid #a9d1ef;
  border-radius:14px;
  background:#ffffff;
}

.launch-waitlist-form button{
  min-height:56px;
  border:0;
  border-radius:14px;
  padding:0 22px;
  background:linear-gradient(135deg,#0B6FE8 0%,#003CBA 100%);
  color:#ffffff;
  font:inherit;
  font-weight:950;
  white-space:nowrap;
  cursor:pointer;
  box-shadow:0 16px 38px rgba(11,111,232,.24);
}

.launch-waitlist-message{
  width:100%;
  margin:8px 0 0;
  color:#0B6FE8;
  font-size:14px;
  font-weight:900;
}

.app-download-strip{
  width:100%;
  background:#ffffff;
  padding:22px clamp(22px,5vw,64px);
  border-top:1px solid #d8e7f3;
  border-bottom:1px solid #d8e7f3;
}

.app-download-strip-inner{
  width:min(1380px,100%);
  margin:0 auto;
  min-height:118px;
  border-radius:28px;
  padding:22px 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  color:#ffffff;
  background:linear-gradient(135deg,#1EA7FF 0%,#0B6FE8 45%,#003CBA 100%);
  box-shadow:0 24px 70px rgba(10,92,210,.24);
  overflow:hidden;
  position:relative;
}

.app-download-strip-inner::before{
  content:"";
  position:absolute;
  inset:-80px auto auto -80px;
  width:220px;
  height:220px;
  border-radius:50%;
  background:rgba(255,255,255,.14);
}

.app-download-strip-inner::after{
  content:"";
  position:absolute;
  right:-90px;
  bottom:-120px;
  width:280px;
  height:280px;
  border-radius:50%;
  background:rgba(255,255,255,.10);
}

.app-download-copy,
.app-download-buttons{
  position:relative;
  z-index:2;
}

.app-download-eyebrow{
  display:block;
  margin-bottom:6px;
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:13px;
  font-weight:950;
  color:rgba(255,255,255,.78);
}

.app-download-copy strong{
  display:block;
  font-size:clamp(28px,3vw,44px);
  line-height:1;
  letter-spacing:-.04em;
  font-weight:950;
}

.app-download-copy p{
  margin:8px 0 0;
  color:rgba(255,255,255,.84);
  font-size:17px;
  font-weight:800;
}

.app-download-buttons{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.download-store-button{
  min-width:210px;
  min-height:64px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:10px 18px;
  color:#ffffff;
  border:1px solid rgba(255,255,255,.24);
  box-shadow:0 16px 40px rgba(0,0,0,.20);
  transition:transform .18s ease, box-shadow .18s ease;
}

.download-store-button:hover{
  transform:translateY(-2px);
  box-shadow:0 22px 55px rgba(0,0,0,.24);
}

.download-store-icon{
  font-size:31px;
  line-height:1;
  font-weight:950;
}

.download-store-button small{
  display:block;
  font-size:11px;
  line-height:1;
  text-transform:uppercase;
  letter-spacing:.05em;
  color:rgba(255,255,255,.80);
  font-weight:800;
}

.download-store-button b{
  display:block;
  font-size:24px;
  line-height:1.08;
  color:#ffffff;
  font-weight:950;
}

.download-store-apple{
  background:linear-gradient(135deg,#2D9CDB 0%,#0B61D8 100%);
}

.download-store-google{
  background:linear-gradient(135deg,#24313A 0%,#0B3E78 100%);
}

@media(max-width:980px){
  .launch-waitlist-inner{
    align-items:flex-start;
    flex-direction:column;
  }

  .app-download-strip-inner{
    align-items:flex-start;
    flex-direction:column;
  }
}

@media(max-width:560px){
  .launch-waitlist{
    padding:14px 14px 0;
  }
  .launch-waitlist-inner{
    border-radius:20px;
    padding:20px;
  }
  .launch-waitlist-form{
    display:grid;
    grid-template-columns:1fr;
  }
  .launch-waitlist-form button{
    width:100%;
  }
  .app-download-strip{
    padding:14px 14px;
  }
  .app-download-strip-inner{
    border-radius:20px;
    padding:20px;
    gap:18px;
  }
  .app-download-buttons{
    width:100%;
    display:grid;
    grid-template-columns:1fr;
  }
  .download-store-button{
    width:100%;
    min-width:0;
  }
}


/* FINAL TIGHT HEADER + FOOTER BLUE POLISH */
.topbar{
  height:64px !important;
  padding:0 clamp(18px,4vw,54px) !important;
  background:linear-gradient(90deg,#1EA7FF 0%,#0B6FE8 48%,#003CBA 100%) !important;
  box-shadow:0 8px 28px rgba(0,60,186,.20) !important;
}

.topbar .brand img{
  width:42px !important;
  height:42px !important;
  border-radius:11px !important;
}

.topbar .brand strong{
  font-size:16px !important;
  letter-spacing:.01em !important;
}

.topbar .brand small{
  font-size:12px !important;
  margin-top:4px !important;
}

.topbar nav{
  gap:28px !important;
}

.topbar nav > a:not(.nav-button){
  font-size:15px !important;
}

.nav-download-button,
.topbar .nav-download-button{
  background:linear-gradient(135deg,#A8D7FF 0%,#5AAEF2 42%,#0B6FE8 100%) !important;
  color:#ffffff !important;
  border:1px solid rgba(255,255,255,.34) !important;
  box-shadow:0 12px 30px rgba(0,75,190,.26) !important;
  padding:11px 22px !important;
  min-height:46px !important;
}

.nav-download-button:hover,
.topbar .nav-download-button:hover{
  background:linear-gradient(135deg,#D6EEFF 0%,#7CC4FF 38%,#0061D8 100%) !important;
  transform:translateY(-1px);
}

.footer{
  grid-template-columns:1.15fr .6fr .6fr .9fr !important;
  gap:28px !important;
  padding:34px clamp(28px,6vw,76px) 22px !important;
  background:#24313A !important;
  box-shadow:0 -16px 50px rgba(36,49,58,.16) !important;
}

.footer .brand{
  gap:10px !important;
}

.footer .brand img{
  width:40px !important;
  height:40px !important;
  border-radius:10px !important;
}

.footer .brand strong{
  font-size:16px !important;
}

.footer .brand small{
  font-size:12px !important;
  margin-top:4px !important;
}

.footer h3{
  margin:0 0 10px !important;
  font-size:12px !important;
  letter-spacing:.18em !important;
}

.footer a{
  margin:6px 0 !important;
  font-size:14px !important;
  line-height:1.2 !important;
}

.footer-download p{
  margin:0 0 10px !important;
  font-size:14px !important;
}

.footer-store-buttons{
  gap:8px !important;
}

.mini-store-badge{
  min-height:36px !important;
  padding:0 13px !important;
  border-radius:8px !important;
  background:linear-gradient(135deg,#2D9CDB 0%,#0B6FE8 100%) !important;
  color:#ffffff !important;
  box-shadow:0 10px 24px rgba(11,111,232,.18) !important;
}

.footer-store-buttons .mini-store-badge:nth-child(2){
  background:linear-gradient(135deg,#1E3A5A 0%,#0B6FE8 100%) !important;
}

.socials{
  margin-top:14px !important;
  gap:8px !important;
}

.socials a{
  width:26px !important;
  height:26px !important;
  margin:0 !important;
  background:rgba(255,255,255,.13) !important;
}

.copyright{
  margin-top:16px !important;
  font-size:14px !important;
}

.terms{
  font-size:14px !important;
}

.terms a{
  margin:0 14px !important;
}

@media(max-width:980px){
  .footer{
    grid-template-columns:1fr 1fr !important;
    gap:24px !important;
    padding:30px 24px 20px !important;
  }
  .copyright,
  .terms{
    grid-column:1/-1 !important;
  }
}

@media(max-width:560px){
  .topbar{
    height:60px !important;
    padding:7px 12px !important;
  }

  .topbar .brand img{
    width:34px !important;
    height:34px !important;
  }

  .topbar .brand strong{
    font-size:12px !important;
  }

  .topbar .brand small{
    font-size:9px !important;
  }

  .topbar .nav-download-button{
    min-width:106px !important;
    min-height:38px !important;
    padding:6px 10px !important;
    background:linear-gradient(135deg,#A8D7FF 0%,#2D9CDB 42%,#0B6FE8 100%) !important;
  }

  .footer{
    grid-template-columns:1fr !important;
    text-align:left !important;
    gap:18px !important;
    padding:28px 22px 20px !important;
  }

  .footer .brand img{
    width:38px !important;
    height:38px !important;
  }

  .footer-store-buttons{
    display:flex !important;
  }
}


/* === FINAL FIX: HEADER-TO-HERO GAP + FOOTER PALETTE === */
html,
body{
  margin:0 !important;
  padding:0 !important;
  background:#DCEAF0 !important;
  overflow-x:hidden !important;
}

.topbar{
  position:fixed !important;
  top:0 !important;
  left:0 !important;
  right:0 !important;
  height:64px !important;
  margin:0 !important;
  background:linear-gradient(90deg,#1EA7FF 0%,#0B6FE8 48%,#003CBA 100%) !important;
  border-bottom:0 !important;
  box-shadow:0 8px 24px rgba(0,60,186,.20) !important;
}

.hero-video-section{
  margin-top:0 !important;
  padding-top:0 !important;
  border-top:0 !important;
  display:block !important;
  background:#000 !important;
}

.hero-video{
  display:block !important;
  margin:0 !important;
  padding:0 !important;
  border:0 !important;
}

main#home,
main,
#home{
  margin-top:0 !important;
  padding-top:0 !important;
  background:#ffffff !important;
}

.business-banner-clean{
  margin-bottom:0 !important;
  padding-bottom:0 !important;
  background:#ffffff !important;
}

.footer{
  width:100% !important;
  margin:0 !important;
  border-radius:0 !important;
  border:0 !important;
  background:linear-gradient(135deg,#1E3A5A 0%,#24313A 55%,#0B2E4A 100%) !important;
  color:#ffffff !important;
  box-shadow:none !important;
}

.footer h3,
.footer p,
.footer a,
.footer small,
.footer strong{
  color:#ffffff !important;
}

.footer .brand small,
.footer-download p,
.copyright,
.terms{
  color:rgba(255,255,255,.80) !important;
}

.mini-store-badge{
  background:linear-gradient(135deg,#1EA7FF 0%,#0B6FE8 55%,#003CBA 100%) !important;
  color:#ffffff !important;
}

.footer-store-buttons .mini-store-badge:nth-child(2){
  background:linear-gradient(135deg,#24313A 0%,#0B6FE8 100%) !important;
}

@media(max-width:980px){
  .topbar{
    position:fixed !important;
  }
  .hero-video-section{
    margin-top:0 !important;
  }
}

@media(max-width:560px){
  .topbar{
    position:fixed !important;
    height:60px !important;
  }
  .hero-video-section{
    margin-top:0 !important;
    margin-bottom:0 !important;
    height:calc(100svh - 0px) !important;
  }
}
