:root {
      --color-primary: #7ed958;
      --color-primary-dark: #4ea82d;
      --color-primary-light: #dff5d4;
      --color-accent: #030a00;
      --color-bg: #ffffff;
      --color-bg-alt: #eefaff;
      --color-bg-soft: #f3faef;
      --color-surface: #ffffff;
      --color-text: #030a00;
      --color-text-muted: #526052;
      --color-border: #dce9df;
      --color-white: #fff;
      --color-black: #0a0a0a;
      --color-error: #a62c2c;

      --text-xs: clamp(.7rem, .8vw, .75rem);
      --text-sm: clamp(.8rem, 1vw, .875rem);
      --text-base: clamp(.9rem, 1.1vw, 1rem);
      --text-lg: clamp(1rem, 1.3vw, 1.125rem);
      --text-xl: clamp(1.1rem, 1.5vw, 1.25rem);
      --text-2xl: clamp(1.3rem, 2vw, 1.5rem);
      --text-3xl: clamp(1.6rem, 2.5vw, 2rem);
      --text-4xl: clamp(2rem, 4vw, 2.8rem);
      --text-5xl: clamp(2.5rem, 5vw, 3.8rem);
      --text-6xl: clamp(3rem, 7vw, 5rem);

      --space-xs: .5rem;
      --space-sm: 1rem;
      --space-md: 2rem;
      --space-lg: 4rem;
      --space-xl: 6rem;
      --space-2xl: 9rem;

      --radius-sm: .75rem;
      --radius-md: 1.25rem;
      --radius-lg: 2rem;
      --radius-pill: 999px;
      --shadow-sm: 0 10px 30px rgba(3, 10, 0, .07);
      --shadow-md: 0 24px 60px rgba(3, 10, 0, .13);
      --container: 1200px;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      margin: 0;
      min-width: 320px;
      overflow-x: hidden;
      background: var(--color-bg);
      color: var(--color-text);
      font-family: "Poppins", Arial, sans-serif;
      font-size: var(--text-base);
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }

    body.menu-open {
      overflow: hidden;
    }

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

    a,
    button,
    input,
    select,
    textarea,
    summary {
      transition: all .25s ease;
    }

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

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

    button {
      cursor: pointer;
    }

    :focus-visible {
      outline: 3px solid var(--color-primary);
      outline-offset: 4px;
    }

    h1,
    h2,
    h3 {
      margin: 0;
      color: var(--color-text);
      line-height: 1.12;
      letter-spacing: -.035em;
    }

    h1 {
      font-size: var(--text-6xl);
    }

    h2 {
      font-size: var(--text-4xl);
    }

    h3 {
      font-size: var(--text-xl);
    }

    p {
      margin: 0;
    }

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

    .container {
      width: min(calc(100% - 2rem), var(--container));
      margin-inline: auto;
    }

    .section {
      padding-block: var(--space-xl);
    }

    .section--soft {
      background: var(--color-bg-soft);
    }

    .section--ice {
      background: var(--color-bg-alt);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: .7rem;
      margin-bottom: var(--space-sm);
      color: var(--color-primary-dark);
      font-size: var(--text-xs);
      font-weight: 700;
      letter-spacing: .16em;
      line-height: 1.4;
      text-transform: uppercase;
    }

    .eyebrow::before {
      width: 2.25rem;
      height: 2px;
      background: currentColor;
      content: "";
    }

    .eyebrow--light {
      color: var(--color-primary);
    }

    .section-heading {
      max-width: 48rem;
      margin-bottom: var(--space-lg);
    }

    .section-heading h2 {
      max-width: 760px;
    }

    .section-heading p {
      max-width: 680px;
      margin-top: var(--space-sm);
      color: var(--color-text-muted);
      font-size: var(--text-lg);
    }

    .utility-bar {
      background: var(--color-accent);
      color: rgba(255, 255, 255, .82);
      font-size: var(--text-xs);
    }

    .utility-bar__inner {
      display: flex;
      min-height: 36px;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-sm);
    }

    .utility-bar__tagline {
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: lowercase;
    }

    .utility-bar__contacts {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }

    .utility-bar a:hover {
      color: var(--color-primary);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 1px solid rgba(220, 233, 223, .8);
      background: rgba(255, 255, 255, .92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
    }

    .navbar {
      display: flex;
      min-height: 76px;
      align-items: center;
      gap: var(--space-md);
    }

    .brand {
      display: inline-flex;
      flex-shrink: 0;
      align-items: center;
    }

    .brand img {
      width: auto;
      max-width: 170px;
      max-height: 48px;
      object-fit: contain;
    }

    .nav-links {
      display: flex;
      margin-left: auto;
      align-items: center;
      gap: .35rem;
    }

    .nav-links a {
      position: relative;
      display: flex;
      min-height: 44px;
      padding: .65rem .9rem;
      align-items: center;
      color: var(--color-text-muted);
      font-size: var(--text-sm);
      font-weight: 600;
    }

    .nav-links a::after {
      position: absolute;
      right: .9rem;
      bottom: .35rem;
      left: .9rem;
      height: 2px;
      background: var(--color-primary-dark);
      content: "";
      transform: scaleX(0);
      transform-origin: right;
      transition: transform .25s ease;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: var(--color-text);
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
      transform: scaleX(1);
      transform-origin: left;
    }

    .nav-cta {
      margin-left: .75rem;
    }

    .menu-toggle {
      display: none;
      width: 46px;
      height: 46px;
      margin-left: auto;
      padding: 0;
      border: 1px solid var(--color-border);
      border-radius: var(--radius-sm);
      background: var(--color-white);
      align-items: center;
      justify-content: center;
    }

    .menu-toggle__lines,
    .menu-toggle__lines::before,
    .menu-toggle__lines::after {
      display: block;
      width: 21px;
      height: 2px;
      border-radius: 2px;
      background: var(--color-text);
      content: "";
      transition: all .25s ease;
    }

    .menu-toggle__lines {
      position: relative;
    }

    .menu-toggle__lines::before {
      position: absolute;
      top: -7px;
    }

    .menu-toggle__lines::after {
      position: absolute;
      top: 7px;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle__lines {
      background: transparent;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle__lines::before {
      top: 0;
      transform: rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle__lines::after {
      top: 0;
      transform: rotate(-45deg);
    }

    .button {
      display: inline-flex;
      min-height: 50px;
      padding: .85rem 1.65rem;
      border: 2px solid transparent;
      border-radius: var(--radius-pill);
      align-items: center;
      justify-content: center;
      gap: .65rem;
      font-size: var(--text-sm);
      font-weight: 700;
      letter-spacing: .04em;
      line-height: 1.2;
      text-align: center;
      text-transform: uppercase;
    }

    .button--large {
      min-height: 58px;
      padding: 1rem 2.5rem;
    }

    .button--primary {
      background: var(--color-primary);
      color: var(--color-accent);
      box-shadow: 0 10px 24px rgba(126, 217, 88, .22);
    }

    .button--primary:hover {
      border-color: var(--color-primary-dark);
      background: var(--color-primary-dark);
      color: var(--color-white);
      transform: translateY(-2px);
    }

    .button--outline {
      border-color: rgba(255, 255, 255, .72);
      background: rgba(3, 10, 0, .16);
      color: var(--color-white);
    }

    .button--outline:hover {
      border-color: var(--color-white);
      background: var(--color-white);
      color: var(--color-text);
    }

    .button--dark {
      background: var(--color-accent);
      color: var(--color-white);
    }

    .button--dark:hover {
      background: #142110;
      transform: translateY(-2px);
    }

    .text-link {
      display: inline-flex;
      min-height: 44px;
      align-items: center;
      gap: .6rem;
      color: var(--color-text);
      font-size: var(--text-sm);
      font-weight: 700;
    }

    .text-link::after {
      content: "→";
      color: var(--color-primary-dark);
      font-size: var(--text-lg);
    }

    .text-link:hover {
      color: var(--color-primary-dark);
      gap: .9rem;
    }

    .hero {
      position: relative;
      display: grid;
      min-height: 680px;
      overflow: hidden;
      background-color: var(--color-accent);
      background-image:
        linear-gradient(90deg, rgba(3, 10, 0, .93) 0%, rgba(3, 10, 0, .78) 43%, rgba(3, 10, 0, .22) 78%, rgba(3, 10, 0, .12) 100%),
        url("../images/generated-hero-image.webp");
      background-position: center;
      background-size: cover;
      color: var(--color-white);
      place-items: center;
    }

    .hero::after {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      height: 130px;
      background: linear-gradient(to top, rgba(3, 10, 0, .35), transparent);
      content: "";
      pointer-events: none;
    }

    .hero__inner {
      position: relative;
      z-index: 1;
      width: min(calc(100% - 2rem), var(--container));
      margin-inline: auto;
      padding-block: var(--space-xl);
    }

    .hero__content {
      max-width: 720px;
    }

    .hero h1 {
      max-width: 700px;
      color: var(--color-white);
      font-weight: 700;
    }

    .hero h1 span {
      display: block;
      color: var(--color-primary);
    }

    .hero__lead {
      max-width: 650px;
      margin-top: 1.5rem;
      color: rgba(255, 255, 255, .82);
      font-size: var(--text-lg);
    }

    .hero__actions {
      display: flex;
      margin-top: var(--space-md);
      flex-wrap: wrap;
      gap: var(--space-sm);
    }

    .trust-strip {
      position: relative;
      z-index: 2;
      border-bottom: 1px solid var(--color-border);
      background: var(--color-white);
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .trust-item {
      display: grid;
      min-height: 138px;
      padding: 1.75rem;
      border-right: 1px solid var(--color-border);
      grid-template-columns: auto 1fr;
      align-content: center;
      gap: .25rem 1rem;
    }

    .trust-item:first-child {
      border-left: 1px solid var(--color-border);
    }

    .trust-item__number {
      color: var(--color-primary-dark);
      font-size: var(--text-sm);
      font-weight: 800;
      line-height: 1.4;
    }

    .trust-item h3 {
      font-size: var(--text-base);
      letter-spacing: -.01em;
    }

    .trust-item p {
      grid-column: 2;
      color: var(--color-text-muted);
      font-size: var(--text-sm);
      line-height: 1.5;
    }

    .about-layout {
      display: grid;
      align-items: center;
      gap: clamp(3rem, 7vw, 6rem);
      grid-template-columns: .9fr 1.1fr;
    }

    .about-visual {
      position: relative;
      min-height: 520px;
      overflow: hidden;
      border: 1px solid rgba(126, 217, 88, .3);
      border-radius: var(--radius-lg);
      background:
        radial-gradient(circle at 30% 25%, rgba(255, 255, 255, .95) 0 9%, transparent 10%),
        radial-gradient(circle at 76% 68%, rgba(126, 217, 88, .22) 0 12%, transparent 13%),
        linear-gradient(145deg, #eefaff 0%, #dff6fa 50%, #f3faef 100%);
      box-shadow: var(--shadow-md);
    }

    .about-visual::before {
      position: absolute;
      top: 16%;
      right: 12%;
      width: 68%;
      aspect-ratio: 2.2 / 1;
      border: 12px solid rgba(3, 10, 0, .88);
      border-radius: 48% 48% 45% 45% / 62% 62% 38% 38%;
      background: linear-gradient(135deg, rgba(126, 217, 88, .9), rgba(205, 243, 255, .9));
      box-shadow: inset 0 0 30px rgba(255, 255, 255, .7), 0 24px 50px rgba(3, 10, 0, .18);
      content: "";
      transform: rotate(-8deg);
    }

    .about-visual::after {
      position: absolute;
      top: 25%;
      right: 25%;
      width: 9%;
      height: 9%;
      border-radius: 50%;
      background: rgba(255, 255, 255, .58);
      box-shadow: -90px 20px 0 rgba(255, 255, 255, .4);
      content: "";
    }

    .about-note {
      position: absolute;
      right: 1.5rem;
      bottom: 1.5rem;
      left: 1.5rem;
      z-index: 1;
      max-width: 310px;
      padding: 1.4rem;
      border: 1px solid rgba(255, 255, 255, .7);
      border-radius: var(--radius-md);
      background: rgba(255, 255, 255, .94);
      box-shadow: var(--shadow-sm);
    }

    .about-note h3 {
      margin-bottom: .35rem;
      font-size: var(--text-lg);
    }

    .about-note p {
      color: var(--color-text-muted);
      font-size: var(--text-sm);
      line-height: 1.55;
    }

    .about-copy .lead {
      margin-top: 1.5rem;
      color: var(--color-text);
      font-size: var(--text-xl);
      font-weight: 500;
      line-height: 1.55;
    }

    .about-copy > p:not(.lead) {
      margin-top: var(--space-sm);
      color: var(--color-text-muted);
    }

    .check-list {
      display: grid;
      margin-block: var(--space-md);
      gap: .9rem;
    }

    .check-list li {
      position: relative;
      padding-left: 2rem;
      font-weight: 600;
    }

    .check-list li::before {
      position: absolute;
      top: .25rem;
      left: 0;
      display: grid;
      width: 1.35rem;
      height: 1.35rem;
      border-radius: 50%;
      background: var(--color-primary);
      color: var(--color-accent);
      content: "✓";
      font-size: .75rem;
      font-weight: 800;
      place-items: center;
    }

    .services-grid {
      display: grid;
      gap: var(--space-md);
      grid-template-columns: repeat(2, 1fr);
    }

    .service-card {
      display: flex;
      min-height: 330px;
      padding: clamp(1.75rem, 4vw, 3rem);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-md);
      background: var(--color-white);
      flex-direction: column;
    }

    .service-card__label {
      margin-bottom: auto;
      color: var(--color-primary-dark);
      font-size: var(--text-xs);
      font-weight: 800;
      letter-spacing: .15em;
      text-transform: uppercase;
    }

    .service-card h3 {
      margin-top: var(--space-lg);
      font-size: var(--text-2xl);
    }

    .service-card p {
      max-width: 520px;
      margin-top: var(--space-sm);
      color: var(--color-text-muted);
    }

    .service-card .text-link {
      margin-top: var(--space-md);
      align-self: flex-start;
    }

    .service-card:hover {
      border-color: var(--color-primary);
      box-shadow: var(--shadow-sm);
      transform: translateY(-4px);
    }

    .capability {
      position: relative;
      overflow: hidden;
      padding-block: var(--space-xl);
      background: var(--color-accent);
      color: var(--color-white);
    }

    .capability::after {
      position: absolute;
      top: -50%;
      right: -8%;
      width: 42rem;
      height: 42rem;
      border: 1px solid rgba(126, 217, 88, .2);
      border-radius: 50%;
      box-shadow: 0 0 0 80px rgba(126, 217, 88, .035), 0 0 0 160px rgba(126, 217, 88, .025);
      content: "";
    }

    .capability__layout {
      position: relative;
      z-index: 1;
      display: grid;
      align-items: center;
      gap: var(--space-lg);
      grid-template-columns: 1.1fr .9fr;
    }

    .capability h2 {
      max-width: 690px;
      color: var(--color-white);
    }

    .capability p {
      max-width: 650px;
      margin-top: var(--space-sm);
      color: rgba(255, 255, 255, .72);
      font-size: var(--text-lg);
    }

    .chips {
      display: flex;
      flex-wrap: wrap;
      gap: .75rem;
    }

    .chip {
      display: inline-flex;
      min-height: 44px;
      padding: .75rem 1.1rem;
      border: 1px solid rgba(255, 255, 255, .24);
      border-radius: var(--radius-pill);
      background: rgba(255, 255, 255, .07);
      align-items: center;
      color: var(--color-white);
      font-size: var(--text-sm);
      font-weight: 600;
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .process-step {
      position: relative;
      padding: 1.5rem 2rem 1.5rem 0;
      border-top: 1px solid var(--color-border);
    }

    .process-step:not(:last-child)::after {
      position: absolute;
      top: -4px;
      right: 1rem;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--color-primary);
      content: "";
    }

    .process-step__number {
      display: block;
      margin-bottom: var(--space-md);
      color: var(--color-primary-dark);
      font-size: var(--text-xs);
      font-weight: 800;
      letter-spacing: .15em;
    }

    .process-step h3 {
      margin-bottom: .65rem;
    }

    .process-step p {
      color: var(--color-text-muted);
      font-size: var(--text-sm);
    }

    .faq-list {
      max-width: 920px;
      margin-inline: auto;
      border-top: 1px solid var(--color-border);
    }

    .faq-list details {
      border-bottom: 1px solid var(--color-border);
    }

    .faq-list summary {
      position: relative;
      min-height: 76px;
      padding: 1.45rem 3.5rem 1.45rem 0;
      cursor: pointer;
      font-size: var(--text-lg);
      font-weight: 600;
      list-style: none;
    }

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

    .faq-list summary::after {
      position: absolute;
      top: 50%;
      right: .25rem;
      display: grid;
      width: 34px;
      height: 34px;
      border: 1px solid var(--color-border);
      border-radius: 50%;
      content: "+";
      font-size: 1.25rem;
      font-weight: 400;
      line-height: 1;
      transform: translateY(-50%);
      place-items: center;
    }

    .faq-list details[open] summary::after {
      background: var(--color-primary);
      content: "−";
    }

    .faq-list details p {
      max-width: 760px;
      padding: 0 3.5rem 1.5rem 0;
      color: var(--color-text-muted);
    }

    .cta-band {
      background: var(--color-primary);
      color: var(--color-accent);
    }

    .cta-band__inner {
      display: flex;
      padding-block: var(--space-lg);
      align-items: center;
      justify-content: space-between;
      gap: var(--space-md);
    }

    .cta-band .eyebrow {
      color: var(--color-accent);
    }

    .cta-band h2 {
      max-width: 760px;
      font-size: var(--text-4xl);
    }

    .site-footer {
      background: var(--color-accent);
      color: rgba(255, 255, 255, .72);
    }

    .footer-grid {
      display: grid;
      padding-block: var(--space-xl);
      gap: var(--space-lg);
      grid-template-columns: 1.35fr .7fr .85fr 1.2fr;
    }

    .footer-brand img {
      width: auto;
      max-width: 165px;
      max-height: 48px;
      padding: .35rem;
      border-radius: .5rem;
      background: var(--color-white);
      object-fit: contain;
    }

    .footer-brand p {
      max-width: 340px;
      margin-top: 1.25rem;
      font-size: var(--text-sm);
    }

    .footer-column h3 {
      margin-bottom: 1.25rem;
      color: var(--color-white);
      font-size: var(--text-base);
      letter-spacing: .01em;
    }

    .footer-links {
      display: grid;
      gap: .7rem;
    }

    .footer-links a {
      display: inline-flex;
      min-height: 34px;
      align-items: center;
      font-size: var(--text-sm);
    }

    .footer-links a:hover {
      color: var(--color-primary);
      transform: translateX(3px);
    }

    .footer-contact {
      display: grid;
      gap: .9rem;
      font-size: var(--text-sm);
    }

    .footer-contact a:hover {
      color: var(--color-primary);
    }

    .footer-contact address {
      font-style: normal;
    }

    .footer-bottom {
      display: flex;
      min-height: 72px;
      border-top: 1px solid rgba(255, 255, 255, .12);
      align-items: center;
      justify-content: space-between;
      gap: var(--space-sm);
      font-size: var(--text-xs);
    }

    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-legal a:hover {
      color: var(--color-primary);
    }

    .page-hero {
      padding-block: var(--space-xl);
      background: var(--color-accent);
      color: var(--color-white);
    }

    .page-hero h1 {
      max-width: 800px;
      color: var(--color-white);
      font-size: var(--text-5xl);
    }

    .page-hero p {
      max-width: 680px;
      margin-top: var(--space-sm);
      color: rgba(255, 255, 255, .74);
      font-size: var(--text-lg);
    }

    .breadcrumb {
      display: flex;
      margin-bottom: var(--space-md);
      flex-wrap: wrap;
      gap: .5rem;
      color: rgba(255, 255, 255, .68);
      font-size: var(--text-sm);
    }

    .breadcrumb a:hover {
      color: var(--color-primary);
    }

    .split-row {
      display: grid;
      align-items: center;
      gap: var(--space-lg);
      grid-template-columns: repeat(2, 1fr);
    }

    .split-row--reversed > :first-child {
      order: 2;
    }

    .split-row__image {
      overflow: hidden;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
    }

    .split-row__image img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
    }

    .feature-grid {
      display: grid;
      gap: var(--space-md);
      grid-template-columns: repeat(3, 1fr);
    }

    .feature {
      padding: var(--space-md);
      border-top: 3px solid var(--color-primary);
      background: var(--color-white);
    }

    .feature p {
      margin-top: .75rem;
      color: var(--color-text-muted);
    }

    .contact-details-list {
      display: grid;
      gap: 1rem;
    }

    .contact-details-list a,
    .contact-details-list address {
      display: block;
      padding: 1rem 0;
      border-bottom: 1px solid var(--color-border);
      font-style: normal;
      font-weight: 500;
    }

    .contact-form {
      display: grid;
      gap: 1.25rem;
    }

    .form-row {
      display: grid;
      gap: 1rem;
      grid-template-columns: repeat(2, 1fr);
    }

    .field {
      display: grid;
      gap: .45rem;
    }

    .field label {
      font-size: var(--text-sm);
      font-weight: 600;
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      min-height: 52px;
      padding: .85rem 1rem;
      border: 1px solid var(--color-border);
      border-radius: var(--radius-sm);
      background: var(--color-white);
      color: var(--color-text);
    }

    .field textarea {
      min-height: 150px;
      resize: vertical;
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      border-color: var(--color-primary-dark);
      outline: 3px solid rgba(126, 217, 88, .2);
    }

    .field [aria-invalid="true"] {
      border-color: var(--color-error);
    }

    .field-error {
      color: var(--color-error);
      font-size: var(--text-xs);
    }

    .prose {
      max-width: 760px;
    }

    .prose h2,
    .prose h3 {
      margin-top: 1.8em;
      margin-bottom: .6em;
    }

    .prose p {
      margin-bottom: 1.2em;
      color: var(--color-text-muted);
    }

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

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

      .nav-links.is-open {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: grid;
        max-height: calc(100vh - 76px);
        margin: 0;
        padding: 1rem;
        overflow-y: auto;
        border-top: 1px solid var(--color-border);
        background: var(--color-white);
        box-shadow: var(--shadow-md);
      }

      .nav-links.is-open a {
        padding: .9rem 1rem;
        border-bottom: 1px solid var(--color-border);
      }

      .nav-links.is-open .mobile-cta {
        margin-top: .5rem;
        border: 0;
        background: var(--color-primary);
        justify-content: center;
        color: var(--color-text);
      }

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

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

      .trust-item:nth-child(n+3) {
        border-top: 1px solid var(--color-border);
      }

      .about-layout,
      .capability__layout,
      .split-row {
        grid-template-columns: 1fr;
      }

      .about-visual {
        min-height: 460px;
      }

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

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

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

    @media (max-width: 680px) {
      .section {
        padding-block: var(--space-lg);
      }

      .utility-bar__inner {
        justify-content: center;
      }

      .utility-bar__tagline,
      .utility-bar__contacts a[href^="mailto:"] {
        display: none;
      }

      .navbar {
        min-height: 68px;
      }

      .brand img {
        max-width: 145px;
        max-height: 42px;
      }

      .hero {
        min-height: 650px;
        background-image:
          linear-gradient(90deg, rgba(3, 10, 0, .94) 0%, rgba(3, 10, 0, .78) 72%, rgba(3, 10, 0, .45) 100%),
          url("../images/generated-hero-image.webp");
        background-position: 62% center;
      }

      .hero__inner {
        padding-block: var(--space-lg);
      }

      .hero__actions,
      .cta-band__inner {
        align-items: flex-start;
        flex-direction: column;
      }

      .button {
        width: 100%;
        max-width: 320px;
        margin-inline: auto;
      }

      .hero__actions .button {
        margin-inline: 0;
      }

      .trust-grid,
      .services-grid,
      .process-grid,
      .feature-grid,
      .footer-grid,
      .form-row {
        grid-template-columns: 1fr;
      }

      .trust-item,
      .trust-item:first-child,
      .trust-item:nth-child(2) {
        min-height: 112px;
        border: 0;
        border-bottom: 1px solid var(--color-border);
      }

      .about-visual {
        min-height: 390px;
      }

      .about-visual::before {
        top: 14%;
        right: 7%;
        width: 78%;
      }

      .about-note {
        right: 1rem;
        bottom: 1rem;
        left: 1rem;
      }

      .service-card {
        min-height: 290px;
      }

      .capability__layout {
        gap: var(--space-md);
      }

      .process-step {
        padding-right: 0;
      }

      .process-step:not(:last-child)::after {
        right: 0;
      }

      .cta-band__inner {
        padding-block: var(--space-lg);
      }

      .footer-grid {
        gap: var(--space-md);
      }

      .footer-bottom {
        padding-block: 1.25rem;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
      }

      .split-row--reversed > :first-child {
        order: initial;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
      }
    }
/* @vn-deploy:1789926875720 */
