﻿:root {
      --navy: #071d49;
      --navy-2: #0b2f6f;
      --blue: #1062ff;
      --green: #16a34a;
      --mint: #e9fff1;
      --sky: #eff7ff;
      --gold: #f5b301;
      --text: #0f172a;
      --muted: #64748b;
      --line: #dbe7f5;
      --card: #ffffff;
      --soft: #f7fbff;
      --shadow: 0 24px 80px rgba(7, 29, 73, 0.13);
      --radius: 28px;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: "Prompt", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      overflow-x: clip;
      background:
        radial-gradient(circle at top right, rgba(16, 98, 255, 0.13), transparent 36rem),
        radial-gradient(circle at top left, rgba(22, 163, 74, 0.12), transparent 32rem),
        #ffffff;
    }

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

    a:focus-visible,
    button:focus-visible {
      outline: 3px solid rgba(16, 98, 255, 0.35);
      outline-offset: 4px;
    }

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

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

    .topbar {
      background: var(--navy);
      color: rgba(255,255,255,0.88);
      font-size: 13px;
    }

    .topbar-inner {
      min-height: 42px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .topbar span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .navbar {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.82);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(219, 231, 245, 0.85);
    }

    .nav-inner {
      height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      flex: none;
      font-weight: 800;
      letter-spacing: 0;
      color: var(--navy);
      font-size: 15px;
      line-height: 1.15;
      min-width: 0;
    }

    .logo-mark {
      width: auto;
      height: 46px;
      object-fit: contain;
      flex: none;
    }

    .logo-text {
      white-space: nowrap;
      color: #334155;
      font-size: 13px;
      font-weight: 700;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: clamp(14px, 1.35vw, 24px);
      flex: 1;
      justify-content: center;
      min-width: 0;
      font-weight: 600;
      font-size: clamp(13px, 0.95vw, 15px);
      color: #1e293b;
    }

    .nav-links a {
      white-space: nowrap;
    }

    .nav-links a.active {
      color: var(--blue);
      position: relative;
    }

    .nav-links a.active::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -10px;
      height: 3px;
      background: var(--green);
      border-radius: 999px;
    }

    .nav-actions {
      display: flex;
      gap: 12px;
      align-items: center;
      flex: none;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 48px;
      padding: 0 22px;
      border-radius: 14px;
      border: 1px solid transparent;
      font-weight: 700;
      cursor: pointer;
      transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
      white-space: nowrap;
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(7, 29, 73, 0.18);
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--navy), var(--blue));
      color: #fff;
    }

    .btn-green {
      background: linear-gradient(135deg, #119340, #22c55e);
      color: #fff;
    }

    .btn-outline {
      border-color: #bdd2ee;
      color: var(--navy);
      background: rgba(255,255,255,0.7);
    }

    .btn-white {
      background: #fff;
    }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 62px 0 72px;
      margin-bottom: 56px;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background:
        linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.78) 45%, rgba(239,247,255,0.72) 100%),
        url("../img/hero/hero.jpg") center/cover;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto -15% -34% -15%;
      height: 340px;
      z-index: -1;
      background: radial-gradient(circle, rgba(16,98,255,0.18), transparent 70%);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.02fr 0.98fr;
      gap: 36px;
      align-items: start;
    }

    .hero-copy {
      min-width: 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 8px 13px;
      border: 1px solid rgba(16, 98, 255, 0.22);
      background: rgba(255,255,255,0.82);
      border-radius: 999px;
      color: var(--navy-2);
      font-weight: 700;
      font-size: 14px;
      box-shadow: 0 10px 30px rgba(16,98,255,0.08);
    }

    .pulse {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 7px rgba(22, 163, 74, 0.14);
    }

    h1 {
      margin: 22px 0 16px;
      font-size: clamp(28px, 2.4vw, 32px);
      line-height: 1.08;
      letter-spacing: 0;
      color: var(--navy);
    }

    h1 span {
      color: var(--green);
      font-size: 0.95em;
      white-space: nowrap;
    }

    .hero-lead {
      max-width: 650px;
      color: #334155;
      font-size: 18px;
      line-height: 1.85;
      margin: 0 0 28px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 26px;
    }

    .mini-proof {
      display: grid;
      grid-template-columns: repeat(3, max-content);
      gap: 8px;
      color: #334155;
      font-size: 12px;
      font-weight: 600;
    }

    .mini-proof span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.7);
      border: 1px solid rgba(219,231,245,0.95);
      padding: 8px 9px;
      border-radius: 999px;
      white-space: nowrap;
    }

    .hero-visual {
      position: relative;
      width: min(620px, 100%);
      margin: 0 0 0 auto;
      border-radius: 30px;
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(7,29,73,0.92), rgba(16,98,255,0.58), rgba(22,163,74,0.36)),
        #eff7ff;
      border: 1px solid rgba(255,255,255,0.9);
      box-shadow: var(--shadow);
    }

    .hero-visual img {
      width: 100%;
      aspect-ratio: 16 / 10;
      object-fit: cover;
    }

    .hero-visual figcaption {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 18px 20px;
      background: #fff;
      border-top: 1px solid #e5eef9;
    }

    .hero-visual figcaption strong {
      color: var(--navy);
      font-size: 16px;
    }

    .hero-visual figcaption span {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.5;
      text-align: right;
    }

    .trust-strip {
      margin-top: 0;
      position: relative;
      z-index: 1;
    }

    .trust-box {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      overflow: hidden;
      border-radius: 24px;
      background: var(--line);
      box-shadow: var(--shadow);
      border: 1px solid #fff;
    }

    .trust-item {
      background: rgba(255,255,255,0.94);
      padding: 24px;
      display: flex;
      gap: 14px;
      align-items: center;
    }

    .trust-icon,
    .service-icon,
    .why-icon {
      width: 50px;
      height: 50px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: #eff6ff;
      color: var(--blue);
      font-size: 24px;
      flex: none;
    }

    .trust-item:nth-child(3) .trust-icon,
    .trust-item:nth-child(4) .trust-icon {
      background: var(--mint);
      color: var(--green);
    }

    .trust-item b {
      display: block;
      color: var(--navy);
      font-size: 17px;
      line-height: 1.25;
    }

    .trust-item small {
      color: var(--muted);
      line-height: 1.5;
    }

    section {
      padding: 80px 0;
    }

    .section-heading {
      text-align: center;
      max-width: 780px;
      margin: 0 auto 36px;
    }

    .section-heading .label {
      color: var(--green);
      font-weight: 800;
      letter-spacing: 0;
    }

    .section-heading h2 {
      margin: 8px 0 12px;
      font-size: clamp(30px, 4vw, 44px);
      color: var(--navy);
      letter-spacing: 0;
    }

    .section-heading p {
      margin: 0;
      color: var(--muted);
      line-height: 1.8;
    }

    .why-heading {
      max-width: 1000px;
    }

    .why-heading p {
      white-space: nowrap;
    }

    .solution-heading {
      max-width: 980px;
    }

    .solution-heading h2 {
      white-space: nowrap;
      font-size: clamp(30px, 3.2vw, 40px);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .service-card {
      position: relative;
      overflow: hidden;
      min-height: 360px;
      border-radius: var(--radius);
      background: var(--card);
      border: 1px solid var(--line);
      box-shadow: 0 14px 44px rgba(7,29,73,0.08);
      transition: transform 0.18s ease, box-shadow 0.18s ease;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 22px 60px rgba(7,29,73,0.14);
    }

    .service-art {
      position: relative;
      height: 178px;
      overflow: hidden;
      background: var(--art, #eff6ff);
    }

    .service-art::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(7,29,73,0.02), rgba(7,29,73,0.16)),
        linear-gradient(135deg, rgba(16,98,255,0.14), rgba(22,163,74,0.08));
      pointer-events: none;
    }

    .service-art img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.28s ease;
    }

    .service-card:hover .service-art img {
      transform: scale(1.05);
    }

    .service-body {
      padding: 22px;
    }

    .service-body h3 {
      margin: 0 0 10px;
      color: var(--navy);
      font-size: 19px;
      line-height: 1.35;
    }

    .service-body p {
      margin: 0 0 18px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.75;
    }

    .arrow-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--blue);
      font-weight: 800;
      font-size: 14px;
    }

    .why {
      background: linear-gradient(180deg, #f7fbff, #ffffff);
    }

    .solution-detail {
      background:
        linear-gradient(180deg, #ffffff, #f7fbff);
      padding-top: 70px;
    }

    .solution-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .solution-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 24px;
      padding: 26px;
      box-shadow: 0 14px 44px rgba(7,29,73,0.07);
    }

    .solution-kicker {
      color: var(--green);
      font-weight: 900;
      font-size: 13px;
      letter-spacing: 0;
      margin-bottom: 10px;
    }

    .solution-card h3 {
      color: var(--navy);
      font-size: 21px;
      line-height: 1.35;
      margin: 0 0 12px;
    }

    .solution-card p,
    .solution-card li {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.75;
    }

    .solution-card ul {
      display: grid;
      gap: 8px;
      margin: 18px 0 0;
      padding-left: 20px;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .why-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 24px;
      padding: 24px;
      box-shadow: 0 12px 34px rgba(7,29,73,0.06);
    }

    .why-icon {
      background: var(--mint);
      color: var(--green);
      margin-bottom: 14px;
    }

    .why-card h3 {
      margin: 0 0 8px;
      color: var(--navy);
      font-size: 17px;
    }

    .why-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.7;
      font-size: 14px;
    }

    .feature-panel {
      position: relative;
      overflow: hidden;
      border-radius: 34px;
      background:
        radial-gradient(circle at top right, rgba(22,163,74,0.25), transparent 18rem),
        linear-gradient(135deg, #f8fbff, #ffffff);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      padding: 38px;
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 26px;
      align-items: start;
    }

    .feature-content h2 {
      color: var(--navy);
      font-size: clamp(28px, 3vw, 38px);
      line-height: 1.18;
      margin: 0 0 12px;
      letter-spacing: 0;
    }

    .feature-content h2 span {
      color: var(--green);
    }

    .feature-lead {
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 0;
    }

    .check-list {
      display: grid;
      gap: 10px;
      margin: 18px 0 24px;
      padding: 0;
      list-style: none;
    }

    .check-list li {
      display: flex;
      gap: 10px;
      color: #334155;
      font-weight: 600;
      font-size: 14px;
      line-height: 1.45;
    }

    .check-list li::before {
      content: "✓";
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--mint);
      color: var(--green);
      font-weight: 900;
      flex: none;
    }

    .feature-screen {
      min-height: 390px;
      border-radius: 28px;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: 0 20px 70px rgba(7,29,73,0.13);
      padding: 14px;
    }

    .feature-ui {
      height: 100%;
      border-radius: 22px;
      overflow: hidden;
      background: #f8fbff;
      display: grid;
      grid-template-columns: 170px 1fr;
      border: 1px solid #e5eef9;
    }

    .sidebar {
      background: linear-gradient(180deg, #071d49, #0b2f6f);
      color: rgba(255,255,255,0.82);
      padding: 20px;
    }

    .sidebar b {
      color: #fff;
      font-size: 19px;
      display: block;
      margin-bottom: 24px;
    }

    .sidebar span {
      display: block;
      padding: 11px 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      font-size: 12px;
    }

    .ui-main {
      padding: 20px;
    }

    .ui-title {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 18px;
    }

    .ui-title h3 {
      margin: 0;
      color: var(--navy);
    }

    .ui-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-bottom: 16px;
    }

    .ui-card {
      background: #fff;
      border: 1px solid #e5eef9;
      border-radius: 16px;
      padding: 13px;
    }

    .ui-card small {
      display: block;
      color: var(--muted);
      font-size: 11px;
    }

    .ui-card strong {
      font-size: 22px;
      color: var(--navy);
    }

    .table {
      background: #fff;
      border: 1px solid #e5eef9;
      border-radius: 16px;
      overflow: hidden;
    }

    .row {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
      gap: 12px;
      padding: 13px 16px;
      border-bottom: 1px solid #eef4fb;
      font-size: 12px;
      color: #334155;
    }

    .row.header {
      background: #f8fbff;
      color: var(--muted);
      font-weight: 800;
    }

    .logos {
      padding-top: 34px;
      padding-bottom: 0;
    }

    .logo-cloud {
      border-radius: 26px;
      background: #fff;
      border: 1px solid var(--line);
      padding: 24px;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
      color: var(--navy);
      font-weight: 800;
      letter-spacing: 0;
      box-shadow: 0 12px 40px rgba(7,29,73,0.06);
    }

    .logo-cloud span {
      display: inline-flex;
      min-height: 44px;
      align-items: center;
      justify-content: center;
      border-radius: 14px;
      border: 1px solid var(--line);
      background: #f8fbff;
      font-size: 14px;
      text-align: center;
    }

    .logo-heading {
      margin-bottom: 18px;
    }

    .logo-heading h2 {
      font-size: 26px;
    }

    .cta {
      padding-top: 46px;
    }

    .cta-panel {
      overflow: hidden;
      border-radius: 34px;
      background:
        linear-gradient(90deg, rgba(7,29,73,0.96), rgba(11,47,111,0.92)),
        url("../img/hero/integrated-solutions.jpg") center/cover;
      color: #fff;
      padding: 44px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 26px;
      box-shadow: var(--shadow);
    }

    .cta-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .cta-panel h2 {
      margin: 0 0 8px;
      font-size: clamp(24px, 3vw, 34px);
      line-height: 1.2;
    }

    .cta-panel p {
      margin: 0;
      color: rgba(255,255,255,0.78);
      line-height: 1.7;
      max-width: 670px;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 18px;
    }

    .contact-card {
      display: grid;
      gap: 7px;
      padding: 20px;
      border: 1px solid var(--line);
      border-radius: 22px;
      background: #fff;
      box-shadow: 0 14px 40px rgba(7,29,73,0.07);
      transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    }

    .contact-card:hover {
      transform: translateY(-4px);
      border-color: rgba(16,98,255,0.35);
      box-shadow: 0 18px 50px rgba(7,29,73,0.12);
    }

    .contact-card span {
      color: var(--green);
      font-weight: 800;
      font-size: 13px;
    }

    .contact-card strong {
      color: var(--navy);
      font-size: 22px;
      line-height: 1.2;
    }

    .contact-card small {
      color: var(--muted);
      line-height: 1.6;
    }

    footer {
      background: #061735;
      color: rgba(255,255,255,0.78);
      padding: 52px 0 24px;
      margin-top: 70px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 28px;
      padding-bottom: 38px;
      border-bottom: 1px solid rgba(255,255,255,0.12);
    }

    footer h3,
    footer h4 {
      color: #fff;
      margin: 0 0 14px;
    }

    footer p,
    footer li {
      line-height: 1.8;
      color: rgba(255,255,255,0.72);
      font-size: 14px;
    }

    footer ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    footer a {
      transition: color 0.18s ease;
    }

    footer a:hover {
      color: #fff;
    }

    .copyright {
      padding-top: 22px;
      font-size: 13px;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      color: rgba(255,255,255,0.55);
    }

    .mobile-menu {
      display: none;
      border: 1px solid var(--line);
      background: #fff;
      color: var(--navy);
      border-radius: 12px;
      padding: 10px 12px;
      font-weight: 800;
      cursor: pointer;
    }

    @media (max-width: 1200px) {
      .feature-panel {
        grid-template-columns: 1fr;
      }

      .hero-visual {
        min-height: 0;
      }

      .trust-strip {
        margin-top: 0;
      }

      .trust-box,
      .services-grid,
      .solution-grid,
      .why-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .nav-links,
      .nav-actions {
        display: none;
      }

      .nav-links {
        position: absolute;
        left: 20px;
        right: 20px;
        top: calc(100% + 10px);
        padding: 18px;
        border: 1px solid var(--line);
        border-radius: 20px;
        background: rgba(255,255,255,0.96);
        box-shadow: var(--shadow);
        backdrop-filter: blur(18px);
      }

      body.nav-open .nav-links {
        display: grid;
        gap: 14px;
      }

      body.nav-open .mobile-menu {
        color: #fff;
        border-color: var(--blue);
        background: var(--blue);
      }

      .mobile-menu {
        display: inline-flex;
      }
    }

    @media (min-width: 681px) and (max-width: 1200px) {
      .hero {
        padding: 52px 0 64px;
      }

      .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
        gap: 26px;
      }

      .hero-visual {
        width: 100%;
      }

      .hero-visual figcaption {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
        padding: 14px 18px;
      }

      .hero-visual figcaption span {
        text-align: left;
      }

      h1 {
        font-size: clamp(27px, 3.2vw, 32px);
      }

      .hero-lead {
        font-size: 16px;
        line-height: 1.75;
      }

      .mini-proof {
        gap: 8px;
      }

      .mini-proof span {
        font-size: 11px;
        padding: 7px 8px;
      }

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

      .solution-card {
        padding: 20px;
      }

      .solution-card h3 {
        font-size: 18px;
      }

      .solution-card p,
      .solution-card li {
        font-size: 13px;
        line-height: 1.65;
      }

      .feature-panel {
        padding: 28px;
        gap: 22px;
      }

      .feature-content h2 {
        font-size: clamp(26px, 3.4vw, 34px);
      }

      .feature-lead {
        font-size: 14px;
      }

      .check-list {
        gap: 8px;
        margin: 16px 0 20px;
      }

      .check-list li {
        font-size: 13px;
      }

      .feature-screen {
        min-height: 340px;
        padding: 12px;
      }
    }

    @media (min-width: 1024px) and (max-width: 1200px) {
      .nav-links {
        display: flex;
        position: static;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        gap: clamp(10px, 1vw, 16px);
        font-size: 13px;
      }

      .nav-actions {
        display: flex;
        gap: 8px;
      }

      .nav-actions .btn {
        min-height: 44px;
        padding: 0 14px;
        font-size: 13px;
      }

      .mobile-menu {
        display: none;
      }

      .logo-mark {
        height: 42px;
      }

      .logo-text {
        font-size: 13px;
      }

      .feature-panel {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
      }

      .feature-ui {
        grid-template-columns: 132px 1fr;
      }

      .sidebar {
        padding: 16px;
      }

      .sidebar span {
        padding: 9px 0;
      }

      .ui-main {
        padding: 16px;
      }
    }

    @media (min-width: 681px) and (max-width: 900px) {
      .hero {
        padding-top: 44px;
      }

      .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .hero-copy {
        max-width: 720px;
      }

      .hero-visual {
        max-width: 660px;
        margin-inline: auto;
      }

      .mini-proof {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .mini-proof span {
        justify-content: center;
        white-space: normal;
        text-align: center;
      }
    }

    @media (max-width: 680px) {
      .container {
        width: 100%;
        padding-inline: 16px;
      }

      .topbar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 9px 0;
        font-size: 12px;
        line-height: 1.45;
      }

      .topbar span {
        align-items: flex-start;
      }

      .topbar-inner span:nth-child(2) {
        display: none;
      }

      .nav-inner {
        position: relative;
        height: 64px;
        gap: 12px;
        justify-content: flex-start;
      }

      .logo {
        flex: 0 1 auto;
        max-width: 190px;
        font-size: 12px;
        gap: 9px;
      }

      .logo-mark {
        width: auto;
        height: 40px;
      }

      .logo-text {
        display: none;
      }

      .mobile-menu {
        position: static;
        margin-left: 12px;
        min-height: 40px;
        padding: 8px 11px;
      }

      .nav-links {
        left: 16px;
        right: 16px;
        top: calc(100% + 8px);
        padding: 14px;
        border-radius: 16px;
        gap: 8px;
      }

      .nav-links a {
        padding: 10px 8px;
        border-radius: 10px;
      }

      .nav-links a.active {
        background: var(--sky);
      }

      .nav-links a.active::after {
        display: none;
      }

      .hero {
        padding-top: 30px;
        padding-bottom: 38px;
        margin-bottom: 24px;
      }

      .hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .hero-copy,
      .hero-actions,
      .hero-lead,
      h1 {
        width: 100%;
        max-width: 340px;
      }

      .hero-copy {
        padding-right: 0;
      }

      .eyebrow {
        max-width: 100%;
        font-size: 12px;
        line-height: 1.35;
        border-radius: 14px;
      }

      h1 {
        margin-top: 16px;
        font-size: 25px;
        line-height: 1.18;
        letter-spacing: 0;
        max-width: 358px;
        overflow-wrap: anywhere;
        word-break: break-all;
      }

      h1 span {
        display: block;
        max-width: 100%;
        font-size: 0.92em;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-all;
      }

      .hero-lead {
        font-size: 15px;
        line-height: 1.72;
        margin-bottom: 22px;
        overflow-wrap: anywhere;
        word-break: break-all;
      }

      .btn {
        min-height: 46px;
        padding: 0 16px;
        white-space: normal;
        text-align: center;
        line-height: 1.35;
      }

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

      .mini-proof {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .mini-proof span {
        width: 100%;
        justify-content: flex-start;
        border-radius: 14px;
      }

      .hero-visual {
        min-height: auto;
        border-radius: 20px;
        width: 100%;
        margin: 0;
      }

      .hero-visual img {
        aspect-ratio: 4 / 3;
      }

      .trust-box,
      .services-grid,
      .solution-grid,
      .why-grid,
      .contact-grid,
      .footer-grid,
      .ui-cards {
        grid-template-columns: 1fr;
      }

      .hero-visual figcaption {
        align-items: flex-start;
        flex-direction: column;
        padding: 15px 16px;
      }

      .hero-visual figcaption span {
        text-align: left;
      }

      .trust-box {
        border-radius: 18px;
      }

      .trust-item {
        align-items: flex-start;
        padding: 18px;
      }

      .trust-icon,
      .service-icon,
      .why-icon {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        font-size: 20px;
      }

      section {
        padding: 54px 0;
      }

      .section-heading {
        margin-bottom: 26px;
        text-align: left;
      }

      .why-heading p {
        white-space: normal;
      }

      .solution-heading h2 {
        white-space: normal;
      }

      .section-heading h2,
      .feature-content h2,
      .cta-panel h2 {
        font-size: 26px;
        line-height: 1.25;
      }

      .section-heading p {
        line-height: 1.7;
      }

      .service-card {
        min-height: auto;
        border-radius: 20px;
      }

      .service-art {
        height: 164px;
      }

      .service-body,
      .solution-card,
      .why-card,
      .contact-card {
        padding: 18px;
      }

      .solution-card,
      .why-card,
      .contact-card {
        border-radius: 18px;
      }

      .feature-panel,
      .cta-panel {
        padding: 20px;
        border-radius: 22px;
        gap: 22px;
      }

      .feature-ui {
        grid-template-columns: 1fr;
      }

      .feature-screen {
        min-height: auto;
        padding: 10px;
        border-radius: 18px;
      }

      .feature-ui,
      .table {
        border-radius: 14px;
      }

      .ui-main {
        padding: 14px;
      }

      .ui-title {
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 14px;
      }

      .sidebar {
        display: none;
      }

      .ui-card {
        border-radius: 13px;
        padding: 12px;
      }

      .row {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 12px;
      }

      .row span {
        min-width: 0;
        overflow-wrap: anywhere;
      }

      .cta-panel {
        align-items: stretch;
        flex-direction: column;
      }

      .cta-actions,
      .cta-panel .btn {
        width: 100%;
      }

      .logo-cloud {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 16px;
        border-radius: 18px;
      }

      .logo-cloud span {
        font-size: 12px;
        min-height: 38px;
        padding: 7px 8px;
      }

      .contact-card strong {
        font-size: 20px;
      }

      footer {
        margin-top: 42px;
        padding-top: 38px;
      }

      .footer-grid {
        gap: 20px;
        padding-bottom: 28px;
      }
    }

    @media (max-width: 420px) {
      .container {
        padding-inline: 12px;
      }

      .topbar-inner span:nth-child(2) {
        display: none;
      }

      .logo {
        font-size: 10px;
        gap: 8px;
      }

      .logo-mark {
        width: auto;
        height: 36px;
      }

      .logo-text {
        display: none;
      }

      h1 {
        font-size: 25px;
      }

      .section-heading h2,
      .feature-content h2,
      .cta-panel h2 {
        font-size: 25px;
      }

      .hero-lead,
      .feature-lead {
        font-size: 15px;
      }

      .service-art {
        height: 148px;
      }

      .feature-panel,
      .cta-panel {
        padding: 16px;
      }

      .ui-title {
        display: block;
      }

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

      .row.header {
        display: none;
      }
    }

