:root {
    --bg: #0b1220;
    --card: #0f1a2d;
    --muted: #9fb2c9;
    --fg: #ffffff;
    --acc: #c7181f;   /* red */
    --acc2: #0096c7;  /* blue */
    --ok: #3ddc97;
    --warn: #ffd166;
    --radius: 18px;
    --shadow: 0 12px 40px rgba(0,0,0,.45);
    --border: 1px solid rgba(124,156,196,.22);
    --maxw: 1180px;
    --safe-bottom: env(safe-area-inset-bottom, 0px);
  }
  
  * { box-sizing: border-box; }
  html:focus-within { scroll-behavior: smooth; }
  body {
    margin: 0; color: var(--fg);
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
    line-height: 1.6;
    background:
      radial-gradient(1200px 800px at 12% -8%, #153056 0%, #0b1220 55%) no-repeat,
      var(--bg);
  }
  a { color: var(--acc2); text-decoration: none; }
  a:hover { text-decoration: underline; }
  img { max-width: 100%; display: block; }
  
  .wrap { max-width: var(--maxw); margin: 0 auto; padding: 24px; }
  .visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); border: 0; }
  .skip { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
  .skip:focus { position: fixed; left: 12px; top: 12px; width: auto; height: auto; background: #fff; color: #000; padding: 8px 12px; border-radius: 10px; z-index: 999; }
  
  header { position: sticky; top: 0; z-index: 40; backdrop-filter: saturate(140%) blur(8px); background: rgba(10,16,28,.55); border-bottom: var(--border); }
  .nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
  .brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
  .logo {
    width: 80px; height: 50px; border-radius: 12px; display: grid; place-items: center; font-weight: 900; letter-spacing: .5px;
    color: #072136; box-shadow: var(--shadow);
    flex: 0 0 auto;
  }
  .brand .title { font-weight: 800; letter-spacing: .3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .brand-col { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
  
  .sister-badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; line-height: 1; color: var(--muted);
    border: 1px solid rgba(124,156,196,.28); border-radius: 999px;
    padding: 6px 10px; width: fit-content; background: rgba(255,255,255,.03);
  }
  .sister-dot { width: 6px; height: 6px; border-radius: 999px; background: linear-gradient(135deg, var(--acc), var(--acc2)); display: inline-block; }
  
  .menu { display: flex; gap: 18px; align-items: center; }
  .menu a { color: var(--fg); opacity: .9; }
  
  .btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 999px; border: 1px solid rgba(124,156,196,.35); font-weight: 700; }
  .btn--solid { border: none; background: linear-gradient(135deg, var(--acc), var(--acc2)); color: #06233b; box-shadow: var(--shadow); }
  
  .hamburger { display: none; border: 1px solid rgba(124,156,196,.35); background: transparent; color: var(--fg); padding: 8px 12px; border-radius: 10px; }
  
  .hero { display: grid; grid-template-columns: 1.1fr 1fr; gap: 28px; align-items: center; padding: 56px 0 32px; }
  .pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid rgba(124,156,196,.25); border-radius: 999px; color: var(--muted); font-weight: 700; }
  h1 { font-size: clamp(28px, 3.8vw, 54px); line-height: 1.08; margin: 14px 0; }
  .lead { color: var(--muted); font-size: clamp(16px, 1.5vw, 18px); margin: 0 0 18px; }
  
  .hero-card { background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015)); border: var(--border); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
  .hero-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin-top: 14px; }
  .hero-item { background: var(--card); border: var(--border); border-radius: 14px; padding: 12px 14px; }
  .tag { display: inline-block; font-size: 12px; padding: 4px 8px; border-radius: 999px; border: 1px solid rgba(124,156,196,.28); color: var(--muted); }
  
  section { padding: 62px 0; }
  #faq, #services, #how, #pricing, #contact { scroll-margin-top: 120px; }
  h2 { font-size: clamp(22px, 2.6vw, 34px); margin: 0 0 8px; }
  .sub { color: var(--muted); margin: 0 0 18px; }
  
  .cards { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
  .card { background: var(--card); border: var(--border); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
  .card h3 { margin: 0 0 6px; font-size: 18px; }
  .card p { margin: 0; color: var(--muted); }
  
  .steps { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; counter-reset: step; }
  .step { background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015)); border: var(--border); border-radius: var(--radius); padding: 18px; position: relative; }
  .step:before { counter-increment: step; content: counter(step); position: absolute; top: 14px; right: 14px; font-weight: 900; opacity: .25; font-size: 44px; }
  .pricing { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.price { background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)); border: var(--border); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.money { font-size: 34px; font-weight: 900; letter-spacing: -.4px; }
.price ul { margin: 10px 0 0; padding: 0 0 0 18px; color: var(--muted); }

.cta { display: grid; grid-template-columns: 1.2fr 1fr; gap: 18px; align-items: center; background: linear-gradient(90deg, rgba(92,200,255,.12), rgba(127,255,191,.05)); border: 1px solid rgba(124,156,196,.25); border-radius: var(--radius); padding: 20px; }
.cta .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

footer { border-top: var(--border); color: var(--muted); padding: 30px 0 72px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }

.mobile-callbar {
  position: fixed; left: 0; right: 0; bottom: 0;
  display: none;
  padding: 10px 16px calc(10px + var(--safe-bottom));
  background: rgba(10,16,28,.9);
  border-top: var(--border);
  backdrop-filter: saturate(140%) blur(8px);
  z-index: 60;
}
.mobile-callbar .callbtn {
  display: inline-flex; align-items: center; justify-content: center; width: 100%;
  padding: 12px 16px; border-radius: 999px; border: none;
  background: linear-gradient(135deg, var(--acc), var(--acc2)); color: #06233b;
  font-weight: 900; letter-spacing: .2px; text-decoration: none; box-shadow: var(--shadow);
}

@media (max-width: 1000px) {
  .hero, .cta { grid-template-columns: 1fr; }
  .cards, .pricing, .testimonials, .steps { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 640px) {
  .wrap { padding: 16px; }
  header .wrap { padding: 12px 16px; }
  .brand { gap: 10px; }
  .logo { width: 75px; height: 48px; border-radius: 10px; }
  .brand .title { font-size: 16px; }
  .sister-badge { font-size: 11px; padding: 5px 8px; }

  .menu .btn--solid { display: none !important; }
  .menu { display: none; }
  .hamburger { display: inline-flex; }

  .hero { grid-template-columns: 1fr; gap: 18px; padding: 28px 0 18px; }
  section { padding: 32px 0; }
  h1 { font-size: clamp(26px, 7vw, 34px); margin: 10px 0; }
  h2 { font-size: clamp(20px, 5.5vw, 26px); margin-bottom: 6px; }
  .lead { font-size: 15px; margin-bottom: 14px; }

  .cards, .pricing, .testimonials, .steps { grid-template-columns: 1fr; gap: 12px; }
  .card, .price, .step { padding: 14px; border-radius: 14px; }
  .hero-list { grid-template-columns: 1fr; gap: 10px; }
  .cta { gap: 14px; padding: 16px; }
  .cta .actions { gap: 10px; }
  .btn, .btn--solid { padding: 10px 14px; }

  .menu.is-open {
    display: flex;
    flex-direction: column; align-items: flex-start; gap: 10px;
    background: rgba(10,16,28,.92); padding: 10px 12px; border-radius: 12px;
    position: absolute; top: 64px; right: 16px; border: var(--border);
  }

  .remote-btn { display: none !important; }
  .menu a[href*="screenconnect"] { display: none !important; }

  .mobile-callbar { display: block; }
  footer { padding-bottom: 96px; }
}
