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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    font-size: 16px;
  }

  /* ── NAV ── */

  .btn {
    display: inline-block;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.4px;
    padding: 11px 26px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
  }
  .btn-accent {
    background: var(--accent);
    color: var(--white);
  }
  .btn-accent:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(46,196,168,0.35); }

  .btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
  }
  .btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

  /* ── HERO ── */
  .hero {
    background: linear-gradient(135deg, #0e2240 0%, #1c3a5f 45%, #254d7a 100%);
    color: var(--white);
    padding: 80px 40px 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  #hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    opacity: 0.7;
  }
  .hero-inner { position: relative; max-width: 700px; margin: 0 auto; }
  .hero-eyebrow {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(46,196,168,0.12);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
  }
  .hero h1 {
    font-family: var(--font-head);
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.8px;
    margin-bottom: 20px;
    text-wrap: balance;
  }
  .hero h1 em { color: var(--accent); font-style: normal; }
  .hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.82);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
  }

  /* ── SECTION SHARED ── */
  .section-label {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
  }
  h2 {
    font-family: var(--font-head);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: var(--navy);
    text-wrap: balance;
  }
  h3 {
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
  }
  p { color: var(--text-muted); line-height: 1.75; }

  /* ── MAIN CONTACT SECTION ── */
  .contact-section {
    padding: 80px 40px;
    background: var(--white);
  }
  .contact-inner {
    max-width: 1060px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 64px;
    align-items: start;
  }

  /* ── FORM PANEL ── */
  .form-panel {}
  .form-panel .section-label { margin-bottom: 8px; }
  .form-panel h2 { margin-bottom: 10px; }
  .form-panel > p { margin-bottom: 36px; font-size: 15.5px; }

  .contact-form { display: flex; flex-direction: column; gap: 20px; }

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

  .form-field { display: flex; flex-direction: column; gap: 6px; }

  .form-field label {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--navy);
  }
  .form-field label .opt {
    font-weight: 400;
    color: var(--gray-mid);
    text-transform: none;
    letter-spacing: 0;
    font-size: 11px;
    margin-left: 4px;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text);
    background: var(--off-white);
    border: 1.5px solid var(--gray-light);
    border-radius: 6px;
    padding: 12px 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
  }
  .form-field input::placeholder,
  .form-field textarea::placeholder { color: var(--gray-mid); }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(46,196,168,0.14);
    background: var(--white);
  }

  .form-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238fa3b8' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    cursor: pointer;
  }

  .form-field textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
  }

  .form-submit { display: flex; flex-direction: column; gap: 10px; }

  .btn-submit {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding: 15px 36px;
    border-radius: 4px;
    background: var(--accent);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    align-self: flex-start;
  }
  .btn-submit:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(46,196,168,0.35); }

  .form-note {
    font-size: 13px;
    color: var(--gray-mid);
    font-style: italic;
  }

  /* ── SIDEBAR ── */
  .contact-sidebar { display: flex; flex-direction: column; gap: 28px; padding-top: 6px; }

  .sidebar-card {
    background: var(--off-white);
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    padding: 28px 28px 24px;
  }

  .sidebar-card .section-label { margin-bottom: 14px; }

  .contact-detail {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 4px;
  }
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
  .contact-item-icon {
    width: 36px;
    height: 36px;
    background: var(--navy);
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
  }
  .contact-item-icon svg {
    width: 17px;
    height: 17px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .contact-item-label {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--gray-mid);
    margin-bottom: 2px;
  }
  .contact-item-value {
    font-size: 14.5px;
    color: var(--text);
    font-weight: 500;
    line-height: 1.5;
  }
  .contact-item-value a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
  }
  .contact-item-value a:hover { color: var(--accent); }

  .sidebar-links { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
  .sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    font-family: var(--font-head);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--navy);
    background: var(--white);
    border: 1.5px solid var(--gray-light);
    border-radius: 8px;
    padding: 12px 16px;
    transition: all 0.2s;
  }
  .sidebar-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateX(2px);
  }
  .sidebar-link-arrow {
    font-size: 16px;
    color: var(--accent);
    transition: transform 0.2s;
  }
  .sidebar-link:hover .sidebar-link-arrow { transform: translateX(3px); }

  /* ── FOOTER ── */

/* ===== mobile responsiveness (added in mobile-QA pass) ===== */
@media (max-width: 980px) {
  .hero { padding-left: 24px; padding-right: 24px; }
  .contact-section { padding-left: 24px; padding-right: 24px; }
  .contact-inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  .hero { padding: 56px 20px 64px; }
  .contact-section { padding: 56px 20px; }
  .form-row { grid-template-columns: 1fr; }
}
