:root {
        --blue-600: #155DFC;
        --blue-700: #1447C9;
        --green-500: #0FBE87;
        --grad: linear-gradient(96deg, var(--blue-600) 0%, var(--green-500) 100%);
        --ink-900: #212529;
        --ink-700: #3A4456;
        --ink-500: #64748b;
        --ink-300: #9AA4B2;
        --line: #E6E9EF;
        --surface: #FFFFFF;
        --surface-tint: #F6F8FB;
        --surface-mint: #EAF9F3;
        --shadow-sm: 0 1px 2px rgba(16, 24, 40, .06);
        --shadow-md: 0 8px 24px -8px rgba(16, 24, 40, .12);
        --shadow-lg: 0 24px 48px -16px rgba(16, 24, 40, .16);
        --radius-lg: 20px;
        --radius-md: 14px;
        --radius-sm: 10px;
      }
      .wrap{
    max-width:1320px;
    margin:0 auto;
    padding:0 32px;
  }
   .btn{
    display:inline-flex;align-items:center;justify-content:center;gap:8px;
    font-weight:700;font-size:14.5px;
    border-radius:10px;border:none;cursor:pointer;
    transition:transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  }
  .btn-primary{
    background:var(--grad);color:#fff;
    padding:12px 22px;
    box-shadow:0 6px 16px -4px rgba(21,93,252,.45);
  }
  .btn-primary:hover{transform:translateY(-1px);box-shadow:0 10px 22px -4px rgba(21,93,252,.55);}
  .btn-primary svg{width:14px;height:14px;}

      .hero {
        background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
        padding: 26px 0 46px;
        position: relative;
        overflow: hidden;
      }

      .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: center;
      }

      .tag {
        display: inline-block;
        font-size: 12px;
        font-weight: 700;
       
        color: var(--blue-600);
        background: #EAF1FF;
        padding: 7px 16px;
        border-radius: 999px;
        margin-bottom: 22px;
      }

      .hero h1 {
        font-size: 48px;
        line-height: 1.08;
        font-weight: 800;
        margin: 0 0 22px;
        color: var(--ink-900);
      }

      .hero h1 .accent {
        background: var(--grad);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
      }

      .hero p.lead {
        font-size: 18px;
        line-height: 1.65;
        color: var(--ink-500);
        max-width: 480px;
        margin: 0 0 40px;
      }

      .feature-row {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
      }

      .feature {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        max-width: 190px;
      }

      .feature-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        background: var(--surface-tint);
        border: 1px solid var(--line);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }

      .feature-icon svg {
        width: 19px;
        height: 19px;
        color: var(--blue-600);
      }

      .feature h4 {
        font-size: 15px;
        margin: 2px 0 3px;
        font-weight: 700;
        color: var(--ink-900);
      }

      .feature p {
        font-size: 13px;
        color: var(--ink-500);
        margin: 0;
        line-height: 1.5;
      }

      /* ---------- Form card ---------- */
      .form-card {
        background: #fff;
        border: 1px solid var(--line);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        padding: 38px;
        position: relative;
        z-index: 2;
      }

      .form-card h3 {
        font-size: 22px;
        font-weight: 800;
        margin: 0 0 6px;
      }

      .form-card>p {
        font-size: 14px;
        color: var(--ink-500);
        margin: 0 0 26px;
      }

      .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
        margin-bottom: 18px;
      }

      .field label {
        display: block;
        font-size: 13px;
        font-weight: 700;
        margin-bottom: 8px;
        color: var(--ink-900);
      }

      .input-wrap {
        position: relative;
        display: flex;
        align-items: center;
      }

      .input-wrap svg {
        position: absolute;
        left: 14px;
        width: 16px;
        height: 16px;
        color: var(--ink-300);
        pointer-events: none;
      }

      .input-wrap input,
      .input-wrap textarea {
        width: 100%;
        font-family: inherit;
        font-size: 14px;
        padding: 12px 14px 12px 40px;
        border: 1px solid var(--line);
        border-radius: 10px;
        background: var(--surface-tint);
        color: var(--ink-900);
        outline: none;
        transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
      }

      .input-wrap textarea {
        padding-top: 12px;
        resize: vertical;
        min-height: 96px;
        line-height: 1.5;
      }

      .input-wrap svg.textarea-icon {
        top: 14px;
      }

      .input-wrap input::placeholder,
      .input-wrap textarea::placeholder {
        color: var(--ink-300);
      }

      .input-wrap input:focus,
      .input-wrap textarea:focus {
        border-color: var(--blue-600);
        background: #fff;
        box-shadow: 0 0 0 4px rgba(21, 93, 252, .12);
      }

      .field {
        margin-bottom: 0;
      }

      .field.full {
        margin-bottom: 26px;
      }

      .submit-btn {
        width: 100%;
        padding: 15px;
        font-size: 15.5px;
        background: var(--grad);
        color: #fff;
        box-shadow: 0 10px 22px -6px rgba(21, 93, 252, .5);
      }

      .submit-btn svg {
        width: 15px;
        height: 15px;
      }

      .submit-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 14px 26px -6px rgba(21, 93, 252, .6);
      }

      .privacy-note {
        text-align: center;
        font-size: 12px;
        color: var(--ink-500);
        margin-top: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
      }

      .privacy-note svg {
        width: 13px;
        height: 13px;
        color: var(--ink-300);
      }

      /* ---------- Offices section ---------- */
      .offices {
        background: var(--surface-tint);
        padding: 26px 0 46px;
      }

      .section-head {
        text-align: center;
        max-width: 640px;
        margin: 0 auto 52px;
      }

      .section-head h2 {
        font-size: 38px;
        font-weight: 800;
       
        margin: 0 0 12px;
      }

      .section-head h2 .accent {
        background: var(--grad);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
      }

      .section-head p {
        font-size: 15.5px;
        color: var(--ink-500);
        margin: 0;
      }

      .office-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 22px;
      }

   .office-card {
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease;
    display: flex;
    flex-direction: column;
}

