
    :root {
      --navy: #1a2f45;
      --navy-mid: #243a52;
      --teal: #2a9d8f;
      --teal-light: #3bbfb0;
      --gold: #e2b84a;
      --gold-light: #f0cc6a;
      --cream: #f5f0e8;
      --white: #ffffff;
      --text-muted: #9aaec5;
      --border: rgba(201,168,76,0.2);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      background: var(--navy);
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.8rem 4rem;
      background: rgba(26,47,69,0.92);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }

    .nav-logo img { height: 52px; width: auto; border-radius: 50%; }

    .nav-links { display: flex; gap: 2.5rem; list-style: none; }

    .nav-links a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.85rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: color 0.25s;
    }

    .nav-links a:hover { color: var(--gold-light); }

    .nav-cta {
      background: transparent;
      border: 1px solid var(--gold);
      color: var(--gold) !important;
      padding: 0.5rem 1.4rem;
      border-radius: 2px;
      transition: background 0.25s, color 0.25s !important;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none !important;
    }

    .nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; }

    .nav-contact-btns { display: flex; gap: 0.75rem; position: relative; }

    .nav-dropdown { position: relative; }

    .nav-dropdown-btn { 
      white-space: nowrap; 
      cursor: pointer;
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.85rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: color 0.25s;
    }

    .nav-dropdown-btn:hover { color: var(--gold-light); }

    .nav-dropdown-menu {
      display: none;
      position: absolute;
      top: calc(100% + 0.25rem);
      left: 50%;
      transform: translateX(-50%);
      min-width: 180px;
      background: var(--navy-mid);
      border: 1px solid var(--border);
      border-radius: 4px;
      box-shadow: 0 12px 40px rgba(0,0,0,0.5);
      z-index: 200;
      padding: 0.75rem 0;
    }

    .nav-dropdown-menu.show {
      display: block;
    }

    /* Create a larger hover area that includes the gap */
    .nav-dropdown::before {
      content: '';
      position: absolute;
      top: 0;
      left: -20px;
      right: -20px;
      bottom: -20px;
      z-index: -1;
    }

    /* Bridge area between button and menu */
    .nav-dropdown::after {
      content: '';
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      width: 200px;
      height: 0.5rem;
      background: transparent;
      z-index: 199;
    }

    .nav-dropdown-menu a {
      display: block;
      padding: 0.8rem 1.2rem;
      color: var(--white);
      text-decoration: none;
      font-size: 0.8rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      transition: background 0.2s, color 0.2s;
      border-radius: 0;
    }

    .nav-dropdown-menu a:hover {
      background: rgba(226,184,74,0.15);
      color: var(--gold);
    }

    /* Mobile dropdown styles */
    .mobile-dropdown {
      margin: 0.5rem 0;
    }

    .mobile-dropdown-header {
      color: var(--gold);
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 600;
      padding: 0.5rem 0;
      border-bottom: 1px solid var(--border);
      margin-bottom: 0.5rem;
    }

    .mobile-dropdown a {
      padding: 0.3rem 0 0.3rem 1rem;
      font-size: 0.8rem;
      opacity: 0.9;
    }

    .nav-dropdown-menu {
      display: none;
      position: absolute;
      top: calc(100% + 0.75rem);
      right: 0;
      width: 380px;
      background: var(--navy-mid);
      border: 1px solid var(--border);
      border-radius: 4px;
      box-shadow: 0 12px 40px rgba(0,0,0,0.5);
      z-index: 200;
      max-height: 85vh;
      overflow-y: auto;
    }
    @media (max-width: 600px) {
      .nav-dropdown-menu {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        width: 100%;
        max-height: calc(100vh - 65px);
        border-radius: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
      }
    }

    .nav-dropdown-menu.open { display: block; }
    /* Tab styles */
    .dd-tabs {
      display: flex;
      border-bottom: 1px solid var(--border);
    }
    .dd-tab {
      flex: 1;
      padding: 0.85rem 1rem;
      background: none;
      border: none;
      color: var(--text-muted);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      cursor: pointer;
      transition: color 0.2s, background 0.2s;
      border-bottom: 2px solid transparent;
      margin-bottom: -1px;
    }
    .dd-tab:hover { color: var(--white); }
    .dd-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
    .dd-tab-content { display: none; padding: 1.5rem; }
    .dd-tab-content.active { display: block; }

    .nav-dropdown-header {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      color: var(--gold);
      margin-bottom: 1rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid var(--border);
    }

    .dd-field { margin-bottom: 0.85rem; }
    .dd-field label { display: block; font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.3rem; }
    .dd-field input, .dd-field select, .dd-field textarea {
      width: 100%;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      color: var(--white);
      padding: 0.5rem 0.75rem;
      border-radius: 2px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.85rem;
    }
    .dd-field textarea { resize: vertical; min-height: 70px; }
    .dd-field select option { background: var(--navy-mid); }
    .dd-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
    .dd-check-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.25rem; }
    .dd-check { display: flex; align-items: center; gap: 0.3rem; font-size: 0.8rem; color: var(--white); cursor: pointer; }
    .dd-check input { width: auto; }
    .dd-submit {
      width: 100%;
      background: var(--gold);
      color: var(--navy);
      border: none;
      padding: 0.65rem;
      border-radius: 2px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      cursor: pointer;
      margin-top: 0.5rem;
      transition: background 0.2s;
    }
    .dd-submit:hover { background: var(--gold-light); }
    .dd-success { color: var(--teal-light); font-size: 0.85rem; margin-top: 0.75rem; text-align: center; }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 8rem 4rem 5rem;
      position: relative;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 70% 60% at 80% 40%, rgba(42,157,143,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 10% 80%, rgba(201,168,76,0.08) 0%, transparent 55%),
        linear-gradient(160deg, #1e3448 0%, #0a1520 100%);
      z-index: 0;
    }

    .hero-grid-lines {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
      z-index: 0;
    }

    .hero-content { position: relative; z-index: 1; max-width: 800px; }

    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 0.7rem;
      font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 2rem;
      animation: fadeUp 0.8s ease both;
    }

    .hero-eyebrow::before { content: ''; display: block; width: 36px; height: 1px; background: var(--gold); }

    h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 6vw, 5rem);
      line-height: 1.12; font-weight: 600; margin-bottom: 1.8rem;
      animation: fadeUp 0.8s 0.1s ease both;
    }

    h1 em { font-style: italic; color: var(--teal-light); }

    .hero-sub {
      font-size: 1.15rem; color: var(--text-muted); max-width: 580px;
      margin-bottom: 3rem; animation: fadeUp 0.8s 0.2s ease both;
    }

    .hero-actions { display: flex; gap: 1.2rem; flex-wrap: wrap; animation: fadeUp 0.8s 0.3s ease both; }

    .btn-primary {
      background: var(--gold); color: var(--navy);
      font-family: 'DM Sans', sans-serif; font-weight: 500;
      font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
      text-decoration: none; padding: 1rem 2.4rem; border-radius: 2px;
      transition: background 0.25s, transform 0.2s;
    }

    .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

    .btn-outline {
      display: inline-block; background: transparent;
      border: 1px solid var(--gold); color: var(--gold);
      font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 500;
      letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
      padding: .85rem 2.2rem; border-radius: 2px; cursor: pointer;
      transition: background .2s, color .2s;
    }
    .btn-outline:hover { background: var(--gold); color: var(--navy); }

    .btn-secondary {
      border: 1px solid rgba(255,255,255,0.2); color: var(--white);
      font-family: 'DM Sans', sans-serif; font-weight: 400;
      font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
      text-decoration: none; padding: 1rem 2.4rem; border-radius: 2px;
      transition: border-color 0.25s, color 0.25s, transform 0.2s;
    }

    .btn-secondary:hover { border-color: var(--teal-light); color: var(--teal-light); transform: translateY(-2px); }

    .hero-stats {
      position: absolute; right: 4rem; bottom: 5rem; z-index: 1;
      display: flex; flex-direction: column; gap: 2rem;
      animation: fadeUp 0.8s 0.4s ease both;
    }

    .stat { text-align: right; }
    .stat-number { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--gold); line-height: 1; }
    .stat-label { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.2rem; }
    .stat-divider { width: 100%; height: 1px; background: var(--border); }

    /* SECTIONS */
    section { padding: 7rem 4rem; }

    .section-label {
      font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 1rem;
      display: flex; align-items: center; gap: 0.6rem;
    }

    .section-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }

    h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.2; font-weight: 600; margin-bottom: 1.5rem;
    }

    /* DIFFERENTIATORS */
    .diff-section { background: var(--navy-mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

    .diff-inner {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
    }

    .diff-text p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 1.05rem; }
    .diff-features { display: flex; flex-direction: column; gap: 1.5rem; }

    .feature-card {
      border: 1px solid var(--border); border-radius: 4px;
      padding: 1.6rem 2rem; background: rgba(255,255,255,0.02);
      transition: border-color 0.25s, background 0.25s;
      position: relative; overflow: hidden;
    }

    .feature-card::before {
      content: ''; position: absolute; left: 0; top: 0; bottom: 0;
      width: 3px; background: var(--teal); opacity: 0; transition: opacity 0.25s;
    }

    .feature-card:hover { border-color: rgba(42,157,143,0.4); background: rgba(42,157,143,0.04); }
    .feature-card:hover::before { opacity: 1; }
    .feature-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--white); margin-bottom: 0.4rem; }
    .feature-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

    /* HOW IT WORKS */
    .how-section { max-width: 1200px; margin: 0 auto; }
    .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3.5rem; }

    .step {
      position: relative; padding: 2.5rem;
      border: 1px solid var(--border); border-radius: 4px;
      background: rgba(255,255,255,0.015); transition: transform 0.25s;
    }

    .step:hover { transform: translateY(-4px); }
    .step-num { font-family: 'Playfair Display', serif; font-size: 4rem; color: rgba(201,168,76,0.12); line-height: 1; margin-bottom: 1.2rem; }
    .step h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 0.8rem; color: var(--white); }
    .step p { font-size: 0.92rem; color: var(--text-muted); }

    /* WHO WE SERVE */
    .serve-inner { max-width: 1200px; margin: 0 auto; }
    .serve-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3.5rem; }

    .serve-card {
      border: 1px solid var(--border); border-radius: 4px;
      padding: 3rem; background: rgba(255,255,255,0.015); transition: border-color 0.3s;
    }

    .serve-card:hover { border-color: var(--gold); }
    .serve-card-tag { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 1rem; }
    .serve-card h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 1rem; }
    .serve-card p { font-size: 0.92rem; color: var(--text-muted); }

    .serve-card .cta-link {
      display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.8rem;
      font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--gold); text-decoration: none; transition: gap 0.2s;
    }

    .serve-card .cta-link:hover { gap: 0.9rem; }
    .serve-card .cta-link::after { content: '→'; }

    /* JOBS */
    .jobs-section { max-width: 1200px; margin: 0 auto; }

    .jobs-list {
      margin-top: 3rem; display: flex; flex-direction: column;
      gap: 1px; border: 1px solid var(--border); border-radius: 4px; overflow: hidden;
    }

    .job-row {
      display: grid; grid-template-columns: 1fr auto auto;
      align-items: center; gap: 2rem; padding: 1.6rem 2rem;
      background: rgba(255,255,255,0.015); border-bottom: 1px solid var(--border);
      transition: background 0.2s; text-decoration: none; color: inherit;
    }

    .job-row:last-child { border-bottom: none; }
    .job-row:hover { background: rgba(42,157,143,0.06); }
    .job-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; }
    .job-location { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.2rem; }
    .job-rate { font-size: 1rem; color: var(--gold); font-weight: 500; white-space: nowrap; }
    .job-badge {
      font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
      background: rgba(42,157,143,0.15); color: var(--teal-light);
      padding: 0.3rem 0.8rem; border-radius: 2px;
      border: 1px solid rgba(42,157,143,0.28); white-space: nowrap;
    }

    /* TESTIMONIALS */
    .testimonials-section { background: var(--navy-mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .testimonials-inner { max-width: 1200px; margin: 0 auto; }
    .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }

    .testimonial-card {
      border: 1px solid var(--border); border-radius: 4px;
      padding: 2.5rem; background: rgba(255,255,255,0.02); position: relative;
    }

    .testimonial-card::before {
      content: '"'; font-family: 'Playfair Display', serif; font-size: 6rem;
      color: var(--gold); opacity: 0.15; position: absolute; top: 1rem; left: 1.5rem; line-height: 1;
    }

    .testimonial-text { font-size: 0.93rem; color: var(--text-muted); line-height: 1.75; position: relative; margin-bottom: 1.8rem; }
    .testimonial-author { font-weight: 500; font-size: 0.9rem; }
    .testimonial-role { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.2rem; }

    /* FOUNDER */
    .founder-section { max-width: 900px; margin: 0 auto; text-align: center; }
    .founder-section p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 1.2rem; }
    .founder-divider { width: 60px; height: 1px; background: var(--gold); margin: 2rem auto; }

    /* ── CRNA CONTACT FORM ── */
    .form-section { background: var(--navy-mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .form-inner { max-width: 860px; margin: 0 auto; }

    .form-intro { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 3rem; max-width: 600px; }

    .crna-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }

    .form-group { display: flex; flex-direction: column; gap: 0.5rem; }
    .form-group.full { grid-column: 1 / -1; }

    .form-group label {
      font-size: 0.75rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--border);
      border-radius: 2px;
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem;
      font-weight: 300;
      padding: 0.85rem 1.1rem;
      outline: none;
      transition: border-color 0.25s, background 0.25s;
      width: 100%;
    }

    .form-group select option { background: var(--navy-mid); color: var(--white); }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--teal-light);
      background: rgba(42,157,143,0.06);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder { color: var(--text-muted); }

    .form-group textarea { resize: vertical; min-height: 110px; }

    .checkbox-group { display: flex; flex-direction: column; gap: 0.5rem; }

    .checkbox-group label {
      font-size: 0.75rem; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 0.3rem;
    }

    .checkbox-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
      gap: 0.5rem;
    }

    .checkbox-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--border);
      border-radius: 2px;
      padding: 0.5rem 0.75rem;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
      font-size: 0.82rem;
      color: var(--text-muted);
    }

    .checkbox-item:hover { border-color: var(--teal-light); color: var(--white); }

    .checkbox-item input[type="checkbox"] {
      width: 14px; height: 14px; min-width: 14px;
      accent-color: var(--teal-light);
      border: none; background: none; padding: 0;
    }

    .form-submit-row {
      grid-column: 1 / -1;
      display: flex;
      align-items: center;
      gap: 1.5rem;
      margin-top: 0.5rem;
    }

    .btn-form-submit {
      background: var(--gold);
      color: var(--navy);
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
      font-size: 0.85rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 1rem 2.8rem;
      border: none;
      border-radius: 2px;
      cursor: pointer;
      transition: background 0.25s, transform 0.2s;
    }

    .btn-form-submit:hover { background: var(--gold-light); transform: translateY(-2px); }

    .form-note { font-size: 0.8rem; color: var(--text-muted); }

    .form-success {
      display: none;
      grid-column: 1 / -1;
      text-align: center;
      padding: 2.5rem;
      border: 1px solid rgba(42,157,143,0.3);
      border-radius: 4px;
      background: rgba(42,157,143,0.06);
    }

    .form-success h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      color: var(--teal-light);
      margin-bottom: 0.5rem;
    }

    .form-success p { color: var(--text-muted); font-size: 0.95rem; }

    /* CTA */
    .cta-section { text-align: center; border-top: 1px solid var(--border); position: relative; overflow: hidden; }
    .cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
    .cta-section h2 { margin-bottom: 1rem; }
    .cta-section p { color: var(--text-muted); margin-bottom: 2.5rem; font-size: 1.05rem; }

    /* FOOTER */
    footer {
      border-top: 1px solid var(--border);
      padding: 2rem 4rem;
      display: flex; justify-content: space-between; align-items: center;
    }

    footer img { height: 44px; width: auto; border-radius: 50%; }
    footer p { font-size: 0.8rem; color: var(--text-muted); }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }


    /* HAMBURGER MENU */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      cursor: pointer;
      padding: 0.4rem;
      background: none;
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 3px;
    }
    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: all 0.25s ease;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 65px;
      left: 0; right: 0;
      background: var(--navy-mid);
      border-bottom: 1px solid var(--border);
      z-index: 99;
      padding: 1.5rem;
      flex-direction: column;
      gap: 0;
      overflow-y: auto;
      max-height: calc(100vh - 65px);
      -webkit-overflow-scrolling: touch;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      display: block;
      padding: 0.85rem 0.5rem;
      font-size: 0.9rem;
      letter-spacing: 0.06em;
      color: var(--muted);
      text-decoration: none;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      transition: color 0.2s;
    }
    .mobile-menu a:hover { color: var(--white); }
    .mobile-menu a.mobile-cta {
      margin-top: 1rem;
      background: var(--gold);
      color: var(--navy);
      text-align: center;
      padding: 0.85rem;
      border-radius: 2px;
      font-weight: 500;
      border-bottom: none;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-size: 0.82rem;
    }
    .mobile-menu a.mobile-cta:hover { background: var(--gold-light); color: var(--navy); }

    @media (max-width: 900px) {
      nav { padding: 0.8rem 1.5rem; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      section { padding: 5rem 1.5rem; }
      .hero { padding: 7rem 1.5rem 4rem; }
      .hero-stats { display: none; }
      .diff-inner, .serve-grid, .steps, .testimonials-grid { grid-template-columns: 1fr; }
      .diff-inner { gap: 3rem; }
      footer { flex-direction: column; gap: 1rem; text-align: center; }
      .job-row { grid-template-columns: 1fr; gap: 0.5rem; }
      .crna-form { grid-template-columns: 1fr; }
      .form-group.full { grid-column: 1; }
      .form-submit-row { grid-column: 1; flex-direction: column; align-items: flex-start; }
    }


    .footer-social { display: flex; gap: 1rem; align-items: center; }
    .footer-social a {
      display: inline-flex; align-items: center; justify-content: center;
      width: 36px; height: 36px; border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.12);
      color: var(--text-muted); text-decoration: none;
      transition: border-color 0.2s, color 0.2s, background 0.2s;
    }
    .footer-social a:hover { border-color: var(--teal); color: var(--teal-light); background: rgba(42,157,143,0.1); }
    .footer-social svg { width: 16px; height: 16px; fill: currentColor; }

    /* CONTACT MODAL */
    .contact-modal-overlay {
      display: none; position: fixed; inset: 0;
      background: rgba(0,0,0,0.55); z-index: 500;
      align-items: center; justify-content: center;
    }
    .contact-modal-overlay.open { display: flex; }
    .contact-modal {
      background: var(--white, #fff);
      color: var(--ink, #1a1f2e);
      border-radius: 6px;
      padding: 2.5rem 2.8rem;
      max-width: 420px; width: 90%;
      text-align: center;
      box-shadow: 0 20px 60px rgba(0,0,0,0.3);
      position: relative;
    }
    .contact-modal h3 {
      font-family: 'Cormorant Garamond', 'Playfair Display', serif;
      font-size: 1.4rem; font-weight: 600;
      color: var(--ink, #1a1f2e);
      margin-bottom: 0.75rem;
    }
    .contact-modal p { font-size: 0.95rem; color: var(--text-body, #374151); line-height: 1.65; margin-bottom: 1.5rem; }
    .contact-modal a.modal-email {
      display: inline-block;
      background: var(--teal, #2a9d8f);
      color: #fff !important;
      text-decoration: none;
      padding: 0.7rem 1.8rem;
      border-radius: 2px;
      font-size: 0.85rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 500;
      transition: background 0.2s;
    }
    .contact-modal a.modal-email:hover { background: var(--teal-light, #3bbfb0); }
    .contact-modal-close {
      position: absolute; top: 0.8rem; right: 1rem;
      background: none; border: none; font-size: 1.4rem;
      cursor: pointer; color: var(--text-muted, #6b7280);
      line-height: 1;
    }
    .contact-modal-close:hover { color: var(--ink, #1a1f2e); }
    /* ── Briefing page: small mobile ≤ 640px ── */
    @media (max-width: 640px) {
      /* Hero two-col flex → stack */
      .hero-inner { flex-direction: column !important; gap: 2rem !important; }
      /* Inline two-col grids → single col */
      .two-col { grid-template-columns: 1fr !important; }
      /* Inline three-col grids → single col */
      .three-col { grid-template-columns: 1fr !important; }
      /* Checkbox grid in form → single col */
      .dd-row { grid-template-columns: 1fr !important; }
      /* Section padding */
      section { padding: 3rem 1.25rem !important; }
      /* Footer */
      footer { padding: 1.5rem 1.25rem !important; }
      .footer-social { justify-content: center; }
      /* Form submit button full width */
      .form-submit-row { flex-direction: column !important; align-items: stretch !important; }
      .form-submit-row button { width: 100%; }
    }
  