*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --white:#FFFFFF; --off-white:#F4F9F7; --surface:#EEF6F3;
  --green:#1A7A5E; --green-mid:#22A078; --green-light:#4DBFA0; --green-pale:#D6F0E8;
  --green-glass:rgba(26,122,94,0.08);
  --blue:#1D5FA8; --blue-mid:#2776CC; --blue-light:#5B9FE0; --blue-pale:#D6E8F8;
  --blue-glass:rgba(29,95,168,0.07);
  --ink:#0D1F17; --ink-mid:#2C4A3A; --ink-light:#527060;
  --border:#D8EAE3; --border-mid:#BFD9CE;
  --shadow-sm:0 2px 12px rgba(26,122,94,0.08);
  --shadow-md:0 8px 32px rgba(26,122,94,0.12);
  --shadow-lg:0 20px 60px rgba(26,122,94,0.16);
}
html { scroll-behavior: smooth; }
body {
  font-family:'Atkinson Hyperlegible','Aptos',Calibri,'Segoe UI',Arial,sans-serif;
  background:var(--white); color:var(--ink); line-height:1.7;
  overflow-x:hidden; font-size:16px; letter-spacing:0.01em;
}
nav {
  position:fixed; top:0; left:0; right:0; z-index:100;
  background:rgba(255,255,255,0.92); backdrop-filter:blur(20px);
  border-bottom:1px solid var(--border); padding:0 6%; height:68px;
  display:flex; align-items:center; justify-content:space-between;
}
.nav-logo { display:flex; align-items:center; gap:10px; text-decoration:none; }
.nav-logo-mark {
  width:38px; height:38px; border-radius:10px;
  background:linear-gradient(135deg,var(--green),var(--blue-mid));
  display:flex; align-items:center; justify-content:center;
  font-size:20px; color:#fff; font-weight:700; box-shadow:0 4px 14px rgba(26,122,94,0.3);
}
.nav-logo-text { font-size:18px; font-weight:700; color:var(--ink); letter-spacing:-0.3px; }
.nav-logo-text span { color:var(--green); }
.nav-links { display:flex; align-items:center; gap:30px; list-style:none; }
.nav-links a { color:var(--ink-light); text-decoration:none; font-size:14px; font-weight:500; transition:color 0.2s; }
.nav-links a:hover { color:var(--green); }
.nav-right { display:flex; align-items:center; gap:24px; }
.nav-social { display:flex; align-items:center; gap:9px; }
.nav-social-label { font-size:12px; font-weight:700; color:var(--ink-light); white-space:nowrap; }
.nav-social-icon { display:flex; align-items:center; justify-content:center; width:34px; height:34px; border-radius:9px; color:#fff; box-shadow:var(--shadow-sm); transition:transform .15s, box-shadow .2s; }
.nav-social-icon.yt { background:#FF0000; }
.nav-social-icon.ig { background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.nav-social-icon:hover { transform:translateY(-1px); box-shadow:var(--shadow-md); }
.nav-cta { background:var(--green)!important; color:#fff!important; padding:9px 22px; border-radius:8px;
  font-weight:600!important; box-shadow:var(--shadow-sm); transition:background 0.2s, transform 0.15s!important; }
.nav-cta:hover { background:var(--green-mid)!important; transform:translateY(-1px)!important; }
.hero { min-height:100vh; padding:110px 6% 70px;
  background:linear-gradient(160deg,var(--white) 0%,var(--off-white) 50%,var(--surface) 100%);
  position:relative; overflow:hidden; }
.hero-blob { position:absolute; pointer-events:none; border-radius:50%; filter:blur(80px); }
.hero-blob-1 { width:500px; height:500px; top:-120px; right:-60px;
  background:radial-gradient(circle,rgba(77,191,160,0.18) 0%,transparent 70%); }
.hero-blob-2 { width:380px; height:380px; bottom:0; left:10%;
  background:radial-gradient(circle,rgba(29,95,168,0.10) 0%,transparent 70%); }
.hero-inner { max-width:1240px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr;
  gap:60px; align-items:center; position:relative; z-index:1; }
.hero-eyebrow { display:inline-flex; align-items:center; gap:8px; background:var(--green-glass);
  border:1px solid rgba(26,122,94,0.2); border-radius:20px; padding:6px 14px;
  font-size:12px; font-weight:600; letter-spacing:0.7px; text-transform:uppercase;
  color:var(--green); margin-bottom:22px; }
.eyebrow-dot { width:6px; height:6px; border-radius:50%; background:var(--green-light); animation:pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }
.hero-h1 { font-size:clamp(38px,4.8vw,64px); font-weight:700; line-height:1.12;
  letter-spacing:-0.3px; margin-bottom:22px; color:var(--ink); }
.hero-h1 em { font-style:italic; color:var(--green); }
.hero-h1 .blue-word { color:var(--blue); font-style:normal; }
.hero-sub { font-size:17px; color:var(--ink-light); line-height:1.72; max-width:480px; margin-bottom:38px; }
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:40px; }
.btn-primary { background:var(--green); color:#fff; padding:14px 28px; border-radius:9px;
  font-weight:700; font-size:15px; text-decoration:none; display:inline-flex; align-items:center; gap:8px;
  box-shadow:0 6px 24px rgba(26,122,94,0.28); transition:transform 0.15s, box-shadow 0.15s; }
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 10px 32px rgba(26,122,94,0.36); }
.btn-secondary { border:1.5px solid var(--border-mid); color:var(--ink-mid); padding:14px 28px; border-radius:9px;
  font-weight:600; font-size:15px; text-decoration:none; display:inline-flex; align-items:center; gap:8px;
  background:var(--white); transition:border-color 0.2s, background 0.2s; }
.btn-secondary:hover { border-color:var(--green-light); background:var(--green-glass); }
.hero-trust { display:flex; flex-direction:column; align-items:flex-start; gap:14px; margin-top:6px; }
.hero-trust-label { font-size:13px; color:var(--ink-mid); letter-spacing:0.8px; text-transform:uppercase; font-weight:800; }
.trust-badges { display:flex; gap:12px; flex-wrap:wrap; }
.trust-badge { background:var(--green-glass); border:1.5px solid var(--green-light); border-radius:12px; padding:11px 20px;
  font-size:16px; font-weight:800; color:var(--green); letter-spacing:0.2px;
  font-family:'Atkinson Hyperlegible','Aptos',Calibri,sans-serif; box-shadow:var(--shadow-sm); transition:background 0.2s; }
.trust-badge:hover { background:var(--green-pale); }
.hero-visual { position:relative; }
.hero-img-main { width:100%; border-radius:20px; overflow:hidden; box-shadow:var(--shadow-lg); aspect-ratio:4/3; }
.hero-img-main img { width:100%; height:100%; object-fit:cover; display:block; }
.hero-img-float { position:absolute; bottom:-24px; left:-28px; width:44%; border-radius:14px; overflow:hidden;
  box-shadow:var(--shadow-lg); border:3px solid var(--white); aspect-ratio:4/3; }
.hero-img-float img { width:100%; height:100%; object-fit:cover; display:block; }
.hero-stat-pill { position:absolute; top:22px; left:-20px; background:var(--white); border:1px solid var(--border);
  border-radius:12px; padding:12px 18px; box-shadow:var(--shadow-md); display:flex; align-items:center; gap:12px; }
.pill-icon { font-size:22px; }
.pill-text { display:flex; flex-direction:column; gap:1px; }
.pill-val { font-size:20px; font-weight:800; color:var(--green); letter-spacing:-0.5px; }
.pill-label { font-size:11px; color:var(--ink-light); font-weight:500; }
.hero-badge-pill { position:absolute; top:50%; right:-18px; transform:translateY(-50%); background:var(--green);
  color:#fff; border-radius:12px; padding:14px 18px; box-shadow:0 8px 24px rgba(26,122,94,0.3); text-align:center; }
.badge-num { font-size:26px; font-weight:900; letter-spacing:-1px; display:block; }
.badge-label { font-size:10px; font-weight:600; letter-spacing:0.5px; opacity:0.85; }
section { padding:88px 6%; }
.section-inner { max-width:1240px; margin:0 auto; }
.section-eyebrow { font-size:12px; font-weight:700; letter-spacing:1px; text-transform:uppercase;
  color:var(--green); margin-bottom:12px; display:block; }
.section-h2 { font-size:clamp(28px,3.2vw,44px); font-weight:700; letter-spacing:-0.2px; line-height:1.15;
  margin-bottom:16px; color:var(--ink); }
.section-sub { font-size:17px; color:var(--ink-light); line-height:1.68; max-width:560px; }
.trust-band { background:var(--surface); border-top:1px solid var(--border); border-bottom:1px solid var(--border);
  padding:28px 6%; text-align:center; }
.trust-band-inner { max-width:1240px; margin:0 auto; }
.trust-band-label { font-size:12px; color:var(--ink-light); letter-spacing:0.8px; text-transform:uppercase; margin-bottom:18px; }
.standards-row { display:flex; justify-content:center; align-items:center; gap:12px; flex-wrap:wrap; }
.std-chip { background:var(--white); border:1.5px solid var(--border-mid); border-radius:8px; padding:8px 18px;
  font-size:13px; font-weight:700; color:var(--green); letter-spacing:0.3px; font-family:'DM Mono',monospace; box-shadow:var(--shadow-sm); }
.std-chip.blue { color:var(--blue); border-color:var(--blue-pale); }
.stat-band { background:var(--white); padding:0 6% 80px; }
.stat-grid { max-width:1240px; margin:0 auto; display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.stat-card { background:var(--surface); border:1px solid var(--border); border-radius:16px; padding:28px 24px;
  display:flex; flex-direction:column; gap:6px; box-shadow:var(--shadow-sm); transition:box-shadow 0.2s, transform 0.2s; }
.stat-card:hover { box-shadow:var(--shadow-md); transform:translateY(-2px); }
.stat-num { font-size:42px; font-weight:900; letter-spacing:-2px; color:var(--green); line-height:1; }
.stat-num.blue { color:var(--blue); }
.stat-unit { font-size:22px; font-weight:400; }
.stat-label { font-size:14px; color:var(--ink-light); font-weight:500; line-height:1.4; }
.products { background:var(--off-white); }
.products-hdr { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:48px; flex-wrap:wrap; gap:24px; }
.products-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.product-card { background:var(--white); border-radius:20px; border:1.5px solid var(--border); overflow:hidden;
  display:flex; flex-direction:column; box-shadow:var(--shadow-sm); transition:box-shadow 0.25s, transform 0.2s; }
.product-card:hover { box-shadow:var(--shadow-lg); transform:translateY(-4px); }
.product-img { width:100%; height:200px; overflow:hidden; position:relative; }
.product-img img { width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.5s; }
.product-card:hover .product-img img { transform:scale(1.04); }
.product-img-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(0,0,0,0.35) 0%,transparent 60%); }
.product-img-tag { position:absolute; bottom:12px; left:16px; background:rgba(255,255,255,0.95); border-radius:6px;
  padding:5px 12px; font-size:12px; font-weight:700; letter-spacing:0.3px; font-family:'DM Mono',monospace; }
.product-card.lab .product-img-tag { color:var(--green); }
.product-card.hospital .product-img-tag { color:var(--blue); }
.product-body { padding:28px 28px 20px; flex:1; }
.product-name { font-size:26px; font-weight:700; margin-bottom:10px; color:var(--ink); }
.product-tagline { font-size:14px; color:var(--ink-light); line-height:1.65; margin-bottom:22px; }
.product-feats { list-style:none; display:flex; flex-direction:column; gap:9px; }
.product-feats li { display:flex; align-items:flex-start; gap:9px; font-size:13px; color:var(--ink-mid); }
.feat-dot { width:18px; height:18px; border-radius:50%; flex-shrink:0; margin-top:1px; display:flex;
  align-items:center; justify-content:center; font-size:10px; font-weight:700; }
.product-card.lab .feat-dot { background:var(--green-pale); color:var(--green); }
.product-card.hospital .feat-dot { background:var(--blue-pale); color:var(--blue); }
.product-footer { padding:18px 28px 24px; border-top:1px solid var(--border); display:flex; align-items:center;
  justify-content:space-between; flex-wrap:wrap; gap:12px; }
.product-price-from { font-size:11px; color:var(--ink-light); }
.product-price { font-size:22px; font-weight:800; color:var(--ink); letter-spacing:-0.5px; }
.product-price span { font-size:13px; font-weight:400; color:var(--ink-light); }
.btn-product { padding:10px 22px; border-radius:8px; font-size:13px; font-weight:700; text-decoration:none;
  transition:opacity 0.2s, transform 0.15s; }
.btn-product:hover { opacity:0.86; transform:translateY(-1px); }
.product-card.lab .btn-product { background:var(--green); color:#fff; box-shadow:0 4px 14px rgba(26,122,94,0.25); }
.product-card.hospital .btn-product { background:var(--blue); color:#fff; box-shadow:0 4px 14px rgba(29,95,168,0.25); }
.how { background:var(--white); }
.how-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; margin-top:16px; }
.how-steps { display:flex; flex-direction:column; gap:0; }
.how-step { display:flex; gap:20px; padding:28px 0; border-bottom:1px solid var(--border); cursor:pointer; transition:background 0.2s; }
.how-step:last-child { border-bottom:none; }
.step-num-box { width:44px; height:44px; border-radius:12px; flex-shrink:0; display:flex; align-items:center;
  justify-content:center; font-size:16px; font-weight:800; font-family:'DM Mono',monospace;
  background:var(--surface); color:var(--ink-light); border:1.5px solid var(--border);
  transition:background 0.2s, color 0.2s, border-color 0.2s; }
.how-step.active .step-num-box { background:var(--green); color:#fff; border-color:var(--green); }
.step-content-text h4 { font-size:17px; font-weight:700; margin-bottom:6px; color:var(--ink); }
.step-content-text p { font-size:14px; color:var(--ink-light); line-height:1.65; }
.how-visual { border-radius:20px; overflow:hidden; box-shadow:var(--shadow-lg); position:relative; }
.how-visual img { width:100%; height:400px; object-fit:cover; display:block; }
.how-visual-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(26,122,94,0.5) 0%,transparent 50%);
  display:flex; align-items:flex-end; padding:28px; }
.how-overlay-chip { background:rgba(255,255,255,0.95); border-radius:10px; padding:12px 18px; display:flex; align-items:center; gap:12px; }
.chip-icon { font-size:24px; }
.chip-text { font-size:14px; font-weight:600; color:var(--green); }
.chip-sub { font-size:12px; color:var(--ink-light); font-weight:400; }
.features-section { background:var(--surface); }
.features-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:52px; }
.feat-card { background:var(--white); border:1.5px solid var(--border); border-radius:16px; padding:28px;
  transition:box-shadow 0.2s, border-color 0.2s, transform 0.2s; }