.office-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.office-photo {
    position: relative;
    height: 150px;
    overflow: visible; /* changed */
}

.office-photo > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.flag {
    position: absolute;
    left: 20px;
    bottom: -22px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    background: #fff;
    z-index: 5;
}

.flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.office-body {
    padding: 30px 20px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.office-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; gap: 8px; flex-wrap: wrap; } .office-top h3 { font-size: 17px; font-weight: 800; margin: 0; } .badge { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; white-space: nowrap; } .badge.hq { background: var(--surface-mint); color: var(--green-500); } .badge.sales { background: #EAF1FF; color: var(--blue-600); } .badge.regional { background: #F1EEFE; color: #7C5CE0; } .office-body address { font-style: normal; font-size: 13px; line-height: 1.6; color: var(--ink-500); margin: 0 0 16px; } .office-contact { margin-top: auto; display: flex; flex-direction: column; gap: 8px; } .office-contact a { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--ink-700); transition: color .15s ease; } .office-contact a svg { width: 14px; height: 14px; color: var(--ink-300); flex-shrink: 0; } .office-contact a:hover { color: var(--blue-600); } .office-contact a:hover svg { color: var(--blue-600); }
      /* ---------- Utility strip ---------- */
      .util-strip {
        max-width: 1320px;
        margin: 52px auto 0;
        padding: 0 32px;
      }

      .util-card-outer {
        background: var(--surface-mint);
        border-radius: var(--radius-lg);
        padding: 30px 24px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
      }

      .util-item {
        display: flex;
        align-items: flex-start;
        gap: 14px;
      }

      .util-icon {
        width: 46px;
        height: 46px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: #fff;
        box-shadow: var(--shadow-sm);
      }

      .util-icon svg {
        width: 20px;
        height: 20px;
      }

      .util-item h4 {
        font-size: 14px;
        font-weight: 700;
        margin: 0 0 3px;
      }

      .util-item p {
        font-size: 12.5px;
        color: var(--ink-500);
        margin: 0;
        line-height: 1.5;
      }

      /* ---------- Responsive ---------- */
      @media (max-width:1100px) {
        .office-grid {
          grid-template-columns: repeat(3, 1fr);
        }

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

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

        .menu-toggle {
          display: flex;
        }

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

        .hero h1 {
          font-size: 42px;
        }

        .hero p.lead {
          max-width: 100%;
        }

        .wrap {
          padding: 0 24px;
        }
      }

      @media (max-width:720px) {
        .office-grid {
          grid-template-columns: 1fr 1fr;
        }

        .util-card-outer {
          grid-template-columns: 1fr;
        }

        .section-head h2 {
          font-size: 30px;
        }

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

        .form-card {
          padding: 26px;
        }
      }

      @media (max-width:560px) {
        .wrap {
          padding: 0 18px;
        }

        .util-strip {
          padding: 0 18px;
        }

        .hero {
          padding: 44px 0 64px;
        }

        .hero h1 {
          font-size: 32px;
        }

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

        .brand-name {
          font-size: 17px;
        }

        .nav {
          height: 68px;
        }

        .btn-primary {
          padding: 10px 16px;
          font-size: 13.5px;
        }

        .form-card {
          padding: 20px;
        }
      }

      @media (prefers-reduced-motion: reduce) {
        * {
          transition: none !important;
        }
      }
      .hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
