  :root {
    --navy: #0D1E35;
    --navy-mid: #0D2444;
    --brand-blue: #0D62AC;
    --brand-cyan: #39C0C5;
    --brand-sky: #43B3E6;
    --white: #FFFFFF;
    --off-white: #F4F8FC;
    --gray-100: #EBF1F8;
    --gray-300: #C2D0E0;
    --gray-500: #5A6F8A;
    --gray-700: #354F6B;
    --border: #E1E8F0;
    --radius: 16px;
    --radius-sm: 8px;
    --shadow: 0 10px 30px rgba(13,30,53,0.06);
    --shadow-lg: 0 24px 60px rgba(13,30,53,0.10);
    --brand-gradient: linear-gradient(135deg, #39C0C5 0%, #43B3E6 50%, #4579BC 100%);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--navy);
    background: var(--off-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  a { color: inherit; }
  .skip-nav {
    position: absolute; top: -100%; left: 1rem;
    background: var(--brand-cyan); color: var(--navy);
    padding: 0.6rem 1.2rem; border-radius: 0 0 8px 8px;
    font-weight: 700; font-size: 0.9rem; z-index: 9999;
    text-decoration: none; transition: top 0.2s;
  }
  .skip-nav:focus { top: 0; }
  :focus-visible { outline: 3px solid var(--brand-cyan); outline-offset: 3px; border-radius: 4px; }

  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 max(5%, calc((100vw - 1280px) / 2)); height: 76px;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(13,30,53,0.08);
  }
  .nav-logo, .footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .nav-logo svg, .footer-logo svg { flex-shrink: 0; }
  .nav-logo-text, .footer-logo-text {
    font-family: 'Sora', sans-serif;
    font-weight: 800; font-size: 1.4rem; letter-spacing: -0.5px;
    background: var(--brand-gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  }
  .footer-logo-text { font-size: 1.2rem; }
  .nav-links { display: flex; gap: clamp(1rem, 2vw, 2rem); align-items: center; }
  .nav-links a {
    font-size: 0.9rem; font-weight: 700; color: var(--gray-700);
    text-decoration: none; transition: color 0.2s;
    position: relative; padding: 0.45rem 0;
  }
  .nav-links a:not(.nav-cta)::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -20px;
    height: 3px; background: var(--brand-cyan);
    transform: scaleX(0); transform-origin: center; transition: transform 0.2s;
  }
  .nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--brand-blue); }
  .nav-links a[aria-current="page"]::after, .nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }
  .nav-links .nav-cta {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 112px; white-space: nowrap; line-height: 1;
    background: var(--navy); color: var(--white) !important;
    padding: 0.72rem 1.05rem; border-radius: var(--radius-sm);
    font-weight: 700 !important; font-size: 0.875rem !important;
  }
  .nav-hamburger {
    display: none; flex-direction: column; justify-content: center; align-items: center;
    width: 44px; height: 44px; background: none; border: none; cursor: pointer; padding: 8px; border-radius: 10px; z-index: 110;
  }
  .nav-hamburger .bar {
    display: block; width: 22px; height: 2px; background: var(--navy);
    border-radius: 2px; transition: transform 0.3s ease, opacity 0.2s ease;
  }
  .nav-hamburger .bar + .bar { margin-top: 5px; }
  .nav-hamburger[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
  .nav-hamburger[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-drawer {
    display: none; position: fixed; top: 76px; left: 0; right: 0; z-index: 99;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(10,22,40,0.08);
    padding: 1.5rem 5% 2rem; box-shadow: 0 12px 40px rgba(13,30,53,0.12);
    transform: translateY(-8px); opacity: 0; transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav-drawer.open { transform: translateY(0); opacity: 1; }
  .nav-drawer a {
    display: flex; align-items: center; padding: 0.85rem 0;
    font-size: 1rem; font-weight: 600; color: var(--gray-700);
    text-decoration: none; border-bottom: 1px solid var(--gray-100);
  }
  .nav-drawer .drawer-cta {
    justify-content: center; margin-top: 1.25rem; background: var(--brand-gradient);
    color: var(--white) !important; padding: 0.85rem 2rem; border-radius: 999px;
    font-weight: 800 !important; border-bottom: none !important;
  }

  .page-hero {
    position: relative; overflow: hidden;
    min-height: 84vh;
    display: flex; align-items: center;
    padding: 140px 5% 90px;
    background: linear-gradient(135deg, #08172B 0%, #0D1E35 50%, #0A3765 100%);
    color: var(--white);
  }
  .page-hero::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 68% 50% at 76% 24%, rgba(57,192,197,0.20), transparent 64%),
      radial-gradient(ellipse 50% 42% at 20% 74%, rgba(67,179,230,0.13), transparent 68%);
    animation: advisory-light 22s ease-in-out infinite alternate;
  }
  .page-hero::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 58% at 50% 50%, transparent 0%, rgba(5,14,29,0.18) 58%, rgba(5,14,29,0.56) 100%);
  }
  @keyframes advisory-light {
    0% { background-position: 52% 44%, 34% 64%; }
    100% { background-position: 70% 28%, 18% 80%; }
  }
  .hero-v-watermark {
    position: absolute; inset: 0; z-index: 0;
    display: flex; align-items: center; justify-content: center;
    pointer-events: none;
  }
  .hero-v-watermark svg {
    width: 62%; max-width: 680px; height: auto;
    opacity: 0.08; animation: v-breathe 8s ease-in-out infinite;
  }
  @keyframes v-breathe {
    0% { transform: scale(1); opacity: 0.07; }
    50% { transform: scale(1.16); opacity: 0.13; }
    100% { transform: scale(1); opacity: 0.07; }
  }
  .hero-inner {
    position: relative; z-index: 1;
    width: 100%; max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(390px, 0.62fr);
    gap: 5rem; align-items: center;
  }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    color: rgba(93,214,218,0.92);
    background: none; border: 0; border-radius: 0; padding: 0;
    font-size: 0.72rem; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase;
    margin-bottom: 1.4rem;
  }
  .eyebrow::before {
    content: ''; width: 34px; height: 1px; background: currentColor;
    opacity: 0.85; flex-shrink: 0;
  }
  .page-hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.6rem, 5vw, 5rem);
    line-height: 1.04; letter-spacing: 0; margin-bottom: 1.25rem;
  }
  .hero-copy {
    max-width: 680px; color: rgba(255,255,255,0.72);
    font-size: 1.12rem; line-height: 1.7; font-weight: 300;
    margin-bottom: 2rem;
  }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

  .advisory-card {
    background: rgba(255,255,255,0.94); color: var(--navy);
    border: 1px solid rgba(255,255,255,0.64);
    border-radius: 18px; padding: 1.5rem;
    box-shadow: 0 28px 80px rgba(2,10,24,0.22);
  }
  .advisory-card-head {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    padding-bottom: 1rem; margin-bottom: 1rem; border-bottom: 1px solid var(--border);
  }
  .advisory-card-head span {
    color: var(--brand-blue); font-size: 0.72rem; font-weight: 800;
    letter-spacing: 1px; text-transform: uppercase;
  }
  .advisory-card-head strong { font-family: 'Sora', sans-serif; font-size: 1rem; }
  .advisory-pillars { display: flex; flex-direction: column; gap: 0.65rem; }
  .advisory-pillar {
    display: flex; align-items: flex-start; gap: 0.75rem;
    padding: 0.85rem 1rem; border-radius: 12px;
    background: linear-gradient(180deg, #FBFDFF 0%, #F5F9FD 100%);
    border: 1px solid var(--border);
  }
  .advisory-pillar-icon {
    width: 30px; height: 30px; flex-shrink: 0; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(13,98,172,0.08); color: var(--brand-blue);
  }
  .advisory-pillar-icon svg { width: 16px; height: 16px; }
  .advisory-pillar-text { font-family: 'Sora', sans-serif; font-size: 0.9rem; font-weight: 700; line-height: 1.3; }

  section { padding: 92px 5%; }
  .section-inner { max-width: 1280px; margin: 0 auto; }
  .section-kicker {
    display: flex; align-items: center; gap: 12px;
    color: var(--brand-blue); font-size: 0.72rem; letter-spacing: 1.8px;
    text-transform: uppercase; font-weight: 800; margin-bottom: 0.9rem;
  }
  .section-kicker::before {
    content: ''; width: 28px; height: 1px; background: currentColor;
    opacity: 0.75; flex-shrink: 0;
  }
  .section-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.9rem, 3.4vw, 3.2rem);
    line-height: 1.12; margin-bottom: 1rem;
  }
  .section-copy {
    color: var(--gray-500); max-width: 650px;
    font-size: 1.05rem; line-height: 1.72;
  }

  .services-grid {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem; margin-top: 3.5rem;
  }
  .service-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 2rem;
    display: flex; flex-direction: column;
    box-shadow: var(--shadow);
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  }
  .service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(57,192,197,0.42);
    box-shadow: var(--shadow-lg);
  }
  .service-icon {
    width: 48px; height: 48px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--brand-blue); background: rgba(13,98,172,0.08);
    border: 1px solid rgba(13,98,172,0.12);
    margin-bottom: 1.25rem;
  }
  .service-icon svg { width: 24px; height: 24px; }
  .service-card h3 {
    font-family: 'Sora', sans-serif; font-size: 1.18rem;
    line-height: 1.25; margin-bottom: 0.75rem;
  }
  .service-card p { color: var(--gray-500); line-height: 1.68; font-size: 0.96rem; flex: 1; }
  .service-examples {
    margin-top: 1.25rem; padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    display: flex; flex-direction: column; gap: 0.4rem;
  }
  .service-example {
    display: flex; align-items: flex-start; gap: 0.55rem;
    font-size: 0.88rem; color: var(--gray-700); line-height: 1.5;
  }
  .service-example::before {
    content: '→'; color: var(--brand-cyan); font-weight: 800;
    font-size: 0.82rem; flex-shrink: 0; margin-top: 0.05rem;
  }

  .who-section { background: var(--white); }
  .who-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: start; margin-top: 3rem;
  }
  .who-list { display: flex; flex-direction: column; gap: 0.85rem; }
  .who-item {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1.2rem 1.25rem; background: var(--off-white);
    border: 1px solid var(--border); border-radius: var(--radius);
  }
  .who-dot {
    width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(57,192,197,0.12); color: var(--brand-cyan);
    font-weight: 800; font-size: 0.8rem;
  }
  .who-item-text h4 {
    font-family: 'Sora', sans-serif; font-size: 0.98rem;
    margin-bottom: 0.3rem;
  }
  .who-item-text p { color: var(--gray-500); font-size: 0.88rem; line-height: 1.6; }

  .process-section { background: var(--off-white); }
  .process-steps {
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem; margin-top: 3rem;
  }
  .process-step {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.75rem;
    box-shadow: var(--shadow); position: relative;
  }
  .step-number {
    font-family: 'Sora', sans-serif; font-size: 2.4rem; font-weight: 800;
    color: rgba(57,192,197,0.18); line-height: 1; margin-bottom: 1rem;
  }
  .process-step h3 {
    font-family: 'Sora', sans-serif; font-size: 1.05rem;
    margin-bottom: 0.6rem;
  }
  .process-step p { color: var(--gray-500); font-size: 0.92rem; line-height: 1.65; }

  .tailored-band { background: var(--off-white); }
  .tailored-panel {
    display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center;
    background: var(--navy); color: var(--white);
    border-radius: 20px; padding: 2.5rem;
    position: relative; overflow: hidden;
  }
  .tailored-panel::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 100% at 80% 20%, rgba(57,192,197,0.18), transparent 70%);
  }
  .tailored-panel > * { position: relative; z-index: 1; }
  .tailored-panel p { color: rgba(255,255,255,0.64); line-height: 1.65; max-width: 660px; margin-top: 0.75rem; }

  .btn-primary, .btn-ghost {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.92rem 1.45rem; border-radius: var(--radius-sm);
    text-decoration: none; font-weight: 800; font-size: 0.95rem;
    transition: transform 0.2s, filter 0.2s, border-color 0.2s;
  }
  .btn-primary { background: var(--brand-cyan); color: var(--navy); box-shadow: 0 10px 26px rgba(57,192,197,0.24); white-space: nowrap; }
  .btn-primary:hover { filter: brightness(0.96); transform: translateY(-2px); }
  .btn-ghost { border: 1.5px solid rgba(255,255,255,0.22); color: rgba(255,255,255,0.82); }
  .btn-ghost:hover { border-color: var(--brand-cyan); color: var(--brand-cyan); }

  .modal-overlay {
    position: fixed; inset: 0; z-index: 500;
    display: none; align-items: center; justify-content: center;
    padding: 1.5rem; background: rgba(5,14,29,0.62); backdrop-filter: blur(12px);
  }
  .modal-overlay.open { display: flex; }
  .risk-modal {
    width: min(760px, 100%); max-height: min(760px, calc(100vh - 3rem)); overflow: auto;
    background: var(--white); border: 1px solid rgba(255,255,255,0.72);
    border-radius: 18px; box-shadow: 0 32px 90px rgba(2,10,24,0.34);
  }
  .modal-head {
    position: sticky; top: 0; z-index: 1;
    display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem;
    padding: 1.6rem 1.75rem 1.25rem; background: rgba(255,255,255,0.96);
    border-bottom: 1px solid var(--border); backdrop-filter: blur(16px);
  }
  .modal-eyebrow { font-size: 0.72rem; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; color: var(--brand-blue); margin-bottom: 0.5rem; }
  .modal-title { font-family: 'Sora', sans-serif; font-size: clamp(1.35rem, 2.4vw, 1.9rem); line-height: 1.18; color: var(--navy); margin-bottom: 0.4rem; }
  .modal-copy { color: var(--gray-500); line-height: 1.55; font-size: 0.95rem; max-width: 560px; }
  .modal-close {
    width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--border);
    background: var(--off-white); color: var(--navy); cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
  }
  .modal-close svg { width: 18px; height: 18px; }
  .risk-form { padding: 1.75rem; }
  .form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
  .form-field { display: flex; flex-direction: column; gap: 0.45rem; }
  .form-field.full { grid-column: 1 / -1; }
  .form-field label, .choice-group legend { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.4px; color: var(--navy); text-transform: uppercase; }
  .form-field input, .form-field select, .form-field textarea {
    width: 100%; border: 1px solid var(--border); border-radius: 10px;
    background: #F8FBFE; color: var(--navy); padding: 0.82rem 0.9rem;
    font: inherit; font-size: 0.95rem;
  }
  .form-field textarea { min-height: 92px; resize: vertical; }
  .form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    border-color: var(--brand-cyan); background: var(--white); box-shadow: 0 0 0 4px rgba(57,192,197,0.12); outline: none;
  }
  .choice-group { grid-column: 1 / -1; border: 1px solid var(--border); border-radius: 14px; padding: 0.82rem 0.9rem 0.9rem; margin: 0; background: linear-gradient(180deg, #FBFDFF 0%, #F5F9FD 100%); }
  .choice-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.5rem; margin-top: 0.7rem; }
  .choice-chip {
    position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
    min-height: 36px; border: 1px solid var(--border); border-radius: 10px;
    background: var(--white); color: var(--gray-700); padding: 0.48rem 0.62rem;
    font-size: 0.82rem; font-weight: 800; cursor: pointer; user-select: none; text-align: center;
  }
  .choice-chip input { position: absolute; opacity: 0; pointer-events: none; }
  .choice-chip::before {
    content: ''; width: 7px; height: 7px; border-radius: 50%;
    background: var(--gray-300); box-shadow: 0 0 0 3px rgba(194,208,224,0.18); flex-shrink: 0;
  }
  .choice-chip:has(input:checked) { background: rgba(57,192,197,0.12); border-color: rgba(57,192,197,0.55); color: #005E62; box-shadow: 0 8px 20px rgba(57,192,197,0.10); }
  .choice-chip:has(input:checked)::before { background: var(--brand-cyan); box-shadow: 0 0 0 3px rgba(57,192,197,0.18); }
  .choice-chip:focus-within { border-color: var(--brand-cyan); box-shadow: 0 0 0 4px rgba(57,192,197,0.12); }
  .modal-actions { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
  .modal-note { color: var(--gray-500); font-size: 0.82rem; line-height: 1.45; }
  .modal-submit {
    border: none; cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
    background: var(--brand-cyan); color: var(--navy); padding: 0.9rem 1.25rem;
    border-radius: var(--radius-sm); font-weight: 800; font-size: 0.95rem; white-space: nowrap;
  }
  body.modal-open { overflow: hidden; }

  footer {
    background: var(--navy-mid);
    padding: 4rem 5% 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .footer-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.8fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-logo-block { display: flex; flex-direction: column; gap: 1rem; }
  .footer-logo { display: flex; align-items: center; gap: 10px; }
  .footer-logo svg { flex-shrink: 0; }
  .footer-logo-text {
    font-family: 'Sora', sans-serif;
    font-weight: 800; font-size: 1.2rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #39C0C5 0%, #43B3E6 55%, #4579BC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .footer-tagline { font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.6; max-width: 200px; }
  .footer-col-title {
    font-size: 0.68rem; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--brand-cyan);
    margin-bottom: 1.25rem;
  }
  .footer-address { display: flex; flex-direction: column; gap: 0.4rem; }
  .footer-address .biz-name { font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.85); margin-bottom: 0.25rem; }
  .footer-address p { font-size: 0.82rem; color: rgba(255,255,255,0.62); line-height: 1.6; }
  .footer-address a { font-size: 0.82rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; display: block; margin-top: 0.2rem; }
  .footer-address a:hover { color: var(--brand-cyan); }
  .footer-address .phone-highlight {
    font-size: 0.88rem; font-weight: 600; color: var(--brand-sky);
    text-decoration: none; margin-top: 0.5rem; display: block;
  }
  .footer-address .phone-highlight:hover { color: var(--brand-cyan); }
  .footer-hipaa { font-size: 0.82rem; color: rgba(255,255,255,0.62); line-height: 1.6; }
  .footer-hipaa a { color: rgba(255,255,255,0.55); text-decoration: underline; transition: color 0.2s; }
  .footer-hipaa a:hover { color: var(--brand-cyan); }
  .social-icons { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
  .social-icon {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem;
    transition: all 0.2s;
  }
  .social-icon:hover { background: var(--brand-cyan); border-color: var(--brand-cyan); color: var(--navy); }
  .footer-bottom {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 1.75rem; gap: 1rem; flex-wrap: wrap;
  }
  .footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.55); }
  .footer-bottom-links { display: flex; gap: 1.5rem; }
  .footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
  .footer-bottom-links a:hover { color: var(--brand-cyan); }

  @media (max-width: 1120px) {
    .nav-hamburger { display: flex; }
    .nav-links { display: none; }
    .nav-drawer { display: block; }
  }
  @media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
    .advisory-card { max-width: 520px; }
    .services-grid { grid-template-columns: 1fr; }
    .who-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .tailored-panel { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-logo-block { grid-column: span 2; }
  }
  @media (max-width: 700px) {
    .page-hero { min-height: auto; padding: 128px 5% 64px; }
    .page-hero h1 { font-size: clamp(2.4rem, 12vw, 3.5rem); }
    section { padding: 72px 5%; }
    .process-steps { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
  }
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  }
