*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --orange:#E6391C;
  --orange-dark:#c42e13;
  --black:#0a0a0a;
  --black2:#111111;
  --white:#ffffff;
  --gray:#f5f5f5;
  --gray2:#e8e8e8;
  --text:#333333;
  --text2:#666666;
  --font:'Montserrat',Arial,sans-serif;
}
html{scroll-behavior:smooth}
body{font-family:var(--font);color:var(--text);background:var(--white);-webkit-font-smoothing:antialiased;overflow-x:hidden}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}
:focus-visible{outline:2px solid var(--orange);outline-offset:2px;border-radius:2px}

.nav{
  position:fixed;top:0;left:0;right:0;z-index:300;
  padding:0 2.5rem;height:80px;
  display:flex;align-items:center;justify-content:space-between;
  background:rgba(255,255,255,0);
  transition:background .35s ease,box-shadow .35s ease;
}
.nav.scrolled{background:rgba(255,255,255,.97);box-shadow:0 1px 20px rgba(0,0,0,.08)}
.nav.scrolled .nav-link{color:var(--text)}
.nav.scrolled .nav-link:hover{color:var(--orange)}
.nav-logo{display:flex;align-items:center;gap:10px}

.logo-icon{display:flex;gap:4px;align-items:flex-end}
.logo-bar1{width:9px;height:32px;background:var(--orange)}
.logo-bar2{width:9px;height:22px;background:var(--orange)}
.logo-word{
  font-family:var(--font);font-size:1.25rem;font-weight:700;
  color:var(--white);letter-spacing:-.01em;
  transition:color .35s ease;
}
.nav.scrolled .logo-word{color:var(--black)}
.logo-v{color:var(--orange)}

.nav-links-wrap{display:flex;align-items:center;gap:.25rem}
.nav-link{
  font-size:.78rem;font-weight:600;letter-spacing:.04em;
  color:rgba(255,255,255,.9);padding:.5rem .9rem;
  transition:color .25s ease;
}
.nav-link:hover{color:var(--orange)}
.nav-cta{
  background:var(--orange);color:var(--white)!important;
  padding:.55rem 1.25rem;font-size:.78rem;font-weight:700;letter-spacing:.04em;
  transition:background .2s;
}
.nav-cta:hover{background:var(--orange-dark)}
.nav-hamburger{
  display:none;background:none;border:none;cursor:pointer;
  padding:6px;color:var(--white);
}
.nav.scrolled .nav-hamburger{color:var(--black)}

.social-sidebar{
  position:fixed;right:1.5rem;top:50%;transform:translateY(-50%);
  z-index:200;display:flex;flex-direction:column;gap:14px;
}
.social-sidebar a{
  width:28px;height:28px;
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,.75);transition:color .2s;
}
.social-sidebar a:hover{color:var(--orange)}
.social-sidebar svg{width:16px;height:16px}

.hero{
  position:relative;min-height:100vh;
  display:flex;align-items:center;
  overflow:hidden;
}

