:root {
      --dark-blue: #003087;
      --medium-blue: #026CFF;
      --light-blue: #009CDE;
      --mustard: #FFC43A;
      --deep-navy: #071B3A;
      --soft-blue: #EAF4FF;
      --ice-blue: #F5FAFF;
      --charcoal: #1E293B;
      --slate: #64748B;
      --line: #E2E8F0;
      --white: #FFFFFF;
      --error: #B42318;
      --success: #067647;
      --shadow: 0 24px 60px rgba(7, 27, 58, 0.14);
    }

    * {
      box-sizing: border-box;
    }

    body {
      min-height: 100vh;
      margin: 0;
      color: var(--charcoal);
      background: var(--ice-blue);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.5;
    }

    a {
      color: var(--dark-blue);
      text-decoration: none;
    }

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

    button,
    input,
    textarea {
      font: inherit;
    }

    .site-header {
      border-bottom: 1px solid rgba(226, 232, 240, 0.78);
      background: var(--white);
    }

    .nav {
      width: min(1180px, calc(100% - 40px));
      min-height: 74px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      min-width: 178px;
    }

    .brand img {
      width: 300px;
    }


    .menu-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border: 1px solid var(--line);
      border-radius: 6px;
      padding: 0;
      color: var(--dark-blue);
      background: var(--white);
      cursor: pointer;
    }

    .menu-toggle span {
      display: block;
      width: 20px;
      height: 2px;
      margin: 5px auto;
      border-radius: 999px;
      background: currentColor;
      transition: transform 160ms ease, opacity 160ms ease;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .nav-links {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      flex-wrap: nowrap;
      gap: 8px;
      color: var(--dark-blue);
      font-size: 14px;
      font-weight: 800;
    }

    .nav-link,
    .nav-cta {
      min-height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 6px;
      padding: 0 12px;
      white-space: nowrap;
    }

    .nav-link:hover {
      background: var(--soft-blue);
    }

    .nav-cta {
      color: var(--white);
      background: var(--medium-blue);
    }

    .contact-hero {
      background:
        linear-gradient(135deg, rgba(7, 27, 58, 0.98), rgba(0, 48, 135, 0.96)),
        var(--deep-navy);
      color: var(--white);
    }

    .hero-inner {
      width: min(1120px, calc(100% - 40px));
      margin: 0 auto;
      padding: 112px 0 104px;
      display: grid;
      grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
      align-items: start;
      gap: 44px;
    }

    .eyebrow {
      width: fit-content;
      margin: 0 0 18px;
      border: 1px solid rgba(255, 196, 58, 0.48);
      border-radius: 999px;
      padding: 7px 12px;
      color: var(--mustard);
      background: rgba(255, 196, 58, 0.1);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0;
      text-transform: uppercase;
    }

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

    h1 {
      max-width: 650px;
      margin-bottom: 18px;
      font-size: clamp(36px, 5.2vw, 58px);
      line-height: 1.05;
      letter-spacing: 0;
    }

    .hero-copy {
      max-width: 610px;
      margin-bottom: 28px;
      color: rgba(255, 255, 255, 0.82);
      font-size: 18px;
      line-height: 1.65;
    }

    .fit-list {
      display: grid;
      gap: 12px;
      max-width: 600px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .fit-list li {
      display: grid;
      grid-template-columns: 24px 1fr;
      gap: 10px;
      align-items: start;
      color: rgba(255, 255, 255, 0.82);
      font-size: 15px;
    }

    .check {
      width: 24px;
      height: 24px;
      display: inline-grid;
      place-items: center;
      border-radius: 999px;
      color: var(--deep-navy);
      background: var(--mustard);
      font-size: 14px;
      font-weight: 900;
      line-height: 1;
    }

    .contact-panel {
      border: 1px solid rgba(255, 255, 255, 0.26);
      border-radius: 8px;
      overflow: hidden;
      color: var(--charcoal);
      background: var(--white);
      box-shadow: var(--shadow);
    }

    .panel-heading {
      padding: 22px;
      color: inherit;
      background: linear-gradient(180deg, var(--white), var(--soft-blue));
      border-bottom: 1px solid var(--line);
    }

    .panel-heading h2 {
      margin: 0 0 6px;
      color: var(--deep-navy);
      font-size: 24px;
      line-height: 1.25;
    }

    .panel-heading p {
      margin: 0;
      color: var(--slate);
      font-size: 14px;
    }

    .contact-form {
      padding: 22px;
    }

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

    .field {
      min-width: 0;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    label {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      margin-bottom: 7px;
      color: var(--dark-blue);
      font-size: 13px;
      font-weight: 800;
    }

    .required {
      color: var(--medium-blue);
      font-size: 12px;
      font-weight: 900;
    }

    input,
    textarea {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 6px;
      padding: 12px 13px;
      color: var(--charcoal);
      background: var(--white);
      outline: 0;
      transition: border-color 140ms ease, box-shadow 140ms ease;
    }

    input {
      min-height: 46px;
    }

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

    input:focus,
    textarea:focus {
      border-color: var(--medium-blue);
      box-shadow: 0 0 0 4px rgba(2, 108, 255, 0.14);
    }

    .hint {
      margin-top: 7px;
      color: var(--slate);
      font-size: 12px;
    }

    .hidden-field {
      position: absolute;
      left: -10000px;
      top: auto;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }

    .turnstile-wrap {
      grid-column: 1 / -1;
      min-height: 72px;
      display: flex;
      align-items: center;
    }

    .form-actions {
      grid-column: 1 / -1;
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 2px;
    }

    .button {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border: 0;
      border-radius: 6px;
      padding: 0 18px;
      color: var(--white);
      background: var(--medium-blue);
      font-weight: 800;
      cursor: pointer;
      transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
    }

    .button:hover:not(:disabled) {
      transform: translateY(-1px);
      box-shadow: 0 14px 32px rgba(2, 108, 255, 0.28);
    }

    .button:disabled {
      cursor: wait;
      opacity: 0.68;
    }

    .button.secondary {
      border: 1px solid var(--line);
      color: var(--dark-blue);
      background: var(--white);
    }

    .button.secondary:hover:not(:disabled) {
      background: var(--soft-blue);
      box-shadow: 0 12px 26px rgba(7, 27, 58, 0.1);
    }

    .status {
      display: none;
      margin: 18px 0 0;
      padding: 14px 16px;
      border: 1px solid var(--line);
      border-radius: 6px;
      background: var(--ice-blue);
      color: var(--deep-navy);
      font-size: 15px;
      font-weight: 750;
      line-height: 1.45;
    }

    .status:not(:empty) {
      display: block;
    }

    .status.is-error {
      color: var(--error);
      border-color: rgba(180, 35, 24, 0.25);
      background: #FFF4F2;
    }

    .status.is-success {
      color: var(--success);
      border-color: rgba(6, 118, 71, 0.28);
      background: #ECFDF3;
    }

    .footer {
      border-top: 1px solid var(--line);
      background: var(--white);
    }

    .footer-inner {
      width: min(1120px, calc(100% - 40px));
      min-height: 86px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      color: var(--slate);
      font-size: 13px;
    }

    .footer-brand-link {
      color: inherit;
      font-weight: 400;
      text-decoration: none;
      transition: color 160ms ease;
    }

    .footer-brand-link:hover {
      color: var(--medium-blue);
    }

    @media (max-width: 1080px) {
      .hero-inner {
        grid-template-columns: 1fr;
      }

      .nav {
        padding: 14px 0;
        flex-wrap: wrap;
        gap: 12px;
      }

      .menu-toggle {
        display: inline-block;
        margin-left: auto;
      }

      .nav-links {
        width: 100%;
        display: none;
        flex: 0 0 100%;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 8px;
        padding: 10px 0 4px;
      }

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

      .nav-link,
      .nav-cta {
        width: 100%;
        justify-content: flex-start;
        padding: 0 12px;
      }
    }

    @media (max-width: 680px) {
      .nav,
      .hero-inner,
      .footer-inner {
        width: min(100% - 28px, 1180px);
      }

      .nav {
        align-items: flex-start;
        flex-direction: column;
        min-height: 68px;
        padding: 14px 0;
      }

      .brand {
        min-width: 0;
      }

      .brand img {
        width: 220px;
      }

      .nav-links {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 4px;
        font-size: 13px;
      }

      .nav-link,
      .nav-cta {
        min-height: 38px;
        padding: 0 10px;
      }

      .hero-inner {
        padding: 68px 0;
      }

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

      .panel-heading,
      .contact-form {
        padding: 18px;
      }

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

      .form-actions {
        align-items: stretch;
        flex-direction: column;
      }

      .button {
        width: 100%;
      }

      .footer-inner {
        min-height: 112px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
      }
    }
