:root {
      --bg: #071018;
      --bg-soft: #0a141e;
      --surface: #0d1822;
      --surface-2: #101f2b;
      --surface-3: #132532;
      --text: #f4f7f9;
      --muted: #9fb0bd;
      --muted-2: #c8d3d9;
      --line: rgba(255,255,255,.10);
      --line-strong: rgba(255,255,255,.16);
      --accent: #78f0c4;
      --accent-dark: #07150f;
      --accent-2: #8bb8ff;
      --danger: #ff9f9f;
      --max: 1180px;
      --radius-sm: 14px;
      --radius: 22px;
      --radius-lg: 30px;
      --shadow: 0 24px 70px rgba(0,0,0,.26);
      --shadow-soft: 0 18px 44px rgba(0,0,0,.18);
    }

    * { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 92px;
    }

    body {
      margin: 0;
      background:
        radial-gradient(circle at 80% 8%, rgba(120,240,196,.09), transparent 28%),
        radial-gradient(circle at 18% 26%, rgba(139,184,255,.055), transparent 24%),
        var(--bg);
      color: var(--text);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: 16px;
      line-height: 1.6;
      text-rendering: optimizeLegibility;
    }

    body.menu-open { overflow: hidden; }

    a {
      color: inherit;
      text-decoration: none;
    }

    button, input, textarea, select {
      font: inherit;
    }

    button { cursor: pointer; }

    img {
      max-width: 100%;
      display: block;
    }

    :focus-visible {
      outline: 3px solid rgba(120,240,196,.45);
      outline-offset: 3px;
    }

    .container {
      width: min(calc(100% - 40px), var(--max));
      margin-inline: auto;
    }

    .skip-link {
      position: fixed;
      left: 16px;
      top: -70px;
      z-index: 9999;
      background: #fff;
      color: #000;
      padding: 10px 14px;
      border-radius: 10px;
      transition: top .2s ease;
    }

    .skip-link:focus { top: 16px; }

    .kicker {
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: .14em;
      font-size: 11px;
      font-weight: 850;
    }

    .eyebrow {
      display: inline-flex;
      gap: 9px;
      align-items: center;
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 7px 11px;
      color: #cbd8df;
      font-size: 13px;
      background: rgba(255,255,255,.025);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
    }

    .status-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 18px var(--accent);
      flex: 0 0 auto;
    }

    h1, h2, h3, p { margin-top: 0; }

    h1 {
      font-size: clamp(48px, 7vw, 88px);
      line-height: .98;
      letter-spacing: -.065em;
      max-width: 970px;
      margin: 25px 0;
    }

    h1 em {
      font-style: normal;
      color: var(--accent);
    }

    h2 {
      font-size: clamp(34px, 5vw, 56px);
      line-height: 1.04;
      letter-spacing: -.045em;
      margin-bottom: 0;
    }

    h3 {
      letter-spacing: -.025em;
      line-height: 1.15;
    }

    .lead {
      color: var(--muted);
      max-width: 590px;
      font-size: 16px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 46px;
      border: 1px solid var(--line);
      padding: 12px 18px;
      border-radius: 999px;
      font-weight: 800;
      font-size: 14px;
      transition: transform .2s ease, background .2s ease, border-color .2s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
      border-color: var(--line-strong);
    }

    .btn-primary {
      background: var(--accent);
      color: var(--accent-dark);
      border-color: transparent;
      box-shadow: 0 12px 30px rgba(120,240,196,.13);
    }

    .btn-primary:hover { background: #8ff5d0; }

    .btn-secondary {
      background: rgba(255,255,255,.025);
    }

    header {
      position: sticky;
      top: 0;
      z-index: 80;
      background: rgba(7,16,24,.80);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--line);
    }

    .nav-shell {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      position: relative;
    }

    .brand {
      font-weight: 900;
      letter-spacing: -.045em;
      font-size: 22px;
      white-space: nowrap;
    }

    .brand span { color: var(--accent); }

    .desktop-nav ul {
      display: flex;
      align-items: center;
      gap: 26px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .desktop-nav a {
      color: #c8d3d9;
      font-size: 14px;
      transition: color .2s ease;
    }

    .desktop-nav a:hover { color: #fff; }

    .mobile-menu-btn {
      display: none;
      width: 46px;
      height: 46px;
      border-radius: 12px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,.025);
      color: #fff;
    }

    .mobile-panel {
      display: none;
      position: fixed;
      inset: 76px 0 0;
      background: rgba(7,16,24,.985);
      z-index: 70;
      border-top: 1px solid var(--line);
      padding: 30px 20px;
    }

    .mobile-panel.open { display: block; }

    .mobile-panel nav {
      display: grid;
      gap: 8px;
    }

    .mobile-panel a {
      display: block;
      padding: 14px 4px;
      border-bottom: 1px solid var(--line);
      font-size: 18px;
      font-weight: 700;
    }

    .hero {
      padding: 104px 0 82px;
      position: relative;
      overflow: hidden;
    }

    .hero-copy {
      max-width: 710px;
      color: var(--muted);
      font-size: 19px;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin: 31px 0 44px;
    }

    .hero-proof {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      max-width: 920px;
    }

    .proof-item {
      border-top: 1px solid var(--line);
      padding-top: 16px;
      color: var(--muted);
      font-size: 13px;
    }

    .proof-item strong {
      display: block;
      color: #fff;
      font-size: 21px;
      letter-spacing: -.03em;
      margin-bottom: 2px;
    }

    .orb {
      position: absolute;
      width: 440px;
      height: 440px;
      border-radius: 50%;
      right: -130px;
      top: 80px;
      border: 1px solid rgba(120,240,196,.16);
      box-shadow:
        inset 0 0 100px rgba(120,240,196,.05),
        0 0 130px rgba(120,240,196,.055);
      pointer-events: none;
    }

    .orb::after {
      content: "";
      position: absolute;
      inset: 16%;
      border: 1px solid rgba(139,184,255,.12);
      border-radius: 50%;
    }

    section {
      padding: 90px 0;
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 34px;
      margin-bottom: 36px;
    }

    .section-copy {
      max-width: 650px;
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .card {
      background:
        linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow-soft);
    }

    .service-card {
      min-height: 265px;
      padding: 26px;
      display: flex;
      flex-direction: column;
    }

    .service-card h3 {
      margin: 14px 0 9px;
      font-size: 21px;
    }

    .service-card p {
      color: var(--muted);
      font-size: 14px;
      margin-bottom: 0;
    }

    .number {
      font-size: 11px;
      color: var(--accent);
      font-weight: 900;
      letter-spacing: .08em;
    }

    .pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-top: auto;
      padding-top: 20px;
    }

    .pill {
      font-size: 12px;
      border: 1px solid var(--line);
      padding: 5px 9px;
      border-radius: 999px;
      color: #c5d0d6;
      background: rgba(255,255,255,.02);
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      border-top: 1px solid var(--line);
    }

    .step {
      padding: 30px 22px 2px;
      border-right: 1px solid var(--line);
    }

    .step:last-child { border-right: 0; }

    .step b {
      font-size: 12px;
      color: var(--accent);
    }

    .step h3 {
      font-size: 25px;
      margin: 12px 0 7px;
    }

    .step p {
      color: var(--muted);
      font-size: 14px;
      margin-bottom: 0;
    }

    .results-card {
      padding: 34px;
      min-height: 420px;
      display: flex;
      flex-direction: column;
      justify-content: end;
      background:
        radial-gradient(circle at 90% 10%, rgba(120,240,196,.10), transparent 28%),
        linear-gradient(145deg, #122733, #0d1822);
    }

    .results-card h3 {
      font-size: clamp(28px, 4vw, 38px);
      max-width: 760px;
      margin: 14px 0 12px;
    }

    .results-card p {
      max-width: 760px;
      color: var(--muted);
    }

    .metric-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      margin-top: 26px;
    }

    .metric {
      border: 1px solid var(--line);
      padding: 18px;
      border-radius: var(--radius-sm);
      background: rgba(255,255,255,.025);
    }

    .metric strong {
      font-size: 28px;
      letter-spacing: -.04em;
    }

    .metric span {
      display: block;
      color: var(--muted);
      font-size: 12px;
      margin-top: 2px;
    }

    .industry-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 12px;
    }

    .industry {
      border: 1px solid var(--line);
      padding: 22px;
      border-radius: 16px;
      background: rgba(255,255,255,.024);
      min-height: 86px;
      display: flex;
      align-items: center;
      font-weight: 750;
    }

    .future-card {
      padding: 36px;
      background:
        linear-gradient(120deg, rgba(120,240,196,.08), rgba(139,184,255,.05)),
        var(--surface);
    }

    .future-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 40px;
      align-items: center;
    }

    .future-list {
      display: grid;
      gap: 12px;
    }

    .future-item {
      display: grid;
      grid-template-columns: 34px 1fr;
      gap: 12px;
      align-items: start;
      padding: 14px 0;
      border-bottom: 1px solid var(--line);
    }

    .future-item:last-child { border-bottom: 0; }

    .future-icon {
      width: 30px;
      height: 30px;
      border: 1px solid var(--line);
      border-radius: 9px;
      display: grid;
      place-items: center;
      color: var(--accent);
      font-weight: 900;
    }

    .future-item strong { display: block; }

    .future-item span {
      display: block;
      color: var(--muted);
      font-size: 13px;
      margin-top: 3px;
    }

    .faq-wrap {
      max-width: 860px;
    }

    .faq-wrap h2 {
      margin-bottom: 20px;
    }

    details {
      border-top: 1px solid var(--line);
      padding: 20px 0;
    }

    details:last-child {
      border-bottom: 1px solid var(--line);
    }

    summary {
      cursor: pointer;
      font-weight: 800;
      list-style: none;
      position: relative;
      padding-right: 32px;
    }

    summary::-webkit-details-marker { display: none; }

    summary::after {
      content: "+";
      position: absolute;
      right: 0;
      top: -2px;
      color: var(--accent);
      font-size: 22px;
    }

    details[open] summary::after { content: "–"; }

    details p {
      color: var(--muted);
      margin: 12px 0 0;
      max-width: 740px;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 18px;
      align-items: stretch;
    }

    .contact-copy,
    .contact-form {
      padding: 36px;
    }

    .contact-copy {
      background:
        linear-gradient(135deg, rgba(120,240,196,.10), rgba(139,184,255,.055)),
        var(--surface);
    }

    .contact-copy h2 { margin: 11px 0 16px; }

    .contact-copy p {
      color: var(--muted);
      max-width: 500px;
    }

    .contact-points {
      display: grid;
      gap: 10px;
      margin-top: 26px;
    }

    .contact-points span {
      color: var(--muted-2);
      font-size: 14px;
    }

    form {
      display: grid;
      gap: 14px;
    }

    .field-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 12px;
    }

    label {
      display: grid;
      gap: 7px;
      color: #d9e2e6;
      font-size: 13px;
      font-weight: 700;
    }

    input,
    select,
    textarea {
      width: 100%;
      color: #fff;
      background: rgba(255,255,255,.035);
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 12px 13px;
      min-height: 46px;
    }

    textarea {
      min-height: 120px;
      resize: vertical;
    }

    input::placeholder,
    textarea::placeholder { color: #7f909b; }

    .form-note {
      color: var(--muted);
      font-size: 12px;
      margin: 0;
    }

    .success {
      display: none;
      border: 1px solid rgba(120,240,196,.35);
      color: #c9ffe9;
      background: rgba(120,240,196,.07);
      padding: 12px 14px;
      border-radius: 12px;
      font-size: 13px;
    }

    footer {
      border-top: 1px solid var(--line);
      padding: 50px 0 32px;
      color: var(--muted);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr repeat(3, 1fr);
      gap: 34px;
    }

    .footer-grid h4 {
      color: #fff;
      margin: 0 0 13px;
      font-size: 14px;
    }

    .footer-grid a {
      display: block;
      font-size: 14px;
      margin: 8px 0;
    }

    .footer-brand p {
      max-width: 320px;
      font-size: 14px;
      margin-top: 12px;
    }

    .copyright {
      border-top: 1px solid var(--line);
      margin-top: 36px;
      padding-top: 20px;
      font-size: 12px;
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .small-links {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
      }
    }

    @media (max-width: 980px) {
      .desktop-nav,
      .desktop-cta {
        display: none;
      }

      .mobile-menu-btn { display: inline-grid; place-items: center; }

      .service-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
      }

      .process-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
      }

      .step:nth-child(2) { border-right: 0; }

      .future-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
      }
    }

    @media (max-width: 720px) {
      .container {
        width: min(calc(100% - 28px), var(--max));
      }

      .hero {
        padding: 76px 0 60px;
      }

      section {
        padding: 66px 0;
      }

      .hero-copy { font-size: 17px; }

      .hero-proof,
      .industry-grid,
      .field-grid {
        grid-template-columns: 1fr;
      }

      .section-head {
        display: block;
      }

      .section-head .lead {
        margin-top: 18px;
      }

      .metric-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .footer-brand {
        grid-column: 1 / -1;
      }

      .orb {
        width: 380px;
        height: 380px;
        right: -250px;
      }
    }

    @media (max-width: 560px) {
      .service-grid,
      .process-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .step {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding-bottom: 22px;
      }

      .step:last-child { border-bottom: 0; }

      .results-card,
      .future-card,
      .contact-copy,
      .contact-form {
        padding: 26px;
      }

      .hero-actions .btn {
        width: 100%;
      }
    }
.footer-contact{display:grid;gap:.45rem;margin:1.25rem 0;max-width:720px}
.footer-contact address{font-style:normal;color:var(--muted,#9fb0bd)}
.footer-contact a{width:max-content}
.contact-details{max-width:760px}