.hero-bg{
  position:absolute;inset:0;z-index:0;
  background:linear-gradient(135deg,#1a1a1a 0%,#2d2d2d 40%,#3a3a3a 100%);
  
}

.hero-bg::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(
    120deg,
    rgba(0,0,0,.65) 0%,
    rgba(0,0,0,.4) 35%,
    rgba(0,0,0,.15) 70%,
    rgba(230,57,28,.08) 100%
  );
}
.hero-content{
  position:relative;z-index:1;
  max-width:1200px;margin:0 auto;
  padding:0 2.5rem;width:100%;
  margin-top:80px;
}
.hero-slide-num{
  display:flex;flex-direction:column;gap:4px;
  position:absolute;left:2.5rem;bottom:10vh;
  font-size:.72rem;font-weight:600;letter-spacing:.1em;color:rgba(255,255,255,.4);
}
.hero-slide-num .active{color:var(--white)}
.hero-line{
  width:2px;height:32px;
  background:linear-gradient(to bottom,var(--orange) 50%,transparent 100%);
  margin-bottom:6px;
}
.hero-tag{
  font-size:.75rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;
  color:var(--orange);margin-bottom:1rem;
  display:flex;align-items:center;gap:8px;
}
.hero-tag::before{content:'';width:20px;height:1.5px;background:var(--orange)}
.hero h1{
  font-size:clamp(2.2rem,5vw,4.2rem);font-weight:300;
  color:var(--white);line-height:1.1;letter-spacing:-.02em;
  margin-bottom:.15em;max-width:560px;
}
.hero h1 strong{font-weight:800;color:var(--orange);display:block}
.hero-sub{
  font-size:1rem;font-weight:300;color:rgba(255,255,255,.7);
  margin-top:1.25rem;margin-bottom:2.25rem;max-width:420px;line-height:1.65;
}
.hero-btns{display:flex;flex-wrap:wrap;gap:1rem}
.btn-hero-primary{
  background:var(--orange);color:var(--white);
  font-size:.82rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;
  padding:.85rem 2rem;
  display:inline-flex;align-items:center;gap:8px;
  transition:background .2s,transform .2s;border:none;cursor:pointer;
}
.btn-hero-primary:hover{background:var(--orange-dark);transform:translateY(-2px);color:var(--white)}
.btn-hero-secondary{
  background:transparent;color:var(--white);
  font-size:.82rem;font-weight:600;letter-spacing:.06em;text-transform:uppercase;
  padding:.85rem 2rem;border:1.5px solid rgba(255,255,255,.4);
  display:inline-flex;align-items:center;gap:8px;
  transition:border-color .2s,transform .2s;cursor:pointer;
}
.btn-hero-secondary:hover{border-color:var(--white);transform:translateY(-2px)}
.hero-scroll{
  position:absolute;bottom:2rem;left:50%;transform:translateX(-50%);
  display:flex;flex-direction:column;align-items:center;gap:6px;
  font-size:.65rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;
  color:rgba(255,255,255,.4);z-index:1;
}
.hero-scroll-line{
  width:1px;height:40px;
  background:linear-gradient(to bottom,var(--orange),transparent);
  animation:scrollLine 2s ease infinite;
}
@keyframes scrollLine{0%{transform:scaleY(0);transform-origin:top}50%{transform:scaleY(1);transform-origin:top}51%{transform:scaleY(1);transform-origin:bottom}100%{transform:scaleY(0);transform-origin:bottom}}

.quick-bar{
  background:var(--orange);
  padding:1.1rem 2.5rem;
  display:flex;justify-content:center;align-items:center;gap:0;
  flex-wrap:wrap;
}
.qb-item{
  display:flex;align-items:center;gap:.75rem;
  padding:.25rem 2.5rem;
  border-right:1px solid rgba(255,255,255,.3);
}
.qb-item:last-child{border-right:none}
.qb-item svg{width:20px;height:20px;color:rgba(255,255,255,.8);flex-shrink:0}
.qb-text{font-size:.8rem;font-weight:600;color:var(--white);letter-spacing:.03em;line-height:1.3}
.qb-text span{display:block;font-size:.68rem;font-weight:400;opacity:.8}

.sec{padding:6rem 2.5rem}
.sec-gray{background:var(--gray)}
.sec-dark{background:var(--black)}
.sec-orange{background:var(--orange);position:relative;overflow:hidden}
.wrap{max-width:1200px;margin:0 auto}

.sec-eyebrow{opacity:1!important;
  font-size:.72rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;
  color:var(--orange);margin-bottom:.65rem;
}
.sec-eyebrow-white{color:rgba(255,255,255,.75)}
.sec-h2{opacity:1!important;
  font-size:clamp(1.8rem,3.5vw,3rem);font-weight:300;
  color:var(--black);letter-spacing:-.02em;line-height:1.15;
  margin-bottom:.6rem;
}
.sec-h2 strong{font-weight:800}
.sec-h2-white{color:var(--white)}
.sec-desc{font-size:.95rem;color:var(--text2);line-height:1.7;max-width:580px;margin-bottom:2.5rem}
.sec-desc-white{color:rgba(255,255,255,.65)}
.sec-desc-center{margin-left:auto;margin-right:auto;text-align:center}

