:root{
  --black:#0a0a0a;
  --near-black:#121212;
  --dark:#1c1c1c;
  --grey:#555;
  --grey-light:#888;
  --line:#e4e4e4;
  --off-white:#fafafa;
  --white:#ffffff;
  --orange:#FF6A1A;
  --orange-dark:#e05c10;
  --font-head:'Space Grotesk', sans-serif;
  --font-body:'Inter', sans-serif;
  --container:1180px;
  --ease-out:cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out:cubic-bezier(0.77, 0, 0.175, 1);
}

*{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:var(--font-body);
  color:var(--black);
  background:var(--white);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img,svg{display:block;max-width:100%;}
a{color:inherit;text-decoration:none;}
ul{list-style:none;}
.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

h1,h2,h3{font-family:var(--font-head);font-weight:700;letter-spacing:-0.02em;}

/* ===== Buttons ===== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:15px 28px;
  border-radius:6px;
  font-weight:600;
  font-size:0.95rem;
  border:2px solid transparent;
  cursor:pointer;
  transition:transform 160ms var(--ease-out), background-color 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 200ms var(--ease-out);
  white-space:nowrap;
}
.btn-primary{
  background:var(--orange);
  color:var(--black);
}
.btn-outline{
  background:transparent;
  border-color:rgba(255,255,255,0.6);
  color:var(--white);
}
.btn-outline-light{
  background:transparent;
  border-color:rgba(255,255,255,0.5);
  color:var(--white);
}
@media (hover:hover) and (pointer:fine){
  .btn-primary:hover{
    background:var(--orange-dark);
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(255,106,26,0.35);
  }
  .btn-outline:hover, .btn-outline-light:hover{
    border-color:var(--orange);
    color:var(--orange);
    transform:translateY(-2px);
  }
}
.btn:active{
  transform:scale(0.97);
  transition-duration:100ms;
}
.btn-small{padding:10px 18px;font-size:0.85rem;}
.btn-large{padding:18px 36px;font-size:1rem;}

/* ===== Header ===== */
.site-header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:100;
  background:transparent;
  transition:background 200ms ease, box-shadow 200ms ease, padding 200ms ease;
  padding:20px 0;
}
.site-header.scrolled{
  background:rgba(10,10,10,0.92);
  backdrop-filter:blur(8px);
  box-shadow:0 4px 20px rgba(0,0,0,0.25);
  padding:12px 0;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.logo{
  font-family:var(--font-head);
  font-size:1.85rem;
  font-weight:700;
  color:var(--white);
  letter-spacing:-0.03em;
}
.logo .dot{color:var(--orange);}
.main-nav{
  display:flex;
  gap:32px;
  flex:1;
  justify-content:center;
}
.main-nav a{
  color:rgba(255,255,255,0.85);
  font-size:0.92rem;
  font-weight:500;
  position:relative;
  padding:4px 0;
}
.main-nav a:hover{color:var(--orange);}
.header-cta{flex-shrink:0;}
.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding:6px;
}
.nav-toggle span{
  width:24px;height:2px;background:var(--white);
  transition:transform 200ms var(--ease-out), opacity 200ms ease;
  transform-origin:center;
}
.nav-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.nav-toggle.open span:nth-child(2){opacity:0;}
.nav-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

/* ===== Hero ===== */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:var(--black);
}
.hero-skyline{
  position:absolute;
  inset:-20% 0;
  z-index:1;
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  will-change:transform;
}
.hero-overlay{
  position:absolute;
  inset:0;
  z-index:2;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.75) 55%, rgba(10,10,10,0.95) 100%);
}
.hero-content{
  position:relative;
  z-index:3;
  color:var(--white);
  padding-top:90px;
}
.eyebrow{
  color:var(--orange);
  font-weight:600;
  letter-spacing:0.12em;
  text-transform:uppercase;
  font-size:0.85rem;
  margin-bottom:18px;
}
.hero h1{
  font-size:clamp(3rem, 8vw, 6.5rem);
  line-height:0.98;
  margin-bottom:24px;
}
.hero-sub{
  font-size:1.2rem;
  max-width:560px;
  color:rgba(255,255,255,0.85);
  margin-bottom:36px;
}
.hero-ctas{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
}
.scroll-cue{
  position:absolute;
  bottom:30px;left:50%;
  transform:translateX(-50%);
  z-index:3;
  width:26px;height:42px;
  border:2px solid rgba(255,255,255,0.5);
  border-radius:20px;
}
.scroll-cue span{
  display:block;
  width:4px;height:8px;
  background:var(--orange);
  border-radius:2px;
  margin:6px auto 0;
  animation:scrollcue 1.8s ease-in-out infinite;
}
@keyframes scrollcue{
  0%{transform:translateY(0);opacity:1;}
  70%{transform:translateY(14px);opacity:0;}
  100%{opacity:0;}
}

