
  /* HERO */
  .hero { padding: 1rem 0 3rem; border-bottom: 1px solid var(--border); margin-bottom: 3rem; }
  .hero-badge { display: inline-block; background: var(--orange-dim); border: 1px solid var(--orange-border); color: var(--orange); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 14px; border-radius: 20px; margin-bottom: 1.5rem; font-weight: 600; }
  .hero h1 { font-size: 48px; font-weight: 700; line-height: 1.08; margin-bottom: 1.25rem; color: var(--navy); letter-spacing: -1px; }
  .hero h1 span { color: var(--orange); }
  .hero-sub { font-size: 17px; color: var(--text-mid); line-height: 1.85; margin-bottom: 0.5rem; max-width: 580px; }
  .hero-tagline { font-size: 15px; color: var(--text-light); line-height: 1.85; max-width: 580px; }

  /* PROSE SECTION */
  .prose-section { margin-bottom: 3rem; }
  .prose-section h2 { font-size: 28px; font-weight: 700; margin-bottom: 1rem; color: var(--navy); letter-spacing: -0.5px; }
  .prose-section p { font-size: 16px; color: var(--text-mid); line-height: 1.85; margin-bottom: 0.875rem; }
  .prose-section p strong { color: var(--navy); }

  /* QUOTE / HIGHLIGHT BOX */
  .quote-block { background: var(--bg); border-left: 4px solid var(--orange); border-radius: 0 12px 12px 0; padding: 1.5rem 2rem; margin-bottom: 3rem; }
  .quote-block p { font-size: 15px; color: var(--text-mid); line-height: 1.85; font-style: italic; }
  .quote-block p strong { color: var(--navy); font-style: normal; }

  /* FEATURE CARDS (Our Approach) */
  .features-section { margin-bottom: 3.5rem; }
  .features-section h2 { font-size: 28px; font-weight: 700; margin-bottom: 1.5rem; color: var(--navy); letter-spacing: -0.5px; }
  .features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .feature-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 12px; padding: 1.5rem; transition: border-color 0.15s, box-shadow 0.15s; }
  .feature-card:hover { border-color: var(--orange); box-shadow: 0 2px 12px rgba(255,153,51,0.10); }
  .feature-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
  .feature-card h3::before { content: ''; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }
  .feature-card p { font-size: 13px; color: var(--text-mid); line-height: 1.7; }

  /* TEAM SECTION */
  .team-section { margin-bottom: 3.5rem; }
  .team-section h2 { font-size: 28px; font-weight: 700; margin-bottom: 0.75rem; color: var(--navy); letter-spacing: -0.5px; }
  .team-intro { font-size: 16px; color: var(--text-mid); line-height: 1.85; margin-bottom: 1.75rem; max-width: 700px; }
  .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .team-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 12px; overflow: hidden; transition: border-color 0.15s, box-shadow 0.15s; cursor: pointer; }
  .team-card:hover { border-color: var(--orange); box-shadow: 0 2px 12px rgba(255,153,51,0.10); }
  .team-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
  .team-card-body { padding: 1.25rem; }
  .team-card-name { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
  .team-card-role { font-size: 11px; font-weight: 600; color: var(--orange); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 8px; }
  .team-card-cta { font-size: 12px; color: var(--text-light); }

  /* TEAM MODAL */
  .modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 200; align-items: center; justify-content: center; padding: 2rem; }
  .modal-overlay.open { display: flex; }
  .modal { background: var(--white); border-radius: 16px; max-width: 600px; width: 100%; max-height: 85vh; overflow-y: auto; position: relative; }
  .modal-close { position: absolute; top: 16px; right: 16px; background: var(--bg); border: 1px solid var(--border); border-radius: 50%; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 18px; color: var(--text-mid); z-index: 10; }
  .modal-close:hover { border-color: var(--orange); color: var(--navy); }
  .modal-header { display: flex; align-items: center; gap: 1.25rem; padding: 2rem 2rem 1.25rem; }
  .modal-header img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
  .modal-header-text .team-card-name { font-size: 18px; margin-bottom: 2px; }
  .modal-header-text .team-card-role { font-size: 12px; margin-bottom: 0; }
  .modal-body { padding: 0 2rem 2rem; }
  .modal-body p { font-size: 14px; color: var(--text-mid); line-height: 1.85; margin-bottom: 0.75rem; }

  /* CTA BAR */
  .cta-bar { background: var(--orange-dim); border: 1.5px solid var(--orange-border); border-radius: 16px; padding: 2.5rem; text-align: center; }
  .cta-bar h3 { font-size: 22px; font-weight: 700; margin-bottom: 6px; color: var(--navy); letter-spacing: -0.3px; }
  .cta-bar p { font-size: 15px; color: var(--text-mid); margin-bottom: 1.75rem; }
  .btn-primary { display: inline-block; background: var(--orange); color: var(--navy); text-decoration: none; border: none; padding: 14px 32px; border-radius: 50px; font-size: 15px; font-weight: 700; cursor: pointer; font-family: inherit; transition: opacity 0.15s; }
  .btn-primary:hover { opacity: 0.88; }

  @media (max-width: 720px) {
    .hero h1 { font-size: 34px; }
    .features-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .cta-bar { padding: 2rem 1.5rem; }
  }