.ben-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:2px;background:var(--gray2)}
.ben-item{
  background:var(--white);padding:2.5rem 2rem;
  transition:background .2s;
  position:relative;
}
.ben-item::after{
  content:'';position:absolute;bottom:0;left:2rem;right:2rem;
  height:2px;background:var(--orange);
  transform:scaleX(0);transition:transform .3s ease;transform-origin:left;
}
.ben-item:hover{background:#fffaf9}
.ben-item:hover::after{transform:scaleX(1)}
.ben-num{
  font-size:2.5rem;font-weight:900;color:rgba(230,57,28,.12);
  line-height:1;margin-bottom:.75rem;letter-spacing:-.04em;
}
.ben-icon-wrap{
  width:46px;height:46px;background:rgba(230,57,28,.08);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:1rem;
}
.ben-icon-wrap svg{width:22px;height:22px;color:var(--orange)}
.ben-title{font-size:.9rem;font-weight:700;color:var(--black);margin-bottom:.4rem;text-transform:uppercase;letter-spacing:.03em}
.ben-desc{font-size:.82rem;color:var(--text2);line-height:1.65}

.prod-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(270px,1fr));gap:1.5rem}
.prod-card{
  border:1px solid var(--gray2);
  transition:border-color .25s,box-shadow .25s,transform .25s;
  display:flex;flex-direction:column;
}
.prod-card:hover{border-color:var(--orange);box-shadow:0 12px 40px rgba(230,57,28,.12);transform:translateY(-4px)}
.prod-card-top{
  background:var(--black);padding:2rem 1.75rem 1.5rem;
  position:relative;overflow:hidden;
}
.prod-card-top::before{
  content:'';position:absolute;top:-40px;right:-40px;
  width:130px;height:130px;border-radius:50%;
  background:rgba(230,57,28,.12);
}
.prod-num{
  font-size:4rem;font-weight:900;color:rgba(255,255,255,.06);
  position:absolute;bottom:-1rem;right:1.25rem;
  line-height:1;letter-spacing:-.05em;
  user-select:none;
}
.prod-icon{
  width:50px;height:50px;background:var(--orange);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:1.25rem;position:relative;z-index:1;
}
.prod-icon svg{width:24px;height:24px;color:var(--white)}
.prod-name{
  font-size:1.05rem;font-weight:800;text-transform:uppercase;letter-spacing:.02em;
  color:var(--white);margin-bottom:4px;position:relative;z-index:1;
}
.prod-sub{font-size:.72rem;color:rgba(255,255,255,.4);text-transform:uppercase;letter-spacing:.06em;position:relative;z-index:1}
.prod-card-body{padding:1.5rem 1.75rem 2rem;flex:1;display:flex;flex-direction:column}
.prod-feats{list-style:none;display:flex;flex-direction:column;gap:.55rem;flex:1}
.prod-feats li{
  font-size:.82rem;color:var(--text2);line-height:1.45;
  display:flex;align-items:flex-start;gap:8px;
}
.prod-feats li::before{
  content:'';width:18px;height:18px;flex-shrink:0;margin-top:1px;
  background:var(--orange);
  mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Ccircle cx='9' cy='9' r='9'/%3E%3Cpolyline points='5.5,9 7.5,11.5 12.5,6' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.prod-link{
  display:inline-flex;align-items:center;gap:6px;
  margin-top:1.5rem;
  font-size:.78rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;
  color:var(--orange);transition:gap .2s;
}
.prod-link:hover{gap:10px}
.prod-link svg{width:14px;height:14px}

.process-dark{background:var(--black);padding:5rem 2.5rem}
.process-head{text-align:center;margin-bottom:4rem}
.process-steps{
  display:flex;align-items:flex-start;justify-content:center;
  gap:0;position:relative;
  max-width:1000px;margin:0 auto;
}
.process-step{
  display:flex;flex-direction:column;align-items:center;text-align:center;
  flex:1;position:relative;z-index:1;
}

.process-step:not(:last-child)::after{
  content:'';
  position:absolute;top:40px;left:50%;right:-50%;
  height:1px;background:rgba(255,255,255,.15);
  z-index:-1;
}
.step-circle{
  width:80px;height:80px;border-radius:50%;
  border:1.5px solid rgba(230,57,28,.5);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:1.25rem;
  transition:background .35s cubic-bezier(.4,0,.2,1),
             border-color .35s cubic-bezier(.4,0,.2,1),
             transform .25s ease,
             box-shadow .35s ease;
  background:transparent;position:relative;cursor:default;
}
.step-circle:hover,.step-circle.active{
  background:var(--orange);border-color:var(--orange);
  transform:scale(1.1);
  box-shadow:0 0 0 6px rgba(230,57,28,.18), 0 8px 24px rgba(230,57,28,.3);
}
.step-num{
  font-size:1.3rem;font-weight:800;color:rgba(255,255,255,.7);letter-spacing:-.02em;
  transition:color .25s ease;
}
.step-circle:hover .step-num,.step-circle.active .step-num{color:var(--white)}
.step-label{
  font-size:.78rem;font-weight:500;color:rgba(255,255,255,.55);line-height:1.5;max-width:120px;
  transition:color .25s ease;
}
.process-step:hover .step-label{color:rgba(255,255,255,.85)}

.app-inner{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center}
.app-features-grid{display:grid;grid-template-columns:1fr 1fr;gap:2rem;margin-top:2.5rem;}
.app-feat{display:flex;flex-direction:column;align-items:flex-start;gap:.5rem}
.app-feat-icon{
  width:44px;height:44px;
  display:flex;align-items:center;justify-content:center;
  color:var(--orange);
}
.app-feat-icon svg{width:28px;height:28px}
.app-feat-title{font-size:.9rem;font-weight:700;color:var(--black)}
.app-feat-desc{font-size:.78rem;color:var(--text2);line-height:1.55}
.app-visual{
  display:flex;justify-content:center;align-items:center;
  position:relative;
}

.phone-frame{
  width:240px;height:480px;
  background:var(--black);border-radius:40px;
  border:6px solid #222;
  position:relative;overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,.3);
}
.phone-notch{
  position:absolute;top:12px;left:50%;transform:translateX(-50%);
  width:80px;height:20px;background:#222;border-radius:20px;z-index:2;
}
.phone-screen{
  position:absolute;inset:0;
  display:flex;align-items:center;justify-content:center;flex-direction:column;gap:12px;
  background:var(--black);
  padding:50px 20px 20px;
}
.phone-logo-icon{display:flex;gap:5px;align-items:flex-end}
.phone-logo-bar1{width:12px;height:42px;background:var(--orange)}
.phone-logo-bar2{width:12px;height:28px;background:var(--orange)}
.phone-logo-word{
  font-family:var(--font);font-size:1rem;font-weight:700;color:var(--white);letter-spacing:-.01em;
}
.phone-logo-word .v{color:var(--orange)}