/* ===== Reveal animation ===== */
.reveal{
  opacity:0;
  transform:translateY(20px) scale(0.98);
  transition:opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.reveal.in-view{
  opacity:1;
  transform:translateY(0) scale(1);
}
.hero-content.reveal{
  opacity:1;
  transform:none;
}

/* Stagger entrances within grids so items cascade in rather than appearing at once */
.why-grid .why-card:nth-child(1),
.stats-grid .stat:nth-child(1){transition-delay:0ms;}
.why-grid .why-card:nth-child(2),
.stats-grid .stat:nth-child(2){transition-delay:60ms;}
.why-grid .why-card:nth-child(3),
.stats-grid .stat:nth-child(3){transition-delay:120ms;}
.why-grid .why-card:nth-child(4),
.stats-grid .stat:nth-child(4){transition-delay:180ms;}
.service-btn:nth-child(1){transition-delay:0ms;}
.service-btn:nth-child(2){transition-delay:50ms;}
.service-btn:nth-child(3){transition-delay:100ms;}
.service-btn:nth-child(4){transition-delay:150ms;}
.service-btn:nth-child(5){transition-delay:200ms;}
.service-btn:nth-child(6){transition-delay:250ms;}
.service-btn:nth-child(7){transition-delay:300ms;}

/* ===== Section generic ===== */
section{padding:100px 0;}
.section-eyebrow{
  color:var(--orange);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.12em;
  font-size:0.82rem;
  margin-bottom:14px;
}
.section-title{
  font-size:clamp(2rem, 4vw, 2.8rem);
  margin-bottom:16px;
  max-width:680px;
}
.section-sub{
  color:var(--grey);
  font-size:1.08rem;
  max-width:600px;
  margin-bottom:50px;
}

/* ===== Goal Selector ===== */
.goal-selector{
  background:var(--off-white);
  border-bottom:1px solid var(--line);
  padding:70px 0;
}
.goal-question{
  font-size:clamp(1.5rem,3vw,2rem);
  text-align:center;
  margin-bottom:32px;
}
.goal-options{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  justify-content:center;
  margin-bottom:34px;
}
.goal-btn{
  padding:14px 26px;
  border-radius:50px;
  border:2px solid var(--black);
  background:transparent;
  font-weight:600;
  font-family:var(--font-body);
  font-size:0.95rem;
  cursor:pointer;
  transition:transform 160ms var(--ease-out), border-color 160ms ease, color 160ms ease, background-color 160ms ease;
}
@media (hover:hover) and (pointer:fine){
  .goal-btn:hover{
    border-color:var(--orange);
    color:var(--orange-dark);
    transform:translateY(-2px);
  }
}
.goal-btn:active{transform:scale(0.96);transition-duration:100ms;}
.goal-btn.active{
  background:var(--black);
  color:var(--white);
  border-color:var(--black);
}
.goal-result{
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:18px;
}
.goal-result p{
  font-size:1.1rem;
  font-weight:600;
  color:var(--black);
  transition:filter 180ms ease, opacity 180ms ease;
}
.goal-result p.swapping{
  filter:blur(3px);
  opacity:0.4;
}

/* ===== Services ===== */
/* ===== Services (scroll-pinned split panel) ===== */
.services{
  height:700vh;
  padding:0;
}
.services-sticky{
  position:sticky;
  top:0;
  height:100vh;
  overflow:hidden;
  background:var(--white);
  display:flex;
  flex-direction:column;
}
.services-header{
  flex-shrink:0;
  padding:52px 0 0;
}
.services-header-inner{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  padding-bottom:24px;
}
.services-showcase{
  flex:1;
  display:flex;
  gap:clamp(32px,5vw,72px);
  align-items:stretch;
  padding-top:28px;
  padding-bottom:28px;
  min-height:0;
}
.services-left{
  flex:1;
  min-width:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.service-btn{
  width:100%;
  display:flex;
  align-items:flex-start;
  gap:18px;
  padding:14px 0 14px 16px;
  background:none;
  border:none;
  border-bottom:1px solid var(--line);
  border-left:3px solid transparent;
  cursor:pointer;
  text-align:left;
  font-family:inherit;
  transition:border-left-color 250ms ease, padding-left 250ms var(--ease-out), background-color 160ms ease;
}
.service-btn:first-child{border-top:1px solid var(--line);}
.service-btn.active{
  border-left-color:var(--orange);
  padding-left:22px;
}
.service-btn:active{opacity:0.6;transition-duration:80ms;}
@media (hover:hover) and (pointer:fine){
  .service-btn:hover{
    background:var(--off-white);
    border-left-color:rgba(255,106,26,0.35);
    padding-left:22px;
  }
  .service-btn:hover .sb-num{color:var(--orange);}
}
.sb-num{
  font-family:var(--font-head);
  font-size:0.75rem;
  font-weight:700;
  color:var(--grey-light);
  min-width:22px;
  padding-top:3px;
  font-variant-numeric:tabular-nums;
  transition:color 200ms ease;
  flex-shrink:0;
}
.service-btn.active .sb-num{color:var(--orange);}
.sb-text{display:flex;flex-direction:column;gap:0;}
.sb-name{
  display:block;
  font-family:var(--font-head);
  font-size:clamp(1rem,1.6vw,1.3rem);
  font-weight:700;
  color:var(--black);
  line-height:1.2;
  transition:color 200ms ease;
}
.service-btn.active .sb-name{color:var(--black);}
.sb-mini{
  display:block;
  font-size:0.82rem;
  color:var(--grey);
  font-weight:400;
  line-height:1.4;
  max-height:0;
  overflow:hidden;
  opacity:0;
  transform:translateY(-4px);
  transition:max-height 320ms var(--ease-out), opacity 280ms ease 40ms, transform 280ms var(--ease-out) 40ms;
  margin-top:0;
}
.service-btn.active .sb-mini{
  max-height:44px;
  opacity:1;
  transform:translateY(0);
  margin-top:5px;
}

/* Right detail card */
.services-right{
  width:clamp(280px,38%,440px);
  flex-shrink:0;
  display:flex;
  align-items:center;
}
.sr-card{
  width:100%;
  background:var(--black);
  border-radius:20px;
  padding:clamp(28px,4vw,44px);
  position:relative;
  overflow:hidden;
  min-height:clamp(280px,45vh,400px);
  display:flex;
  flex-direction:column;
  transition:filter 180ms ease, opacity 180ms ease;
}
.sr-card.swapping{filter:blur(8px);opacity:0.2;}
.sr-ghost{
  position:absolute;
  bottom:-16px;right:12px;
  font-family:var(--font-head);
  font-size:clamp(80px,12vw,150px);
  font-weight:700;
  line-height:1;
  color:rgba(255,106,26,0.08);
  pointer-events:none;
  user-select:none;
  z-index:0;
}
.sr-badge{
  position:relative;z-index:1;
  color:var(--orange);
  font-size:0.75rem;font-weight:700;
  letter-spacing:0.14em;text-transform:uppercase;
  margin-bottom:18px;
}
.sr-title{
  position:relative;z-index:1;
  font-size:clamp(1.4rem,2.2vw,1.9rem);
  color:var(--white);
  margin-bottom:12px;
  line-height:1.15;
}
.sr-desc{
  position:relative;z-index:1;
  color:rgba(255,255,255,0.55);
  font-size:0.95rem;line-height:1.7;
  flex:1;
}
.sr-tags{
  position:relative;z-index:1;
  display:flex;flex-wrap:wrap;gap:8px;
  margin-top:22px;
}
.sr-tags span{
  padding:5px 13px;
  border:1px solid rgba(255,255,255,0.14);
  border-radius:50px;
  font-size:0.76rem;
  color:rgba(255,255,255,0.45);
  font-weight:500;
}

/* ===== Stats ===== */
.stats{
  background:var(--black);
  color:var(--white);
  padding:70px 0;
}
.stats-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(180px,1fr));
  gap:30px;
  text-align:center;
}
.stat-number{
  display:block;
  font-family:var(--font-head);
  font-size:3rem;
  font-weight:700;
  color:var(--orange);
}
.stat p{
  color:rgba(255,255,255,0.75);
  margin-top:6px;
  font-size:0.95rem;
}

