:root {
    --bg: #ffffff;
    --surface: #f4f7fb;
    --surface2: #e8eef6;
    --border: rgba(0,100,200,0.10);
    --border2: rgba(0,100,200,0.20);
    --text: #0d2747;
    --text-muted: #5a7a9a;
    --accent: #0091c2;
    --accent-dark: #1565c0;
    --accent-dim: rgba(0,145,194,0.10);
    --accent-dim2: rgba(0,145,194,0.06);
    --blue-dark: #1565c0;
    --blue-mid: #0091c2;
    --blue-light: #00b8d9;
    --blue-xlight: #e3f4fa;
    --green: #16a34a;
    --green-bg: #f0fdf4;
    --green-border: rgba(22,163,74,0.2);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { background: var(--bg); color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 15px; line-height: 1.7; overflow-x: hidden; }
  a { color: inherit; text-decoration: none; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 40px; height: 64px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 16px rgba(21,101,192,0.06);
  }
  .nav-logo img { height: 38px; width: auto; display: block; }
  .nav-links { display: flex; gap: 2px; list-style: none; align-items: center; }
  .nav-links a {
    display: block; padding: 6px 15px; font-size: 13px; font-weight: 400;
    color: var(--text-muted); border-radius: 6px;
    transition: color 0.2s, background 0.2s; letter-spacing: 0.02em;
  }
  .nav-links a:hover, .nav-links a.active { color: var(--blue-dark); background: var(--accent-dim2); }
  .nav-links a.active { font-weight: 500; }
  .nav-cta { background: var(--blue-dark) !important; color: #fff !important; font-weight: 500 !important; padding: 7px 20px !important; border-radius: 8px !important; }
  .nav-cta:hover { background: var(--blue-mid) !important; }
  .nav-login {
    display: flex; align-items: center; gap: 6px;
    border: 1.5px solid var(--border2) !important;
    color: var(--blue-dark) !important; font-weight: 500 !important;
    padding: 6px 16px !important; border-radius: 8px !important;
    font-size: 13px !important;
  }
  .nav-login:hover { background: var(--accent-dim2) !important; border-color: var(--blue-mid) !important; }
  .nav-divider { width: 1px; height: 20px; background: var(--border2); margin: 0 6px; flex-shrink: 0; }

  /* SECTIONS */
  section { display: block; }

  /* HERO */
  .hero { min-height: 100vh; padding: 64px 0 0; display: grid; grid-template-columns: 1fr 1fr; position: relative; overflow: hidden; }
  .hero-grid-bg {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(21,101,192,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(21,101,192,0.04) 1px, transparent 1px);
    background-size: 48px 48px; pointer-events: none;
  }
  .hero-fade { position: absolute; bottom: 0; left: 0; right: 0; height: 200px; background: linear-gradient(transparent, var(--bg)); pointer-events: none; }
  .hero-left { padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 1; }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--blue-xlight); border: 1px solid rgba(0,145,194,0.25);
    padding: 5px 14px; border-radius: 100px;
    font-family: 'IBM Plex Mono', monospace; font-size: 11px;
    color: var(--blue-mid); letter-spacing: 0.08em; margin-bottom: 28px; width: fit-content;
  }
  .hero-tag::before { content: ''; width: 6px; height: 6px; background: var(--blue-light); border-radius: 50%; animation: blink 2s infinite; }
  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
  .hero-headline { font-family: 'Bebas Neue', sans-serif; font-size: clamp(48px, 5vw, 80px); line-height: 0.95; letter-spacing: 0.03em; color: var(--blue-dark); margin-bottom: 24px; }
  .hero-headline em { font-style: normal; color: var(--blue-light); }
  .hero-sub { font-size: 16px; color: var(--text-muted); line-height: 1.75; max-width: 420px; margin-bottom: 40px; }
  .hero-actions { display: flex; gap: 12px; align-items: center; }
  .btn-primary { background: var(--blue-dark); color: #fff; font-weight: 500; font-size: 14px; padding: 12px 28px; border-radius: 8px; border: none; cursor: pointer; transition: background 0.2s, transform 0.15s; font-family: 'DM Sans', sans-serif; }
  .btn-primary:hover { background: var(--blue-mid); transform: translateY(-1px); }
  .btn-ghost { background: transparent; color: var(--blue-dark); font-size: 14px; padding: 12px 24px; border-radius: 8px; border: 1.5px solid var(--border2); cursor: pointer; transition: all 0.2s; font-family: 'DM Sans', sans-serif; }
  .btn-ghost:hover { border-color: var(--blue-mid); background: var(--accent-dim2); }
  .hero-stats { display: flex; gap: 32px; margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--border); }
  .stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 36px; color: var(--blue-dark); letter-spacing: 0.04em; line-height: 1; }
  .stat-num span { color: var(--blue-light); }
  .stat-label { font-size: 12px; color: var(--text-muted); margin-top: 2px; letter-spacing: 0.03em; }
  .hero-right { position: relative; display: flex; align-items: center; justify-content: center; padding: 80px 64px 80px 0; z-index: 1; }
  .hero-visual { width: 100%; max-width: 440px; aspect-ratio: 1; position: relative; display: flex; align-items: center; justify-content: center; }
  #heroCanvas { width: 100%; height: 100%; display: block; }









 .vis-dot:nth-child(5){top:50%;right:5%} .vis-dot:nth-child(6){bottom:5%;left:50%} .vis-dot:nth-child(7){top:50%;left:5%}

 .vis-label:nth-child(9){right:0%;top:48%} .vis-label:nth-child(10){bottom:0%;left:40%} .vis-label:nth-child(11){left:0%;top:48%}

  /* PAGE SECTIONS */
  .page-section { min-height: 100vh; padding: 120px 64px 80px; }
  .section-tag { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--blue-mid); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
  .section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 3.5vw, 56px); letter-spacing: 0.03em; line-height: 1; color: var(--blue-dark); margin-bottom: 16px; }
  .section-sub { font-size: 15px; color: var(--text-muted); max-width: 520px; line-height: 1.7; margin-bottom: 56px; }

  /* SERVICES */
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; margin-bottom: 64px; }
  .service-card { background: var(--bg); padding: 36px 32px; transition: background 0.2s; cursor: default; }
  .service-card:hover { background: var(--surface); }
  .service-num { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--blue-light); letter-spacing: 0.08em; margin-bottom: 20px; }
  .service-icon { font-size: 28px; margin-bottom: 16px; }
  .service-title { font-size: 16px; font-weight: 500; color: var(--blue-dark); margin-bottom: 10px; line-height: 1.3; }
  .service-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
  .service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; }
  .tag { font-family: 'IBM Plex Mono', monospace; font-size: 10px; padding: 3px 8px; border-radius: 4px; background: var(--blue-xlight); border: 1px solid rgba(0,145,194,0.2); color: var(--blue-mid); letter-spacing: 0.04em; }

  /* PROCESS */
  .process-strip { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 40px 48px; display: grid; grid-template-columns: repeat(5, 1fr); }
  .process-step { padding: 0 20px; border-right: 1px solid var(--border); }
  .process-step:last-child { border-right: none; }
  .process-step-num { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--blue-light); margin-bottom: 10px; }
  .process-step-title { font-size: 13px; font-weight: 500; color: var(--blue-dark); margin-bottom: 6px; }
  .process-step-desc { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

  /* PRODUCTS */
  .products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .product-card { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 28px 24px; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; }
  .product-card:hover { border-color: rgba(0,145,194,0.35); box-shadow: 0 4px 24px rgba(21,101,192,0.08); transform: translateY(-2px); }
  .product-badge { display: inline-block; font-family: 'IBM Plex Mono', monospace; font-size: 10px; padding: 3px 8px; border-radius: 4px; border: 1px solid; letter-spacing: 0.06em; margin-bottom: 20px; }
  .badge-new { border-color: var(--blue-light); color: var(--blue-mid); background: var(--blue-xlight); }
  .badge-flagship { border-color: var(--blue-dark); color: var(--blue-dark); background: rgba(21,101,192,0.07); }
  .badge-pro { border-color: var(--border2); color: var(--text-muted); background: var(--surface); }
  .badge-iaq { border-color: var(--green); color: var(--green); background: var(--green-bg); }
  .badge-iaq-plus { border-color: #b45309; color: #b45309; background: #fffbeb; }
  .product-visual { width: 100%; height: 130px; background: var(--surface); border-radius: 8px; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
  .product-visual::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(0,145,194,0.10) 0%, transparent 70%); }
  .product-visual-icon { font-size: 38px; position: relative; z-index: 1; }
  .product-name { font-size: 17px; font-weight: 500; color: var(--blue-dark); margin-bottom: 4px; }
  .product-model { font-family: 'IBM Plex Mono', monospace; font-size: 10px; color: var(--text-muted); margin-bottom: 10px; letter-spacing: 0.04em; }
  .product-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
  .product-specs { display: flex; flex-direction: column; }
  .spec-row { display: flex; justify-content: space-between; align-items: center; padding: 5px 0; border-bottom: 1px solid var(--border); font-size: 12px; }
  .spec-row:last-child { border-bottom: none; }
  .spec-label { color: var(--text-muted); }
  .spec-val { color: var(--blue-dark); font-family: 'IBM Plex Mono', monospace; font-size: 10px; text-align: right; max-width: 55%; }
  .product-action { margin-top: 16px; display: flex; gap: 8px; }
  .btn-sm { font-size: 12px; padding: 7px 14px; border-radius: 6px; border: 1px solid var(--border2); background: transparent; color: var(--text); cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.2s; }
  .btn-sm:hover { border-color: var(--blue-mid); color: var(--blue-dark); background: var(--accent-dim2); }
  .btn-sm-accent { background: var(--blue-xlight); border-color: rgba(0,145,194,0.25); color: var(--blue-dark); }
  .btn-sm-accent:hover { background: var(--blue-dark); color: #fff; border-color: var(--blue-dark); }

  /* IAQ PRODUCT SECTION */
  .iaq-section-header {
    display: flex; align-items: center; gap: 12px;
    margin: 56px 0 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border2);
  }
  .iaq-section-title {
    font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--blue-dark); letter-spacing: 0.04em;
  }
  .iaq-section-badge {
    font-family: 'IBM Plex Mono', monospace; font-size: 10px; padding: 4px 10px;
    border-radius: 4px; background: var(--green-bg); border: 1px solid var(--green-border);
    color: var(--green); letter-spacing: 0.06em;
  }
  .iaq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .iaq-card {
    background: var(--bg); border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  }
  .iaq-card:hover { border-color: rgba(0,145,194,0.3); box-shadow: 0 6px 32px rgba(21,101,192,0.10); transform: translateY(-3px); }
  .iaq-card-header {
    padding: 28px 28px 20px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg, var(--blue-xlight) 0%, #fff 60%);
  }
  .iaq-card-header.plus { background: linear-gradient(135deg, #fffbeb 0%, #fff 60%); }
  .iaq-brand { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--blue-dark); letter-spacing: 0.05em; line-height: 1; margin-bottom: 4px; }
  .iaq-brand span { color: var(--blue-light); }
  .iaq-tagline { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
  .iaq-param-pills { display: flex; flex-wrap: wrap; gap: 6px; }
  .iaq-pill {
    font-family: 'IBM Plex Mono', monospace; font-size: 10px;
    padding: 3px 9px; border-radius: 100px;
    background: rgba(21,101,192,0.08); border: 1px solid rgba(21,101,192,0.18);
    color: var(--blue-dark); letter-spacing: 0.04em;
  }
  .iaq-pill.optional { background: rgba(180,83,9,0.07); border-color: rgba(180,83,9,0.2); color: #b45309; }
  .iaq-body { padding: 24px 28px; }
  .iaq-spec-group { margin-bottom: 20px; }
  .iaq-spec-group-title {
    font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.08em;
    color: var(--blue-mid); text-transform: uppercase; margin-bottom: 10px;
    padding-bottom: 6px; border-bottom: 1px solid var(--border);
  }
  .iaq-spec-table { width: 100%; }
  .iaq-spec-row { display: flex; justify-content: space-between; padding: 4px 0; font-size: 12px; }
  .iaq-spec-key { color: var(--text-muted); flex: 1; }
  .iaq-spec-val { color: var(--blue-dark); font-family: 'IBM Plex Mono', monospace; font-size: 10px; text-align: right; flex: 1.2; }
  .iaq-footer { padding: 16px 28px; border-top: 1px solid var(--border); background: var(--surface); display: flex; gap: 8px; align-items: center; }
  .compare-note { font-size: 11px; color: var(--text-muted); font-style: italic; }
  .plus-badge-inline {
    display: inline-flex; align-items: center; gap: 4px;
    background: #fffbeb; border: 1px solid rgba(180,83,9,0.25);
    padding: 2px 8px; border-radius: 4px;
    font-family: 'IBM Plex Mono', monospace; font-size: 10px; color: #b45309; letter-spacing: 0.04em;
  }

  /* INDUSTRIES */
  .industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 64px; }
  .industry-card { background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 24px 20px; transition: border-color 0.2s, box-shadow 0.2s; }
  .industry-card:hover { border-color: rgba(0,145,194,0.3); box-shadow: 0 2px 12px rgba(21,101,192,0.06); }
  .industry-icon { font-size: 26px; margin-bottom: 12px; }
  .industry-name { font-size: 15px; font-weight: 500; color: var(--blue-dark); margin-bottom: 6px; }
  .industry-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

  /* ABOUT */
  .about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .about-body { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
  .about-highlight { color: var(--blue-dark); }
  .cert-strip { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
  .cert-pill { font-family: 'IBM Plex Mono', monospace; font-size: 11px; padding: 5px 12px; border: 1px solid var(--border2); border-radius: 100px; color: var(--text-muted); letter-spacing: 0.03em; }
  .team-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
  .team-stat { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 20px; }
  .team-stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 40px; color: var(--blue-dark); line-height: 1; }
  .team-stat-num span { color: var(--blue-light); }
  .team-stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
  .values-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
  .value-row { background: var(--bg); padding: 16px 20px; display: flex; gap: 16px; align-items: flex-start; }
  .value-num { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--blue-light); flex-shrink: 0; margin-top: 2px; }
  .value-title { font-size: 15px; font-weight: 500; color: var(--blue-dark); margin-bottom: 3px; }
  .value-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

  /* CONTACT */
  .contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
  .contact-form { display: flex; flex-direction: column; gap: 16px; }
  .form-label { display: block; font-size: 12px; color: var(--text-muted); margin-bottom: 6px; font-family: 'IBM Plex Mono', monospace; letter-spacing: 0.04em; }
  .form-input, .form-select, .form-textarea { width: 100%; background: var(--surface); border: 1px solid var(--border2); border-radius: 8px; padding: 11px 14px; color: var(--text); font-size: 14px; font-family: 'DM Sans', sans-serif; outline: none; transition: all 0.2s; }
  .form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--blue-mid); box-shadow: 0 0 0 3px rgba(0,145,194,0.10); }
  .form-textarea { min-height: 120px; resize: vertical; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .info-block { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 20px; margin-bottom: 10px; }
  .info-block-title { font-size: 11px; font-weight: 500; color: var(--blue-mid); margin-bottom: 4px; font-family: 'IBM Plex Mono', monospace; letter-spacing: 0.06em; }
  .info-block-val { font-size: 14px; color: var(--text-muted); }
  .info-block-val a { color: var(--blue-dark); }

  /* LOGIN PAGE */
  .login-wrapper { min-height: 100vh; padding: 64px 0 0; display: flex; align-items: center; justify-content: center; position: relative; }
  .login-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(21,101,192,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(21,101,192,0.04) 1px, transparent 1px); background-size: 48px 48px; }
  .login-card { background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 48px 44px; width: 100%; max-width: 420px; position: relative; z-index: 1; box-shadow: 0 8px 48px rgba(21,101,192,0.10); }
  .login-logo { display: flex; justify-content: center; margin-bottom: 32px; }
  .login-logo img { height: 40px; }
  .login-title { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--blue-dark); letter-spacing: 0.04em; text-align: center; margin-bottom: 4px; }
  .login-sub { font-size: 13px; color: var(--text-muted); text-align: center; margin-bottom: 32px; }
  .login-form { display: flex; flex-direction: column; gap: 16px; }
  .login-divider { display: flex; align-items: center; gap: 12px; margin: 8px 0; }
  .login-divider-line { flex: 1; height: 1px; background: var(--border); }
  .login-divider-text { font-size: 11px; color: var(--text-muted); font-family: 'IBM Plex Mono', monospace; letter-spacing: 0.06em; }
  .btn-login { width: 100%; background: var(--blue-dark); color: #fff; font-size: 15px; font-weight: 500; padding: 13px; border-radius: 8px; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: background 0.2s; }
  .btn-login:hover { background: var(--blue-mid); }
  .login-footer { text-align: center; margin-top: 20px; font-size: 12px; color: var(--text-muted); }
  .login-footer a { color: var(--blue-dark); }
  .login-tabs { display: flex; background: var(--surface); border-radius: 8px; padding: 3px; margin-bottom: 24px; }
  .login-tab { flex: 1; padding: 7px; border-radius: 6px; font-size: 13px; font-weight: 400; color: var(--text-muted); text-align: center; cursor: pointer; transition: all 0.2s; border: none; background: transparent; font-family: 'DM Sans', sans-serif; }
  .login-tab.active { background: var(--bg); color: var(--blue-dark); font-weight: 500; box-shadow: 0 1px 4px rgba(0,0,0,0.08); }

  /* CTA BANNER */
  .cta-banner { margin-top: 64px; background: var(--blue-dark); border-radius: 12px; padding: 48px 56px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
  .cta-banner-title { font-family: 'Bebas Neue', sans-serif; font-size: 36px; letter-spacing: 0.04em; color: #fff; line-height: 1; margin-bottom: 6px; }
  .cta-banner-sub { font-size: 14px; color: rgba(255,255,255,0.7); }
  .cta-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
  .btn-primary-inv { background: #fff; color: var(--blue-dark); font-weight: 500; font-size: 14px; padding: 12px 28px; border-radius: 8px; border: none; cursor: pointer; transition: background 0.2s; font-family: 'DM Sans', sans-serif; }
  .btn-primary-inv:hover { background: var(--blue-xlight); }
  .btn-ghost-inv { background: transparent; color: #fff; font-size: 14px; padding: 12px 24px; border-radius: 8px; border: 1.5px solid rgba(255,255,255,0.35); cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.2s; }
  .btn-ghost-inv:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

  /* FOOTER */
  footer { border-top: 1px solid var(--border); padding: 28px 64px; display: flex; align-items: center; justify-content: space-between; background: var(--surface); }
  .footer-left { display: flex; align-items: center; gap: 14px; }
  .footer-dvr-logo { height: 34px; width: auto; }
  .footer-copy { font-size: 12px; color: var(--text-muted); }
  .footer-links { display: flex; gap: 20px; }
  .footer-links a { font-size: 12px; color: var(--text-muted); transition: color 0.2s; }
  .footer-links a:hover { color: var(--blue-dark); }

  @media (max-width: 900px) {
    nav { padding: 0 16px; }
    .nav-logo img { height: 28px; }
    .hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .page-section { padding: 80px 20px 60px; }
    .services-grid, .products-grid, .iaq-grid, .about-layout, .contact-layout { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: 1fr 1fr; }
    .process-strip { grid-template-columns: 1fr 1fr; }
    .hero-left { padding: 60px 20px; }
    footer { flex-direction: column; gap: 12px; padding: 20px; }
    .cta-banner { flex-direction: column; padding: 28px 20px; }
  }

  /* ── PRODUCT JOURNEY ─────────────────────────────────── */
  .prod-journey-wrap {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 72px 64px 64px;
  }
  .prod-journey-header { text-align: center; margin-bottom: 56px; }
  .prod-journey-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 3vw, 52px);
    letter-spacing: 0.04em;
    color: var(--blue-dark);
    line-height: 1;
    margin-bottom: 14px;
  }
  .prod-journey-sub {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
  }

  /* Snake layout */
  .pj-snake { display: flex; flex-direction: column; gap: 0; }
  .pj-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
  }

  .pj-card {
    position: relative;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 32px 28px 32px;
    transition: background 0.2s, border-color 0.2s;
  }
  .pj-row-top .pj-card:first-child  { border-radius: 12px 0 0 0; }
  .pj-row-top .pj-card:last-child   { border-radius: 0 12px 0 0; }
  .pj-row-bottom .pj-card:first-child { border-radius: 0 0 0 12px; }
  .pj-row-bottom .pj-card:last-child  { border-radius: 0 0 12px 0; }

  /* Remove double-borders between cells */
  .pj-row-top .pj-card:not(:first-child)   { border-left: none; }
  .pj-row-bottom .pj-card:not(:first-child) { border-left: none; }
  .pj-row-bottom .pj-card { border-top: none; }

  .pj-card:hover { background: #f0f7ff; border-color: rgba(0,145,194,0.25); }

  .pj-step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    line-height: 1;
    color: rgba(21,101,192,0.08);
    position: absolute;
    top: 16px; right: 20px;
    letter-spacing: 0.02em;
    user-select: none;
    pointer-events: none;
    transition: color 0.2s;
  }
  .pj-card:hover .pj-step-num { color: rgba(21,101,192,0.14); }
  .pj-num-accent { color: rgba(0,145,194,0.08) !important; }

  .pj-icon-wrap {
    width: 44px; height: 44px;
    border: 1px solid var(--border2);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    background: var(--bg);
    transition: border-color 0.2s, background 0.2s;
  }
  .pj-card:hover .pj-icon-wrap { border-color: rgba(0,145,194,0.35); background: var(--blue-xlight); }
  .pj-icon { font-size: 22px; line-height: 1; }

  .pj-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--blue-dark);
    margin-bottom: 10px;
    letter-spacing: 0.01em;
  }
  .pj-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.75;
  }

  /* Stage number indicator at top-left of each title */
  .pj-card-body { position: relative; z-index: 1; }

  /* ── CONNECTORS ──────────────────────────────────────── */
  /* Right arrow between top-row cards */
  .pj-conn-right {
    position: absolute;
    top: 50%; right: -22px;
    transform: translateY(-50%);
    display: flex; align-items: center; gap: 0;
    z-index: 10;
    pointer-events: none;
  }
  .pj-conn-left {
    position: absolute;
    top: 50%; left: -22px;
    transform: translateY(-50%);
    display: flex; align-items: center;
    z-index: 10;
    pointer-events: none;
  }
  .pj-arrow-line {
    width: 20px; height: 1.5px;
    background: linear-gradient(90deg, rgba(0,145,194,0.3), rgba(0,145,194,0.7));
  }
  .pj-arrow-line:has(~ .pj-arrowhead) {
    background: linear-gradient(90deg, rgba(0,145,194,0.3), rgba(0,145,194,0.7));
  }
  .pj-arrowhead {
    font-size: 9px; color: var(--blue-mid);
    line-height: 1; margin-left: -1px;
  }
  .pj-ah-left { margin-left: 0; margin-right: -1px; }

  /* Down connector from card 3 top → card 1 bottom */
  .pj-conn-down-right {
    position: absolute;
    bottom: -40px; right: 50%;
    transform: translateX(50%);
    display: flex; flex-direction: column; align-items: center;
    z-index: 10; pointer-events: none;
    height: 40px;
  }
  .pj-conn-down-left {
    position: absolute;
    bottom: -40px; right: 50%;
    transform: translateX(50%);
    display: flex; flex-direction: column; align-items: center;
    z-index: 10; pointer-events: none;
    height: 40px;
  }
  .pj-arrow-line-v {
    width: 1.5px;
    flex: 1;
    background: linear-gradient(180deg, rgba(0,145,194,0.7), rgba(0,145,194,0.3));
  }
  .pj-arrowhead-down { font-size: 9px; color: var(--blue-mid); margin-top: -2px; }

  /* Bottom row mirror (reversed card order visual) */
  .pj-row-bottom { direction: rtl; }
  .pj-row-bottom .pj-card { direction: ltr; }

  /* CTA strip */
  .pj-cta-strip {
    margin-top: 48px;
    display: flex; align-items: center; justify-content: center;
    gap: 24px;
    padding: 24px 32px;
    background: var(--blue-xlight);
    border: 1px solid rgba(0,145,194,0.2);
    border-radius: 10px;
  }
  .pj-cta-text { font-size: 15px; color: var(--blue-dark); font-weight: 500; }

  @media (max-width: 900px) {
    .prod-journey-wrap { padding: 48px 20px 40px; }
    .pj-row { grid-template-columns: 1fr; }
    .pj-row-bottom { direction: ltr; }
    .pj-conn-right, .pj-conn-left, .pj-conn-down-right, .pj-conn-down-left { display: none; }
    .pj-row-top .pj-card, .pj-row-bottom .pj-card { border-radius: 0 !important; border-left: 1px solid var(--border) !important; border-top: 1px solid var(--border) !important; }
    .pj-row-top .pj-card:first-child { border-radius: 12px 12px 0 0 !important; }
    .pj-row-bottom .pj-card:last-child { border-radius: 0 0 12px 12px !important; }
    .pj-cta-strip { flex-direction: column; text-align: center; }
  }


  /* ── CAROUSEL ────────────────────────────────────────────── */
  .hero-carousel {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding-top: 64px;
  }
  .hero-slide {
    position: absolute;
    top: 64px; left: 0; right: 0; bottom: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease, transform 0.9s cubic-bezier(0.4,0,0.2,1);
    transform: translateX(48px);
    z-index: 1;
  }
  .hero-slide:first-of-type { position: relative; top: 0; }
  .hero-slide:not(:first-of-type) { top: 64px; }
  .hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    z-index: 2;
    position: absolute;
    top: 64px;
  }
  .hero-slide:first-of-type.active { top: 0; position: relative; }
  .hero-slide-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 64px);
  }
  .hero-slide-inner > .hero-left { padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 1; }
  .hero-slide-inner > .hero-right { position: relative; display: flex; align-items: center; justify-content: center; padding: 80px 64px 80px 0; z-index: 1; }

  /* Arrow buttons */
  .carousel-arrow {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.92);
    border: 1.5px solid var(--border2);
    border-radius: 50%;
    color: var(--blue-dark);
    cursor: pointer; z-index: 20;
    transition: all 0.2s;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(21,101,192,0.10);
    font-size: 16px;
    font-weight: 600;
    padding: 0;
  }
  .carousel-arrow:hover {
    background: var(--blue-dark); color: #fff;
    border-color: var(--blue-dark);
    box-shadow: 0 6px 24px rgba(21,101,192,0.30);
    transform: translateY(-50%) scale(1.06);
  }
  .carousel-prev { left: 24px; }
  .carousel-next { right: 24px; }

  /* Dots + progress */
  .carousel-controls {
    position: absolute;
    bottom: 28px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    z-index: 20;
  }
  .carousel-dots {
    display: flex; gap: 8px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px;
    box-shadow: 0 4px 16px rgba(21,101,192,0.10);
  }
  .carousel-dot {
    display: flex; flex-direction: column; align-items: center;
    gap: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px 14px;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    opacity: 0.55;
    transition: all 0.25s;
  }
  .carousel-dot:hover { opacity: 0.85; }
  .carousel-dot.active {
    opacity: 1;
    background: var(--blue-xlight);
  }
  .dot-num { font-family: 'IBM Plex Mono', monospace; font-size: 9px; color: var(--blue-mid); letter-spacing: 0.08em; line-height: 1; }
  .dot-name { font-size: 11px; font-weight: 500; color: var(--blue-dark); letter-spacing: 0.02em; line-height: 1.4; }
  .carousel-progress {
    width: 200px; height: 2px;
    background: rgba(0,145,194,0.18);
    border-radius: 2px;
    overflow: hidden;
  }
  .carousel-progress-bar {
    width: 0%; height: 100%;
    background: linear-gradient(90deg, var(--blue-dark), var(--blue-light));
    border-radius: 2px;
    transition: width 0.1s linear;
  }

  /* Stats strip */
  .stats-strip-section {
    background: var(--blue-dark);
    padding: 40px 64px;
    position: relative;
    z-index: 3;
  }
  .stats-strip-inner {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
  }
  .stat-card {
    padding: 0 20px;
    border-right: 1px solid rgba(255,255,255,0.12);
    text-align: center;
  }
  .stat-card:last-child { border-right: none; }
  .stat-card-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 44px;
    color: #fff;
    letter-spacing: 0.04em;
    line-height: 1;
    margin-bottom: 6px;
  }
  .stat-card-num span { color: var(--blue-light); }
  .stat-card-label {
    font-size: 11.5px;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  @media (max-width: 900px) {
    .hero-slide-inner { grid-template-columns: 1fr; }
    .hero-slide-inner > .hero-right { display: none; }
    .hero-slide-inner > .hero-left { padding: 60px 24px 110px; }
    .carousel-arrow { width: 38px; height: 38px; font-size: 14px; }
    .carousel-prev { left: 10px; }
    .carousel-next { right: 10px; }
    .carousel-controls { bottom: 16px; gap: 8px; }
    .carousel-dots { padding: 4px; }
    .carousel-dot { padding: 4px 8px; }
    .dot-name { font-size: 9px; }
    .carousel-progress { width: 140px; }
    .stats-strip-section { padding: 28px 16px; }
    .stats-strip-inner { grid-template-columns: 1fr 1fr 1fr; gap: 16px 0; }
    .stat-card { padding: 12px 8px; border-right: 1px solid rgba(255,255,255,0.12); border-bottom: 1px solid rgba(255,255,255,0.12); }
    .stat-card:nth-child(3n) { border-right: none; }
    .stat-card:nth-child(n+4) { border-bottom: none; }
    .stat-card-num { font-size: 32px; }
  }


  /* ── PRODUCT ANATOMY (EXPLODED VIEW) ────────────────────── */
  .anatomy-section {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 80px 64px 80px;
  }
  .anatomy-header { text-align: center; margin-bottom: 48px; max-width: 720px; margin-left: auto; margin-right: auto; }
  .anatomy-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 3vw, 52px);
    letter-spacing: 0.04em;
    color: var(--blue-dark);
    line-height: 1;
    margin-bottom: 14px;
  }
  .anatomy-sub {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0 auto;
    max-width: 580px;
  }

  .anatomy-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 32px;
    align-items: stretch;
    max-width: 1280px;
    margin: 0 auto;
  }
  .anatomy-canvas-wrap {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .anatomy-canvas-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    background: var(--bg);
    display: flex; align-items: center; justify-content: space-between;
  }
  .anatomy-canvas-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--blue-mid);
    letter-spacing: 0.08em;
    margin-bottom: 2px;
  }
  .anatomy-canvas-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--blue-dark);
  }
  .anatomy-canvas-status {
    display: flex; align-items: center; gap: 6px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.06em;
  }
  .anatomy-status-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #16a34a;
    box-shadow: 0 0 6px rgba(22,163,74,0.6);
    animation: anatomyDotPulse 1.4s ease-in-out infinite;
  }
  @keyframes anatomyDotPulse { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }
  #anatomyCanvas {
    width: 100%;
    height: auto;
    display: block;
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(244,247,251,1) 100%);
  }

  .anatomy-info {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px 28px;
    display: flex; flex-direction: column;
  }
  .anatomy-info-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--blue-mid);
    letter-spacing: 0.10em;
    margin-bottom: 8px;
  }
  .anatomy-info-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    color: var(--blue-dark);
    letter-spacing: 0.03em;
    line-height: 1;
    margin-bottom: 4px;
  }
  .anatomy-info-name-light { color: var(--blue-light); font-size: 24px; vertical-align: super; margin-left: 2px; }
  .anatomy-info-model {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    margin-bottom: 18px;
  }
  .anatomy-info-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .anatomy-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
  }
  .anatomy-stat {
    background: var(--surface);
    padding: 12px 14px;
  }
  .anatomy-stat-key {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 4px;
  }
  .anatomy-stat-val {
    font-size: 13px;
    color: var(--blue-dark);
    font-weight: 500;
  }
  .anatomy-stat-live {
    display: flex; align-items: center; gap: 6px;
    color: #16a34a;
  }
  .anatomy-live-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #16a34a;
    box-shadow: 0 0 4px rgba(22,163,74,0.7);
    animation: anatomyDotPulse 1.4s ease-in-out infinite;
  }

  .anatomy-cta-row {
    display: flex; gap: 8px;
    margin-top: auto;
  }

  @media (max-width: 900px) {
    .anatomy-section { padding: 56px 20px 56px; }
    .anatomy-layout { grid-template-columns: 1fr; gap: 16px; }
    .anatomy-info { padding: 24px 20px; }
    .anatomy-info-name { font-size: 36px; }
  }



  /* ── CAPABILITIES (SEO CONTENT) ─────────────────────────── */
  .capabilities-section {
    background: var(--bg);
    padding: 80px 64px;
    border-top: 1px solid var(--border);
  }
  .capabilities-inner { max-width: 1280px; margin: 0 auto; }
  .capabilities-header { text-align: center; margin-bottom: 56px; }
  .capabilities-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 3vw, 50px);
    letter-spacing: 0.04em;
    color: var(--blue-dark);
    line-height: 1.05;
    margin-bottom: 16px;
  }
  .capabilities-sub {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 820px;
    margin: 0 auto;
  }
  .capabilities-sub strong { color: var(--blue-dark); font-weight: 500; }

  .capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
  }
  .capability-block {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px 28px;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .capability-block:hover {
    border-color: rgba(0,145,194,0.3);
    box-shadow: 0 4px 24px rgba(21,101,192,0.08);
  }
  .capability-icon {
    font-size: 32px;
    margin-bottom: 18px;
  }
  .capability-h3 {
    font-size: 17px;
    font-weight: 500;
    color: var(--blue-dark);
    margin-bottom: 14px;
    letter-spacing: 0.01em;
    line-height: 1.3;
  }
  .capability-body {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 18px;
  }
  .capability-body strong {
    color: var(--blue-dark);
    font-weight: 500;
  }
  .capability-tags {
    display: flex; flex-wrap: wrap; gap: 6px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }
  .cap-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    padding: 3px 9px;
    background: var(--blue-xlight);
    color: var(--blue-mid);
    border: 1px solid rgba(0,145,194,0.18);
    border-radius: 4px;
    letter-spacing: 0.04em;
  }

  .partners-strip {
    margin-top: 16px;
    padding: 18px 24px;
    background: var(--surface);
    border: 1px dashed var(--border2);
    border-radius: 10px;
    display: flex; align-items: center; gap: 16px;
  }
  .partners-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--blue-mid);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    flex-shrink: 0;
  }
  .partners-content {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
  }

  @media (max-width: 900px) {
    .capabilities-section { padding: 56px 20px; }
    .capabilities-grid { grid-template-columns: 1fr; gap: 12px; }
    .capability-block { padding: 24px 20px; }
    .partners-strip { flex-direction: column; align-items: flex-start; padding: 16px; }
  }



  /* ── RICH SITE FOOTER (SEO) ─────────────────────────────── */
  .site-footer-rich {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 56px 64px 24px;
    display: block;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
  }
  .footer-col { display: flex; flex-direction: column; }
  .footer-col-about .footer-dvr-logo { height: 38px; width: auto; margin-bottom: 14px; }
  .footer-col-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--blue-dark);
    margin-bottom: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
  }
  .footer-about-text {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
  }
  .footer-about-text strong { color: var(--blue-dark); font-weight: 500; }
  .footer-cert-row { display: flex; flex-wrap: wrap; gap: 5px; }
  .footer-cert {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9.5px;
    padding: 3px 8px;
    border: 1px solid var(--border2);
    border-radius: 100px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
  }
  .footer-links-list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 5px;
  }
  .footer-links-list li a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.6;
    display: inline-block;
  }
  .footer-links-list li a:hover { color: var(--blue-dark); }

  .footer-contact-block {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
  }
  .footer-contact-block a { color: var(--blue-mid); text-decoration: none; }
  .footer-contact-block a:hover { color: var(--blue-dark); text-decoration: underline; }

  .footer-seo-strip {
    margin: 40px 0 24px;
    padding: 18px 24px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-seo-strip strong { color: var(--blue-dark); font-weight: 500; }

  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    max-width: 1400px;
    margin: 0 auto;
  }
  .footer-bottom-left { font-size: 11.5px; color: var(--text-muted); }
  .footer-bottom-right { display: flex; gap: 18px; }
  .footer-bottom-right a {
    font-size: 11.5px; color: var(--text-muted); text-decoration: none;
    transition: color 0.2s;
  }
  .footer-bottom-right a:hover { color: var(--blue-dark); }

  @media (max-width: 900px) {
    .site-footer-rich { padding: 40px 20px 20px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .footer-col-about { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .footer-bottom-right { flex-wrap: wrap; justify-content: center; }
    .footer-seo-strip { font-size: 11px; padding: 14px; }
  }



  /* ── TOP ANNOUNCEMENT BAR ───────────────────────────── */
  .topbar {
    position: fixed; top: 0; left: 0; right: 0;
    height: 32px; z-index: 101;
    background: var(--blue-dark);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    letter-spacing: 0.02em;
  }
  .topbar-inner { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; padding: 0 16px; }
  .topbar-flag { font-size: 14px; line-height: 1; }
  .topbar-text strong { color: var(--blue-light); font-weight: 600; }
  .topbar-divider { color: rgba(255,255,255,0.3); }
  .topbar-link { color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.2s; }
  .topbar-link:hover { color: var(--blue-light); }

  /* Push nav and content down to accommodate topbar */
  nav { top: 32px !important; }
  body { padding-top: 32px; }
  .hero-carousel { padding-top: 64px; }
  .hero-slide.active { top: 64px; }
  .login-wrapper { padding-top: 64px; }

  @media (max-width: 760px) {
    .topbar { height: auto; padding: 6px 0; }
    .topbar-inner { gap: 6px; font-size: 11px; }
    .topbar-divider, .topbar-link { display: none; }
    body { padding-top: 28px; }
    nav { top: 28px !important; }
  }



  /* ── NEW CONTACT SECTION ──────────────────────────────── */
  .contact-page { max-width: 1100px; margin: 0 auto; }
  .contact-form-wrap {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 56px;
  }
  .contact-form-header {
    padding: 20px 32px;
    background: var(--blue-dark);
    color: #fff;
  }
  .contact-form-step {
    display: flex; align-items: center; gap: 14px;
  }
  .contact-step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: var(--blue-light);
    line-height: 1;
    letter-spacing: 0.04em;
  }
  .contact-step-label {
    font-size: 15px;
    color: #fff;
    letter-spacing: 0.02em;
    font-weight: 500;
  }
  .contact-form-grid {
    padding: 36px 32px;
    display: flex; flex-direction: column; gap: 18px;
  }
  .form-checkbox {
    display: flex; gap: 10px; align-items: flex-start;
    font-size: 12.5px; color: var(--text-muted); line-height: 1.5;
    cursor: pointer;
  }
  .form-checkbox input[type="checkbox"] {
    width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px;
    accent-color: var(--blue-dark);
  }
  .form-consent { padding: 4px 0 4px; }
  .form-actions {
    display: flex; align-items: center; gap: 16px;
    margin-top: 8px; flex-wrap: wrap;
  }
  .form-response-time {
    font-size: 12.5px; color: var(--text-muted);
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: 0.04em;
  }
  .form-response-time strong { color: var(--blue-dark); font-weight: 500; }

  /* Contact info strip at bottom */
  .contact-info-strip {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px 32px;
  }
  .contact-info-strip-header { margin-bottom: 28px; text-align: center; }
  .contact-info-strip-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--blue-dark);
    letter-spacing: 0.04em;
    line-height: 1;
    margin-top: 4px;
  }
  .contact-info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
  }
  .contact-info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px 18px;
    text-align: center;
    transition: border-color 0.2s;
  }
  .contact-info-card:hover { border-color: rgba(0,145,194,0.3); }
  .contact-info-icon { font-size: 24px; margin-bottom: 10px; }
  .contact-info-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--blue-mid);
    letter-spacing: 0.08em;
    margin-bottom: 8px;
  }
  .contact-info-value {
    font-size: 13px;
    color: var(--blue-dark);
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 6px;
  }
  .contact-info-value a { color: var(--blue-dark); text-decoration: none; }
  .contact-info-value a:hover { color: var(--blue-mid); text-decoration: underline; }
  .contact-info-sub {
    font-size: 11.5px;
    color: var(--text-muted);
    line-height: 1.4;
  }
  .contact-info-meta {
    display: flex; justify-content: center; flex-wrap: wrap; gap: 24px;
    padding: 16px 20px;
    background: var(--blue-xlight);
    border-radius: 8px;
    font-size: 12.5px; color: var(--text-muted);
  }
  .contact-info-meta strong { color: var(--blue-dark); font-weight: 500; }

  @media (max-width: 900px) {
    .contact-form-header { padding: 16px 20px; }
    .contact-form-grid { padding: 24px 20px; }
    .contact-info-strip { padding: 24px 20px; }
    .contact-info-cards { grid-template-columns: 1fr 1fr; gap: 10px; }
    .contact-info-meta { flex-direction: column; align-items: center; gap: 10px; padding: 14px; }
  }



  /* ─── CHATBOT WIDGET ─────────────────────────────────────── */
  .dvr-chat-root { position: fixed; bottom: 20px; right: 20px; z-index: 9999; font-family: 'DM Sans', sans-serif; }

  .dvr-chat-launcher {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--blue-dark);
    border: none; cursor: pointer;
    box-shadow: 0 6px 24px rgba(21,101,192,0.4);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 26px;
    transition: transform 0.2s, background 0.2s;
    position: relative;
  }
  .dvr-chat-launcher:hover { background: var(--blue-mid); transform: scale(1.06); }
  .dvr-chat-launcher .launcher-icon-close { display: none; font-size: 20px; }
  .dvr-chat-launcher.open .launcher-icon-default { display: none; }
  .dvr-chat-launcher.open .launcher-icon-close { display: inline; }
  .dvr-chat-launcher .launcher-pulse {
    position: absolute; inset: 0; border-radius: 50%;
    background: var(--blue-dark);
    animation: launcherPulse 2.5s ease-out infinite;
    z-index: -1;
  }
  @keyframes launcherPulse {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.6); }
  }

  .dvr-chat-window {
    position: absolute;
    bottom: 76px; right: 0;
    width: 380px; max-width: calc(100vw - 24px);
    height: 540px; max-height: calc(100vh - 110px);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    display: none;
    flex-direction: column;
    box-shadow: 0 16px 64px rgba(13,39,71,0.25);
    transform-origin: bottom right;
    animation: chatOpen 0.25s ease-out;
  }
  @keyframes chatOpen {
    from { opacity: 0; transform: translateY(8px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }
  .dvr-chat-root.open .dvr-chat-window { display: flex; }

  .dvr-chat-header {
    background: var(--blue-dark);
    color: #fff;
    padding: 14px 16px;
    display: flex; align-items: center; gap: 12px;
  }
  .dvr-chat-header-left { display: flex; align-items: center; gap: 12px; flex: 1; }
  .dvr-chat-avatar {
    width: 38px; height: 38px;
    background: var(--blue-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    flex-shrink: 0;
  }
  .dvr-chat-avatar-letter {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--blue-dark);
    line-height: 1;
  }
  .dvr-chat-avatar-status {
    position: absolute; right: -2px; bottom: -2px;
    width: 11px; height: 11px;
    background: #22c55e;
    border: 2px solid var(--blue-dark);
    border-radius: 50%;
  }
  .dvr-chat-title { font-size: 14px; font-weight: 600; color: #fff; line-height: 1.2; }
  .dvr-chat-subtitle { font-size: 11px; color: rgba(255,255,255,0.75); display: flex; align-items: center; gap: 5px; margin-top: 2px; }
  .dvr-online-dot {
    width: 6px; height: 6px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 4px #22c55e;
  }
  .dvr-chat-iconbtn {
    width: 30px; height: 30px;
    background: rgba(255,255,255,0.12);
    border: none; border-radius: 6px;
    color: #fff; font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
  }
  .dvr-chat-iconbtn:hover { background: rgba(255,255,255,0.22); }

  .dvr-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    background: #f4f7fb;
    display: flex; flex-direction: column; gap: 10px;
    scroll-behavior: smooth;
  }
  .dvr-chat-messages::-webkit-scrollbar { width: 6px; }
  .dvr-chat-messages::-webkit-scrollbar-thumb { background: rgba(0,145,194,0.25); border-radius: 3px; }

  .dvr-msg { max-width: 80%; padding: 10px 13px; font-size: 13.5px; line-height: 1.45; border-radius: 14px; word-wrap: break-word; animation: msgIn 0.25s ease-out; }
  @keyframes msgIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }
  .dvr-msg.bot { background: #fff; color: var(--text); border-bottom-left-radius: 4px; align-self: flex-start; border: 1px solid var(--border); }
  .dvr-msg.user { background: var(--blue-dark); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
  .dvr-msg.summary {
    background: var(--blue-xlight);
    border: 1px solid rgba(0,145,194,0.2);
    color: var(--text); align-self: stretch; max-width: 100%;
    font-size: 12.5px;
  }
  .dvr-msg.summary h4 {
    font-size: 12px; font-weight: 600; color: var(--blue-dark);
    margin: 0 0 8px; text-transform: uppercase; letter-spacing: 0.05em;
  }
  .dvr-msg.summary .summary-row { display: flex; padding: 4px 0; border-bottom: 1px dashed rgba(0,145,194,0.18); font-size: 12px; }
  .dvr-msg.summary .summary-row:last-of-type { border-bottom: none; }
  .dvr-msg.summary .summary-key { color: var(--text-muted); flex: 0 0 90px; }
  .dvr-msg.summary .summary-val { color: var(--blue-dark); font-weight: 500; flex: 1; }

  .dvr-typing { display: flex; align-items: center; gap: 4px; padding: 12px 14px; background: #fff; border-radius: 14px; border-bottom-left-radius: 4px; border: 1px solid var(--border); align-self: flex-start; }
  .dvr-typing span { width: 6px; height: 6px; background: var(--blue-mid); border-radius: 50%; animation: typing 1.4s infinite; }
  .dvr-typing span:nth-child(2) { animation-delay: 0.2s; }
  .dvr-typing span:nth-child(3) { animation-delay: 0.4s; }
  @keyframes typing { 0%, 60%, 100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-4px); opacity: 1; } }

  .dvr-chat-quickreplies {
    padding: 0 16px 8px;
    display: flex; flex-wrap: wrap; gap: 6px;
    background: #f4f7fb;
    max-height: 130px; overflow-y: auto;
  }
  .dvr-chat-quickreplies:empty { display: none; }
  .dvr-quickreply {
    background: #fff;
    border: 1px solid rgba(0,145,194,0.3);
    color: var(--blue-dark);
    padding: 7px 14px;
    border-radius: 100px;
    font-size: 12.5px;
    cursor: pointer;
    transition: all 0.15s;
    font-family: 'DM Sans', sans-serif;
    line-height: 1.2;
  }
  .dvr-quickreply:hover { background: var(--blue-dark); color: #fff; border-color: var(--blue-dark); }

  .dvr-chat-input-row {
    display: flex; gap: 8px;
    padding: 12px 14px;
    border-top: 1px solid var(--border);
    background: #fff;
  }
  .dvr-chat-input {
    flex: 1;
    border: 1px solid var(--border2);
    border-radius: 100px;
    padding: 10px 16px;
    font-size: 13.5px;
    font-family: 'DM Sans', sans-serif;
    outline: none;
    transition: border-color 0.2s;
    color: var(--text);
  }
  .dvr-chat-input:focus { border-color: var(--blue-mid); }
  .dvr-chat-input:disabled { background: var(--surface); cursor: not-allowed; }
  .dvr-chat-send {
    width: 40px; height: 40px;
    background: var(--blue-dark);
    color: #fff;
    border: none; border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s, transform 0.15s;
  }
  .dvr-chat-send:hover:not(:disabled) { background: var(--blue-mid); transform: scale(1.05); }
  .dvr-chat-send:disabled { opacity: 0.5; cursor: not-allowed; }

  .dvr-chat-footer {
    padding: 8px 14px;
    border-top: 1px solid var(--border);
    background: var(--surface);
    text-align: center;
    font-size: 10.5px;
    color: var(--text-muted);
  }
  .dvr-chat-footer a { color: var(--blue-mid); text-decoration: none; }

  @media (max-width: 480px) {
    .dvr-chat-root { right: 12px; bottom: 12px; }
    .dvr-chat-window {
      width: calc(100vw - 24px);
      height: calc(100vh - 100px);
      bottom: 72px; right: 0;
    }
    .dvr-chat-launcher { width: 54px; height: 54px; font-size: 22px; }
  }



  /* ═══════════════════════════════════════════════════════════════
     COMPREHENSIVE RESPONSIVE OVERHAUL
     ═══════════════════════════════════════════════════════════════ */

  /* ── Full logo in footer (replaces DVR icon) ───────────── */
  .footer-full-logo {
    height: 40px; width: auto; max-width: 100%;
    display: block; margin-bottom: 18px;
    object-fit: contain;
  }

  /* ── Hamburger button (hidden on desktop) ──────────────── */
  .nav-burger {
    display: none;
    width: 36px; height: 36px;
    background: transparent;
    border: 1px solid var(--border2);
    border-radius: 6px;
    cursor: pointer;
    padding: 0;
    align-items: center; justify-content: center;
    flex-direction: column;
    gap: 4px;
    transition: background 0.2s, border-color 0.2s;
  }
  .nav-burger:hover { background: var(--accent-dim2); border-color: var(--blue-mid); }
  .nav-burger span {
    width: 18px; height: 2px;
    background: var(--blue-dark);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }
  .nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .nav-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(13, 39, 71, 0.5);
    z-index: 98;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .nav-overlay.open { display: block; opacity: 1; }

  /* ═══════════════════ TABLET ≤900px ═══════════════════ */
  @media (max-width: 900px) {
    /* Topbar simplification */
    .topbar { height: 28px; }
    .topbar-inner { gap: 8px; font-size: 11px; padding: 0 12px; }
    .topbar-divider, .topbar-link { display: none; }

    /* Nav: hide links, show hamburger */
    nav { padding: 0 16px; height: 56px; }
    nav { top: 28px !important; }
    body { padding-top: 28px; }
    .nav-logo img { height: 30px; }
    .nav-burger { display: flex; }
    .nav-links {
      position: fixed; top: 56px; right: 0;
      width: 300px; max-width: 88vw;
      height: calc(100vh - 56px - 28px);
      background: #fff;
      border-left: 1px solid var(--border);
      flex-direction: column;
      gap: 4px !important;
      padding: 20px 16px 100px;
      transform: translateX(100%);
      transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
      box-shadow: -8px 0 40px rgba(0,0,0,0.12);
      z-index: 99;
      overflow-y: auto;
      align-items: stretch !important;
    }
    .nav-links.open { transform: translateX(0); }
    .nav-links li { width: 100%; }
    .nav-links a {
      width: 100%;
      padding: 14px 18px !important;
      font-size: 15px !important;
      border-radius: 10px;
      display: flex !important;
      align-items: center;
    }
    .nav-divider { display: none; }
    .nav-cta { margin-top: 8px; justify-content: center; }
    .nav-login { margin-top: 4px; justify-content: center; }

    /* Hero carousel */
    .hero-carousel { padding-top: 56px; }
    .hero-slide.active { top: 56px; }
    .hero-slide-inner { grid-template-columns: 1fr; }
    .hero-slide-inner > .hero-right { display: none; }
    .hero-slide-inner > .hero-left {
      padding: 48px 20px 120px;
      min-height: calc(100vh - 56px);
    }
    .hero-headline {
      font-size: clamp(36px, 9vw, 56px) !important;
      line-height: 0.95;
      margin-bottom: 18px;
    }
    .hero-tag { font-size: 10.5px; padding: 4px 11px; margin-bottom: 20px; }
    .hero-sub { font-size: 15px !important; margin-bottom: 28px; max-width: 100%; }
    .hero-actions { flex-wrap: wrap; gap: 8px; }
    .hero-actions button { font-size: 13px !important; padding: 10px 18px !important; }

    /* Carousel controls */
    .carousel-arrow { width: 36px; height: 36px; font-size: 12px; }
    .carousel-prev { left: 8px; }
    .carousel-next { right: 8px; }
    .carousel-controls { bottom: 14px; gap: 8px; }
    .carousel-dots { padding: 4px; gap: 2px; }
    .carousel-dot { padding: 4px 10px; }
    .dot-num { font-size: 8.5px; }
    .dot-name { font-size: 10px; }
    .carousel-progress { width: 130px; }

    /* Stats strip */
    .stats-strip-section { padding: 24px 16px; }
    .stats-strip-inner { grid-template-columns: 1fr 1fr 1fr; gap: 14px 0; }
    .stat-card { padding: 8px 6px; border-right: 1px solid rgba(255,255,255,0.12); border-bottom: 1px solid rgba(255,255,255,0.12); }
    .stat-card:nth-child(3n) { border-right: none; }
    .stat-card:nth-child(n+4) { border-bottom: none; }
    .stat-card-num { font-size: 30px; }
    .stat-card-label { font-size: 9.5px; letter-spacing: 0.04em; }

    /* Capabilities */
    .capabilities-section { padding: 48px 20px; }
    .capabilities-grid { grid-template-columns: 1fr; gap: 12px; }
    .capability-block { padding: 24px 20px; }
    .capabilities-title { font-size: 28px !important; }
    .capabilities-sub { font-size: 14px; }
    .partners-strip { flex-direction: column; align-items: flex-start; padding: 14px; gap: 8px; }

    /* Process strip */
    .process-strip { padding: 28px 20px; grid-template-columns: 1fr; gap: 0; }
    .process-step { padding: 14px 0; border-right: none; border-bottom: 1px solid var(--border); }
    .process-step:last-child { border-bottom: none; }

    /* Product Journey */
    .prod-journey-wrap { padding: 48px 20px; }
    .pj-row { grid-template-columns: 1fr; }
    .pj-row-bottom { direction: ltr; }
    .pj-conn-right, .pj-conn-left, .pj-conn-down-right, .pj-conn-down-left { display: none; }
    .pj-row-top .pj-card, .pj-row-bottom .pj-card {
      border-radius: 0 !important;
      border-left: 1px solid var(--border) !important;
      border-top: 1px solid var(--border) !important;
    }
    .pj-row-top .pj-card:first-child { border-radius: 12px 12px 0 0 !important; }
    .pj-row-bottom .pj-card:last-child { border-radius: 0 0 12px 12px !important; }
    .pj-card { padding: 24px 20px 24px; }
    .pj-step-num { font-size: 40px; top: 14px; right: 18px; }
    .pj-cta-strip { flex-direction: column; text-align: center; gap: 14px; padding: 20px; }

    /* Anatomy section */
    .anatomy-section { padding: 48px 20px; }
    .anatomy-layout { grid-template-columns: 1fr; gap: 16px; }
    .anatomy-info { padding: 24px 20px; }
    .anatomy-info-name { font-size: 34px; }
    .anatomy-canvas-header { padding: 12px 14px; }
    .anatomy-canvas-title { font-size: 13px; }
    .anatomy-canvas-tag { font-size: 9px; }
    .anatomy-stats-grid { grid-template-columns: 1fr 1fr; }
    .anatomy-cta-row { flex-direction: column; }
    .anatomy-cta-row button { width: 100%; }

    /* General page sections */
    .page-section { padding: 64px 20px 48px; }
    .section-title { font-size: 32px !important; }
    .section-sub { font-size: 14px !important; max-width: 100% !important; margin-bottom: 32px !important; }

    /* Services / Products / Industries */
    .services-grid, .products-grid, .iaq-grid { grid-template-columns: 1fr; gap: 12px; }
    .services-grid { background: transparent; border: none; gap: 12px; }
    .service-card { border-radius: 12px !important; border: 1px solid var(--border); }
    .product-card { padding: 22px 18px; }
    .industries-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .industry-card { padding: 18px 14px; }
    .industry-icon { font-size: 22px; }

    /* IAQ cards */
    .iaq-card-header { padding: 22px 22px 16px; }
    .iaq-body { padding: 20px 22px; }
    .iaq-footer { flex-wrap: wrap; gap: 8px; padding: 14px 22px; }

    /* About */
    .about-layout { grid-template-columns: 1fr; gap: 32px; }
    .team-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
    .team-stat { padding: 16px; }
    .team-stat-num { font-size: 34px; }

    /* Contact */
    .contact-page { max-width: 100%; }
    .contact-form-header { padding: 14px 18px; }
    .contact-form-grid { padding: 22px 18px; gap: 16px; }
    .form-row { grid-template-columns: 1fr; gap: 14px; }
    .form-input, .form-select, .form-textarea { padding: 11px 14px; font-size: 14px; }
    .form-actions { flex-direction: column; align-items: stretch; gap: 12px; }
    .form-actions button { width: 100%; }
    .form-response-time { text-align: center; }
    .contact-info-strip { padding: 24px 18px; }
    .contact-info-cards { grid-template-columns: 1fr 1fr; gap: 10px; }
    .contact-info-card { padding: 16px 12px; }
    .contact-info-meta { flex-direction: column; align-items: center; gap: 8px; font-size: 12px; padding: 14px; }
    .contact-step-num { font-size: 26px; }
    .contact-step-label { font-size: 13px; }
    .contact-info-strip-title { font-size: 22px; }

    /* Footer */
    .site-footer-rich { padding: 36px 18px 16px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-col-about { grid-column: 1; }
    .footer-full-logo { height: 34px; margin-bottom: 14px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; padding-top: 18px; }
    .footer-bottom-right { flex-wrap: wrap; justify-content: center; gap: 12px; }
    .footer-bottom-right a { font-size: 11px; }
    .footer-bottom-left { font-size: 11px; }
    .footer-seo-strip { font-size: 11.5px; padding: 14px 16px; margin: 28px 0 18px; }

    /* CTA banners */
    .cta-banner { flex-direction: column; padding: 28px 22px; text-align: center; gap: 18px; }
    .cta-banner-title { font-size: 26px; }
    .cta-banner-actions { flex-direction: column; width: 100%; gap: 8px; }
    .cta-banner-actions button { width: 100%; }

    /* Login */
    .login-card { padding: 32px 24px; }

    /* Chatbot */
    .dvr-chat-root { right: 16px; bottom: 16px; }
    .dvr-chat-launcher { width: 56px; height: 56px; font-size: 24px; }
  }

  /* ═══════════════════ SMALL PHONES ≤480px ═══════════════════ */
  @media (max-width: 480px) {
    nav { padding: 0 12px; height: 52px; }
    .nav-logo img { height: 26px; }
    .nav-links { top: 52px; height: calc(100vh - 52px - 28px); }
    .hero-carousel { padding-top: 52px; }
    .hero-slide.active { top: 52px; }
    .hero-slide-inner > .hero-left { padding: 36px 16px 100px; }
    .hero-headline { font-size: clamp(32px, 11vw, 44px) !important; }
    .hero-sub { font-size: 14px !important; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions button { width: 100%; }

    .stats-strip-inner { grid-template-columns: 1fr 1fr; gap: 12px 0; }
    .stat-card:nth-child(3n) { border-right: 1px solid rgba(255,255,255,0.12); }
    .stat-card:nth-child(2n) { border-right: none; }
    .stat-card:nth-child(n+3) { border-bottom: 1px solid rgba(255,255,255,0.12); }
    .stat-card:nth-child(n+5) { border-bottom: none; }
    .stat-card-num { font-size: 26px; }

    .capabilities-title { font-size: 24px !important; }
    .pj-step-num { font-size: 32px; }
    .pj-title { font-size: 14px; }

    .anatomy-info-name { font-size: 28px; }
    .anatomy-stats-grid { grid-template-columns: 1fr; }

    .industries-grid { grid-template-columns: 1fr; }
    .contact-info-cards { grid-template-columns: 1fr; }

    .section-title { font-size: 26px !important; }
    .page-section { padding: 48px 16px 40px; }

    .cta-banner { padding: 22px 16px; }
    .cta-banner-title { font-size: 22px; }

    .dvr-chat-root { right: 12px; bottom: 12px; }
    .dvr-chat-launcher { width: 52px; height: 52px; font-size: 22px; }
    .dvr-chat-window { width: calc(100vw - 24px); height: calc(100vh - 90px); bottom: 68px; }
  }

  /* ═══════════════════ EXTRA SMALL ≤360px ═══════════════════ */
  @media (max-width: 360px) {
    .hero-headline { font-size: 30px !important; }
    .topbar-text { font-size: 10px; }
    .footer-cert-row { gap: 4px; }
    .footer-cert { font-size: 8.5px; padding: 2px 6px; }
  }


  /* ─── ICON CONTAINER STYLES (Option C v2 schematics) ─── */
  .service-icon,
  .industry-icon,
  .capability-icon,
  .contact-info-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .industry-icon, .contact-info-icon {
    justify-content: center;
  }
  .service-icon svg,
  .industry-icon svg,
  .capability-icon svg,
  .contact-info-icon svg,
  .product-visual-icon svg,
  .pj-icon svg {
    display: block;
    position: relative;
    z-index: 2;
  }
  .product-visual-icon svg {
    filter: drop-shadow(0 2px 8px rgba(21,101,192,0.15));
  }
  .pj-icon-wrap {
    background: var(--bg) !important;
  }
  .pj-icon-wrap svg {
    transition: transform 0.2s;
  }
  .pj-card:hover .pj-icon-wrap svg {
    transform: scale(1.05);
  }



  /* ─── STATS SUB-LABEL (e.g., target note under 85%) ─── */
  .stat-card-sublabel {
    font-size: 10px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.04em;
    margin-top: 4px;
    font-style: italic;
    line-height: 1.3;
  }
  /* Slightly tighter num for 4-digit values like 1650+ */
  .stat-card-num {
    font-variant-numeric: tabular-nums;
  }



  @media (max-width: 540px) {
    .stat-card-num { font-size: 26px; }
    .stat-card-sublabel { font-size: 9px; }
  }


  /* ═══════════════════ BLOGS SECTION ═══════════════════ */

  /* Filter buttons */
  .blog-filter {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
  }
  .blog-filter-btn {
    background: transparent;
    border: 1px solid var(--border2);
    color: var(--text-muted);
    padding: 7px 16px;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
  }
  .blog-filter-btn:hover { border-color: var(--blue-mid); color: var(--blue-dark); }
  .blog-filter-btn.active {
    background: var(--blue-dark);
    color: #fff;
    border-color: var(--blue-dark);
    font-weight: 500;
  }

  /* Featured (hero) post */
  .blog-featured {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 0;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 48px;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .blog-featured:hover {
    border-color: rgba(0,145,194,0.3);
    box-shadow: 0 6px 28px rgba(21,101,192,0.10);
  }
  .blog-featured-visual {
    background: linear-gradient(135deg, var(--blue-xlight) 0%, var(--surface) 100%);
    display: flex; align-items: center; justify-content: center;
    position: relative;
    min-height: 280px;
    overflow: hidden;
  }
  .blog-featured-visual::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(21,101,192,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(21,101,192,0.04) 1px, transparent 1px);
    background-size: 18px 18px;
  }
  .blog-featured-svg { position: relative; z-index: 1; }
  .blog-featured-badge {
    position: absolute; top: 16px; left: 16px;
    background: var(--blue-dark); color: #fff;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px; padding: 4px 10px;
    border-radius: 4px; letter-spacing: 0.08em;
    z-index: 2;
  }
  .blog-featured-content { padding: 36px 32px; display: flex; flex-direction: column; }
  .blog-featured-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px; letter-spacing: 0.02em;
    color: var(--blue-dark); line-height: 1.1;
    margin: 12px 0 16px;
  }
  .blog-featured-excerpt {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
  }
  .blog-author-row {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    gap: 12px; flex-wrap: wrap;
  }
  .blog-author { display: flex; align-items: center; gap: 12px; }
  .blog-author-avatar {
    width: 38px; height: 38px;
    background: var(--blue-dark); color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    letter-spacing: 0.04em;
  }
  .blog-author-name { font-size: 13px; font-weight: 500; color: var(--blue-dark); }
  .blog-author-role { font-size: 11px; color: var(--text-muted); }
  .blog-read-link {
    background: var(--blue-dark); color: #fff;
    padding: 10px 22px; border-radius: 8px;
    font-size: 13px; font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }
  .blog-read-link:hover { background: var(--blue-mid); transform: translateX(2px); }

  /* Blog post grid */
  .blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
  }
  .blog-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  }
  .blog-card:hover {
    border-color: rgba(0,145,194,0.3);
    box-shadow: 0 6px 24px rgba(21,101,192,0.10);
    transform: translateY(-3px);
  }
  .blog-card-visual {
    background: linear-gradient(135deg, var(--blue-xlight) 0%, var(--surface) 100%);
    padding: 32px 20px;
    display: flex; align-items: center; justify-content: center;
    position: relative; min-height: 140px;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
  }
  .blog-card-visual::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(21,101,192,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(21,101,192,0.04) 1px, transparent 1px);
    background-size: 14px 14px;
  }
  .blog-card-visual svg { position: relative; z-index: 1; }
  .blog-card-cat {
    position: absolute; top: 12px; left: 12px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9.5px;
    padding: 3px 9px;
    border-radius: 4px;
    letter-spacing: 0.06em;
    z-index: 2;
  }
  .blog-cat-manufacturing { background: var(--blue-dark); color: #fff; }
  .blog-cat-robotics      { background: #7c3aed; color: #fff; }
  .blog-cat-product       { background: #0891b2; color: #fff; }
  .blog-cat-industry      { background: #0d9488; color: #fff; }
  .blog-cat-guides        { background: #b45309; color: #fff; }
  .blog-card-body {
    padding: 20px 22px 22px;
    flex: 1;
    display: flex; flex-direction: column;
  }
  .blog-meta {
    display: flex; align-items: center; gap: 8px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10.5px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    margin-bottom: 12px;
  }
  .blog-meta-sep { opacity: 0.5; }
  .blog-card-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--blue-dark);
    line-height: 1.35;
    margin-bottom: 12px;
  }
  .blog-card-excerpt {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
    flex: 1;
  }
  .blog-card-link {
    font-size: 13px;
    color: var(--blue-dark);
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.15s, color 0.2s;
    display: inline-block;
  }
  .blog-card-link:hover { color: var(--blue-mid); transform: translateX(2px); }

  /* Newsletter */
  .blog-newsletter {
    background: var(--blue-dark);
    border-radius: 14px;
    padding: 40px 44px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 36px;
    align-items: center;
    color: #fff;
  }
  .blog-newsletter-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 30px;
    color: #fff;
    letter-spacing: 0.04em;
    line-height: 1;
    margin-bottom: 10px;
  }
  .blog-newsletter-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
  }
  .blog-newsletter-form { display: flex; gap: 8px; }
  .blog-newsletter-input {
    flex: 1;
    padding: 13px 16px;
    border: 1.5px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
  }
  .blog-newsletter-input::placeholder { color: rgba(255,255,255,0.5); }
  .blog-newsletter-input:focus {
    border-color: var(--blue-light);
    background: rgba(255,255,255,0.12);
  }
  .blog-newsletter-btn {
    background: var(--blue-light);
    color: var(--blue-dark);
    border: none;
    padding: 13px 26px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
  }
  .blog-newsletter-btn:hover { background: #fff; transform: translateY(-1px); }

  @media (max-width: 900px) {
    .blog-filter { gap: 6px; }
    .blog-filter-btn { font-size: 12px; padding: 6px 12px; }
    .blog-featured { grid-template-columns: 1fr; }
    .blog-featured-visual { min-height: 180px; }
    .blog-featured-content { padding: 24px 20px; }
    .blog-featured-title { font-size: 26px; }
    .blogs-grid { grid-template-columns: 1fr; gap: 16px; }
    .blog-newsletter { grid-template-columns: 1fr; padding: 28px 22px; gap: 22px; }
    .blog-newsletter-title { font-size: 24px; }
    .blog-newsletter-form { flex-direction: column; }
    .blog-newsletter-btn { width: 100%; }
    .blog-author-row { flex-direction: column; align-items: flex-start; gap: 16px; }
    .blog-read-link { width: 100%; text-align: center; }
  }



  /* ═══════════════════ NDA GENERATOR ═══════════════════ */
  .nda-disclaimer {
    background: #fff8e1;
    border: 1px solid #ffd54f;
    border-left: 4px solid #f59e0b;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 32px;
    display: flex; gap: 14px; align-items: flex-start;
  }
  .nda-disclaimer-icon { font-size: 22px; flex-shrink: 0; line-height: 1; }
  .nda-disclaimer-text { font-size: 13.5px; line-height: 1.6; color: #78350f; }
  .nda-disclaimer-text strong { color: #92400e; }

  .nda-form-wrap {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 36px;
  }
  .nda-form-header {
    padding: 20px 32px;
    background: var(--blue-dark);
    color: #fff;
  }
  .nda-form { padding: 32px; display: flex; flex-direction: column; gap: 32px; }

  .nda-form-section {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px 26px;
  }
  .nda-section-title {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--blue-mid);
    letter-spacing: 0.08em;
    margin-bottom: 6px;
  }
  .nda-section-sub {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.55;
  }

  /* Custom clauses */
  .nda-clause-row {
    display: flex; gap: 10px; align-items: flex-start;
    margin-bottom: 14px;
  }
  .nda-clause-remove {
    background: transparent;
    border: 1px solid var(--border2);
    color: var(--text-muted);
    width: 32px; height: 32px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    margin-top: 26px;
    transition: all 0.2s;
  }
  .nda-clause-remove:hover { background: #fee; border-color: #f87171; color: #dc2626; }
  .nda-add-clause-btn {
    background: transparent;
    border: 1.5px dashed var(--border2);
    color: var(--blue-dark);
    padding: 10px 18px;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 4px;
  }
  .nda-add-clause-btn:hover { border-color: var(--blue-mid); background: var(--blue-xlight); }

  /* Output preview */
  .nda-output {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    margin-top: 24px;
  }
  .nda-output-header {
    background: var(--blue-dark);
    color: #fff;
    padding: 18px 24px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 14px;
  }
  .nda-output-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: #fff;
    letter-spacing: 0.04em;
    margin: 0;
    line-height: 1;
  }
  .nda-output-actions { display: flex; gap: 8px; flex-wrap: wrap; }
  .nda-action-btn {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 12.5px;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.2s;
    white-space: nowrap;
  }
  .nda-action-btn:hover { background: var(--blue-light); color: var(--blue-dark); border-color: var(--blue-light); }

  /* The generated NDA document — A4 paper look */
  .nda-document {
    background: #fff;
    padding: 56px 60px;
    font-family: 'Times New Roman', Georgia, serif;
    color: #1a1a1a;
    line-height: 1.65;
    font-size: 13.5px;
    max-width: 800px;
    margin: 24px auto;
    box-shadow: 0 4px 32px rgba(0,0,0,0.08);
    border-radius: 6px;
  }
  .nda-document h1 {
    font-family: 'Times New Roman', Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
    color: #1a1a1a;
  }
  .nda-document .nda-doc-subtitle {
    text-align: center;
    font-size: 12px;
    font-style: italic;
    color: #666;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid #1a1a1a;
  }
  .nda-document h2 {
    font-family: 'Times New Roman', Georgia, serif;
    font-size: 14px;
    font-weight: 700;
    margin: 22px 0 10px;
    text-transform: uppercase;
    color: #1a1a1a;
  }
  .nda-document p { margin-bottom: 12px; text-align: justify; }
  .nda-document .recital { padding-left: 20px; margin-bottom: 8px; }
  .nda-document ul, .nda-document ol { margin: 8px 0 12px 24px; }
  .nda-document li { margin-bottom: 6px; text-align: justify; }
  .nda-document strong { font-weight: 700; }
  .nda-document .nda-parties { margin-bottom: 18px; }
  .nda-document .nda-party {
    padding: 10px 14px;
    background: #fafafa;
    border-left: 3px solid #1565c0;
    margin-bottom: 10px;
  }
  .nda-document .nda-signature-block {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .nda-document .nda-sig-col h4 {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 38px;
    text-transform: uppercase;
  }
  .nda-document .nda-sig-line {
    border-bottom: 1px solid #1a1a1a;
    margin-bottom: 6px;
    min-height: 4px;
  }
  .nda-document .nda-sig-label { font-size: 11.5px; color: #555; margin-bottom: 3px; }
  .nda-document .nda-sig-value { font-size: 12.5px; margin-bottom: 12px; font-weight: 500; }
  .nda-document .nda-watermark {
    text-align: center;
    color: #999;
    font-size: 10px;
    font-style: italic;
    margin-top: 32px;
    padding-top: 14px;
    border-top: 1px dashed #ccc;
  }

  @media (max-width: 900px) {
    .nda-form { padding: 20px; }
    .nda-form-section { padding: 18px 16px; }
    .nda-document { padding: 28px 22px; font-size: 12.5px; }
    .nda-document h1 { font-size: 18px; }
    .nda-document .nda-signature-block { grid-template-columns: 1fr; gap: 28px; }
    .nda-output-header { flex-direction: column; align-items: flex-start; }
  }

  @media print {
    body * { visibility: hidden; }
    .nda-document, .nda-document * { visibility: visible; }
    .nda-document { position: absolute; left: 0; top: 0; width: 100%; padding: 0; box-shadow: none; max-width: 100%; }
  }



  /* ═══════════ BRAND TAGLINE STRIP (Primary placement) ═══════════ */
  .brand-tagline-strip {
    background: linear-gradient(180deg, #ffffff 0%, var(--blue-xlight) 100%);
    padding: 56px 32px 48px;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  /* Subtle blueprint grid overlay */
  .brand-tagline-strip::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(21,101,192,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(21,101,192,0.05) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
  }
  .brand-tagline-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    position: relative;
    z-index: 1;
  }
  .brand-tagline-mark {
    font-family: 'Bebas Neue', serif;
    font-size: 72px;
    color: var(--blue-mid);
    opacity: 0.4;
    line-height: 0.6;
    font-weight: 700;
  }
  .brand-tagline-mark.left { transform: translateY(8px); }
  .brand-tagline-mark.right { transform: translateY(20px) scaleX(-1); }
  .brand-tagline-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(24px, 3.5vw, 40px);
    color: var(--blue-dark);
    letter-spacing: 0.02em;
    line-height: 1.15;
    max-width: 900px;
  }
  .brand-tagline-emphasis {
    color: var(--blue-mid);
    font-style: italic;
    position: relative;
    padding: 0 2px;
  }
  .brand-tagline-emphasis::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 2px;
    background: var(--blue-light);
    opacity: 0.55;
  }
  .brand-tagline-arrow {
    color: var(--blue-light);
    font-weight: 500;
    margin: 0 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85em;
    display: inline-block;
    transform: translateY(-2px);
  }
  .brand-tagline-scale { color: var(--blue-dark); }
  .brand-tagline-attribution {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10.5px;
    color: var(--blue-mid);
    letter-spacing: 0.18em;
    margin-top: 22px;
    position: relative;
    z-index: 1;
    opacity: 0.75;
  }

  /* ═══════════ FOOTER BRAND TAGLINE (Secondary placement) ═══════════ */
  .footer-brand-tagline {
    font-size: 12px;
    color: var(--blue-mid);
    line-height: 1.55;
    margin: 6px 0 14px;
    font-family: 'DM Sans', sans-serif;
    border-left: 2px solid var(--blue-light);
    padding: 2px 0 2px 10px;
    opacity: 0.9;
  }
  .footer-brand-tagline em {
    color: var(--blue-dark);
    font-weight: 500;
    font-style: italic;
  }

  /* ═══════════ ABOUT SECTION QUOTE (Tertiary placement) ═══════════ */
  .about-quote-block {
    background: linear-gradient(135deg, var(--blue-xlight) 0%, var(--surface) 100%);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 38px 44px 32px;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
  }
  .about-quote-block::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(21,101,192,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(21,101,192,0.04) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
  }
  .about-quote-mark {
    font-family: 'Bebas Neue', serif;
    font-size: 96px;
    color: var(--blue-mid);
    opacity: 0.18;
    line-height: 0.6;
    margin-bottom: -8px;
    position: relative;
    z-index: 1;
  }
  .about-quote-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(22px, 2.8vw, 32px);
    color: var(--blue-dark);
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    border: none;
    max-width: 800px;
    position: relative;
    z-index: 1;
  }
  .about-quote-text strong {
    color: var(--blue-mid);
    font-style: italic;
    font-weight: 400;
  }
  .about-quote-attrib {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--blue-mid);
    letter-spacing: 0.15em;
    position: relative;
    z-index: 1;
  }
  .about-quote-line {
    width: 36px;
    height: 1px;
    background: var(--blue-mid);
  }

  /* Mobile tweaks for tagline strip */
  @media (max-width: 760px) {
    .brand-tagline-strip { padding: 36px 18px 30px; }
    .brand-tagline-mark { font-size: 48px; }
    .brand-tagline-inner { gap: 10px; }
    .brand-tagline-text { font-size: clamp(20px, 6vw, 28px); }
    .brand-tagline-attribution { font-size: 9.5px; margin-top: 16px; }
    .about-quote-block { padding: 26px 22px 22px; margin-bottom: 32px; }
    .about-quote-mark { font-size: 64px; }
    .about-quote-text { font-size: clamp(20px, 5.5vw, 26px); }
  }

/* Active nav state for multi-page site */
.nav-links a.active {
  color: var(--blue-dark) !important;
  background: var(--blue-xlight);
  font-weight: 500;
  border-radius: 6px;
}
.nav-links a.active::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--blue-mid);
  margin-top: 4px;
}