.mx-banner{
  background:var(--orange);
  padding:4rem 2.5rem;
  position:relative;overflow:hidden;
}

.mx-banner::before{
  content:'';position:absolute;inset:0;
  background:
    radial-gradient(ellipse 60% 80% at 35% 50%,rgba(255,255,255,.06) 0%,transparent 70%),
    radial-gradient(ellipse 40% 60% at 65% 45%,rgba(0,0,0,.08) 0%,transparent 60%);
  pointer-events:none;
}
.mx-inner{
  max-width:1000px;margin:0 auto;
  display:grid;grid-template-columns:1fr auto 1fr;gap:2rem;align-items:center;
  position:relative;z-index:1;
}
.mx-stat{text-align:center}
.mx-num{font-size:clamp(3rem,8vw,6.5rem);font-weight:900;color:#ffffff!important;line-height:.9;letter-spacing:-.04em;}
.mx-pre{font-size:clamp(1.5rem,3vw,2.5rem);font-weight:300;display:block}
.mx-label{font-size:.85rem;font-weight:600;color:#ffffff!important;margin-top:.75rem;text-transform:uppercase;letter-spacing:.08em}
.mx-divider{width:1px;height:80px;background:rgba(255,255,255,.25)}
.mx-mid{text-align:center}
.mx-mid-text{
  font-size:.85rem;font-weight:500;color:rgba(255,255,255,.75);
  max-width:200px;margin:0 auto;line-height:1.5;
}

.why-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:0;background:var(--gray2)}
.why-item{
  background:var(--white);padding:2.5rem 2rem;
  border-left:3px solid transparent;
  transition:border-color .25s,background .25s;
}
.why-item:hover{border-color:var(--orange);background:#fffaf9}
.why-item-icon{
  width:44px;height:44px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:1rem;color:var(--orange);
}
.why-item-icon svg{width:24px;height:24px}
.why-item-title{font-size:.85rem;font-weight:700;text-transform:uppercase;letter-spacing:.04em;color:var(--black);margin-bottom:.4rem}
.why-item-desc{font-size:.8rem;color:var(--text2);line-height:1.6}

.testi-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(290px,1fr));gap:1.5rem}
.testi-card{
  background:var(--white);border:1px solid var(--gray2);
  padding:2rem;transition:border-color .25s,box-shadow .25s;
  position:relative;
}
.testi-card:hover{border-color:var(--orange);box-shadow:0 8px 30px rgba(0,0,0,.06)}
.testi-quote{
  font-size:3rem;line-height:1;color:var(--orange);
  font-family:Georgia,serif;position:absolute;top:1.25rem;right:1.5rem;
}
.testi-stars{color:var(--orange);font-size:.85rem;margin-bottom:.75rem}
.testi-text{font-size:.875rem;color:var(--text2);line-height:1.7;font-style:italic;margin-bottom:1.5rem}
.testi-author{display:flex;align-items:center;gap:12px}
.testi-av{width:42px;height:42px;border-radius:50%;background:var(--black);display:flex;align-items:center;justify-content:center;font-weight:800;font-size:.8rem;color:var(--white);flex-shrink:0}
.testi-name{font-size:.85rem;font-weight:700;text-transform:uppercase;letter-spacing:.03em;color:var(--black)}
.testi-role{font-size:.72rem;color:var(--text2)}