/* ===== Process ===== */
/* ===== Process (pinned horizontal scroll) ===== */
.process{
  height:500vh;
  padding:0;
}
.process-sticky{
  position:sticky;
  top:0;
  height:100vh;
  overflow:hidden;
  background:var(--black);
  color:var(--white);
  display:flex;
  flex-direction:column;
}
.process-header{
  flex-shrink:0;
  padding:52px 0 0;
}
.process-header-inner{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  padding-bottom:24px;
}
.process-title{
  font-size:clamp(1.6rem,3vw,2.5rem);
  color:var(--white);
  margin:0;
  line-height:1.15;
}
.process-counter{
  font-family:var(--font-head);
  font-weight:700;
  font-size:1rem;
  flex-shrink:0;
  display:flex;
  align-items:baseline;
  gap:6px;
}
.counter-current{
  font-size:2.4rem;
  color:var(--orange);
  line-height:1;
  transition:opacity 200ms ease;
}
.counter-sep{color:rgba(255,255,255,0.2);}
.counter-total{color:rgba(255,255,255,0.25);font-size:1rem;}
.process-progress-bar{
  height:2px;
  background:rgba(255,255,255,0.08);
}
.process-progress-fill{
  height:100%;
  width:0%;
  background:var(--orange);
}
.process-scroll-area{
  flex:1;
  display:flex;
  align-items:center;
  padding:0 0 0 clamp(24px,6vw,96px);
  min-height:0;
}
.process-cards-track{
  display:flex;
  gap:20px;
  align-items:stretch;
  padding-right:clamp(24px,6vw,96px);
}
.process-card{
  position:relative;
  width:clamp(280px,38vw,480px);
  flex-shrink:0;
  background:#111;
  border:1px solid rgba(255,255,255,0.07);
  border-radius:20px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:border-color 400ms ease, box-shadow 400ms ease;
}
.process-card.active{
  border-color:rgba(255,106,26,0.45);
  box-shadow:0 0 40px rgba(255,106,26,0.08);
}
.process-card-inner{
  position:relative;
  z-index:2;
  padding:clamp(28px,4vw,44px);
  flex:1;
  display:flex;
  flex-direction:column;
}
.card-badge{
  display:inline-block;
  color:var(--orange);
  font-size:0.75rem;
  font-weight:700;
  letter-spacing:0.14em;
  text-transform:uppercase;
  margin-bottom:22px;
}
.process-card h3{
  font-size:clamp(1.8rem,2.8vw,2.6rem);
  color:var(--white);
  margin-bottom:14px;
  line-height:1;
}
.process-card p{
  color:rgba(255,255,255,0.55);
  font-size:1rem;
  line-height:1.65;
  flex:1;
}
.card-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:28px;
}
.card-tags span{
  padding:6px 14px;
  border-radius:50px;
  border:1px solid rgba(255,255,255,0.12);
  color:rgba(255,255,255,0.4);
  font-size:0.78rem;
  font-weight:500;
}
.card-ghost-num{
  position:absolute;
  bottom:-10px;
  right:16px;
  font-family:var(--font-head);
  font-size:clamp(100px,14vw,180px);
  font-weight:700;
  line-height:1;
  color:rgba(255,255,255,0.03);
  z-index:1;
  pointer-events:none;
  user-select:none;
  transition:color 400ms ease;
}
.process-card.active .card-ghost-num{
  color:rgba(255,106,26,0.07);
}
.process-end-pad{
  width:clamp(24px,6vw,96px);
  flex-shrink:0;
}
.process-dots{
  display:flex;
  gap:10px;
  justify-content:center;
  padding:20px 0 28px;
  flex-shrink:0;
}
.process-dot{
  width:8px;height:8px;
  border-radius:50%;
  background:rgba(255,255,255,0.18);
  border:none;
  cursor:pointer;
  padding:0;
  transition:background 200ms ease, transform 200ms var(--ease-out), width 250ms var(--ease-out);
}
.process-dot.active{
  background:var(--orange);
  transform:scale(1.2);
  width:24px;
  border-radius:4px;
}