.feat-card:hover { box-shadow:var(--shadow-md); border-color:var(--border-mid); transform:translateY(-2px); }
.feat-icon-wrap { width:48px; height:48px; border-radius:12px; margin-bottom:18px; display:flex;
  align-items:center; justify-content:center; font-size:22px; }
.feat-icon-wrap.green { background:var(--green-pale); }
.feat-icon-wrap.blue { background:var(--blue-pale); }
.feat-title { font-size:16px; font-weight:700; margin-bottom:8px; color:var(--ink); }
.feat-desc { font-size:14px; color:var(--ink-light); line-height:1.6; }
.img-band { background:var(--white); padding:0 6% 88px; }
.img-band-inner { max-width:1240px; margin:0 auto; }
.img-strip { display:grid; grid-template-columns:2fr 1fr 1fr; gap:16px; border-radius:20px; overflow:hidden; }
.img-strip-item { overflow:hidden; position:relative; }
.img-strip-item img { width:100%; height:280px; object-fit:cover; display:block; transition:transform 0.5s; }
.img-strip-item:hover img { transform:scale(1.05); }
.img-strip-label { position:absolute; bottom:14px; left:14px; background:rgba(255,255,255,0.92); border-radius:6px;
  padding:5px 12px; font-size:11px; font-weight:700; color:var(--green); letter-spacing:0.3px; }