.faq-list{max-width:780px;margin:0 auto;display:flex;flex-direction:column}
.faq-item{border-bottom:1px solid var(--gray2)}
.faq-btn{
  width:100%;background:none;border:none;
  padding:1.25rem 0;
  display:flex;justify-content:space-between;align-items:center;gap:1rem;
  cursor:pointer;text-align:left;
  font-family:var(--font);font-size:.9rem;font-weight:600;
  color:var(--black);transition:color .2s;
}
.faq-btn:hover,.faq-btn.open{color:var(--orange)}
.faq-btn svg{width:18px;height:18px;flex-shrink:0;transition:transform .25s;color:var(--orange)}
.faq-btn.open svg{transform:rotate(45deg)}
.faq-ans{max-height:0;overflow:hidden;transition:max-height .35s ease,padding .2s ease;padding-bottom:0}
.faq-ans.open{max-height:280px;padding-bottom:1.25rem}
.faq-ans p{font-size:.875rem;color:var(--text2);line-height:1.75}

.form-sec{
  background:var(--black);padding:5rem 2.5rem;
}
.form-inner{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:start;max-width:1100px;margin:0 auto}
.form-card{background:var(--white);padding:2.5rem}
.form-top-stripe{height:3px;background:var(--orange);margin:-2.5rem -2.5rem 2rem -2.5rem}
.form-title{font-size:1.1rem;font-weight:800;text-transform:uppercase;letter-spacing:.03em;margin-bottom:.25rem;color:var(--black)}
.form-sub{font-size:.78rem;color:var(--text2);margin-bottom:1.5rem}
.fld{display:flex;flex-direction:column;gap:5px;margin-bottom:.9rem}
.fld label{font-size:.68rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--black)}
.fld input,.fld select{
  padding:.7rem .9rem;
  border:1.5px solid var(--gray2);
  font-family:var(--font);font-size:.875rem;color:var(--black);
  background:var(--white);-webkit-appearance:none;
  transition:border-color .2s,box-shadow .2s;
}
.fld input:focus,.fld select:focus{outline:none;border-color:var(--orange);box-shadow:0 0 0 3px rgba(230,57,28,.08)}
.fld input::placeholder{color:#ccc}
.btn-form{
  width:100%;background:var(--orange);color:var(--white);
  font-family:var(--font);font-size:.8rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;
  padding:.95rem 1rem;border:none;cursor:pointer;
  display:flex;align-items:center;justify-content:center;gap:8px;
  transition:background .2s;margin-top:.5rem;
}
.btn-form:hover{background:var(--orange-dark)}
.btn-form svg{width:16px;height:16px}
.form-note{font-size:.68rem;color:#aaa;text-align:center;margin-top:.6rem}
.form-side{color:var(--white)}
.form-side .sec-h2{opacity:1!important;color:var(--white);margin-bottom:1.5rem}
.form-side-items{display:flex;flex-direction:column;gap:1.25rem;margin-top:2rem}
.form-side-item{display:flex;align-items:flex-start;gap:.9rem}
.fsi-dot{
  width:36px;height:36px;flex-shrink:0;
  background:rgba(230,57,28,.15);
  display:flex;align-items:center;justify-content:center;
}
.fsi-dot svg{width:18px;height:18px;color:var(--orange)}
.fsi-title{font-size:.82rem;font-weight:700;text-transform:uppercase;letter-spacing:.04em;color:var(--white);margin-bottom:2px}
.fsi-desc{font-size:.78rem;color:rgba(255,255,255,.5);line-height:1.5}
.form-success{display:none;text-align:center;padding:2.5rem 1rem}
.form-success svg{width:52px;height:52px;color:#22c55e;margin:0 auto .75rem}
.form-success h3{font-size:1rem;font-weight:800;text-transform:uppercase;margin-bottom:.4rem;color:var(--black)}
.form-success p{font-size:.82rem;color:var(--text2)}

.final-cta{background:var(--orange);padding:4.5rem 2.5rem;text-align:center;position:relative;overflow:hidden}
.final-cta::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 60% 80% at 30% 50%,rgba(255,255,255,.06),transparent 70%);pointer-events:none}
.final-cta-inner{max-width:680px;margin:0 auto;position:relative;z-index:1}
.final-cta h2{font-size:clamp(1.8rem,4vw,3rem);font-weight:300;color:var(--white);letter-spacing:-.02em;line-height:1.1;margin-bottom:.75rem}
.final-cta h2 strong{font-weight:900;display:block}
.final-cta p{font-size:.95rem;color:rgba(255,255,255,.75);margin-bottom:2rem}
.final-btns{display:flex;flex-wrap:wrap;gap:1rem;justify-content:center}
.btn-white{background:var(--white);color:var(--orange);font-family:var(--font);font-size:.8rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase;padding:.9rem 2.25rem;border:none;cursor:pointer;transition:background .2s,transform .2s;display:inline-flex;align-items:center;gap:8px}
.btn-white:hover{background:var(--gray);transform:translateY(-2px);color:var(--orange)}
.btn-dark{background:var(--black);color:var(--white);font-family:var(--font);font-size:.8rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase;padding:.9rem 2.25rem;border:none;cursor:pointer;transition:background .2s,transform .2s;display:inline-flex;align-items:center;gap:8px}
.btn-dark:hover{background:#222;transform:translateY(-2px);color:var(--white)}

footer{background:var(--black);padding:4rem 2.5rem 2rem;color:rgba(255,255,255,.45)}
.footer-inner{max-width:1200px;margin:0 auto;display:flex;flex-direction:row;flex-wrap:nowrap;gap:2rem;padding-bottom:2rem;border-bottom:1px solid rgba(255,255,255,.07);margin-bottom:1.5rem;width:100%;align-items:flex-start}
.footer-logo-wrap{display:flex;align-items:center;gap:10px;margin-bottom:.75rem}
.footer-logo-icon{display:flex;gap:4px;align-items:flex-end}
.footer-logo-bar1{width:8px;height:28px;background:var(--orange)}
.footer-logo-bar2{width:8px;height:19px;background:var(--orange)}
.footer-logo-word{font-size:1.15rem;font-weight:700;color:var(--white)}
.footer-logo-word .v{color:var(--orange)}
.footer-desc{font-size:.75rem;line-height:1.6;max-width:220px;margin-bottom:1rem}
.footer-social{display:flex;gap:8px}
.footer-social a{width:34px;height:34px;border:1px solid rgba(255,255,255,.1);display:flex;align-items:center;justify-content:center;transition:border-color .2s,background .2s}
.footer-social a:hover{border-color:var(--orange);background:rgba(230,57,28,.15)}
.footer-social svg{width:15px;height:15px;color:rgba(255,255,255,.5)}
.footer-inner>div:first-child{flex:2}.footer-inner>div{flex:1;min-width:0}.footer-col-h{font-size:.68rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:var(--orange);margin-bottom:.9rem}.footer-inner>div{flex:1;min-width:0}
.footer-links{list-style:none;display:flex;flex-direction:column;gap:.45rem}
.footer-links a{font-size:.75rem;color:rgba(255,255,255,.45);transition:color .2s}
.footer-links a:hover{color:var(--orange)}
.footer-bottom{max-width:1200px;margin:0 auto;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:.75rem;font-size:.75rem}
.footer-bottom a{color:rgba(255,255,255,.35);transition:color .2s}
.footer-bottom a:hover{color:var(--orange)}

.scroll-top{
  position:fixed;bottom:2rem;right:2rem;z-index:200;
  width:46px;height:46px;border-radius:50%;
  background:var(--orange);color:var(--white);
  border:none;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  opacity:0;pointer-events:none;
  transition:opacity .3s,transform .3s;
  box-shadow:0 4px 16px rgba(230,57,28,.4);
}
.scroll-top.visible{opacity:1;pointer-events:auto}
.scroll-top:hover{transform:translateY(-3px)}
.scroll-top svg{width:18px;height:18px}

.nav-drawer{
  display:none;position:fixed;top:80px;left:0;right:0;
  background:var(--black);z-index:299;
  border-top:2px solid var(--orange);
  padding:1rem 2rem 1.5rem;
}
.nav-drawer.open{display:block}
.nav-drawer a{
  display:block;font-size:.85rem;font-weight:600;
  color:rgba(255,255,255,.75);padding:.75rem 0;
  border-bottom:1px solid rgba(255,255,255,.06);
  transition:color .2s;
}
.nav-drawer a:hover{color:var(--orange)}
.nav-drawer-cta{
  display:block;background:var(--orange);color:var(--white)!important;
  text-align:center;padding:1rem!important;margin-top:.75rem;
  border-bottom:none!important;font-weight:700!important;
  letter-spacing:.06em;text-transform:uppercase;font-size:.8rem!important;
}


.app-download-wrap{
  text-align:center;
  width:100%;max-width:300px;
}
.app-download-cta{
  font-size:.78rem;font-weight:600;color:var(--text2);
  margin-bottom:1rem;line-height:1.4;
  letter-spacing:.02em;
}
.app-download-row{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.75rem;}



.store-btns{display:flex;flex-direction:column;gap:.6rem}
.store-btn{
  display:flex;align-items:center;gap:.6rem;
  background:var(--black);color:var(--white);
  padding:.55rem .9rem;min-width:140px;
  border:1.5px solid rgba(255,255,255,.15);
  transition:background .2s,border-color .2s,transform .2s;
  text-decoration:none;
}
.store-btn:hover{background:#222;border-color:var(--orange);transform:translateX(3px)}
.store-btn span{display:flex;flex-direction:column;line-height:1.2}
.store-btn small{font-size:.58rem;color:rgba(255,255,255,.6);font-weight:400}
.store-btn strong{font-size:.8rem;font-weight:700;color:var(--white)}

@media(max-width:1024px){
  .app-download-wrap{max-width:100%}
  .app-download-row{justify-content:center}
}

@media(max-width:1024px){
  .form-inner{grid-template-columns:1fr}
  .form-side{display:none}
  .app-inner{grid-template-columns:1fr}
  .app-visual{display:none}
  .why-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:900px){
  .nav-links-wrap{display:none}
  .nav-hamburger{display:flex}
  .social-sidebar{display:none}
  .mx-inner{grid-template-columns:1fr;text-align:center}
  .mx-divider{display:none}
  .process-steps{flex-direction:column;align-items:center;gap:1.5rem}
  .process-step::after{display:none}
  .footer-inner{flex-wrap:nowrap;gap:1.25rem;overflow-x:auto}
  .quick-bar{gap:.5rem}
  .qb-item{border-right:none;padding:.5rem 1rem}
}
@media(max-width:600px){
  .sec{padding:4rem 1.25rem}
  .form-sec,.process-dark,.mx-banner,.final-cta{padding:4rem 1.25rem}
  .footer-inner{grid-template-columns:2fr 1fr 1fr 1fr;gap:1.5rem}
  .hero-content{padding:0 1.25rem}
  .nav{padding:0 1.25rem}
  .ben-grid{grid-template-columns:1fr}
  .why-grid{grid-template-columns:1fr}
  .final-btns{flex-direction:column;align-items:center}
  .hero h1{font-size:2rem}
}

@keyframes fadeUp{from{opacity:1;transform:translateY(24px)}to{opacity:1;transform:translateY(0)}}
.reveal{opacity:1;transform:translateY(0);transition:opacity .6s ease,transform .6s ease}
.reveal.in{opacity:1;transform:translateY(0)}
.reveal:nth-child(2){transition-delay:.1s}
.reveal:nth-child(3){transition-delay:.2s}
.reveal:nth-child(4){transition-delay:.3s}

.nav-logo-img{
  height:38px;width:auto;
  display:block;
  transition:filter .35s ease;
}
.nav.scrolled .nav-logo-img{
  filter:brightness(0);
}