    :root {
      --bg-dark: #05133a;
      --bg-deeper: #030d2d;
      --accent-blue: #2f5bff;
      --text-main: #f6f8ff;
      --text-muted: #7e8baa;
      --nav-text: #232633;
      --surface-0: #f7f9fd;
      --surface-1: #f3f6fc;
      --surface-2: #edf2f8;
      --surface-3: #e9eef7;
      --divider-soft: #dfe6f1;
      --card-radius: 16px;
      --section-pad: 88px;
      --section-pad-lg: 98px;
      --elev-1: 0 10px 24px rgba(16, 26, 54, 0.08);
      --elev-2: 0 18px 38px rgba(13, 24, 52, 0.14);
      --line-soft: rgba(255, 255, 255, 0.35);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Manrope", sans-serif;
      background: var(--surface-0);
      color: var(--text-main);
      letter-spacing: -0.01em;
    }

    .process,
    .services,
    .about,
    .reasons,
    .industries,
    .faq,
    .contact,
    .site-footer {
      content-visibility: auto;
      contain-intrinsic-size: 900px;
    }

    .visually-hidden-input {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .top-nav {
      height: 82px;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      border-bottom: 1px solid #eceef4;
      box-shadow: 0 6px 20px rgba(17, 30, 61, 0.04);
      position: sticky;
      top: 0;
      z-index: 20;
    }

    .top-nav .container {
      width: min(1220px, 92vw);
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
    }

    .brand-wrap {
      display: flex;
      align-items: center;
    }

    .brand-logo {
      width: min(265px, 22vw);
      height: auto;
      display: block;
    }

    .nav-links {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 42px;
      color: var(--nav-text);
      font-weight: 600;
      font-size: 16px;
      letter-spacing: -0.01em;
    }

    .nav-links a {
      color: inherit;
      text-decoration: none;
    }

    .nav-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border-radius: 11px;
      border: 1px solid #d6deec;
      background: #f7faff;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      box-shadow: 0 6px 16px rgba(26, 40, 77, 0.08);
    }

    .nav-toggle span {
      width: 17px;
      height: 2px;
      border-radius: 2px;
      background: #24408f;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .top-nav.is-open .nav-toggle span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .top-nav.is-open .nav-toggle span:nth-child(2) {
      opacity: 0;
    }

    .top-nav.is-open .nav-toggle span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .btn-quote {
      border: none;
      background: linear-gradient(140deg, #4870ff, #2f57ed);
      color: #fff;
      font-weight: 700;
      font-size: 16px;
      line-height: 1;
      padding: 11px 18px;
      border-radius: 12px;
      cursor: pointer;
      box-shadow: 0 10px 22px rgba(34, 69, 196, 0.28);
      transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .btn-quote:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 26px rgba(34, 69, 196, 0.34);
      filter: saturate(1.06);
    }

    .hero {
      position: relative;
      overflow: hidden;
      min-height: calc(100vh - 82px);
      display: flex;
      align-items: center;
      padding: 0;
      background:
        radial-gradient(circle at 9% 18%, rgba(55, 102, 255, 0.28) 0, rgba(55, 102, 255, 0.05) 18%, rgba(55, 102, 255, 0) 32%),
        radial-gradient(circle at 78% 62%, rgba(0, 231, 199, 0.18) 0, rgba(0, 231, 199, 0.06) 22%, rgba(0, 231, 199, 0) 38%),
        radial-gradient(circle at 56% 74%, rgba(70, 97, 255, 0.22) 0, rgba(70, 97, 255, 0.05) 16%, rgba(70, 97, 255, 0) 30%),
        radial-gradient(circle, rgba(46, 70, 140, 0.2) 1px, transparent 1px),
        linear-gradient(100deg, var(--bg-dark), var(--bg-deeper));
      background-size: auto, auto, auto, 64px 64px, cover;
      background-position: center;
    }

    .hero::after {
      content: "";
      position: absolute;
      left: -4%;
      right: -4%;
      bottom: -95px;
      height: 165px;
      background: #f1f2f5;
      border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    }

    .hero .container {
      width: min(1220px, 92vw);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      justify-items: stretch;
      gap: 56px;
      position: relative;
      z-index: 2;
      transform: translateY(-10%);
    }

    .hero-copy {
      justify-self: start;
      width: 100%;
      max-width: 640px;
    }

    .hero-copy h1 {
      font-size: clamp(34px, 3.2vw, 56px);
      line-height: 1.03;
      font-weight: 800;
      letter-spacing: -1.8px;
      max-width: 17ch;
      margin-bottom: 34px;
    }

    .hero-copy .accent {
      color: var(--accent-blue);
    }

    .hero-copy p {
      max-width: 720px;
      font-size: clamp(16px, 1.1vw, 20px);
      line-height: 1.42;
      color: var(--text-muted);
      margin-bottom: 42px;
      font-weight: 500;
    }

    .hero-btn {
      border: none;
      background: linear-gradient(140deg, #4870ff, #2f57ed);
      color: #fff;
      font-size: clamp(16px, 1.15vw, 20px);
      font-weight: 700;
      border-radius: 13px;
      padding: 16px 24px;
      cursor: pointer;
      box-shadow: 0 12px 24px rgba(30, 63, 183, 0.28);
      transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .hero-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 16px 28px rgba(30, 63, 183, 0.34);
      filter: saturate(1.06);
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: nowrap;
    }

    .seo-outline {
      border: 1px solid rgba(68, 255, 172, 0.65);
      background: rgba(17, 88, 56, 0.14);
      color: #d8ffe9;
      font-size: 16px;
      font-weight: 700;
      border-radius: 12px;
      padding: 16px 22px;
      line-height: 1;
      cursor: default;
      user-select: none;
      margin-left: 10px;
      box-shadow:
        0 0 0 1px rgba(62, 255, 168, 0.22) inset,
        0 0 14px rgba(62, 255, 168, 0.24);
    }

    .hero-media {
      justify-self: end;
      width: 112%;
      max-width: 980px;
      margin-right: -34px;
      aspect-ratio: 1.45 / 1;
      border-radius: 24px;
      position: relative;
      background:
        linear-gradient(to top, rgba(7, 13, 35, 0.17), rgba(7, 13, 35, 0.08)),
        url("https://images.unsplash.com/photo-1467232004584-a241de8bcf5d?auto=format&fit=crop&w=1200&q=72") center/cover;
      box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
      overflow: hidden;
    }

    .process {
      position: relative;
      overflow: hidden;
      background: #f1f2f5;
      padding: var(--section-pad) 0 var(--section-pad-lg);
      color: #171d31;
      border-top: 1px solid var(--divider-soft);
      border-bottom: 1px solid var(--divider-soft);
      box-shadow: none;
    }

    .process .container {
      width: min(1220px, 92vw);
      margin: 0 auto;
    }

    .process-head {
      text-align: center;
      max-width: 900px;
      margin: 0 auto 66px;
      color: #171d31;
    }

    .process-head .eyebrow {
      display: inline-block;
      color: #2f5bff;
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 14px;
    }

    .process-head h2 {
      font-size: clamp(34px, 3.2vw, 56px);
      line-height: 1.14;
      letter-spacing: -1px;
      margin-bottom: 14px;
      color: #171d31;
    }

    .process-head h2 .accent {
      color: #2f5bff;
    }

    .process-head p {
      font-size: clamp(16px, 1.1vw, 20px);
      line-height: 1.5;
      color: #6f7f9d;
      font-weight: 500;
    }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 38px;
      align-items: start;
      max-width: 1180px;
      margin: 0 auto;
      position: relative;
    }

    .process-step {
      text-align: center;
      position: relative;
      padding: 8px 16px 12px;
      border-radius: var(--card-radius);
      transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
    }

    .process-step:hover {
      transform: translateY(-4px);
      background: rgba(255, 255, 255, 0.52);
      box-shadow: var(--elev-1);
    }

    .step-badge {
      width: 96px;
      height: 96px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      color: #fff;
      font-size: 42px;
      font-weight: 800;
      margin: 0 auto 28px;
      box-shadow: 0 12px 22px rgba(31, 57, 136, 0.16);
    }

    .process-step:nth-child(1) .step-badge { background: linear-gradient(140deg, #3e66ff, #2447d8); }
    .process-step:nth-child(2) .step-badge { background: linear-gradient(140deg, #2fd7c0, #08ab94); }
    .process-step:nth-child(3) .step-badge { background: linear-gradient(140deg, #ff8b46, #ff6a32); }

    .process-step h3 {
      color: #1a2238;
      font-size: 32px;
      margin-bottom: 12px;
      letter-spacing: -0.5px;
    }

    .process-step p {
      font-size: clamp(16px, 1.1vw, 20px);
      line-height: 1.5;
      color: #6f7f9d;
      font-weight: 500;
      max-width: 31ch;
      margin: 0 auto;
    }

    .process-step:not(:last-child)::after {
      content: "";
      position: absolute;
      top: 74px;
      right: -28px;
      width: 56px;
      height: 2px;
      background: linear-gradient(to right, #d0d8e8, #c0cadf);
      z-index: 1;
    }

    .process-step:not(:last-child)::before {
      content: "";
      position: absolute;
      top: 69px;
      right: -30px;
      width: 10px;
      height: 10px;
      border-top: 2px solid #c0cadf;
      border-right: 2px solid #c0cadf;
      transform: rotate(45deg);
    }

    .process-cta {
      text-align: center;
      margin-top: 56px;
    }

    .services {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 12% 18%, rgba(62, 106, 255, 0.2), transparent 34%),
        radial-gradient(circle at 86% 76%, rgba(12, 201, 177, 0.13), transparent 36%),
        linear-gradient(120deg, #07163b 0%, #0a1e4a 55%, #0b1a44 100%);
      padding: calc(var(--section-pad) - 18px) 0 var(--section-pad-lg);
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .services .container {
      width: min(1220px, 92vw);
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .services-head {
      text-align: center;
      max-width: 1220px;
      margin: 0 auto 70px;
      color: #f2f6ff;
    }

    .services-head h2 {
      font-size: clamp(34px, 3.2vw, 56px);
      line-height: 1.15;
      letter-spacing: -1.1px;
      margin: 0 auto 16px;
      white-space: nowrap;
      width: 100%;
      text-align: center;
    }

    .services-head h2 .accent {
      color: #5f88ff;
    }

    .services-head p {
      font-size: clamp(16px, 1.1vw, 20px);
      line-height: 1.6;
      color: #b8c7e5;
      font-weight: 500;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      column-gap: 24px;
      row-gap: 30px;
      max-width: 1220px;
      margin: 0 auto;
    }

    .service-card {
      grid-column: span 2;
      display: grid;
      grid-template-rows: 0.72fr auto;
      background: linear-gradient(165deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07));
      border: 1px solid rgba(171, 194, 248, 0.5);
      border-radius: var(--card-radius);
      padding: 34px 30px 30px;
      min-height: 290px;
      box-shadow:
        0 18px 34px rgba(2, 8, 24, 0.44),
        0 0 0 1px rgba(255, 255, 255, 0.03) inset;
      backdrop-filter: blur(4px);
      transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    }

    .service-card:hover {
      transform: translateY(-6px);
      border-color: rgba(189, 208, 255, 0.75);
      box-shadow:
        0 24px 42px rgba(2, 8, 24, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    }

    .services-grid .service-card:nth-child(4) {
      grid-column: 2 / span 2;
    }

    .services-grid .service-card:nth-child(5) {
      grid-column: 4 / span 2;
    }

    .service-icon {
      width: 36px;
      height: 36px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      justify-self: start;
      align-self: center;
      margin-bottom: 0;
    }

    .service-icon svg {
      width: 100%;
      height: 100%;
      display: block;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .service-card:nth-child(1) .service-icon { color: #2f5bff; }
    .service-card:nth-child(2) .service-icon { color: #00b8a5; }
    .service-card:nth-child(3) .service-icon { color: #ff6d2d; }
    .service-card:nth-child(4) .service-icon { color: #835bff; }
    .service-card:nth-child(5) .service-icon { color: #2f5bff; }

    .service-card h3 {
      color: #f6f9ff;
      font-size: 22px;
      line-height: 1.2;
      margin-bottom: 14px;
      letter-spacing: -0.1px;
    }

    .service-card p {
      color: #c2cee7;
      font-size: clamp(16px, 1.1vw, 20px);
      line-height: 1.55;
      font-weight: 500;
    }

    .service-copy {
      align-self: end;
    }

    .services-cta {
      text-align: center;
      margin-top: 52px;
    }

    .about {
      background: var(--surface-2);
      padding: var(--section-pad) 0 var(--section-pad-lg);
      border-top: 1px solid var(--divider-soft);
    }

    .about .container {
      width: min(1220px, 92vw);
      margin: 0 auto;
    }

    .about-head {
      text-align: center;
      max-width: 920px;
      margin: 0 auto 54px;
      color: #171d31;
    }

    .about-head h2 {
      font-size: clamp(34px, 3.2vw, 56px);
      line-height: 1.15;
      margin-bottom: 14px;
      letter-spacing: -1px;
      color: #171d31;
    }

    .about-head h2 .accent {
      color: #2f5bff;
    }

    .about-head p {
      font-size: clamp(16px, 1.1vw, 20px);
      font-weight: 500;
      color: #667797;
      line-height: 1.5;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 42px;
      align-items: start;
    }

    .about-media {
      width: 100%;
      max-width: 440px;
      aspect-ratio: 2 / 3;
      min-height: auto;
      border-radius: 18px;
      background:
        linear-gradient(to top, rgba(5, 13, 32, 0.1), rgba(5, 13, 32, 0)),
        url("images/about-me.png") center/cover no-repeat;
      box-shadow: var(--elev-2);
      justify-self: center;
    }

    .about-copy h3 {
      color: #1a2238;
      font-size: 42px;
      margin-bottom: 18px;
      letter-spacing: -0.5px;
    }

    .about-copy p {
      color: #667797;
      font-size: clamp(16px, 1.1vw, 20px);
      font-weight: 500;
      line-height: 1.55;
      margin-bottom: 20px;
    }

    .about-points {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin: 22px 0 28px;
    }

    .about-point {
      background: #e8edf7;
      border-radius: var(--card-radius);
      padding: 18px 18px 16px;
      text-align: center;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
    }

    .about-point strong {
      display: block;
      font-size: 48px;
      line-height: 1;
      margin-bottom: 8px;
      font-weight: 800;
    }

    .about-point p {
      margin: 0;
      font-size: 12px;
      color: #7b89a5;
      font-weight: 500;
    }

    .about-point.is-blue strong { color: #2f5bff; }
    .about-point.is-teal strong { color: #13c8ad; }

    .about-copy .hero-btn {
      margin-top: 18px;
    }

    .reasons {
      background: var(--surface-1);
      border-top: 1px solid var(--divider-soft);
      border-bottom: 1px solid var(--divider-soft);
      padding: var(--section-pad) 0 var(--section-pad-lg);
    }

    .reasons .container {
      width: min(1220px, 92vw);
      margin: 0 auto;
    }

    .reasons-head {
      text-align: center;
      max-width: 920px;
      margin: 0 auto 56px;
      color: #171d31;
    }

    .reasons-head h2 {
      font-size: clamp(34px, 3.2vw, 56px);
      line-height: 1.14;
      letter-spacing: -1px;
      margin-bottom: 14px;
      color: #1a2238;
    }

    .reasons-head h2 .accent {
      color: #12c8b2;
    }

    .reasons-head p {
      font-size: clamp(16px, 1.1vw, 20px);
      font-weight: 500;
      color: #6e7d99;
      line-height: 1.5;
    }

    .reasons-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 42px;
      align-items: start;
      max-width: 1120px;
      margin: 0 auto;
    }

    .reasons-media {
      min-height: 420px;
      border-radius: var(--card-radius);
      background:
        linear-gradient(to top, rgba(7, 17, 46, 0.18), rgba(7, 17, 46, 0)),
        url("https://images.pexels.com/photos/8867482/pexels-photo-8867482.jpeg?auto=compress&cs=tinysrgb&w=1100") center/cover;
      box-shadow: var(--elev-2);
    }

    .reasons-list {
      display: grid;
      gap: 22px;
    }

    .reason-item {
      display: grid;
      grid-template-columns: 42px 1fr;
      gap: 14px;
      align-items: start;
      padding: 10px 12px;
      border-radius: 12px;
      transition: background-color 0.2s ease, transform 0.2s ease;
    }

    .reason-item:hover {
      background: rgba(255, 255, 255, 0.58);
      transform: translateY(-1px);
    }

    .reason-icon {
      width: 34px;
      height: 34px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      justify-self: center;
      align-self: start;
      color: currentColor;
      margin-top: 4px;
    }

    .reason-icon svg {
      width: 100%;
      height: 100%;
      display: block;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .reason-item:nth-child(1) .reason-icon { color: #12c8b2; }
    .reason-item:nth-child(2) .reason-icon { color: #2f5bff; }
    .reason-item:nth-child(3) .reason-icon { color: #ff6a32; }
    .reason-item:nth-child(4) .reason-icon { color: #835bff; }

    .reason-item h3 {
      color: #1a2238;
      font-size: 34px;
      line-height: 1.2;
      margin-bottom: 6px;
      letter-spacing: -0.3px;
    }

    .reason-item p {
      color: #6f7f9d;
      font-size: clamp(16px, 1.1vw, 20px);
      line-height: 1.5;
      font-weight: 500;
    }

    .reasons-cta {
      text-align: center;
      margin-top: 44px;
    }

    .industries {
      background: var(--surface-3);
      border-top: 1px solid var(--divider-soft);
      border-bottom: 1px solid var(--divider-soft);
      padding: var(--section-pad) 0 var(--section-pad-lg);
    }

    .industries .container {
      width: min(1220px, 92vw);
      margin: 0 auto;
    }

    .industries-head {
      text-align: center;
      max-width: 900px;
      margin: 0 auto 48px;
      color: #171d31;
    }

    .industries-head h2 {
      font-size: clamp(34px, 3.2vw, 56px);
      line-height: 1.14;
      letter-spacing: -1px;
      margin-bottom: 12px;
      color: #171d31;
    }

    .industries-head h2 .accent {
      color: #2f5bff;
    }

    .industries-head p {
      font-size: clamp(16px, 1.1vw, 20px);
      color: #6f7f9d;
      font-weight: 500;
      line-height: 1.5;
    }

    .industries-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      max-width: 1220px;
      margin: 0 auto;
    }

    .industry-card {
      position: relative;
      min-height: 220px;
      border-radius: var(--card-radius);
      overflow: hidden;
      background-size: cover;
      background-position: center;
      box-shadow: var(--elev-2);
      transition: transform 0.24s ease, box-shadow 0.24s ease;
    }

    .industry-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 24px 38px rgba(16, 28, 58, 0.2);
    }

    .industry-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(8, 14, 31, 0.78) 0%, rgba(8, 14, 31, 0.42) 48%, rgba(8, 14, 31, 0.1) 100%);
    }

    .industry-card:nth-child(1) {
      background-image: url("https://images.unsplash.com/photo-1556742502-ec7c0e9f34b1?auto=format&fit=crop&w=900&q=72");
      background-position: center 40%;
      background-size: cover;
    }
    .industry-card:nth-child(2) {
      background-image: url("https://images.pexels.com/photos/5668481/pexels-photo-5668481.jpeg?auto=compress&cs=tinysrgb&w=900");
      background-position: center center;
      background-size: 118%;
    }
    .industry-card:nth-child(3) { background-image: url("https://images.unsplash.com/photo-1554118811-1e0d58224f24?auto=format&fit=crop&w=900&q=72"); }
    .industry-card:nth-child(4) { background-image: url("https://images.unsplash.com/photo-1534438327276-14e5300c3a48?auto=format&fit=crop&w=900&q=72"); }
    .industry-card:nth-child(5) { background-image: url("https://images.pexels.com/photos/8486972/pexels-photo-8486972.jpeg?auto=compress&cs=tinysrgb&w=900"); }
    .industry-card:nth-child(6) { background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=900&q=72"); }

    .industry-content {
      position: absolute;
      left: 16px;
      right: 16px;
      bottom: 14px;
      z-index: 2;
      color: #f8fbff;
    }

    .industry-icon {
      width: 30px;
      height: 30px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.22);
      backdrop-filter: blur(2px);
      display: inline-grid;
      place-items: center;
      font-size: 14px;
      margin-bottom: 10px;
    }

    .industry-content h3 {
      font-size: 34px;
      line-height: 1.2;
      margin-bottom: 4px;
      letter-spacing: -0.2px;
    }

    .industry-content p {
      font-size: 13px;
      color: rgba(240, 246, 255, 0.9);
      font-weight: 500;
    }

    .industries-cta {
      text-align: center;
      margin-top: 34px;
    }

    .industries-note {
      display: inline-block;
      padding: 10px 16px;
      border-radius: 999px;
      background: rgba(47, 91, 255, 0.08);
      border: 1px solid rgba(47, 91, 255, 0.2);
      color: #395082;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: -0.01em;
    }

    .contact {
      background: var(--surface-1);
      border-top: 1px solid var(--divider-soft);
      padding: var(--section-pad) 0 var(--section-pad-lg);
    }

    .contact .container {
      width: min(1220px, 92vw);
      margin: 0 auto;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 34px;
      align-items: start;
    }

    .contact-copy h2 {
      color: #171d31;
      font-size: clamp(34px, 3.2vw, 56px);
      line-height: 1.14;
      letter-spacing: -1px;
      margin-bottom: 14px;
    }

    .contact-copy p {
      color: #6f7f9d;
      font-size: clamp(16px, 1.1vw, 20px);
      line-height: 1.55;
      font-weight: 500;
      margin-bottom: 24px;
      max-width: 34ch;
    }

    .contact-points {
      list-style: none;
      display: grid;
      gap: 12px;
      color: #2d3b62;
      font-size: 16px;
      font-weight: 600;
    }

    .contact-card {
      background: #ffffff;
      border: 1px solid #dbe3f0;
      border-radius: var(--card-radius);
      box-shadow: var(--elev-2);
      padding: 24px;
    }

    .contact-form {
      display: grid;
      gap: 14px;
    }

    .form-step {
      display: grid;
      gap: 14px;
    }

    .form-step[hidden] {
      display: none;
    }

    .form-step-label {
      font-size: 13px;
      font-weight: 800;
      color: #2f5bff;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      margin-bottom: 2px;
    }

    .contact-form .row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .contact-form label {
      display: grid;
      gap: 6px;
      color: #2a375b;
      font-size: 13px;
      font-weight: 700;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
      width: 100%;
      border: 1px solid #d5dfed;
      border-radius: 10px;
      background: #fafdff;
      color: #1e2742;
      font: inherit;
      font-size: 15px;
      padding: 12px 13px;
      outline: none;
    }

    .contact-form textarea {
      min-height: 130px;
      resize: vertical;
    }

    .contact-form input:focus,
    .contact-form select:focus,
    .contact-form textarea:focus {
      border-color: #7d9fff;
      box-shadow: 0 0 0 3px rgba(47, 91, 255, 0.12);
    }

    .contact-form .hero-btn {
      justify-self: start;
      margin-top: 4px;
    }

    .consent-group {
      display: grid;
      gap: 10px;
      margin-top: 2px;
    }

    .consent-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13px;
      line-height: 1.45;
      color: #2a375b;
      font-weight: 600;
    }

    .consent-item input[type="checkbox"] {
      width: 16px;
      height: 16px;
      margin-top: 2px;
      accent-color: #2f5bff;
      flex: 0 0 auto;
    }

    .consent-item a {
      color: #2f5bff;
      text-decoration: none;
    }

    .consent-item a:hover {
      text-decoration: underline;
    }

    .step-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 4px;
    }

    .btn-secondary {
      border: 1px solid #c7d6f6;
      background: #f4f8ff;
      color: #28407a;
      font-size: 15px;
      font-weight: 700;
      border-radius: 12px;
      padding: 12px 18px;
      cursor: pointer;
      transition: background-color 0.2s ease, border-color 0.2s ease;
    }

    .btn-secondary:hover {
      background: #edf4ff;
      border-color: #abc2f5;
    }

    .contact-form .hero-btn[disabled] {
      opacity: 0.7;
      cursor: not-allowed;
      transform: none;
      box-shadow: 0 10px 22px rgba(34, 69, 196, 0.2);
    }

    .form-status {
      min-height: 22px;
      font-size: 14px;
      line-height: 1.4;
      font-weight: 600;
      color: #3b4d78;
      margin-top: 2px;
    }

    .form-status.is-success {
      color: #0c9b75;
    }

    .form-status.is-error {
      color: #cc3a3a;
    }

    .site-footer {
      background:
        radial-gradient(circle at 12% 18%, rgba(77, 108, 201, 0.22), transparent 28%),
        linear-gradient(120deg, #081330, #0a173b);
      color: #d7e0f3;
      padding: 18px 0 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .site-footer .container {
      width: min(1220px, 92vw);
      margin: 0 auto;
    }

    .footer-top {
      display: flex;
      justify-content: center;
      margin-bottom: 12px;
    }

    .footer-brand {
      display: grid;
      justify-items: center;
      gap: 10px;
    }

    .footer-brand img {
      width: min(250px, 60vw);
      height: auto;
      display: block;
    }

    .footer-social {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .footer-social a {
      width: 36px;
      height: 36px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      color: #d7e0f3;
      border: 1px solid rgba(255, 255, 255, 0.24);
      background: rgba(255, 255, 255, 0.04);
      transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
    }

    .footer-social a:hover {
      transform: translateY(-2px);
      color: #ffffff;
      border-color: rgba(255, 255, 255, 0.45);
      background: rgba(255, 255, 255, 0.1);
    }

    .footer-social svg {
      width: 17px;
      height: 17px;
      fill: currentColor;
      display: block;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 16px;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      align-items: center;
      gap: 10px 0;
      color: #93a3c7;
      font-size: 13px;
      text-align: center;
    }

    .footer-bottom span {
      position: relative;
      padding: 0 16px;
    }

    .footer-bottom span + span::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      width: 1px;
      height: 12px;
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-50%);
    }

    .footer-bottom a {
      color: inherit;
      text-decoration: none;
    }

    .footer-bottom a:hover {
      color: #ffffff;
    }

    .legal-link {
      cursor: pointer;
    }

    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(6, 12, 30, 0.62);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 22px;
      z-index: 999;
    }

    .modal-overlay.is-open {
      display: flex;
    }

    .modal-panel {
      width: min(820px, 100%);
      max-height: min(84vh, 900px);
      background: #ffffff;
      border-radius: 16px;
      border: 1px solid #dbe3f0;
      box-shadow: 0 24px 44px rgba(12, 21, 46, 0.24);
      overflow: hidden;
      color: #1b2742;
    }

    .modal-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 16px 18px;
      border-bottom: 1px solid #e6ecf6;
      background: #f8fbff;
    }

    .modal-head h3 {
      font-size: 20px;
      color: #1b2742;
      letter-spacing: -0.02em;
    }

    .modal-close {
      border: none;
      background: #e9eef9;
      color: #2e3d66;
      width: 32px;
      height: 32px;
      border-radius: 8px;
      font-size: 20px;
      line-height: 1;
      cursor: pointer;
    }

    .modal-body {
      max-height: calc(min(84vh, 900px) - 66px);
      overflow-y: auto;
      padding: 18px;
      display: grid;
      gap: 16px;
      font-size: 14px;
      line-height: 1.6;
      color: #3f4f73;
    }

    .modal-body h4 {
      font-size: 16px;
      color: #1d2b4d;
      margin-bottom: 4px;
    }

    .faq {
      background: var(--surface-2);
      border-top: 1px solid var(--divider-soft);
      padding: var(--section-pad) 0 var(--section-pad-lg);
    }

    .faq .container {
      width: min(980px, 92vw);
      margin: 0 auto;
    }

    .faq-head {
      text-align: center;
      margin: 0 auto 34px;
      color: #171d31;
    }

    .faq-head h2 {
      font-size: clamp(34px, 3.2vw, 56px);
      line-height: 1.14;
      letter-spacing: -1px;
      margin-bottom: 10px;
    }

    .faq-head p {
      font-size: clamp(16px, 1.1vw, 20px);
      color: #6f7f9d;
      font-weight: 500;
      line-height: 1.5;
    }

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

    .faq-item {
      background: #ffffff;
      border: 1px solid #dbe3f0;
      border-radius: 14px;
      box-shadow: var(--elev-1);
      overflow: hidden;
    }

    .faq-item summary {
      list-style: none;
      cursor: pointer;
      padding: 16px 18px;
      color: #1d2742;
      font-size: 17px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "+";
      color: #2f5bff;
      font-size: 22px;
      font-weight: 700;
      line-height: 1;
    }

    .faq-item[open] summary::after {
      content: "-";
    }

    .faq-answer {
      border-top: 1px solid #e6ecf6;
      padding: 0 18px 16px;
      color: #5f6f90;
      font-size: 15px;
      line-height: 1.55;
      font-weight: 500;
    }

    @media (max-width: 1100px) {
      .top-nav {
        height: auto;
        padding: 20px 0;
      }

      .top-nav .container {
        flex-wrap: wrap;
        gap: 18px;
        justify-content: center;
      }

      .nav-links {
        order: 3;
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
        font-size: 16px;
      }

      .brand-logo {
        width: min(260px, 58vw);
      }

      .btn-quote {
        font-size: 14px;
        padding: 12px 18px;
      }

      .hero .container {
        grid-template-columns: 1fr;
      }

      .hero-media {
        justify-self: stretch;
      }

      .hero {
        min-height: auto;
        padding: 70px 0 140px;
      }

      .hero-actions {
        flex-wrap: wrap;
        justify-content: center;
      }

      .process-steps {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .process-step:not(:last-child)::after,
      .process-step:not(:last-child)::before {
        display: none;
      }

      .process-step h3 {
        font-size: 30px;
      }

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

      .services-head h2 {
        white-space: normal;
      }

      .service-card,
      .services-grid .service-card:nth-child(4),
      .services-grid .service-card:nth-child(5) {
        grid-column: auto;
      }

      .about {
        padding: 66px 0 84px;
      }

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

      .about-media {
        max-width: 360px;
      }

      .about-copy h3 {
        font-size: 32px;
      }

      .about-points {
        grid-template-columns: 1fr;
      }

      .reasons {
        padding: 66px 0 84px;
      }

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

      .reasons-media {
        min-height: 300px;
      }

      .reason-item h3 {
        font-size: 28px;
      }

      .industries {
        padding: 66px 0 84px;
      }

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

      .industry-content h3 {
        font-size: 28px;
      }

      .contact {
        padding: 66px 0 84px;
      }

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

      .contact-form .row {
        grid-template-columns: 1fr;
      }

      .faq {
        padding: 66px 0 84px;
      }

      .footer-top {
        justify-content: center;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
      }

      .footer-bottom span {
        padding: 0;
      }

      .footer-bottom span + span::before {
        display: none;
      }

      .modal-overlay {
        padding: 14px;
      }
    }

    @media (max-width: 768px) {
      :root {
        --section-pad: 56px;
        --section-pad-lg: 68px;
      }

      .top-nav {
        padding: 12px 0 14px;
      }

      .top-nav .container {
        width: min(1220px, 94vw);
        gap: 10px;
        justify-content: center;
      }

      .brand-logo {
        width: min(220px, 62vw);
      }

      .nav-toggle {
        display: inline-flex;
        order: 1;
        margin-right: 0;
        position: absolute;
        left: 0;
      }

      .brand-wrap {
        order: 2;
      }

      .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 10px;
        border-radius: 12px;
        border: 1px solid #dbe3f1;
        background: #ffffff;
        box-shadow: 0 14px 30px rgba(17, 31, 63, 0.12);
        z-index: 30;
      }

      .top-nav.is-open .nav-links {
        display: flex;
      }

      .nav-links li {
        list-style: none;
      }

      .nav-links a {
        display: block;
        width: 100%;
        padding: 11px 12px;
        border-radius: 9px;
        font-size: 14px;
      }

      .nav-links a:hover {
        background: #f2f6ff;
      }

      .btn-quote {
        font-size: 14px;
        padding: 11px 14px;
        border-radius: 10px;
      }

      .top-nav .btn-quote {
        display: none;
      }

      .hero {
        padding: 34px 0 114px;
      }

      .hero::after {
        height: 138px;
        bottom: -84px;
      }

      .hero .container {
        gap: 26px;
        transform: none;
      }

      .hero-copy {
        max-width: none;
        padding-top: 14px;
      }

      .hero-copy h1 {
        font-size: clamp(30px, 9vw, 44px);
        margin-bottom: 18px;
        max-width: 14ch;
        letter-spacing: -1.1px;
      }

      .hero-copy p {
        font-size: 16px;
        margin-bottom: 22px;
      }

      .hero-actions {
        gap: 10px;
        display: grid;
        width: 100%;
        justify-items: start;
      }

      .hero-actions .hero-btn {
        width: 100%;
      }

      .hero-btn {
        font-size: 16px;
        padding: 14px 120px;
      }

      .seo-outline {
        margin-left: 0;
        margin-top: 2px;
        justify-self: end;
        margin-right: 0;
        width: max-content;
        min-width: 138px;
        padding: 13px 10px;
        font-size: 15px;
        text-align: center;
        border-color: rgba(68, 255, 172, 0.75);
        color: #d8ffe9;
        background: rgba(17, 88, 56, 0.18);
        box-shadow:
          0 0 0 1px rgba(62, 255, 168, 0.25) inset,
          0 0 14px rgba(62, 255, 168, 0.3);
      }

      .hero-media {
        width: 100%;
        max-width: none;
        margin-right: 0;
        aspect-ratio: 4 / 3;
        border-radius: 18px;
      }

      .process-head,
      .services-head,
      .about-head,
      .reasons-head,
      .industries-head,
      .faq-head {
        margin-bottom: 36px;
      }

      .process-head h2,
      .services-head h2,
      .about-head h2,
      .reasons-head h2,
      .industries-head h2,
      .faq-head h2,
      .contact-copy h2 {
        font-size: clamp(30px, 9vw, 42px);
        letter-spacing: -0.8px;
      }

      .process-step {
        padding: 4px 4px 8px;
      }

      .step-badge {
        width: 78px;
        height: 78px;
        font-size: 34px;
        margin-bottom: 16px;
      }

      .process-step h3,
      .reason-item h3,
      .industry-content h3,
      .about-copy h3 {
        font-size: 26px;
      }

      .service-card {
        min-height: 240px;
        padding: 22px 18px 20px;
      }

      .service-card h3 {
        font-size: 20px;
      }

      .about-media {
        max-width: 300px;
      }

      .about-copy p,
      .reason-item p,
      .industry-content p,
      .contact-copy p,
      .faq-head p {
        font-size: 15px;
      }

      .reasons-media {
        min-height: 240px;
      }

      .reason-item {
        grid-template-columns: 34px 1fr;
        gap: 12px;
      }

      .industry-card {
        min-height: 196px;
      }

      .industry-content {
        left: 12px;
        right: 12px;
        bottom: 12px;
      }

      .contact-card {
        padding: 18px;
      }

      .contact-form {
        gap: 12px;
      }

      .faq-item summary {
        font-size: 16px;
        padding: 14px 14px;
      }

      .faq-answer {
        padding: 0 14px 14px;
      }

      .footer-brand img {
        width: min(220px, 64vw);
      }
    }

    @media (max-width: 520px) {
      .top-nav {
        padding: 10px 0 12px;
      }

      .brand-logo {
        width: min(190px, 58vw);
      }

      .nav-links a {
        font-size: 13px;
        padding: 10px 11px;
      }

      .btn-quote {
        width: 100%;
        max-width: 210px;
      }

      .hero {
        padding: 24px 0 102px;
      }

      .hero-copy h1 {
        font-size: clamp(28px, 10vw, 38px);
      }

      .hero-btn,
      .seo-outline {
        width: 100%;
        justify-content: center;
      }

      .hero-actions .hero-btn {
        width: 100%;
      }

      .seo-outline {
        width: max-content;
        min-width: 138px;
        justify-self: end;
        margin-left: auto;
      }

      .hero-actions {
        width: 100%;
      }

      .about-point strong {
        font-size: 40px;
      }

      .industry-card {
        min-height: 182px;
      }

      .contact-card {
        padding: 14px;
      }

      .modal-head {
        padding: 12px;
      }

      .modal-body {
        padding: 12px;
        font-size: 13px;
      }
    }

    @media (hover: none) and (pointer: coarse) {
      .top-nav .container {
        width: min(1220px, 94vw);
        justify-content: center;
      }

      .nav-toggle {
        display: inline-flex;
        position: absolute;
        left: 0;
      }

      .top-nav .btn-quote {
        display: none;
      }

      .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 10px;
        border-radius: 12px;
        border: 1px solid #dbe3f1;
        background: #ffffff;
        box-shadow: 0 14px 30px rgba(17, 31, 63, 0.12);
        z-index: 30;
      }

      .top-nav.is-open .nav-links {
        display: flex;
      }

      .nav-links li {
        list-style: none;
      }

      .nav-links a {
        display: block;
        width: 100%;
        padding: 11px 12px;
        border-radius: 9px;
        font-size: 14px;
      }

      .hero {
        min-height: auto;
        padding: 34px 0 114px;
      }

      .hero .container {
        grid-template-columns: 1fr;
        gap: 26px;
        transform: none;
      }

      .hero-media {
        width: 100%;
        max-width: none;
        margin-right: 0;
      }

      .hero-actions {
        flex-wrap: wrap;
      }

      .process-steps,
      .services-grid,
      .about-grid,
      .reasons-grid,
      .industries-grid,
      .contact-grid,
      .contact-form .row {
        grid-template-columns: 1fr;
      }

      .services-grid .service-card:nth-child(4),
      .services-grid .service-card:nth-child(5) {
        grid-column: auto;
      }

      .process-step:not(:last-child)::after,
      .process-step:not(:last-child)::before {
        display: none;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 8px;
      }

      .footer-bottom span {
        padding: 0;
      }

      .footer-bottom span + span::before {
        display: none;
      }
    }
