:root {
      --color-primary: #2e7dff;
      --color-primary-dark: #175ec7;
      --color-primary-light: #dceaff;
      --color-accent: #0a8a63;
      --color-accent-light: #dff4ec;
      --color-bg: #f8fafc;
      --color-bg-alt: #f5f7fa;
      --color-surface: #ffffff;
      --color-text: #18231f;
      --color-text-muted: #5b6762;
      --color-border: #dbe4e0;
      --color-white: #fff;
      --color-black: #0a0a0a;

      --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: .5rem;
      --radius-md: 1rem;
      --radius-lg: 1.5rem;
      --shadow-sm: 0 12px 35px rgba(24, 35, 31, .08);
      --shadow-lg: 0 26px 70px rgba(14, 35, 27, .16);
    }

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

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

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

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

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

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

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

    button {
      cursor: pointer;
    }

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

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

    p {
      margin: 0;
      color: var(--color-text-muted);
    }

    :focus-visible {
      outline: 3px solid rgba(46, 125, 255, .35);
      outline-offset: 4px;
    }

    .skip-link {
      position: fixed;
      top: var(--space-sm);
      left: var(--space-sm);
      z-index: 2000;
      transform: translateY(-150%);
      padding: .8rem 1rem;
      border-radius: var(--radius-sm);
      background: var(--color-black);
      color: var(--color-white);
      font-size: var(--text-sm);
      font-weight: 700;
    }

    .skip-link:focus {
      transform: translateY(0);
    }

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

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

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

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

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: .65rem;
      margin-bottom: var(--space-sm);
      color: var(--color-accent);
      font-size: var(--text-xs);
      font-weight: 800;
      letter-spacing: .15em;
      line-height: 1.3;
      text-transform: uppercase;
    }

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

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

    .section-heading h2 {
      margin-bottom: var(--space-sm);
    }

    .section-heading p {
      max-width: 660px;
      font-size: var(--text-lg);
    }

    .button {
      display: inline-flex;
      min-height: 50px;
      align-items: center;
      justify-content: center;
      gap: .7rem;
      padding: .85rem 1.4rem;
      border: 1px solid transparent;
      border-radius: var(--radius-sm);
      background: var(--color-primary);
      color: var(--color-white);
      font-size: var(--text-sm);
      font-weight: 800;
      line-height: 1.2;
      text-align: center;
    }

    .button:hover {
      background: var(--color-primary-dark);
      box-shadow: 0 12px 26px rgba(46, 125, 255, .22);
    }

    .button--large {
      padding: 1rem 2.5rem;
    }

    .button--secondary {
      border-color: rgba(255, 255, 255, .55);
      background: rgba(255, 255, 255, .1);
      color: var(--color-white);
    }

    .button--secondary:hover {
      border-color: var(--color-white);
      background: var(--color-white);
      color: var(--color-text);
      box-shadow: none;
    }

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

    .button--outline:hover {
      border-color: var(--color-primary);
      background: var(--color-primary-light);
      color: var(--color-primary-dark);
      box-shadow: none;
    }

    .text-link {
      display: inline-flex;
      align-items: center;
      gap: .55rem;
      color: var(--color-primary-dark);
      font-size: var(--text-sm);
      font-weight: 800;
    }

    .text-link::after {
      content: "→";
    }

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

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 1px solid rgba(219, 228, 224, .78);
      background: rgba(255, 255, 255, .9);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
    }

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

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

    .brand img {
      width: auto;
      height: 49px;
      object-fit: contain;
    }

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

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

    .nav-link:hover,
    .nav-link[aria-current="page"] {
      background: var(--color-primary-light);
      color: var(--color-primary-dark);
    }

    .nav-cta {
      display: none;
      white-space: nowrap;
    }

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

    .menu-toggle span,
    .menu-toggle span::before,
    .menu-toggle span::after {
      display: block;
      width: 21px;
      height: 2px;
      background: currentColor;
      content: "";
    }

    .menu-toggle span {
      position: relative;
    }

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

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

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

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

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

    .mobile-menu {
      display: none;
      padding: 0 0 var(--space-sm);
    }

    .mobile-menu.is-open {
      display: grid;
      gap: .35rem;
    }

    .mobile-menu .nav-link {
      width: 100%;
      padding: .8rem 1rem;
    }

    .mobile-menu .button {
      width: 100%;
      max-width: 320px;
      margin: .5rem auto 0;
    }

    .hero {
      position: relative;
      min-height: 700px;
      isolation: isolate;
      display: grid;
      align-items: end;
      overflow: hidden;
      background: #173127;
    }

    .hero__media,
    .hero__media::after {
      position: absolute;
      inset: 0;
    }

    .hero__media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero__media::after {
      background:
        linear-gradient(90deg, rgba(8, 24, 18, .93) 0%, rgba(10, 35, 25, .76) 48%, rgba(8, 30, 22, .22) 100%),
        linear-gradient(0deg, rgba(10, 28, 22, .72), transparent 55%);
      content: "";
    }

    .hero__content {
      position: relative;
      z-index: 1;
      max-width: 850px;
      padding-block: clamp(6rem, 13vw, 10rem) var(--space-xl);
    }

    .hero .eyebrow {
      color: #aee8d3;
    }

    .hero h1 {
      max-width: 820px;
      margin-bottom: var(--space-md);
      color: var(--color-white);
    }

    .hero h1 span {
      color: #91d9bd;
    }

    .hero__lead {
      max-width: 690px;
      color: rgba(255, 255, 255, .83);
      font-size: var(--text-xl);
      line-height: 1.65;
    }

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

    .hero__note {
      display: flex;
      flex-wrap: wrap;
      gap: .65rem 1.5rem;
      margin-top: var(--space-md);
      color: rgba(255, 255, 255, .75);
      font-size: var(--text-sm);
      font-weight: 600;
    }

    .hero__note span {
      display: inline-flex;
      align-items: center;
      gap: .55rem;
    }

    .hero__note span::before {
      width: .45rem;
      height: .45rem;
      border-radius: 50%;
      background: #91d9bd;
      content: "";
    }

    .about-layout,
    .split-row {
      display: grid;
      align-items: center;
      gap: var(--space-lg);
    }

    .about-copy h2,
    .split-row h2 {
      margin-bottom: var(--space-md);
    }

    .about-copy > p + p,
    .prose p + p {
      margin-top: var(--space-sm);
    }

    .about-facts {
      display: grid;
      margin-top: var(--space-md);
      border-top: 1px solid var(--color-border);
    }

    .fact {
      padding: var(--space-sm) 0;
      border-bottom: 1px solid var(--color-border);
    }

    .fact strong {
      display: block;
      margin-bottom: .15rem;
      color: var(--color-text);
      font-size: var(--text-sm);
    }

    .fact span {
      color: var(--color-text-muted);
      font-size: var(--text-sm);
    }

    .about-panel {
      position: relative;
      padding: var(--space-md);
      overflow: hidden;
      border-radius: var(--radius-lg);
      background: #102d23;
      color: var(--color-white);
      box-shadow: var(--shadow-lg);
    }

    .about-panel::after {
      position: absolute;
      right: -4rem;
      bottom: -5rem;
      width: 13rem;
      height: 13rem;
      border: 1px solid rgba(174, 232, 211, .3);
      border-radius: 50%;
      content: "";
    }

    .about-panel h3 {
      position: relative;
      z-index: 1;
      margin-bottom: var(--space-sm);
      color: var(--color-white);
      font-size: var(--text-3xl);
    }

    .about-panel p {
      position: relative;
      z-index: 1;
      color: rgba(255, 255, 255, .72);
    }

    .principles {
      position: relative;
      z-index: 1;
      display: grid;
      gap: .8rem;
      margin: var(--space-md) 0 0;
      padding: 0;
      list-style: none;
    }

    .principles li {
      display: flex;
      gap: .8rem;
      align-items: flex-start;
      color: rgba(255, 255, 255, .9);
      font-size: var(--text-sm);
      font-weight: 600;
    }

    .principles li::before {
      width: .65rem;
      height: .65rem;
      margin-top: .42rem;
      flex: 0 0 auto;
      border: 2px solid #91d9bd;
      border-radius: 50% 50% 50% 0;
      transform: rotate(-45deg);
      content: "";
    }

    .services-intro {
      display: grid;
      align-items: end;
      gap: var(--space-md);
      margin-bottom: var(--space-lg);
    }

    .services-intro .section-heading {
      margin-bottom: 0;
    }

    .service-list {
      border-top: 1px solid var(--color-border);
    }

    .service-item {
      display: grid;
      gap: var(--space-sm);
      padding: var(--space-md) 0;
      border-bottom: 1px solid var(--color-border);
    }

    .service-number {
      color: var(--color-accent);
      font-size: var(--text-sm);
      font-weight: 800;
      letter-spacing: .08em;
    }

    .service-item h3 {
      font-size: var(--text-2xl);
    }

    .service-item p {
      max-width: 620px;
    }

    .service-item .text-link {
      align-self: start;
    }

    .feature-grid,
    .value-grid {
      display: grid;
      gap: 1px;
      overflow: hidden;
      border: 1px solid var(--color-border);
      border-radius: var(--radius-lg);
      background: var(--color-border);
    }

    .feature {
      min-height: 230px;
      padding: var(--space-md);
      background: var(--color-surface);
    }

    .feature__mark {
      display: block;
      width: 2rem;
      height: 2rem;
      margin-bottom: var(--space-md);
      border: 7px solid var(--color-primary-light);
      border-radius: 50% 50% 50% 0;
      background: var(--color-primary);
      transform: rotate(-45deg);
    }

    .feature h3 {
      margin-bottom: .7rem;
    }

    .feature:hover {
      background: #fbfdff;
    }

    .audience-band {
      background: #102d23;
      color: var(--color-white);
    }

    .audience-layout {
      display: grid;
      gap: var(--space-lg);
      align-items: center;
    }

    .audience-band h2 {
      margin-bottom: var(--space-sm);
      color: var(--color-white);
    }

    .audience-band p {
      max-width: 680px;
      color: rgba(255, 255, 255, .7);
      font-size: var(--text-lg);
    }

    .audience-list {
      display: flex;
      flex-wrap: wrap;
      gap: .65rem;
    }

    .audience-list span {
      padding: .65rem .9rem;
      border: 1px solid rgba(255, 255, 255, .2);
      border-radius: 999px;
      color: rgba(255, 255, 255, .9);
      font-size: var(--text-sm);
      font-weight: 700;
    }

    .faq-list {
      max-width: 900px;
      border-top: 1px solid var(--color-border);
    }

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

    .faq-list summary {
      display: flex;
      min-height: 72px;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-sm);
      padding: var(--space-sm) 0;
      color: var(--color-text);
      cursor: pointer;
      font-size: var(--text-lg);
      font-weight: 700;
      list-style: none;
    }

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

    .faq-list summary::after {
      content: "+";
      flex: 0 0 auto;
      color: var(--color-primary);
      font-size: var(--text-2xl);
      font-weight: 400;
    }

    .faq-list details[open] summary::after {
      content: "−";
    }

    .faq-list details p {
      max-width: 760px;
      padding: 0 2.5rem var(--space-md) 0;
    }

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

    .contact-layout {
      display: grid;
      gap: var(--space-lg);
      align-items: start;
    }

    .contact-copy h2 {
      margin-bottom: var(--space-sm);
    }

    .contact-copy > p {
      max-width: 580px;
      font-size: var(--text-lg);
    }

    .contact-details {
      display: grid;
      gap: var(--space-sm);
      margin: var(--space-md) 0 0;
      padding: 0;
      list-style: none;
    }

    .contact-details li {
      padding-bottom: var(--space-sm);
      border-bottom: 1px solid var(--color-border);
    }

    .contact-details strong {
      display: block;
      margin-bottom: .2rem;
      color: var(--color-text);
      font-size: var(--text-xs);
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .contact-details a,
    .contact-details span {
      color: var(--color-text-muted);
      font-size: var(--text-sm);
    }

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

    .contact-form {
      padding: clamp(1.25rem, 4vw, 2.5rem);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-lg);
      background: var(--color-surface);
      box-shadow: var(--shadow-sm);
    }

    .contact-form h3 {
      margin-bottom: .5rem;
      font-size: var(--text-2xl);
    }

    .contact-form > p {
      margin-bottom: var(--space-md);
      font-size: var(--text-sm);
    }

    .field-grid {
      display: grid;
      gap: var(--space-sm);
    }

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

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

    .field input,
    .field textarea,
    .field select {
      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);
      font-size: var(--text-base);
    }

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

    .field input:hover,
    .field textarea:hover,
    .field select:hover {
      border-color: #aebdb6;
    }

    .field input:focus,
    .field textarea:focus,
    .field select:focus {
      border-color: var(--color-primary);
      outline: 3px solid rgba(46, 125, 255, .14);
    }

    .field [aria-invalid="true"] {
      border-color: #b42318;
      outline-color: rgba(180, 35, 24, .12);
    }

    .field-error {
      min-height: 1.15rem;
      color: #9f1c13;
      font-size: var(--text-xs);
    }

    .form-status {
      margin-top: var(--space-sm);
      color: var(--color-accent);
      font-size: var(--text-sm);
      font-weight: 700;
    }

    .contact-form .button {
      width: 100%;
      max-width: 320px;
      margin-top: var(--space-sm);
    }

    .page-hero {
      padding-block: var(--space-xl);
      background: linear-gradient(135deg, #102d23, #174838);
      color: var(--color-white);
    }

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

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

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

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

    .split-row__image img {
      aspect-ratio: 4 / 3;
      border-radius: var(--radius-lg);
      object-fit: cover;
      box-shadow: var(--shadow-sm);
    }

    .process-steps {
      display: grid;
      gap: var(--space-md);
      counter-reset: process;
    }

    .process-step {
      position: relative;
      padding: var(--space-md) 0 var(--space-md) 4.5rem;
      border-bottom: 1px solid var(--color-border);
      counter-increment: process;
    }

    .process-step::before {
      position: absolute;
      top: var(--space-md);
      left: 0;
      display: grid;
      width: 3rem;
      height: 3rem;
      place-items: center;
      border-radius: 50%;
      background: var(--color-primary-light);
      color: var(--color-primary-dark);
      content: counter(process, decimal-leading-zero);
      font-size: var(--text-sm);
      font-weight: 800;
    }

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

    .cta-band {
      display: grid;
      gap: var(--space-md);
      align-items: center;
      padding: clamp(2rem, 6vw, 4rem);
      border-radius: var(--radius-lg);
      background: var(--color-primary);
      color: var(--color-white);
    }

    .cta-band h2,
    .cta-band h3 {
      color: var(--color-white);
    }

    .cta-band p {
      color: rgba(255, 255, 255, .78);
    }

    .prose {
      max-width: 780px;
    }

    .prose h2,
    .prose h3 {
      margin-top: var(--space-md);
      margin-bottom: var(--space-sm);
    }

    .site-footer {
      padding-top: var(--space-lg);
      background: #0e211a;
      color: var(--color-white);
    }

    .footer-grid {
      display: grid;
      gap: var(--space-md);
      padding-bottom: var(--space-lg);
    }

    .footer-brand img {
      width: auto;
      height: 56px;
      margin-bottom: var(--space-sm);
      filter: brightness(0) invert(1);
    }

    .footer-brand p {
      max-width: 370px;
      color: rgba(255, 255, 255, .62);
      font-size: var(--text-sm);
    }

    .footer-column h3 {
      margin-bottom: var(--space-sm);
      color: var(--color-white);
      font-size: var(--text-sm);
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .footer-links {
      display: grid;
      gap: .55rem;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .footer-links a,
    .footer-links span {
      color: rgba(255, 255, 255, .66);
      font-size: var(--text-sm);
    }

    .footer-links a:hover {
      color: var(--color-white);
    }

    .footer-bottom {
      display: flex;
      flex-direction: column;
      gap: .35rem;
      padding: var(--space-sm) 0;
      border-top: 1px solid rgba(255, 255, 255, .12);
    }

    .footer-bottom p {
      color: rgba(255, 255, 255, .5);
      font-size: var(--text-xs);
    }

    @media (min-width: 620px) {
      .about-facts {
        grid-template-columns: repeat(2, 1fr);
      }

      .fact:nth-child(odd) {
        padding-right: var(--space-sm);
      }

      .fact:nth-child(even) {
        padding-left: var(--space-sm);
        border-left: 1px solid var(--color-border);
      }

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

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

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

      .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
      }
    }

    @media (min-width: 820px) {
      .nav-links,
      .nav-cta {
        display: flex;
      }

      .menu-toggle,
      .mobile-menu {
        display: none !important;
      }

      .about-layout,
      .split-row {
        grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
      }

      .split-row--reversed .split-row__image {
        order: -1;
      }

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

      .service-item {
        grid-template-columns: 60px minmax(210px, .65fr) 1.35fr auto;
        align-items: center;
      }

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

      .audience-layout {
        grid-template-columns: 1.15fr .85fr;
      }

      .contact-layout {
        grid-template-columns: minmax(0, .8fr) minmax(430px, 1.2fr);
      }

      .cta-band {
        grid-template-columns: 1fr auto;
      }
    }

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

      .hero {
        min-height: 680px;
      }

      .hero__media::after {
        background: linear-gradient(0deg, rgba(8, 26, 19, .96) 0%, rgba(8, 26, 19, .8) 65%, rgba(8, 26, 19, .42) 100%);
      }

      .hero__actions {
        flex-direction: column;
        align-items: center;
      }

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

      .button--large {
        padding-inline: 1.3rem;
      }

      .contact-form .button {
        margin-inline: auto;
      }
    }

    @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:1789337162117 */