.integrations { background:var(--off-white); }
.int-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-top:48px; }
.int-card { background:var(--white); border:1.5px solid var(--border); border-radius:12px; padding:18px 16px;
  display:flex; align-items:center; gap:12px; font-size:13px; font-weight:600; color:var(--ink-mid);
  transition:border-color 0.2s, box-shadow 0.2s; text-decoration:none; }
.int-card:hover { border-color:var(--green-light); box-shadow:var(--shadow-sm); }
.int-icon { font-size:20px; }
.testimonials { background:var(--white); }
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:52px; }
.testi-card { background:var(--surface); border:1.5px solid var(--border); border-radius:16px; padding:28px; box-shadow:var(--shadow-sm); }
.testi-stars { color:#F59E0B; font-size:14px; margin-bottom:14px; }
.testi-quote { font-size:15px; line-height:1.68; color:var(--ink-mid); margin-bottom:22px; font-style:italic; }
.testi-author { display:flex; align-items:center; gap:12px; }
.testi-avatar { width:40px; height:40px; border-radius:50%;
  background:linear-gradient(135deg,var(--green-pale),var(--blue-pale)); border:2px solid var(--border-mid);
  display:flex; align-items:center; justify-content:center; font-size:14px; font-weight:700; color:var(--green); }
.testi-name { font-size:14px; font-weight:700; color:var(--ink); }
.testi-role { font-size:12px; color:var(--ink-light); }
.cta-section { background:var(--green); padding:88px 6%; text-align:center; }
.cta-inner { max-width:680px; margin:0 auto; }
.cta-h2 { font-size:clamp(30px,3.5vw,46px); font-weight:700; color:#fff; margin-bottom:16px; letter-spacing:-0.2px; }
.cta-sub { color:rgba(255,255,255,0.8); font-size:17px; line-height:1.65; margin-bottom:36px; }
.cta-actions { display:flex; justify-content:center; gap:14px; flex-wrap:wrap; }
.btn-cta-white { background:#fff; color:var(--green); padding:14px 28px; border-radius:9px; font-weight:700; font-size:15px;
  text-decoration:none; display:inline-flex; align-items:center; gap:8px; box-shadow:0 6px 24px rgba(0,0,0,0.12);
  transition:transform 0.15s, box-shadow 0.15s; }
.btn-cta-white:hover { transform:translateY(-2px); box-shadow:0 10px 32px rgba(0,0,0,0.18); }
.btn-cta-outline { border:2px solid rgba(255,255,255,0.5); color:#fff; padding:14px 28px; border-radius:9px;
  font-weight:700; font-size:15px; text-decoration:none; display:inline-flex; align-items:center; gap:8px;
  transition:border-color 0.2s, background 0.2s; }
.btn-cta-outline:hover { border-color:#fff; background:rgba(255,255,255,0.1); }
.cta-note { margin-top:20px; font-size:13px; color:rgba(255,255,255,0.6); }
.cta-note a { color:rgba(255,255,255,0.9); text-decoration:underline; }
footer { background:var(--ink); padding:64px 6% 32px; }
.footer-inner { max-width:1240px; margin:0 auto; }
.footer-top { display:grid; grid-template-columns:2.2fr 1fr 1fr 1fr; gap:48px; margin-bottom:48px; }
.footer-logo { display:flex; align-items:center; gap:10px; margin-bottom:14px; }
.footer-logo-mark { width:34px; height:34px; border-radius:8px;
  background:linear-gradient(135deg,var(--green),var(--blue-mid)); display:flex; align-items:center;
  justify-content:center; font-size:18px; color:#fff; font-weight:700; }
.footer-logo-text { font-size:16px; font-weight:700; color:#fff; }
.footer-logo-text span { color:var(--green-light); }
.footer-desc { font-size:13px; color:rgba(255,255,255,0.45); line-height:1.7; max-width:260px; margin-bottom:16px; }
.footer-meta { font-size:11px; color:rgba(255,255,255,0.3); font-family:'DM Mono',monospace; line-height:1.8; }
.footer-col-title { font-size:11px; font-weight:700; color:rgba(255,255,255,0.5); letter-spacing:1px; text-transform:uppercase; margin-bottom:16px; }
.footer-links { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-links a { font-size:14px; color:rgba(255,255,255,0.55); text-decoration:none; transition:color 0.2s; }
.footer-links a:hover { color:var(--green-light); }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.08); padding-top:24px; display:flex;
  justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; }
.footer-copy { font-size:13px; color:rgba(255,255,255,0.3); }
.footer-legal { display:flex; gap:20px; }
.footer-legal a { font-size:13px; color:rgba(255,255,255,0.35); text-decoration:none; }
.footer-legal a:hover { color:rgba(255,255,255,0.6); }
.feat-tabs { display:flex; gap:12px; margin:40px 0 0; flex-wrap:wrap; }
.feat-tab { flex:1; min-width:240px; background:var(--white); border:2px solid var(--border); border-radius:14px;
  padding:18px 22px; font-size:16px; font-weight:700; color:var(--ink-light); cursor:pointer; text-align:left;
  display:flex; flex-direction:column; gap:6px; transition:border-color 0.2s, color 0.2s, box-shadow 0.2s; }
.feat-tab:hover { border-color:var(--border-mid); color:var(--ink); }
.feat-tab.active.green-active { border-color:var(--green); color:var(--green); box-shadow:0 4px 16px rgba(26,122,94,0.12); }
.feat-tab.active.blue-active { border-color:var(--blue); color:var(--blue); box-shadow:0 4px 16px rgba(29,95,168,0.12); }
.feat-tab-badge { font-size:11px; font-weight:700; letter-spacing:0.6px; text-transform:uppercase; padding:3px 10px;
  border-radius:20px; display:inline-block; width:fit-content; }
.feat-tab-badge.green { background:var(--green-pale); color:var(--green); }
.feat-tab-badge.blue { background:var(--blue-pale); color:var(--blue); }
.features-panel { margin-top:32px; }
.features-panel.hidden { display:none; }
.platform-intro { border-radius:12px; padding:20px 24px; margin-bottom:28px; display:flex; align-items:center; gap:20px; flex-wrap:wrap; }
.platform-intro.green-intro { background:var(--green-pale); border-left:4px solid var(--green); }
.platform-intro.blue-intro { background:var(--blue-pale); border-left:4px solid var(--blue); }
.platform-intro-label { font-family:'DM Mono',monospace; font-size:13px; font-weight:500; white-space:nowrap; }
.green-intro .platform-intro-label { color:var(--green); }
.blue-intro .platform-intro-label { color:var(--blue); }
.platform-intro p { font-size:14px; color:var(--ink-mid); line-height:1.6; flex:1; margin:0; }
.qres-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.qres-card { background:var(--white); border:1.5px solid var(--border); border-radius:14px; padding:24px;
  transition:box-shadow 0.2s, border-color 0.2s, transform 0.2s; }
.qres-card:hover { box-shadow:var(--shadow-md); border-color:var(--border-mid); transform:translateY(-2px); }
.qres-card-icon { width:46px; height:46px; border-radius:11px; display:flex; align-items:center; justify-content:center; font-size:22px; margin-bottom:16px; }
.qres-card-title { font-size:15px; font-weight:700; color:var(--ink); margin-bottom:8px; }
.qres-card-desc { font-size:13px; color:var(--ink-light); line-height:1.65; }
.qres-access-banner { background:linear-gradient(135deg,var(--green-pale) 0%,var(--blue-pale) 100%);
  border:1.5px solid var(--border); border-radius:16px; padding:32px 36px; display:grid;
  grid-template-columns:1fr 1fr; gap:40px; align-items:center; }
.qres-access-steps { display:flex; flex-direction:column; gap:14px; }
.qres-step { display:flex; align-items:center; gap:14px; font-size:14px; font-weight:600; color:var(--ink-mid); }
.qres-step-num { width:28px; height:28px; border-radius:50%; flex-shrink:0; background:var(--green); color:#fff;
  display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:700; }
.contact-card { background:rgba(255,255,255,0.15); border:1px solid rgba(255,255,255,0.25); border-radius:14px; padding:22px 18px; text-align:center; }
.contact-card-icon { font-size:26px; margin-bottom:8px; }
.contact-card-label { font-size:11px; font-weight:700; letter-spacing:0.8px; text-transform:uppercase; color:rgba(255,255,255,0.65); margin-bottom:6px; }
.contact-card-val { font-size:16px; font-weight:700; color:#fff; text-decoration:none; display:block; line-height:1.4; }
.contact-card-val:hover { text-decoration:underline; }
.social-pill { display:inline-flex; align-items:center; gap:9px; background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.25); border-radius:30px; padding:10px 20px; font-size:14px; font-weight:600;
  color:#fff; text-decoration:none; transition:background 0.2s; }
.social-pill:hover { background:rgba(255,255,255,0.22); }
.cta-contact-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-bottom:36px; }
.cta-social-row { display:flex; justify-content:center; gap:14px; flex-wrap:wrap; }
.qres-header-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; margin-bottom:64px; }
@media(max-width:960px){
  .hero-inner,.how-grid,.qres-header-grid{grid-template-columns:1fr;gap:40px}
  .products-grid,.testi-grid{grid-template-columns:1fr}
  .stat-grid{grid-template-columns:repeat(2,1fr)}
  .features-grid{grid-template-columns:1fr 1fr}
  .int-grid{grid-template-columns:repeat(2,1fr)}
  .footer-top{grid-template-columns:1fr 1fr;gap:28px}
  .nav-links{display:none}
  .img-strip{grid-template-columns:1fr;height:auto}
  .img-strip-item img{height:200px}
  .hero-badge-pill{display:none}
  .hero-stat-pill{left:0}
  .qres-grid{grid-template-columns:1fr 1fr}
  .qres-access-banner{grid-template-columns:1fr}
}
@media(max-width:600px){
  .features-grid,.stat-grid,.qres-grid,.cta-contact-grid{grid-template-columns:1fr}
  .nav-social-label{display:none}
}
@media(prefers-reduced-motion:reduce){*{animation:none!important;transition:none!important}}