/* ===== Why Promenix ===== */
.why{background:var(--off-white);}
.why-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(230px,1fr));
  gap:24px;
}
.why-card{
  background:var(--white);
  border-radius:12px;
  padding:32px 26px;
  border:1px solid var(--line);
  transition:transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
@media (hover:hover) and (pointer:fine){
  .why-card:hover{
    transform:translateY(-4px);
    box-shadow:0 16px 32px rgba(0,0,0,0.06);
  }
}
.why-card h3{
  font-size:1.1rem;
  margin-bottom:10px;
  color:var(--orange-dark);
}
.why-card p{color:var(--grey);font-size:0.95rem;}

/* ===== Audit Quiz ===== */
.quiz-wrap{
  max-width:640px;
  margin:0 auto;
  background:var(--off-white);
  border:1px solid var(--line);
  border-radius:16px;
  padding:40px clamp(20px,5vw,48px);
}
.quiz-progress{
  height:6px;
  background:var(--line);
  border-radius:6px;
  overflow:hidden;
  margin-bottom:34px;
}
.quiz-progress-fill{
  height:100%;
  width:25%;
  background:var(--orange);
  transition:width 220ms var(--ease-out);
}
.quiz-step{display:none;}
.quiz-step.active{display:block;animation:fadeStepForward 260ms var(--ease-out);}
.quiz-step.active[data-dir="back"]{animation-name:fadeStepBack;}
@keyframes fadeStepForward{
  from{opacity:0;transform:translateX(16px);}
  to{opacity:1;transform:translateX(0);}
}
@keyframes fadeStepBack{
  from{opacity:0;transform:translateX(-16px);}
  to{opacity:1;transform:translateX(0);}
}
.quiz-step h3{font-size:1.3rem;margin-bottom:22px;}
.field{
  display:block;
  margin-bottom:18px;
}
.field span{
  display:block;
  font-size:0.85rem;
  font-weight:600;
  margin-bottom:7px;
  color:var(--grey);
}
.field input, .field textarea, .field select, .contact-form select{
  width:100%;
  padding:13px 14px;
  border:1.5px solid var(--line);
  border-radius:8px;
  font-family:var(--font-body);
  font-size:0.98rem;
  background:var(--white);
  transition:border-color 160ms ease, box-shadow 160ms ease;
}
.field input:focus, .field textarea:focus, .field select:focus{
  outline:none;
  border-color:var(--orange);
  box-shadow:0 0 0 3px rgba(255,106,26,0.15);
}
.quiz-options{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-bottom:24px;
}
.quiz-radio{
  border:1.5px solid var(--line);
  border-radius:8px;
  padding:14px;
  display:flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
  transition:border-color 160ms ease, background-color 160ms ease, transform 120ms var(--ease-out);
  font-size:0.92rem;
  font-weight:500;
}
@media (hover:hover) and (pointer:fine){
  .quiz-radio:hover{border-color:var(--orange);}
}
.quiz-radio:active{transform:scale(0.98);}
.quiz-radio input{accent-color:var(--orange);}
.quiz-radio input:checked + span{color:var(--orange-dark);font-weight:700;}
.quiz-nav{
  display:flex;
  justify-content:space-between;
  gap:14px;
  margin-top:8px;
}
.quiz-nav .btn{flex:1;}
.quiz-success{text-align:center;}
.quiz-success h3{margin-bottom:14px;}
.quiz-success p{color:var(--grey);margin-bottom:24px;}

/* ===== Closing CTA ===== */
.closing-cta{
  background:linear-gradient(135deg, var(--black) 0%, var(--near-black) 100%);
  color:var(--white);
  text-align:center;
  padding:110px 0;
}
.closing-cta h2{
  font-size:clamp(2rem,5vw,3rem);
  margin-bottom:16px;
}
.closing-cta p{
  color:rgba(255,255,255,0.78);
  max-width:560px;
  margin:0 auto 36px;
  font-size:1.1rem;
}
.closing-cta .hero-ctas{justify-content:center;}

/* ===== Contact ===== */
.contact-form{
  max-width:640px;
  margin:0 auto;
}
.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.checkbox-field{
  display:flex;
  align-items:center;
  gap:10px;
  margin:6px 0 26px;
  font-size:0.92rem;
  color:var(--grey);
}
.checkbox-field input{accent-color:var(--orange);width:16px;height:16px;}
.form-success{
  display:none;
  margin-top:16px;
  color:var(--orange-dark);
  font-weight:600;
}
.form-success.show{display:block;}

/* ===== Footer ===== */
.site-footer{
  background:var(--black);
  color:rgba(255,255,255,0.8);
  padding:60px 0 0;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  flex-wrap:wrap;
  gap:24px;
  padding-bottom:40px;
  border-bottom:1px solid rgba(255,255,255,0.1);
}
.footer-tag{margin-top:10px;font-size:0.9rem;color:rgba(255,255,255,0.55);}
.footer-nav{
  display:flex;
  gap:26px;
  flex-wrap:wrap;
}
.footer-nav a{font-size:0.92rem;color:rgba(255,255,255,0.75);}
.footer-nav a:hover{color:var(--orange);}
.footer-bottom{
  padding:22px 0;
  font-size:0.82rem;
  color:rgba(255,255,255,0.45);
}

/* ===== Floating CTA ===== */
.float-cta{
  position:fixed;
  bottom:22px;right:22px;
  z-index:90;
  background:var(--orange);
  color:var(--black);
  font-weight:700;
  font-size:0.85rem;
  padding:14px 22px;
  border-radius:50px;
  box-shadow:0 10px 30px rgba(255,106,26,0.4);
  opacity:0;
  transform:translateY(20px) scale(0.95);
  transition:opacity 220ms var(--ease-out), transform 220ms var(--ease-out), background-color 160ms ease;
  pointer-events:none;
}
.float-cta.show{
  opacity:1;
  transform:translateY(0) scale(1);
  pointer-events:auto;
}
@media (hover:hover) and (pointer:fine){
  .float-cta:hover{background:var(--orange-dark);}
}
.float-cta:active{transform:scale(0.95);}

/* ===== Responsive ===== */
@media (max-width:880px){
  .main-nav{
    display:flex;
    position:absolute;
    top:100%;left:0;right:0;
    background:rgba(10,10,10,0.97);
    flex-direction:column;
    padding:24px;
    gap:18px;
    opacity:0;
    transform:translateY(-8px);
    pointer-events:none;
    transition:opacity 200ms var(--ease-out), transform 200ms var(--ease-out);
  }
  .main-nav.open{
    opacity:1;
    transform:translateY(0);
    pointer-events:auto;
  }
  .nav-toggle{display:flex;}
  .services{height:auto;padding:70px 0;}
  .services-sticky{position:relative;height:auto;overflow:visible;}
  .services-header{padding:0;}
  .services-showcase{flex-direction:column;padding-top:20px;padding-bottom:40px;}
  .services-left{justify-content:flex-start;}
  .services-right{width:100%;}
  .sb-mini{max-height:none;opacity:1;transform:none;margin-top:5px;}
  .sr-card{min-height:260px;}
  .header-cta{display:none;}
  .process{height:auto;padding:70px 0;}
  .process-sticky{position:relative;height:auto;overflow:visible;}
  .process-scroll-area{padding:28px 0 0;overflow-x:auto;-webkit-overflow-scrolling:touch;}
  .process-cards-track{padding-right:24px;}
  .process-card{width:clamp(260px,80vw,340px);}
  .process-dots{display:none;}
  .process-counter{display:none;}
  .process-header{padding:0 0 0;}
  .process-header-inner{padding-bottom:16px;}
  .form-row{grid-template-columns:1fr;}
  .quiz-options{grid-template-columns:1fr;}
}
@media (max-width:600px){
  section{padding:70px 0;}
  .hero h1{font-size:2.6rem;}
  .quiz-wrap{padding:30px 20px;}
  .float-cta{font-size:0.78rem;padding:12px 18px;}
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce){
  .reveal{transform:none;transition:opacity 200ms ease;}
  .hero-skyline{transform:none !important;}
  .scroll-cue span{animation:none;}
  .why-card:hover, .btn-primary:hover, .btn-outline:hover,
  .btn-outline-light:hover, .goal-btn:hover{
    transform:none;
  }
  .quiz-step.active{animation:none;}
}
