/* ========================================
   BridgeFix — Consolidated Global Styles
   (Logic preserved; duplicates removed)
   ======================================== */

[hidden]{display:none !important;}
/* Theme + globals */
:root{
  --bg:#070b14; --pane:#0b1427; --pane2:#0a1222; --border:#1b2942;
  --text:#e7ecf5; --muted:#a9b7cf; --headline:#f4f7fb; --accent:#00e7a7;
  --wa:#25d366; --tg:#2aabee; --shadow:0 30px 70px rgba(0,0,0,.55);
  --radius:16px; --elev:0 18px 50px rgba(0,0,0,.45);
  --strip-h:64px;           /* sticky trust strip height */
}

:root{
  --step-gutter: 18px;   /* matches .stepbox padding */
  --step-bubble: 32px;   /* matches .step-icon width/height */
}

/* put the rail through the bubble center */
.steps::before{
  left: calc(var(--step-gutter) + var(--step-bubble) / 2);  /* 18px + 16px = 34px */
}

/* vertically center the bubble next to the text */
.stepbox{
  align-items: center;   /* was flex-start */
}

*{ box-sizing:border-box }
html,body{ height:100%;
    -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 { 
  font-family:"Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-weight:800; 
  letter-spacing:.2px;
  margin: 0 0 10px;
}
html,body{
  margin:0;
  background:
    radial-gradient(1400px 700px at 10% -10%, #0f1a33 0%, #070b14 60%),
    linear-gradient(180deg, #0a1224, #050910);
  color:var(--text);
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial;
}

/* Layout shell */
body{ min-height:100vh; display:flex; flex-direction:column }
.wrap{
  flex:1;
  max-width:1100px;
  margin:0 auto;
  padding:28px 22px calc(var(--strip-h) + 24px);
}

footer {
  margin-top: auto;
  padding: 16px 0 20px;
  text-align: center;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  letter-spacing: 0.3px;
  color: #aebbd3;                /* softer gray-blue */
  border-top: 1px solid rgba(255,255,255,.08);
}

footer span, 
footer b {
  font-weight: 600;
  color: #dce7ff;                /* highlight year + company */
}

footer a {
  color: #00e7a7;                /* accent link */
  text-decoration: none;
  font-weight: 600;
}

footer a:hover {
  text-decoration: underline;
}

/* Header + brand */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 12px 0 36px;   /* bottom space increased from 20px → 36px */
}
.brand{ display:flex; align-items:center; gap:12px }
.brand img{ width:120px; height:auto; border-radius:12px } /* bigger on all pages per your current style */
.brand .title{ font-family:"Plus Jakarta Sans",Inter,sans-serif; font-weight:800; letter-spacing:.2px }
.brand .tag{ font-size:12px; color:var(--muted); margin-top:2px }

/* Header chips */
.header-badges{ display:flex; gap:10px; flex-wrap:wrap; align-items:center }
.header-badges .badge{
  font-size:12px; padding:2px 8px; line-height:1.2; border-radius:999px;
  background:#0e1c33; color:#cfdaf0; border:1px solid #243a5f; font-weight:600;
}

.mainnav {
  padding: 6px 16px;
  background: rgba(11,18,32,.65);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,.35);
  display: flex;
  gap: 10px;
}

.mainnav a {
  font-weight:700; letter-spacing:.2px; 
  color: #e6eeff; /* text color */
  text-decoration: none; /* remove underline */
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 8px;
  transition: background .2s, color .2s;
}

.mainnav a:hover {
  background: rgba(0,231,167,.12); /* subtle hover background */
  color: #00e7a7; /* accent on hover */
}

.mainnav a[aria-current="page"] {
  font-weight:800; 
  background: linear-gradient(90deg,#00e7a7,#00c1ff);
  color: #052221;
  font-weight: 800;
  box-shadow: 0 0 0 3px rgba(0,231,167,.25);
}

/* Optional sticky header utility */
.header-sticky{
  position:sticky; top:0; z-index:50;
  background:linear-gradient(180deg, rgba(7,11,20,.86), rgba(7,11,20,.72));
  backdrop-filter:blur(6px);
  border-bottom:1px solid rgba(255,255,255,.06);
  padding:8px 0;
}

/* Cards (single source of truth) */
.card{
  border-radius:var(--radius);
  border:1px solid rgba(164,186,220,.14);
  box-shadow:var(--elev);
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)),
    linear-gradient(180deg, var(--pane), var(--pane2));
  overflow:hidden;
  padding:20px;
}
.card.compact{ padding:18px 20px }
.card p, .card li, .card div{ color:#e3ebfb }
.section-title{
  font-family:"Plus Jakarta Sans",Inter,sans-serif; font-weight:800; letter-spacing:.2px;
  font-size:20px; margin:0 0 6px;
}

/* Wizard bits (quote page uses them) */
.progress{ display:flex; gap:8px; padding:18px 18px 12px; border-bottom:1px solid var(--border) }
.pdot{ flex:1; height:6px; border-radius:999px; background:#11203b; position:relative; overflow:hidden }
.pdot span{ position:absolute; inset:0; width:0; background:linear-gradient(90deg,#00e7a7,#00c1ff) }
.step{
  position: relative;
  padding: 16px 18px 16px 72px; /* left = circle (36) + gap (~16) + some breathing room */
}
h1{ font-family:"Plus Jakarta Sans",Inter,sans-serif; color:var(--headline); font-size:clamp(22px, 3.2vw, 30px); letter-spacing:.1px; margin:0 0 10px }
p.lead{ color:#c6d2e6; margin:0 0 16px }

/* Forms */
label{ font-size:13px; color:#c3d0e8; margin-bottom:6px; display:block }

select,input,textarea{
  width:100%; padding:12px; border-radius:12px; border:1px solid #2a3c5f; background:#0a1327; color:#eff4ff;
  transition:border-color .15s ease, box-shadow .15s ease;
    font-size:16px;          /* avoid iOS zoom */
  line-height:1.25;
}
select:focus,input:focus,textarea:focus{ outline:none; border-color:#3c74ff; box-shadow:0 0 0 3px rgba(60,116,255,.18) }

/* Grid utility */
.grid{ display:grid; grid-template-columns:1fr 1fr; gap:16px }
.grid .full{ grid-column:1 / -1 }

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:12px 16px; border-radius:12px; border:1px solid #284062;
  background:#142744; color:#dfe8f8; font-weight:700; cursor:pointer; text-decoration:none; min-width:120px;
  transition: transform .06s ease, filter .2s ease;
  font-size:16px;
}
.btn:hover{ filter:brightness(1.05) }
.btn:active{ transform:translateY(1px) }
.btn.primary{ background:linear-gradient(90deg,#00e7a7,#00c1ff); color:#052221; border-color:transparent; box-shadow:0 8px 24px rgba(0,193,255,.22) }
.btn.ghost{ background:transparent }
.btn.wa{ background:var(--wa); border-color:transparent; color:#062c12 }
.btn.tg{ background:var(--tg); border-color:transparent; color:#041a27 }
.btnbar{ display:flex; justify-content:space-between; gap:10px; margin-top:14px }
.row{ display:flex; gap:10px; flex-wrap:wrap }

/* Key-value summary */
.kv{ display:grid; grid-template-columns:170px 1fr; gap:10px; margin:8px 0 }
.kv div:first-child{ color:#bcd0ea }
.price{ font-size:28px; font-weight:800 }

/* Badges / announce / facts (used across pages) */
.badge{ display:inline-block; border:1px solid #2a3c5f; background:#0c1a33; color:#cfe2ff; border-radius:999px; padding:6px 10px; font-size:12px; margin-right:8px }
.announce{ margin-top:14px; padding:16px 18px; border-radius:16px; background:linear-gradient(90deg,#00e7a7,#00c1ff); color:#052221; font-weight:800; box-shadow:var(--shadow); display:flex; gap:10px; flex-wrap:wrap; align-items:center }
.announce .pill{ background:rgba(255,255,255,.22); padding:8px 12px; border-radius:999px; font-size:12.5px }
.announce.pro{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; padding:14px 16px; border-radius:calc(var(--radius) + 2px); background:linear-gradient(90deg, rgba(0,231,167,.25), rgba(0,193,255,.25)); border:1px solid rgba(164,186,220,.18); box-shadow:var(--elev) }
.announce.pro .pill{ display:inline-flex; align-items:center; gap:8px; padding:8px 12px; border-radius:999px; background:#0e1e37; border:1px solid #294264; color:#d5e6ff; font-weight:700; font-size:12.5px }
.announce.pro .pill.strong{ background:linear-gradient(90deg,#00e7a7,#00c1ff); color:#052221; border-color:transparent }
.facts{ display:flex; gap:10px; flex-wrap:wrap; margin-top:10px }
.facts .badge{ margin:0 }

/* Modal & toast */
.modal{ position:fixed; inset:0; background:rgba(3,7,18,.7); display:none; place-items:center; z-index:60 }
.modal.open{ display:grid }
.modal-card{ width:min(640px,92vw); background:#0b1427; border:1px solid #213559; border-radius:16px; box-shadow:var(--shadow); padding:16px }
.modal-card h4{ margin:0 0 8px }
.toast{ position:fixed; left:50%; bottom:22px; transform:translateX(-50%); background:#0c162b; border:1px solid #224064; color:#d9e6ff; padding:10px 14px; border-radius:10px; opacity:0; transition:opacity .3s; z-index:70 }
.toast.show{ opacity:1 }

/* Sticky trust strip (single definition) */
/* Replace your current .trust-strip height rule with this: */
.trust-strip{
  position:fixed; left:0; right:0; bottom:0; z-index:60;
  height:auto;  /* ← allow real height */
  display:flex; align-items:center; justify-content:center; gap:14px; flex-wrap:wrap;
  background:rgba(11,18,32,.86); backdrop-filter:blur(6px);
  border-top:1px solid rgba(255,255,255,.08);
  padding:10px 14px;
}
.trust-strip .item{
  background:linear-gradient(90deg,#1d4ed8,#3b82f6);
  padding:6px 12px; border-radius:999px; color:#fff; font-weight:600; font-size:13.5px; box-shadow:0 2px 6px rgba(0,0,0,.3);
}
.trust-strip .cta{
  background:linear-gradient(90deg,#00e7a7,#00c1ff);
  color:#052221; font-weight:800; padding:8px 14px; border-radius:12px; text-decoration:none; box-shadow:0 4px 10px rgba(0,0,0,.35);
}

/* ---------- Home page specifics ---------- */

.home .hero{
  display:grid; gap:22px; align-items:start;
  grid-template-columns:minmax(0,0.95fr) 1.05fr;
}
.home .hero > .card{ height:auto; padding:22px 20px }
@media (max-width:900px){ .home .hero{ grid-template-columns:1fr } }

/* Home step cards */
.cards{ display:grid; grid-template-columns:repeat(auto-fit, minmax(220px,1fr)); gap:14px; margin-top:18px }
.stepcard{ display:flex; flex-direction:column; gap:6px; padding:18px }
.stepcard svg{ width:42px; height:42px; margin-bottom:6px }
.steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;          /* reduce gap (was 30px) */
  padding-left: 0;    /* don’t shift whole column */
}
.step-badge{
  position: absolute;
  left: 20px;              /* matches the left padding math */
  top: 18px;               /* aligns the circle with the heading top */
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  background: #0de0bb; color:#072a23; font-weight: 800;
}
/* Draw the single continuous vertical line */
.steps::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px; /* align with center of icons */
  width: 3px;
  background: linear-gradient(180deg,#00e7a7,#00c1ff);
  border-radius: 2px;
}

/* Step box aligned to the line */
.stepbox {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: linear-gradient(180deg,var(--pane),var(--pane2));
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,.35);
  transition: transform .15s ease, box-shadow .15s ease;
  position: relative;
  z-index: 1; /* keep above the line */
}
.stepbox:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,193,255,.25);
}

/* Number bubbles */
.step-icon {
  background: linear-gradient(135deg,#00e7a7,#00c1ff);
  color:#052221;
  font-weight:800;
  font-size:16px;
  width:32px; height:32px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%;
  flex-shrink:0;
  box-shadow:0 2px 6px rgba(0,0,0,.4);
  position: relative;
  z-index: 2; /* bubble stays above the line */
}
.stepbox svg{ width:40px; height:40px; margin-bottom:4px }
.stepbox:not(:last-child) {
  margin-bottom: 0;   /* remove double-spacing */
}

.connector {
  height: 18px;       /* make the connector shorter */
  margin-left: 16px;  /* align with step icons */
  background: linear-gradient(180deg,#00e7a7,#00c1ff);
  width: 2px;
  border-radius: 2px;
}


/* ---------- Quote page overrides ---------- */

.quote .wrap{ max-width:1120px }                             /* wider working area */
.quote header{ display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap }
.quote .header-badges{ flex-wrap:wrap; gap:8px }
.quote #app.card{ padding:22px }                             /* comfy form padding */
.quote .grid{ grid-template-columns:1fr 1fr; gap:16px }      /* 2 cols on desktop */
.quote .grid .full{ grid-column:1 / -1 }
.quote .grid > div{ min-width:0 }                            /* input stretch fix */
.quote select, .quote input, .quote textarea{ padding:14px; border-radius:12px }
.quote h1{ font-size:30px }
@media (max-width:980px){ .quote .grid{ grid-template-columns:1fr } }  /* later collapse */

/* ---------- Responsive globals ---------- */

@media (max-width:800px){
  .grid{ grid-template-columns:1fr }                         /* global grid collapse */
}

@media (max-width:540px){
  .wrap{ max-width:100%; padding:18px 14px calc(var(--strip-h) + 18px) }
  header{ flex-direction:column; align-items:flex-start; gap:10px; margin-bottom:10px }
  .brand img{ width:40px; height:40px }
  .brand .title{ font-size:20px }
  .brand .tag{ font-size:12px }
  .announce{ padding:12px; border-radius:14px; gap:8px; overflow-x:auto; white-space:nowrap; -webkit-overflow-scrolling:touch }
  .announce::-webkit-scrollbar{ display:none }
  .announce .pill{ padding:7px 10px; font-size:12px }
  .card{ border-radius:14px }
  .card.compact{ padding:14px }
  .card h3, .section-title{ font-size:18px; margin-bottom:6px }
  .card p, .card li, .card div{ font-size:14px; line-height:1.5 }
  .progress{ padding:12px; gap:6px }
  .pdot{ height:5px }
  .step{ padding:14px }
  .btnbar{ flex-direction:column; gap:10px }
  .btn{ width:100%; min-width:0; padding:11px 14px; border-radius:10px }
  .kv{ grid-template-columns:120px 1fr; gap:6px }
  .price{ font-size:22px }
  .home .hero{ grid-template-columns:1fr }                   /* ensure single column on small screens */
  .stepbox{ justify-items:center; text-align:center }
}

/* --- Logo sizing, stable across pages --- */
.brand img{
  width: 48px;           /* default for non-home pages */
  height: auto;
  border-radius: 12px;
}

/* Home: bigger logo */
.home .brand img{
  width: 120px;
}

/* Quote/About (optional explicit, if you use body classes) */
/* .quote .brand img, .about .brand img { width: 48px; } */

/* Mobile: always compact */
@media (max-width:540px){
  .brand img{ width: 40px; }
}

/* Fancy non-clickable chips in the trust strip */
.trust-strip .item{
  --hue: 210;                          /* base hue; JS will randomize per chip */
  --dur: 4.5s;                         /* sheen duration; JS will randomize */
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 34px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13.5px;
  color: #eaf5ff;
  background: rgba(15, 28, 51, .55);
  border: 1px solid rgba(164,186,220,.22);
  backdrop-filter: blur(6px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 8px 24px rgba(0,0,0,.28),
    0 0 22px hsla(var(--hue), 90%, 60%, .12);
  cursor: default;
  user-select: none;
  pointer-events: none;                /* make it clear these are NOT buttons */
}

/* icon “badge” inside each chip */
.trust-strip .item::before{
  content: attr(data-ico);
  position: absolute;
  left: 10px; top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,.2));
}

/* animated sheen */
.trust-strip .item::after{
  content:"";
  position:absolute; inset:0; border-radius:inherit;
  background: linear-gradient(120deg, transparent 0%,
             rgba(255,255,255,.18) 40%, transparent 70%);
  background-size: 220% 100%;
  mix-blend-mode: screen;
  animation: sheen var(--dur) ease-in-out infinite;
  pointer-events: none;
}

@keyframes sheen {
  0%   { background-position: -180% 0; }
  100% { background-position: 180% 0; }
}

/* subtle float offset so chips aren’t on one perfectly straight line */
.trust-strip .item:nth-child(odd){ transform: translateY(-1px); }
.trust-strip .item:nth-child(even){ transform: translateY(1px); }

/* keep WhatsApp CTA clickable and visually distinct */
.trust-strip .cta{
  pointer-events: auto;   /* clickable */
  font-weight: 800;
}

/* accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .trust-strip .item::after{ animation: none; }
}


.wa-fab {
  position: fixed;
  bottom: calc(var(--strip-h) + 40px);  /* ⬆️ moved higher */
  right: 22px;
  z-index: 120;  
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #25d366;
  color: white;
  font-size: 26px;   /* for the WhatsApp icon */
  box-shadow: 0 6px 20px rgba(0,0,0,.35);
  transition: transform .12s ease, filter .2s ease;
}

.wa-fab:hover { filter: brightness(1.1); transform: translateY(-2px); }
.wa-fab:active { transform: translateY(0); }

/* Mobile: smaller button */
@media (max-width:540px){
  .wa-fab{ width: 48px; height: 48px; bottom: 16px; right: 16px; }
  .wa-fab svg{ width: 22px; height: 22px; }
}

.tg-fab {
  position: fixed;
  bottom: calc(var(--strip-h) + 108px);  /* above WhatsApp */
  right: 22px;
  z-index: 120;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #2AABEE;
  color: white;
  font-size: 26px;
  box-shadow: 0 6px 20px rgba(0,0,0,.35);
  transition: transform .12s ease, filter .2s ease;
}

.tg-fab:hover { filter: brightness(1.1); transform: translateY(-2px); }
.tg-fab:active { transform: translateY(0); }

/* Mobile smaller */
@media (max-width:540px){
  .tg-fab{ width: 48px; height: 48px; bottom: 80px; right: 16px; }
  .tg-fab svg{ width: 22px; height: 22px; }
}

.highlight {
  background: linear-gradient(90deg,#00e7a7,#00c1ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

/* Mobile: clean up the step rail + spacing */
@media (max-width: 640px){

  /* stack CTAs nicely (you already added something like this) */
  .cta-row{ display:flex; flex-direction:column; gap:12px; }
  .cta-row .btn{ width:100%; }

  .connector{ display:none; }                /* no extra spacers on mobile */

  .steps {
    position: relative;
    padding-left: 72px;    /* wider gutter */
    padding-right: 16px;
    gap: 24px;             /* more breathing room */
  }

  .steps::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;            /* center line under bubbles */
    width: 3px;
    background: linear-gradient(180deg,#00e7a7,#00c1ff);
    border-radius: 2px;
    z-index: 0;
  }

  .step h4{ margin: 0; }
  .step p{ margin: 8px 0 0; color:#a9b7cf; }

  .stepbox {
    position: relative;
    background: linear-gradient(180deg,var(--pane),var(--pane2));
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,.35);
    z-index: 1;
  }

  .step-icon {
    position: absolute;
    left: -52px;           /* pull bubble into the gutter */
    top: 18px;             /* vertically aligned with text */
    width: 36px; height: 36px;
    background: linear-gradient(135deg,#00e7a7,#00c1ff);
    color:#052221;
    font-weight:800;
    font-size:16px;
    border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 2px 6px rgba(0,0,0,.4);
    z-index: 2;
  }

  .step-content h4 {
    margin: 0 0 4px;
    font-size: 16px;
  }

  .step-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
  }

  .trust-strip {
    display: none;
  }

   h1 { font-size:22px; }                 /* was larger; tighter on mobile */
  .lead { font-size:14.5px; }
  label { font-size:13px; }
  .step { padding:16px; }
  .btnbar { gap:12px; }
  .btn { width:100%; }                   /* full width buttons on small screens */
  .progress { padding:14px 14px 10px; }  /* tighter progress spacing */
}

/* Utility to hide inactive steps */
.hide {
  display: none !important;
}

/* ===== Quote Stepper (no conflicts) ===== */
.stepper{
  position:relative;
  display:flex; align-items:center; justify-content:space-between;
  gap:26px; margin:8px 0 18px; padding:8px 6px;
}
.stepper-rail{
  position:absolute; left:0; right:0; top:50%;
  height:4px; background:#12223c; border-radius:999px;
  transform:translateY(-50%); z-index:1;
}
.stepper-line{
  position:absolute; left:0; top:50%; width:0; height:4px;
  background:linear-gradient(90deg,#00e7a7,#00c1ff);
  border-radius:999px; transform:translateY(-50%); z-index:2;
  transition:width .35s ease;
}
.stepper-item{
  position:relative; z-index:3; flex:1 1 0;
  display:flex; flex-direction:column; align-items:center; text-align:center;
}
.stepper-dot{
  width:36px; height:36px; border-radius:999px; display:grid; place-items:center;
  font-weight:800; color:#dfe8ff; background:#12223c;
  box-shadow:0 2px 10px rgba(0,0,0,.35);
  transition:transform .15s ease, background .25s ease, color .25s ease;
}
.stepper-item.active .stepper-dot{
  background:linear-gradient(135deg,#00e7a7,#00c1ff);
  color:#052221; transform:translateY(-1px);
}
.stepper-label{
  margin-top:6px; font-size:13px; font-weight:700; color:#c6d2e6;
}


@media (max-width:540px){
  .stepper{ gap:16px; }
  .stepper-dot{ width:32px; height:32px; font-size:13px; }
  .stepper-label{ font-size:12px; }
}

/* ===== Step 4 layout ===== */
.quote-summary{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:28px;
  align-items:start;
  margin-top:10px;
}

.summary-box{
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(164,186,220,.14);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: var(--elev);
}

.quote-features{
  margin: 12px 0 0;
  padding-left: 18px;
  color: #dbe6ff;
}
.quote-features li{ margin: 6px 0; }

.quote-note{
  margin: 14px 0 0;
  color:#c6d2e6;
}

/* Price panel */
.price-box{
  background: linear-gradient(180deg,#0c1831,#0a1427);
  border: 1px solid #2a3c5f;
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--elev);
}
.price-label{
  color:#bcd0ea;
  font-weight:800;
  letter-spacing:.3px;
  text-transform:uppercase;
  font-size:13px;
}
.price-lg{
  font-size: 38px;
  line-height: 1.1;
  font-weight: 900;
  margin: 8px 0 6px;
  color: var(--headline);
}
.price-sub{
  color:#bcd0ea;
  font-size:14px;
}

/* Actions row */
.quote-actions{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}
.quote-actions .btn{ padding: 13px 18px; }
.flex-spacer{ flex: 1 1 auto; }

/* Desktop spacing polish */
#step4 h1{ margin-bottom: 12px; }
#step4 .kv{ margin: 10px 0; }
#step4 .kv div:first-child{ width:auto; }

/* Mobile / narrow */
@media (max-width: 900px){
  .quote-summary{ grid-template-columns: 1fr; gap:16px; }
}
@media (max-width: 560px){
  .price-lg{ font-size: 30px; }
  .quote-actions{ flex-direction:column; align-items:stretch; }
  .flex-spacer{ display:none; }
  .quote-actions .btn{ width:100%; }
}

/* === Step line + bubble centering — final overrides === */
:root{
  --step-gutter: 18px;      /* match your .stepbox horizontal padding */
  --step-bubble: 32px;      /* match .step-icon size */
}

/* Desktop/tablet */
.home .steps::before{
  left: calc(var(--step-gutter) + var(--step-bubble) / 2) !important;
}
.home .stepbox{
  align-items: center !important;
}
