  :root {
    --bg: #040d18;
    --bg2: #060f1e;
    --surface: #091525;
    --surface2: #0d1c30;
    --border: rgba(19,116,184,0.15);
    --accent: #1374B8;
    --accent-light: #69A2C8;
    --green: #8FC345;
    --green-light: #E7F4E3;
    --teal: #9CBCC1;
    --accent-glow: rgba(19,116,184,0.18);
    --text: #dceaf5;
    --muted: #6b8fa8;
    --heading: #ffffff;
    --font-head: 'Oxanium', sans-serif;
    --font-body: 'DM Sans', sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
  }

  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 0; opacity: 0.35;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5vw; height: 72px;
    background: rgba(4,13,24,0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
  }

  .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; cursor: pointer; }

  .logo img { height: 44px; width: auto; object-fit: contain; filter: brightness(1.05); }

  .logo-text {
    font-family: var(--font-head); font-weight: 700; font-size: 19px; letter-spacing: -0.02em;
  }
  .logo-text .data-word { color: #1374B8; }
  .logo-text .phleet-word { color: #8FC345; }

  .nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
  .nav-links a {
    color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500;
    letter-spacing: 0.02em; transition: color 0.2s; cursor: pointer;
  }
  .nav-links a:hover, .nav-links a.active { color: var(--text); }

  .nav-cta {
    background: var(--accent) !important; color: #fff !important;
    padding: 9px 20px; border-radius: 6px; font-weight: 600 !important;
    font-size: 13px !important; transition: all 0.2s !important;
  }
  .nav-cta:hover { background: #1a8fe0 !important; box-shadow: 0 0 20px rgba(19,116,184,0.4) !important; }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
  .hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

  /* PAGES */
  .page { display: none; }
  .page.active { display: block; }

  /* HERO */
  .hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    padding: 120px 5vw 80px; overflow: hidden;
  }
  #gridCanvas {
    position: absolute; inset: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 0;
    mask-image: radial-gradient(ellipse 90% 85% at 60% 50%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 90% 85% at 60% 50%, black 20%, transparent 100%);
  }

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

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(19,116,184,0.1); border: 1px solid rgba(19,116,184,0.3);
    border-radius: 100px; padding: 6px 16px;
    font-size: 12px; font-weight: 600; color: var(--accent-light);
    letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 32px;
    animation: fadeUp 0.6s ease both;
  }
  .hero-badge::before {
    content: ''; width: 6px; height: 6px; background: var(--green);
    border-radius: 50%; box-shadow: 0 0 8px var(--green);
    animation: pulse 2s ease infinite;
  }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }

  .hero h1 {
    font-family: var(--font-head);
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 800; line-height: 1.05; letter-spacing: -0.03em;
    color: var(--heading); margin-bottom: 24px;
    animation: fadeUp 0.6s 0.1s ease both;
  }
  .hero h1 .accent-blue { color: #1374B8; }
  .hero h1 .accent-green { color: #8FC345; }

  .hero-subline {
    font-size: clamp(20px, 2.5vw, 28px); font-weight: 700;
    color: #1374B8; margin-bottom: 16px; line-height: 1.2;
    animation: fadeUp 0.6s 0.15s ease both;
  }
  .hero-sub {
    font-size: clamp(16px, 1.8vw, 19px); color: var(--muted);
    max-width: 580px; margin-bottom: 40px; line-height: 1.7;
    animation: fadeUp 0.6s 0.2s ease both;
  }

  .hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; animation: fadeUp 0.6s 0.3s ease both; }



  /* BUTTONS */
  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent); color: #fff;
    padding: 14px 28px; border-radius: 8px;
    font-family: var(--font-body); font-size: 15px; font-weight: 600;
    text-decoration: none; border: none; cursor: pointer;
    transition: all 0.2s; letter-spacing: 0.01em;
  }
  .btn-primary:hover { background: #1a8fe0; box-shadow: 0 0 30px rgba(19,116,184,0.45); transform: translateY(-1px); }
  .btn-primary svg { transition: transform 0.2s; }
  .btn-primary:hover svg { transform: translateX(3px); }

  .btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--text); padding: 14px 24px; border-radius: 8px;
    font-family: var(--font-body); font-size: 15px; font-weight: 500;
    text-decoration: none; border: 1px solid var(--border);
    cursor: pointer; background: transparent; transition: all 0.2s;
  }
  .btn-ghost:hover { border-color: rgba(19,116,184,0.4); color: var(--accent-light); background: rgba(19,116,184,0.05); }

  /* STATS STRIP */
  .stats-strip {
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    background: var(--surface); padding: 28px 5vw;
    display: flex; align-items: center; justify-content: center;
    gap: clamp(32px,6vw,80px); flex-wrap: wrap;
  }
  .stat-item { text-align: center; }
  .stat-num {
    display: block; font-family: var(--font-head);
    font-size: clamp(28px,3.5vw,40px); font-weight: 800;
    color: var(--accent); letter-spacing: -0.03em; line-height: 1; margin-bottom: 4px;
  }
  .stat-num.green { color: var(--green); }
  .stat-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; }
  .stat-divider { width: 1px; height: 40px; background: var(--border); }

  /* SECTIONS */
  section { padding: clamp(60px,8vw,120px) 5vw; position: relative; }
  .section-label { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-light); margin-bottom: 16px; }
  .section-title { font-family: var(--font-head); font-size: clamp(32px,4vw,52px); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; color: var(--heading); margin-bottom: 16px; }
  .title-blue { color: #1374B8; }
  .title-green { color: #8FC345; }
  .section-sub { font-size: 17px; color: var(--muted); max-width: 560px; line-height: 1.7; }



  /* PROBLEM */
  .problem-section { background: var(--bg2); }
  .problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; margin-top: 48px; }
  .pain-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 0; }
  .pain-list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 15px; color: var(--text);
  }
  .pain-list li::before { content: "✕"; color: #e05555; font-size: 11px; font-weight: 700; margin-top: 3px; flex-shrink: 0; }
  .solution-card {
    background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
    padding: 40px; position: relative; overflow: hidden;
    display: flex; flex-direction: column;
  }
  .solution-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--accent), var(--green)); }
  .solution-card h3 { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--heading); margin-bottom: 20px; }
  .check-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
  .check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text); }
  .check-list li::before {
    content: ''; width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238FC345' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  }

  /* STEPS */
  .steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: 60px; background: var(--border); border-radius: 12px; overflow: hidden; }
  .step { background: var(--surface); padding: 36px 28px; transition: background 0.2s; }
  .step:hover { background: var(--surface2); }
  .step-num { font-family: var(--font-head); font-size: 48px; font-weight: 800; color: rgba(19,116,184,0.13); line-height: 1; margin-bottom: 20px; letter-spacing: -0.05em; }
  .step-icon {
    width: 44px; height: 44px; background: rgba(19,116,184,0.1);
    border: 1px solid rgba(19,116,184,0.2); border-radius: 10px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  }
  .step h4 { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--heading); margin-bottom: 10px; }
  .step p { font-size: 14px; color: var(--muted); line-height: 1.6; }

  /* SOLUTIONS */
  .solutions-section { background: var(--bg2); }
  .solutions-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 60px; }
  .solution-tile {
    background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
    padding: 32px; transition: all 0.25s; cursor: pointer; position: relative; overflow: hidden;
  }
  .solution-tile::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--green));
    transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
  }
  .solution-tile:hover { border-color: rgba(19,116,184,0.35); transform: translateY(-3px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
  .solution-tile:hover::after { transform: scaleX(1); }
  .tile-tag {
    display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--green); background: rgba(143,195,69,0.08);
    border: 1px solid rgba(143,195,69,0.22); border-radius: 4px; padding: 3px 10px; margin-bottom: 16px;
  }
  .solution-tile h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--heading); margin-bottom: 12px; }
  .solution-tile p { font-size: 14px; color: var(--muted); line-height: 1.65; }
  .tile-next { background: repeating-linear-gradient(45deg,rgba(19,116,184,0.025),rgba(19,116,184,0.025) 10px,transparent 10px,transparent 20px); border-style: dashed; }

  /* ABOUT */
  .team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
  .team-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px; padding: 32px;
    transition: transform 0.2s, border-color 0.2s;
    display: flex; flex-direction: column; align-items: center;
    text-align: center;
  }
  .team-card:hover { border-color: rgba(19,116,184,0.35); transform: translateY(-2px); }
  .avatar {
    width: 64px; height: 64px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--green));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head); font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 20px;
  }
  .team-card h3 { font-family: var(--font-head); font-size: 19px; font-weight: 700; color: var(--heading); margin-bottom: 4px; }
  .team-role { font-size: 12px; font-weight: 600; color: var(--accent-light); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
  .team-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }
  .exp-tag {
    display: inline-block; font-size: 11px; font-weight: 700; color: var(--green);
    background: rgba(143,195,69,0.08); border: 1px solid rgba(143,195,69,0.2);
    border-radius: 4px; padding: 2px 8px; margin-bottom: 14px;
  }

  .mission-block {
    background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
    padding: clamp(40px,5vw,64px); margin-bottom: 60px; position: relative; overflow: hidden;
  }
  .mission-block::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--accent), var(--green)); }
  .mission-block blockquote { font-family: var(--font-head); font-size: clamp(19px,2.3vw,27px); font-weight: 600; color: var(--heading); line-height: 1.45; letter-spacing: -0.02em; max-width: 720px; }

  /* DECADES BAND */
  .decades-band { background: var(--bg2); padding: 60px 5vw; }
  .decades-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
  .decade-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 28px; transition: all 0.2s; }
  .decade-card:hover { border-color: rgba(143,195,69,0.3); transform: translateY(-2px); }
  .decade-num { font-family: var(--font-head); font-size: 42px; font-weight: 800; color: var(--green); letter-spacing: -0.04em; line-height: 1; margin-bottom: 8px; }
  .decade-card h4 { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--heading); margin-bottom: 8px; }
  .decade-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

  /* NEWS */
  .news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
  .news-card { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 28px; transition: all 0.2s; cursor: pointer; }
  .news-card:hover { border-color: rgba(19,116,184,0.3); transform: translateY(-2px); }
  .news-card a::after { content: ''; position: absolute; inset: 0; border-radius: 12px; }
  .news-tag { font-size: 11px; font-weight: 700; color: var(--accent-light); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
  .news-card h4 { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--heading); margin-bottom: 10px; line-height: 1.3; }
  .news-card p { font-size: 14px; color: var(--text); line-height: 1.6; }
  .news-date { font-size: 12px; color: var(--muted); margin-top: 16px; }
  .news-empty { text-align: center; padding: 60px 20px; background: var(--surface); border: 1px dashed var(--border); border-radius: 16px; margin-top: 32px; }
  .news-empty p { color: var(--muted); font-size: 15px; }

  /* CONTACT */
  .contact-section { background: var(--bg2); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 60px; }
  .contact-info h3 { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--heading); margin-bottom: 16px; }
  .contact-info p { color: var(--text); font-size: 15px; line-height: 1.7; margin-bottom: 32px; }
  .contact-detail { display: flex; align-items: center; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--border); font-size: 15px; }
  .contact-detail:last-of-type { border-bottom: none; }
  .contact-icon { width: 36px; height: 36px; background: rgba(19,116,184,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .contact-detail a { color: var(--text); text-decoration: none; transition: color 0.2s; }
  .contact-detail a:hover { color: var(--accent-light); }

  .demo-form { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 40px; position: relative; overflow: hidden; }
  .demo-form::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--accent), var(--green)); }
  .demo-form h3 { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--heading); margin-bottom: 8px; }
  .form-sub { font-size: 14px; color: var(--text); margin-bottom: 28px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
  .form-group label { font-size: 12px; font-weight: 600; color: var(--text); text-transform: uppercase; letter-spacing: 0.06em; }
  .form-group input, .form-group select, .form-group textarea {
    background: var(--bg2); border: 1px solid var(--border); border-radius: 8px;
    padding: 12px 16px; color: var(--text); font-family: var(--font-body); font-size: 15px;
    transition: border-color 0.2s; outline: none; width: 100%;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(19,116,184,0.12); }
  .form-group select { appearance: none; cursor: pointer; }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .role-other-wrap { margin-top: 8px; }
  .standards-checks {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px;
    padding: 12px 16px; border: 1px solid var(--border); border-radius: 8px;
    background: var(--bg2);
  }
  .standards-checks label {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 400; text-transform: none; letter-spacing: 0;
    color: var(--text); cursor: pointer; padding: 4px 0;
  }
  .standards-checks input[type="checkbox"] {
    accent-color: #1374B8; width: 15px; height: 15px; flex-shrink: 0; cursor: pointer;
  }
  .light-section .standards-checks label { color: #dceaf5; }
  .form-success { display: none; text-align: center; padding: 40px 20px; }
  .form-success .success-icon { width: 60px; height: 60px; background: rgba(143,195,69,0.1); border: 1px solid rgba(143,195,69,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 24px; color: var(--green); }
  .form-success h4 { font-family: var(--font-head); font-size: 22px; color: var(--heading); margin-bottom: 10px; }
  .form-success p { color: var(--text); font-size: 14px; }

  /* CTA BANNER */
  .cta-banner {
    background: linear-gradient(135deg, #041120 0%, #071a30 50%, #041019 100%);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    padding: clamp(60px,8vw,100px) 5vw; text-align: center; position: relative; overflow: hidden;
  }
  .cta-banner::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 300px; background: radial-gradient(ellipse, rgba(19,116,184,0.1) 0%, transparent 70%); pointer-events: none; }
  .cta-banner h2 { font-family: var(--font-head); font-size: clamp(30px,4vw,50px); font-weight: 800; color: var(--heading); letter-spacing: -0.03em; margin-bottom: 16px; position: relative; }
  .cta-banner p { font-size: 17px; color: var(--muted); margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; position: relative; }
  .cta-banner .btn-primary { position: relative; font-size: 16px; padding: 16px 36px; }

  /* FOOTER */
  footer { background: var(--bg); border-top: 1px solid var(--border); padding: 48px 5vw 32px; }
  .footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; margin-bottom: 40px; flex-wrap: wrap; }
  .footer-brand p { font-size: 14px; color: var(--muted); max-width: 280px; line-height: 1.6; margin-top: 12px; }
  .footer-logo-img { height: 40px; width: auto; object-fit: contain; margin-bottom: 8px; display: block; }
  .footer-nav h5 { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
  .footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-nav a { font-size: 14px; color: var(--muted); text-decoration: none; cursor: pointer; transition: color 0.2s; }
  .footer-nav a:hover { color: var(--text); }
  .footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
  .footer-bottom p { font-size: 13px; color: var(--muted); }
  .patent-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; color: var(--green); background: rgba(143,195,69,0.06); border: 1px solid rgba(143,195,69,0.2); border-radius: 4px; padding: 4px 10px; letter-spacing: 0.06em; text-transform: uppercase; }

  /* ANIMATIONS */
  @keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* MOBILE */
  .mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: rgba(4,13,24,0.97); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); z-index: 99; padding: 20px 5vw 28px; flex-direction: column; gap: 4px; }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { color: var(--text); text-decoration: none; font-size: 16px; font-weight: 500; padding: 14px 0; border-bottom: 1px solid var(--border); cursor: pointer; display: block; }
  .mobile-menu a:last-child { border-bottom: none; color: var(--accent-light); font-weight: 600; }

  @media (max-width: 900px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .problem-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .solutions-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .team-grid, .decades-grid, .news-grid { grid-template-columns: 1fr; max-width: 480px; }
    .form-row { grid-template-columns: 1fr; }
    .stat-divider { display: none; }
    .footer-top { flex-direction: column; }
  }
  @media (max-width: 600px) {
    .solutions-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
  }

  /* dp brand name inline styling */
  .dp-brand .dp-data { color: #1374B8; }
  .dp-brand .dp-phleet { color: #8FC345; }

  /* ── DIFFERENTIATION SECTION ── */
  .diff-section {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: clamp(50px,7vw,90px) 5vw;
  }

  .diff-intro { text-align: center; margin-bottom: 48px; }
  .diff-intro-inner { max-width: 680px; margin: 0 auto; }
  .diff-headline {
    font-family: var(--font-head);
    font-size: clamp(26px, 3.2vw, 42px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--heading);
    margin-bottom: 16px;
  }
  .diff-sub {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto;
  }

  .diff-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 28px;
  }

  .diff-card {
    border-radius: 14px;
    padding: 32px;
    position: relative;
    overflow: hidden;
  }

  .diff-card-old {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
  }

  .diff-card-new {
    background: rgba(19,116,184,0.06);
    border: 1px solid rgba(19,116,184,0.22);
  }
  .diff-card-new::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--green));
  }

  .diff-card-header {
    display: flex; align-items: flex-start;
    justify-content: space-between; gap: 12px; margin-bottom: 18px;
  }

  .diff-card-label {
    font-family: var(--font-head);
    font-size: 15px; font-weight: 700;
    line-height: 1.3;
  }
  .diff-label-old { color: var(--muted); }
  .diff-label-new { color: var(--accent-light); }

  .diff-card-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
  }
  .diff-icon-old { background: rgba(255,255,255,0.04); color: var(--muted); }
  .diff-icon-new { background: rgba(19,116,184,0.15); color: var(--accent-light); }

  .diff-card-subtitle {
    font-size: 12px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.07em;
    color: var(--muted); margin-bottom: 10px;
  }

  .diff-list {
    list-style: none;
    display: flex; flex-direction: column; gap: 8px;
    margin-bottom: 0;
  }

  .diff-list li {
    font-size: 14px;
    line-height: 1.5;
    padding-left: 20px;
    position: relative;
  }

  .diff-list li::before {
    content: '';
    position: absolute; left: 0; top: 6px;
    width: 8px; height: 8px; border-radius: 50%;
  }

  .diff-list-neutral li { color: var(--muted); }
  .diff-list-neutral li::before { background: rgba(255,255,255,0.15); }

  .diff-list-bad li { color: #c07070; }
  .diff-list-bad li::before { background: rgba(200,80,80,0.4); }

  .diff-list-good li { color: var(--text); }
  .diff-list-good li::before { background: var(--green); opacity: 0.8; }

  .diff-divider {
    height: 1px;
    background: var(--border);
    margin: 18px 0;
  }

  .diff-verdict {
    margin-top: 20px;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
  }
  .diff-verdict-old {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    color: var(--muted);
  }
  .diff-verdict-new {
    background: rgba(143,195,69,0.22);
    border: 1px solid rgba(143,195,69,0.45);
    color: #2d4a0e;
  }

  .diff-bottom {
    text-align: center;
    padding: 36px 20px 0;
    border-top: 1px solid var(--border);
  }
  .diff-bottom-inner { max-width: 100%; margin: 0 auto; }
  .diff-bottom-label {
    display: inline-block;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--accent-light); margin-bottom: 12px;
  }
  .diff-bottom-text {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text);
    line-height: 1.6;
  }
  .diff-bottom-text strong { color: var(--green); }

  @media (max-width: 760px) {
    .diff-compare { grid-template-columns: 1fr; }
  }


  /* ── WHY PAGE ── */
  .why-grid-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .why-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s;
  }
  .why-card:hover { transform: translateY(-2px); border-color: rgba(19,116,184,0.3); }

  .why-card-top {
    padding: 28px 28px 20px;
    border-bottom: 1px solid var(--border);
  }

  .why-card-tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.09em; color: var(--accent-light);
    background: rgba(19,116,184,0.08); border: 1px solid rgba(19,116,184,0.18);
    border-radius: 4px; padding: 3px 10px; margin-bottom: 14px;
  }

  .why-card h3 {
    font-family: var(--font-head);
    font-size: 18px; font-weight: 700;
    color: var(--heading); line-height: 1.3;
    letter-spacing: -0.02em; margin-bottom: 10px;
  }

  .why-card-challenge {
    font-size: 14px; color: var(--text); line-height: 1.7;
  }

  .why-card-bottom {
    padding: 20px 28px 24px;
    background: rgba(143,195,69,0.04);
  }

  .why-card-dp-label {
    display: flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.09em; color: var(--green);
    margin-bottom: 10px;
  }
  .why-card-dp-label::before {
    content: "";
    display: inline-block; width: 16px; height: 2px;
    background: var(--green); border-radius: 2px;
  }

  .why-card-dp-response {
    font-size: 14px; color: var(--text); line-height: 1.7;
  }

  .why-source {
    font-size: 11px; color: var(--muted);
    margin-top: 10px; font-style: italic;
  }

  .why-refresh {
    text-align: center;
    padding: 40px 0 0;
    border-top: 1px solid var(--border);
    margin-top: 8px;
  }

  @media (max-width: 780px) {
    .why-grid-inner { grid-template-columns: 1fr; }
  }


  /* TEAM PHOTOS */
  .team-photo-wrap {
    width: 100px; height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 2px solid rgba(19,116,184,0.3);
    position: relative;
  }
  .team-photo {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    display: block;
  }
  .avatar-placeholder {
    width: 100%; height: 100%;
    border-radius: 50%;
    margin-bottom: 0;
  }


  /* ══════════════════════════════════════════
     LIGHT THEME — everything below the hero
     ══════════════════════════════════════════ */
  .light-section {
    background: #ffffff;
    color: #2d3a52;
  }
  .light-section * { box-sizing: border-box; }

  /* Backgrounds */
  .light-section .diff-section        { background: #f4f7fb; }
  .light-section .hiw-section         { background: #ffffff; }
  .light-section .problem-solution    { background: #f4f7fb; }
  .light-section .cta-banner          { background: linear-gradient(135deg, #0f3d6e 0%, #1374B8 100%); }
  .light-section .solutions-section   { background: #ffffff; }
  .light-section .about-section       { background: #ffffff; }
  .light-section .decades-band        { background: #f4f7fb; }
  .light-section .nerc-exp-band       { background: #eef2f8; }
  .light-section .news-section        { background: #ffffff; }
  .light-section .contact-section     { background: #f4f7fb; }
  .light-section .why-section         { background: #ffffff; }

  /* Text */
  .light-section h1,
  .light-section h2,
  .light-section h3,
  .light-section h4,
  .light-section .section-title       { color: #0d1422; }
  .light-section p,
  .light-section li                   { color: #2d3a52; }
  .light-section .section-sub         { color: #4a5568; }
  .light-section .muted               { color: #6b7a96; }

  /* Cards */
  .light-section .solution-tile,
  .light-section .news-card,
  .light-section .team-card,
  .light-section .why-card,
  .light-section .diff-card-old       { background: #ffffff; border-color: rgba(0,0,0,0.09); box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
  .light-section .diff-card-new       { background: rgba(19,116,184,0.04); border-color: rgba(19,116,184,0.2); }
  .light-section .decade-card         { background: #ffffff; border-color: rgba(0,0,0,0.09); }
  .light-section .hiw-step            { background: #ffffff; border-color: rgba(0,0,0,0.09); }

  /* Section labels */
  .light-section .section-label       { color: #1374B8; background: rgba(19,116,184,0.07); border-color: rgba(19,116,184,0.2); }

  /* Borders & dividers */
  .light-section .diff-divider        { background: rgba(0,0,0,0.09); }
  .light-section .footer-divider,
  .light-section hr                   { border-color: rgba(0,0,0,0.09); }

  /* Muted text overrides */
  .light-section .team-role           { color: #6b7a96; }
  .light-section .news-date           { color: #6b7a96; }
  .light-section .tile-tag            { color: #1374B8; background: rgba(19,116,184,0.07); border-color: rgba(19,116,184,0.18); }
  .light-section .news-tag            { color: #1374B8; background: rgba(19,116,184,0.07); border-color: rgba(19,116,184,0.18); }
  .light-section .why-card-tag        { color: #1374B8; background: rgba(19,116,184,0.07); border-color: rgba(19,116,184,0.18); }
  .light-section .why-card-challenge,
  .light-section .why-card-dp-response { color: #2d3a52; }
  .light-section .why-source          { color: #6b7a96; }
  .light-section .diff-list li        { color: #2d3a52; }
  .light-section .diff-list-bad li    { color: #c05a20; }
  .light-section .diff-list-neutral li { color: #4a5568; }
  .light-section .diff-card-subtitle  { color: #6b7a96; }
  .light-section .diff-card-label.diff-label-old { color: #4a5568; }
  .light-section .diff-card-label.diff-label-new { color: #1374B8; }
  .light-section .diff-bottom-text    { color: #2d3a52; }
  .light-section .diff-bottom         { border-top-color: rgba(0,0,0,0.09); }
  .light-section .diff-verdict-old    { background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.08); color: #4a5568; }
  .light-section .diff-verdict-new    { background: rgba(106,158,42,0.18); border-color: rgba(106,158,42,0.4); color: #1e3a08; }
  .light-section .why-card-bottom     { background: rgba(106,158,42,0.05); }
  .light-section .why-card-dp-label   { color: #5a8a1e; }
  .light-section .hiw-number          { color: #1374B8; }
  .light-section .hiw-connector       { background: rgba(0,0,0,0.09); }
  .light-section .decade-num          { color: #1374B8; }
  .light-section .nerc-exp-num        { color: #1374B8; }
  .light-section .nerc-exp-desc       { color: #2d3a52; }
  .light-section .nerc-exp-divider    { background: rgba(0,0,0,0.09); }
  .light-section .nerc-exp-label      { color: #6b7a96; }
  .light-section .footer-nav a        { color: #4a5568; }
  .light-section .footer-nav h5       { color: #6b7a96; }

  /* Form inputs */
  .light-section input,
  .light-section textarea,
  .light-section select               { background: #fff; color: #0d1422; border-color: rgba(0,0,0,0.15); }
  .light-section input::placeholder,
  .light-section textarea::placeholder { color: #9aa5b4; }
  .light-section label                { color: #2d3a52; }

  /* Demo form card has a dark surface background — keep its text light */
  .light-section .demo-form h3,
  .light-section .demo-form p,
  .light-section .demo-form label     { color: #dceaf5; }
  .light-section .demo-form .form-success p { color: #dceaf5; }

  /* "Who this is for" dark box inside contact-info */
  .light-section .contact-who-box,
  .light-section .contact-who-box li  { color: #dceaf5; }

  /* Btn ghost on light bg */
  .light-section .btn-ghost           { border-color: rgba(0,0,0,0.2); color: #2d3a52; }
  .light-section .btn-ghost:hover     { background: rgba(0,0,0,0.05); }

  /* CTA banner text stays white */
  .light-section .cta-banner h2,
  .light-section .cta-banner p        { color: #ffffff; }

  /* Nav white state */
  nav.scrolled {
    background: rgba(255,255,255,0.97) !important;
    border-bottom-color: rgba(0,0,0,0.09) !important;
    box-shadow: 0 1px 12px rgba(0,0,0,0.08) !important;
  }
  nav.scrolled .nav-link:not(.nav-cta) { color: #2d3a52 !important; }
  nav.scrolled .nav-link:not(.nav-cta):hover { color: #1374B8 !important; }

  /* Fade strip hero→white */
  .hero-fade {
    height: 80px;
    background: linear-gradient(to bottom, #081520 0%, #ffffff 100%);
    display: block;
  }


  /* Problem section + How It Works — light overrides */
  .light-section .problem-section     { background: #f4f7fb; }
  .light-section .step                { background: #ffffff; }
  .light-section .steps-grid          { background: rgba(0,0,0,0.07); }
  .light-section .step h3             { color: #0d1422; }
  .light-section .step p              { color: #2d3a52; }
  .light-section .step-num            { color: rgba(19,116,184,0.18); }
  .light-section .step-icon           { background: rgba(19,116,184,0.08); border-color: rgba(19,116,184,0.18); }
  .light-section .step-icon svg       { stroke: #1374B8; }
  .light-section .problem-grid > div  { background: #ffffff; border-color: rgba(0,0,0,0.09); }
  .light-section .problem-grid h3     { color: #0d1422; }
  .light-section .problem-grid p      { color: #2d3a52; }
  .light-section .problem-grid li     { color: #2d3a52; }


  .old-way-card {
    background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
    padding: 40px; position: relative; overflow: hidden;
    display: flex; flex-direction: column;
  }
  .old-way-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, #d4600a, #f0a050);
  }
  .old-way-card h3 { font-family: var(--font-head); font-size: 22px; font-weight: 800;
    color: var(--heading); letter-spacing: -0.03em; margin-bottom: 24px; }
  .old-way-card .pain-list { margin-top: 0; }

  /* Light theme overrides for old-way-card */
  .light-section .old-way-card {
    background: #fff8f3;
    border: 1px solid rgba(212,96,10,0.2);
    box-shadow: 0 2px 8px rgba(212,96,10,0.06);
  }
  .light-section .old-way-card h3 { color: #0d1422; }
  .light-section .pain-list li::before { color: #c0392b; }

  /* Pain list items — orange background instead of pink */
  .light-section .pain-list li {
    color: #2d3a52;
  }


  /* ── PAGE HERO HEADERS (non-home pages) ── */
  .page-hero {
    position: relative;
    background: linear-gradient(160deg, #040d18 0%, #0a1a2e 55%, #081520 100%);
    padding: clamp(90px,10vw,130px) 5vw clamp(48px,6vw,72px);
    overflow: hidden;
    text-align: center;
  }
  .page-hero-canvas {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    pointer-events: none; z-index: 0;
    mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 20%, transparent 100%);
  }
  .page-hero-content {
    position: relative; z-index: 1;
  }
  .page-hero .section-label {
    color: #8FC345;
    background: rgba(143,195,69,0.12);
    border-color: rgba(143,195,69,0.3);
  }
  .page-hero .section-title {
    color: #ffffff;
    margin-top: 12px;
  }
  .page-hero .section-sub {
    color: rgba(255,255,255,0.70);
    margin: 0 auto;
    text-align: center;
  }
  /* Fade from dark hero to white content below */
  .page-hero-fade {
    height: 64px;
    background: linear-gradient(to bottom, #081520 0%, #ffffff 100%);
    display: block;
  }
  /* Filter bar (news page) on dark bg */
  .page-hero .news-filter-bar { margin-top: 24px; }
  .page-hero .news-filter-btn {
    border-color: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.06);
  }
  .page-hero .news-filter-btn:hover {
    border-color: #8FC345; color: #8FC345;
    background: rgba(143,195,69,0.1);
  }
  .page-hero .news-filter-btn.active {
    background: #1374B8; color: #fff; border-color: #1374B8;
  }


  /* ══════════════════════════════════════════
     WHY DATA PHLEET PAGE — SCOPED STYLES
     ══════════════════════════════════════════ */

  /* ── PAGE LAYOUT ── */
  #page-why {
    background: #f5f6f8;
    min-height: 100vh;
  }
  #page-why .page-hero h1.section-title { color: #ffffff; }
  #page-why .page-hero-fade {
    background: linear-gradient(to bottom, #081520 0%, #f5f6f8 100%);
  }
  #page-why .page-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 16px 32px 72px;
  }

  /* ── BRAND NAME ── */
  #page-why .dp   { font-weight: 700; font-style: normal; }
  #page-why .dp-d { color: #1374B8; }
  #page-why .dp-p { color: #8FC345; }

  /* ── TYPOGRAPHY ── */
  #page-why h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(26px, 4vw, 34px);
    font-weight: 700;
    letter-spacing: .01em;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 12px;
  }
  #page-why h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: .01em;
    line-height: 1.25;
    color: #1a1a1a;
    margin-bottom: 8px;
  }
  #page-why .lead {
    font-size: 15px;
    color: #5f6368;
    line-height: 1.7;
    max-width: 620px;
  }

  /* ── BADGE ── */
  #page-why .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 20px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 13px;
    margin-bottom: 14px;
  }
  #page-why .badge-blue  { background: rgba(19,116,184,0.10);  color: #1374B8;   border: 0.5px solid #1374B8; }
  #page-why .badge-green { background: rgba(143,195,69,0.12); color: #6A9B2E; border: 0.5px solid #8FC345; }

  /* ── DIVIDER ── */
  #page-why .sep { height: 0.5px; background: rgba(0,0,0,0.10); margin: 40px 0; }

  /* ── NERC HOURS COMPARISON (replaces speed card) ── */
  #page-why .nerc-hours-wrap {
    --nh-blue:       #1374B8;
    --nh-blue2:      #0F5A92;
    --nh-blue3:      #0A3F6A;
    --nh-blue-light: #E6F2FA;
    --nh-blue-glow:  rgba(19,116,184,0.10);
    --nh-green:      #8FC345;
    --nh-green2:     #6A9B2E;
    --nh-amber:      #E8800A;
    --nh-red:        #D94F4F;
    --nh-text:       #1a1a1a;
    --nh-muted:      #5a6270;
    --nh-muted2:     #8a909a;
    --nh-border:     rgba(0,0,0,0.09);
    --nh-border2:    rgba(0,0,0,0.14);
    --nh-bg:         #ffffff;
    --nh-bg2:        #f5f7fa;
    --nh-bg3:        #edf0f4;
    font-family: 'Inter', sans-serif;
    color: var(--nh-text);
    margin: 24px 0;
  }
  #page-why .nerc-hours-wrap .sect-label {
    font-size: 11px; font-weight: 600; text-transform: uppercase;
    letter-spacing: .08em; color: var(--nh-muted2); margin-bottom: 10px;
  }
  #page-why .nerc-hours-wrap .controls-card {
    background: var(--nh-bg2); border-radius: 14px; padding: 18px 20px; margin-bottom: 20px;
  }
  #page-why .nerc-hours-wrap .top-row {
    display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 16px;
  }
  #page-why .nerc-hours-wrap .site-label { font-size: 13px; color: var(--nh-muted); white-space: nowrap; }
  #page-why .nerc-hours-wrap .site-val   { font-size: 16px; font-weight: 600; color: var(--nh-blue); min-width: 28px; }
  #page-why .nerc-hours-wrap input[type="range"] {
    -webkit-appearance: none; appearance: none; height: 4px;
    background: #d0d5dd; border-radius: 2px; outline: none; cursor: pointer; flex: 1; min-width: 140px;
  }
  #page-why .nerc-hours-wrap input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%;
    background: var(--nh-blue); cursor: pointer; border: 2px solid #fff;
    box-shadow: 0 0 0 1px var(--nh-blue);
  }
  #page-why .nerc-hours-wrap input[type="range"]::-moz-range-thumb {
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--nh-blue); cursor: pointer; border: 2px solid #fff;
  }
  #page-why .nerc-hours-wrap .cb-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  }
  #page-why .nerc-hours-wrap .cb-item {
    display: flex; align-items: flex-start; gap: 8px; cursor: pointer;
    padding: 8px 10px; border-radius: 8px; border: 0.5px solid var(--nh-border2);
    background: var(--nh-bg); transition: border-color .15s, background .15s; user-select: none;
  }
  #page-why .nerc-hours-wrap .cb-item:hover { border-color: rgba(0,0,0,0.2); background: var(--nh-bg2); }
  #page-why .nerc-hours-wrap .cb-item.checked { border-color: var(--nh-blue); background: var(--nh-blue-glow); }
  #page-why .nerc-hours-wrap .cb-box {
    width: 16px; height: 16px; border-radius: 3px; border: 1.5px solid #adb5bd;
    flex-shrink: 0; margin-top: 1px; display: flex; align-items: center; justify-content: center;
    background: var(--nh-bg); transition: background .12s, border-color .12s;
  }
  #page-why .nerc-hours-wrap .cb-item.checked .cb-box { background: var(--nh-blue); border-color: var(--nh-blue); }
  #page-why .nerc-hours-wrap .cb-check { width: 9px; height: 9px; display: none; }
  #page-why .nerc-hours-wrap .cb-item.checked .cb-check { display: block; }
  #page-why .nerc-hours-wrap .cb-text { font-size: 12px; color: var(--nh-text); line-height: 1.35; }
  #page-why .nerc-hours-wrap .cb-sub  { font-size: 10.5px; color: var(--nh-muted); margin-top: 1px; }
  #page-why .nerc-hours-wrap .ibr-badge {
    display: inline-flex; align-items: center; font-size: 9.5px; font-weight: 600;
    padding: 1px 7px; border-radius: 4px; background: #E6F2FA; color: #0F5A92;
    margin-left: 5px; vertical-align: middle;
  }
  #page-why .nerc-hours-wrap .stat-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 18px;
  }
  #page-why .nerc-hours-wrap .stat-box {
    background: var(--nh-bg2); border-radius: 8px; padding: 14px 16px;
  }
  #page-why .nerc-hours-wrap .stat-n { font-size: 24px; font-weight: 600; line-height: 1.1; margin-bottom: 3px; }
  #page-why .nerc-hours-wrap .stat-l { font-size: 11px; color: var(--nh-muted); }
  #page-why .nerc-hours-wrap .charts-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 8px;
  }
  #page-why .nerc-hours-wrap .chart-box {
    background: var(--nh-bg); border: 1px solid var(--nh-border);
    border-radius: 14px; padding: 18px 16px 14px;
  }
  #page-why .nerc-hours-wrap .chart-box-title {
    font-size: 18px; font-weight: 600; text-align: center; margin-bottom: 14px;
    font-family: 'Rajdhani', sans-serif; letter-spacing: .02em;
  }
  #page-why .nerc-hours-wrap .chart-box-title.manual { color: #E8800A; }
  #page-why .nerc-hours-wrap .chart-box-title.auto   { color: #6A9B2E; }
  #page-why .nerc-hours-wrap .chart-wrap { position: relative; width: 100%; height: 220px; }
  #page-why .nerc-hours-wrap .chart-note {
    font-size: 10.5px; color: var(--nh-muted2); margin-top: 4px; margin-bottom: 4px;
  }
  #page-why .nerc-hours-wrap .nh-sep { height: 1px; background: var(--nh-border); margin: 28px 0; }
  #page-why .nerc-hours-wrap .checks-section-label {
    font-size: 11px; font-weight: 600; text-transform: uppercase;
    letter-spacing: .08em; color: var(--nh-muted2); margin-bottom: 12px;
  }
  #page-why .nerc-hours-wrap .checks-grid { display: flex; flex-direction: column; gap: 8px; }
  #page-why .nerc-hours-wrap .check-row {
    background: var(--nh-bg); border: 1px solid var(--nh-border);
    border-radius: 14px; overflow: hidden; transition: border-color .15s;
  }
  #page-why .nerc-hours-wrap .check-row.open { border-color: var(--nh-blue); }
  #page-why .nerc-hours-wrap .check-header {
    display: grid; grid-template-columns: 1fr auto auto auto;
    align-items: center; gap: 12px; padding: 14px 18px;
    cursor: pointer; transition: background .15s;
  }
  #page-why .nerc-hours-wrap .check-header:hover { background: var(--nh-bg2); }
  #page-why .nerc-hours-wrap .check-row.open .check-header { background: var(--nh-blue-glow); }
  #page-why .nerc-hours-wrap .check-name { font-size: 13.5px; font-weight: 600; color: var(--nh-text); line-height: 1.3; }
  #page-why .nerc-hours-wrap .check-sub  { font-size: 11px; color: var(--nh-muted); margin-top: 2px; }
  #page-why .nerc-hours-wrap .hours-pill {
    font-size: 12px; font-weight: 600; padding: 3px 10px;
    border-radius: 20px; white-space: nowrap; flex-shrink: 0;
  }
  #page-why .nerc-hours-wrap .pill-lo { background: #E7F4E3; color: #3B6D11; }
  #page-why .nerc-hours-wrap .pill-md { background: #FEF3E2; color: #7a4000; }
  #page-why .nerc-hours-wrap .pill-hi { background: #FDEAEA; color: #7a1a1a; }
  #page-why .nerc-hours-wrap .bar-outer {
    width: 90px; height: 5px; background: var(--nh-bg3);
    border-radius: 3px; flex-shrink: 0; overflow: hidden;
  }
  #page-why .nerc-hours-wrap .bar-inner { height: 100%; border-radius: 3px; }
  #page-why .nerc-hours-wrap .expand-btn {
    display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600;
    color: var(--nh-blue); white-space: nowrap; flex-shrink: 0; padding: 4px 10px;
    border-radius: 8px; border: 0.5px solid var(--nh-blue); background: var(--nh-blue-glow);
    transition: background .15s, color .15s; cursor: pointer;
  }
  #page-why .nerc-hours-wrap .check-row.open .expand-btn { background: var(--nh-blue); color: #fff; }
  #page-why .nerc-hours-wrap .expand-icon { font-size: 10px; transition: transform .2s; display: inline-block; }
  #page-why .nerc-hours-wrap .check-row.open .expand-icon { transform: rotate(180deg); }
  #page-why .nerc-hours-wrap .check-detail {
    display: none; padding: 0 18px 18px; border-top: 1px solid var(--nh-border);
  }
  #page-why .nerc-hours-wrap .check-row.open .check-detail { display: block; }
  #page-why .nerc-hours-wrap .phase-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin: 14px 0 12px;
  }
  #page-why .nerc-hours-wrap .phase-box { background: var(--nh-bg2); border-radius: 8px; padding: 10px 11px; }
  #page-why .nerc-hours-wrap .phase-lbl {
    font-size: 9.5px; color: var(--nh-muted2); text-transform: uppercase;
    letter-spacing: .05em; margin-bottom: 3px;
  }
  #page-why .nerc-hours-wrap .phase-val { font-size: 13px; font-weight: 600; color: var(--nh-text); }
  #page-why .nerc-hours-wrap .driver-title {
    font-size: 10px; font-weight: 600; text-transform: uppercase;
    letter-spacing: .06em; color: var(--nh-muted2); margin-bottom: 6px;
  }
  #page-why .nerc-hours-wrap .driver-list {
    font-size: 12.5px; color: var(--nh-muted); line-height: 1.7; padding-left: 16px;
  }
  #page-why .nerc-hours-wrap .nh-cta {
    margin-top: 24px; background: #0A3F6A; border-radius: 14px; padding: 20px 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    flex-wrap: wrap; border: 1px solid #0F5A92;
  }
  #page-why .nerc-hours-wrap .nh-cta-text { font-size: 13px; color: #c8dff0; line-height: 1.6; }
  #page-why .nerc-hours-wrap .nh-cta-name { font-weight: 600; }
  #page-why .nerc-hours-wrap .nh-cta-btn {
    background: #8FC345; color: #1a3a08; border: none; border-radius: 9px;
    font-size: 14px; font-weight: 700; padding: 11px 24px; cursor: pointer;
    flex-shrink: 0; transition: opacity .15s;
  }
  #page-why .nerc-hours-wrap .nh-cta-btn:hover { opacity: .88; }
  #page-why .nerc-hours-wrap .nh-disclaimer {
    font-size: 11px; color: var(--nh-muted2); line-height: 1.65;
    margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--nh-border);
  }
  @media (max-width: 700px) {
    #page-why .nerc-hours-wrap .cb-grid { grid-template-columns: 1fr 1fr; }
    #page-why .nerc-hours-wrap .charts-row { grid-template-columns: 1fr; }
    #page-why .nerc-hours-wrap .phase-grid { grid-template-columns: repeat(2, 1fr); }
    #page-why .nerc-hours-wrap .check-header { grid-template-columns: 1fr auto auto; }
    #page-why .nerc-hours-wrap .bar-outer { display: none; }
    #page-why .nerc-hours-wrap .nh-cta { flex-direction: column; }
  }

  /* ── LIFECYCLE DIAGRAM ── */
  #page-why .diagram-card {
    background: #ffffff;
    border: 0.5px solid rgba(0,0,0,0.10);
    border-radius: 14px;
    padding: 24px 22px 20px;
    margin: 24px 0;
  }
  #page-why .diagram-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #5f6368;
    margin-bottom: 16px;
  }

  /* ── WORKFLOW STEPPER ── */
  #page-why .wf-section { margin: 28px 0 12px; }
  #page-why .wf-section-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #5f6368;
    margin-bottom: 14px;
  }
  #page-why .wf { display: flex; align-items: stretch; }
  #page-why .wf-step {
    flex: 1;
    background: #ffffff;
    border: 0.5px solid rgba(0,0,0,0.10);
    padding: 16px 12px;
    text-align: center;
    cursor: pointer;
    transition: background .18s;
    position: relative;
  }
  #page-why .wf-step:first-child { border-radius: 12px 0 0 12px; }
  #page-why .wf-step:last-child  { border-radius: 0 12px 12px 0; }
  #page-why .wf-step:not(:last-child) { border-right: none; }
  #page-why .wf-step:hover { background: #f5f6f8; }
  #page-why .wf-step.act   { background: rgba(19,116,184,0.10); border-color: #1374B8; z-index: 1; }
  #page-why .wf-num {
    width: 24px; height: 24px; border-radius: 50%;
    background: #eceef1; color: #5f6368;
    font-size: 11px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 8px;
  }
  #page-why .wf-step.act .wf-num { background: #1374B8; color: #fff; }
  #page-why .wf-label { font-size: 11px; font-weight: 600; color: #1a1a1a; line-height: 1.3; }
  #page-why .wf-sub   { font-size: 10px; color: #5f6368; margin-top: 3px; line-height: 1.4; }
  #page-why .wf-step.act .wf-label { color: #1374B8; }
  #page-why .wf-detail {
    background: #f5f6f8;
    border: 0.5px solid rgba(0,0,0,0.10);
    border-radius: 8px;
    padding: 14px 20px;
    font-size: 13.5px;
    color: #5f6368;
    line-height: 1.7;
    margin-top: 1px;
    min-height: 56px;
  }

  /* ── STAT CARDS ── */
  #page-why .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 20px 0;
  }
  #page-why .stat-card {
    background: #ffffff;
    border: 0.5px solid rgba(0,0,0,0.10);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
  }
  #page-why .stat-ico {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 12px; font-size: 18px;
  }
  #page-why .ico-blue  { background: #E6F2FA; }
  #page-why .ico-green { background: #E7F4E3; }
  #page-why .stat-num {
    font-family: 'Rajdhani', sans-serif;
    font-size: 26px; font-weight: 700;
    color: #1374B8; line-height: 1; margin-bottom: 4px;
  }
  #page-why .stat-num .u { font-size: 14px; font-weight: 400; color: #5f6368; }
  #page-why .stat-desc { font-size: 12px; color: #5f6368; line-height: 1.5; }

  /* ── VS TABLE ── */
  #page-why .vs-table {
    background: #ffffff;
    border: 0.5px solid rgba(0,0,0,0.10);
    border-radius: 14px;
    overflow: hidden;
    margin: 20px 0;
  }
  #page-why .vs-head {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    background: #f5f6f8;
    border-bottom: 0.5px solid rgba(0,0,0,0.10);
  }
  #page-why .vs-hcell {
    padding: 13px 16px;
    font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: .07em;
    color: #5f6368;
  }
  #page-why .vs-hcell.dp {
    color: #1374B8;
    background: rgba(19,116,184,0.10);
    border-left: 2px solid #1374B8;
  }
  #page-why .vs-row {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    border-bottom: 0.5px solid rgba(0,0,0,0.10);
    transition: background .15s;
  }
  #page-why .vs-row:last-child { border-bottom: none; }
  #page-why .vs-row:hover { background: #f5f6f8; }
  #page-why .vs-cell {
    padding: 12px 16px;
    font-size: 13px; color: #5f6368;
    display: flex; align-items: flex-start; gap: 7px;
    border-right: 0.5px solid rgba(0,0,0,0.10);
    line-height: 1.45;
  }
  #page-why .vs-cell:last-child { border-right: none; }
  #page-why .vs-cell.feat { color: #1a1a1a; font-weight: 500; }
  #page-why .ck { color: #6A9B2E; font-size: 15px; flex-shrink: 0; margin-top: 1px; }
  #page-why .cx { color: #D94F4F;  font-size: 15px; flex-shrink: 0; margin-top: 1px; }

  /* ── SECURITY ── */
  #page-why .sec-intro {
    background: #E6F2FA;
    border: 0.5px solid #69A2C8;
    border-radius: 14px;
    padding: 22px 26px;
    margin: 22px 0;
    display: flex;
    gap: 18px;
    align-items: flex-start;
  }
  #page-why .sec-intro-icon  { font-size: 30px; flex-shrink: 0; margin-top: 2px; }
  #page-why .sec-intro-title { font-family: 'Rajdhani', sans-serif; font-size: 19px; font-weight: 700; color: #0F5A92; margin-bottom: 6px; }
  #page-why .sec-intro-text  { font-size: 13.5px; color: #0A3F6A; line-height: 1.65; opacity: .88; }

  #page-why .sec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 16px 0;
  }
  #page-why .sec-card {
    background: #ffffff;
    border: 0.5px solid rgba(0,0,0,0.10);
    border-radius: 12px;
    padding: 20px 18px 20px 22px;
    position: relative;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
  }
  #page-why .sec-card:hover {
    border-color: #1374B8;
    box-shadow: 0 0 0 3px rgba(19,116,184,0.10);
  }
  #page-why .sec-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 3px; height: 100%;
    background: #1374B8;
  }
  #page-why .sec-card.green::before { background: #8FC345; }
  #page-why .sec-card.slate::before { background: #69A2C8; }
  #page-why .sec-ico   { font-size: 22px; margin-bottom: 10px; display: block; }
  #page-why .sec-title { font-family: 'Rajdhani', sans-serif; font-size: 16px; font-weight: 700; color: #1a1a1a; margin-bottom: 6px; letter-spacing: .02em; }
  #page-why .sec-desc  { font-size: 12.5px; color: #5f6368; line-height: 1.65; }
  #page-why .sec-tag {
    display: inline-flex; align-items: center; gap: 4px;
    border-radius: 4px; font-size: 10px; font-weight: 600;
    letter-spacing: .06em; text-transform: uppercase;
    padding: 3px 9px; margin-top: 10px;
  }
  #page-why .tag-blue  { background: rgba(19,116,184,0.10);  color: #1374B8;   border: 0.5px solid rgba(19,116,184,.3); }
  #page-why .tag-green { background: rgba(143,195,69,0.12); color: #6A9B2E; border: 0.5px solid rgba(143,195,69,.3); }
  #page-why .tag-slate { background: rgba(156,188,193,.15); color: #3a7082; border: 0.5px solid rgba(105,162,200,.35); }

  /* ── DEPLOY TABS ── */
  #page-why .deploy-wrap {
    background: #f5f6f8;
    border: 0.5px solid rgba(0,0,0,0.10);
    border-radius: 14px;
    padding: 22px 24px;
    margin: 16px 0;
  }
  #page-why .deploy-section-label {
    font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: .07em;
    color: #5f6368; margin-bottom: 13px;
  }
  #page-why .deploy-tabs { display: flex; gap: 8px; margin-bottom: 18px; }
  #page-why .deploy-tab {
    flex: 1; padding: 10px 14px;
    border-radius: 8px;
    border: 0.5px solid rgba(0,0,0,0.10);
    background: #ffffff;
    font-size: 12.5px; font-weight: 600; color: #5f6368;
    cursor: pointer; text-align: center;
    transition: all .18s;
  }
  #page-why .deploy-tab.act { background: rgba(19,116,184,0.10); border-color: #1374B8; color: #1374B8; }
  #page-why .deploy-tab:hover:not(.act) { background: #eceef1; }
  #page-why .deploy-content { font-size: 13.5px; color: #5f6368; line-height: 1.7; }
  #page-why .deploy-content strong { color: #1a1a1a; font-weight: 600; }

  /* ── CTA ── */
  #page-why .cta-banner {
    background: #0A3F6A;
    border-radius: 14px;
    padding: 30px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin: 28px 0 0;
    border: 0.5px solid #0F5A92;
  }
  #page-why .cta-title { font-family: 'Rajdhani', sans-serif; font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 5px; }
  #page-why .cta-sub   { font-size: 13.5px; color: rgba(255,255,255,.65); }
  #page-why .cta-btn {
    background: #8FC345;
    color: #fff; border: none;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px; font-weight: 700; letter-spacing: .04em;
    padding: 13px 28px; cursor: pointer; flex-shrink: 0;
    transition: opacity .15s, transform .1s;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
  }
  #page-why .cta-btn:hover { opacity: .88; transform: translateY(-1px); }

  /* ── RESPONSIVE ── */
  @media (max-width: 640px) {
    #page-why .page-wrap { padding: 32px 18px 52px; }
    #page-why .grid-3 { grid-template-columns: 1fr 1fr; }
    #page-why .sec-grid { grid-template-columns: 1fr; }
    #page-why .vs-hcell, #page-why .vs-cell { padding: 10px 10px; font-size: 12px; }
    #page-why .wf { flex-direction: column; }
    #page-why .wf-step:first-child { border-radius: 12px 12px 0 0; }
    #page-why .wf-step:last-child  { border-radius: 0 0 12px 12px; }
    #page-why .wf-step:not(:last-child) { border-right: 0.5px solid rgba(0,0,0,0.10); border-bottom: none; }
    #page-why .deploy-tabs { flex-direction: column; }
    #page-why .metrics-row { gap: 20px; }
    #page-why .cta-banner { flex-direction: column; align-items: flex-start; }
  }

  @media (prefers-reduced-motion: reduce) {
    #page-why .bar-fill { transition: none; }
    #page-why .cta-btn:hover { transform: none; }
  }

  /* ─── ABOUT PAGE ─────────────────────────────────────────── */
  .about-pillars {
    display: flex; gap: 16px; flex-wrap: wrap;
    justify-content: center; max-width: 900px; margin: 28px auto 0;
  }
  .about-pillar {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 8px; padding: 14px 18px;
    flex: 1; min-width: 180px; text-align: left;
  }
  .about-pillar-label {
    font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--green); font-weight: 600; margin-bottom: 6px;
  }
  .about-pillar-text { font-size: 13.5px; line-height: 1.55; color: rgba(255,255,255,0.75); }

  #page-about .page-hero-fade {
    background: linear-gradient(to bottom, #081520 0%, #E7F4E3 100%);
  }

  .about-problem {
    background: #E7F4E3; padding: 56px 5vw;
    border-left: 4px solid var(--green);
  }
  .about-problem h2 {
    font-family: var(--font-head); font-size: 24px; font-weight: 700;
    color: #0d1422; margin-bottom: 16px;
  }
  .about-problem p { font-size: 15.5px; line-height: 1.8; color: #556070; max-width: 720px; }

  .about-different { background: #ffffff; padding: 60px 5vw; }
  .about-different h2 {
    font-family: var(--font-head); font-size: 26px; font-weight: 700;
    color: #0d1422; margin-bottom: 32px;
  }
  .about-diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .about-diff-card {
    background: #E7F4E3; border-radius: 10px; padding: 28px;
    border-top: 3px solid var(--green);
  }
  .about-diff-card h3 {
    font-family: var(--font-head); font-size: 17px; font-weight: 700;
    color: #0d1422; margin-bottom: 10px;
  }
  .about-diff-card p { font-size: 14.5px; line-height: 1.72; color: #556070; }

  .about-partners { background: #0D2340; padding: 60px 5vw; }
  .about-partners .section-label { color: var(--green) !important; background: transparent !important; border-color: transparent !important; }
  .about-partners h2 {
    font-family: var(--font-head); font-size: 26px; font-weight: 700;
    color: #ffffff !important; margin-bottom: 14px;
  }
  .about-partners .about-lead {
    font-size: 15.5px; line-height: 1.8; color: rgba(255,255,255,0.75) !important;
    max-width: 680px; margin-bottom: 32px;
  }
  .about-partner-pills { display: flex; flex-wrap: wrap; gap: 14px; }
  .about-pill {
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px; padding: 11px 22px; font-size: 13.5px;
    color: rgba(255,255,255,0.85) !important; display: flex; align-items: center; gap: 10px;
  }
  .about-pill-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

  .about-not-us { background: #ffffff; padding: 60px 5vw; }
  .about-not-us h2 {
    font-family: var(--font-head); font-size: 24px; font-weight: 700;
    color: #0d1422; margin-bottom: 28px;
  }
  .about-not-row { display: flex; flex-direction: column; gap: 14px; }
  .about-not-item {
    display: flex; align-items: flex-start; gap: 16px;
    background: #E7F4E3; border-radius: 8px; padding: 18px 22px;
    border-left: 3px solid var(--green);
  }
  .about-not-x {
    font-size: 12px; font-weight: 700; color: var(--accent);
    letter-spacing: 1px; flex-shrink: 0; padding-top: 2px;
  }
  .about-not-item p { font-size: 14.5px; line-height: 1.7; color: #556070; }
  .about-not-item strong { color: #0d1422; }

  .about-team-sec { background: #E7F4E3; padding: 60px 5vw; }
  .about-team-sec h2 {
    font-family: var(--font-head); font-size: 26px; font-weight: 700;
    color: #0d1422; margin-bottom: 32px;
  }
  .about-team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .about-team-card {
    background: #fff; border: 0.5px solid #c6dcc6;
    border-radius: 10px; padding: 28px;
  }
  .about-team-card-top { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
  .about-avatar {
    width: 52px; height: 52px; border-radius: 50%; background: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head); font-size: 17px; font-weight: 700;
    color: #fff; flex-shrink: 0;
  }
  .about-team-name { font-weight: 600; font-size: 15px; color: #0d1422; }
  .about-team-role { font-size: 13px; color: #6b7a96; margin-top: 2px; }
  .about-team-bio { font-size: 13.5px; line-height: 1.72; color: #556070; }

  .about-mission {
    background: var(--accent); padding: 60px 5vw;
    text-align: center; position: relative;
  }
  .about-mission-bar {
    position: absolute; top: 0; left: 0; right: 0;
    height: 4px; background: var(--green);
  }
  .about-mission .section-label { color: var(--green) !important; background: transparent !important; border-color: transparent !important; }
  .about-mission .dp-brand .dp-data { color: rgba(255,255,255,0.9); }
  .about-mission .dp-brand .dp-phleet { color: var(--green); }
  .about-mission h2 {
    font-family: var(--font-head); font-size: 28px; font-weight: 700;
    color: #fff !important; margin-bottom: 18px;
  }
  .about-mission p {
    font-size: 16px; line-height: 1.78; color: rgba(255,255,255,0.82) !important;
    max-width: 600px; margin: 0 auto 28px;
  }

  @media (max-width: 700px) {
    .about-pillars { flex-direction: column; }
    .about-diff-grid, .about-team-grid { grid-template-columns: 1fr; }
  }

  /* ── COMPLIANCE STATUS MODULE ── */
  .status-active-row {
    display: flex; flex-wrap: wrap; gap: 10px; margin: 40px 0 28px;
  }
  .status-chip {
    display: flex; align-items: center; gap: 8px;
    background: var(--surface); border: 1px solid var(--border); border-radius: 8px;
    padding: 10px 16px; font-size: 14px; font-weight: 600; color: var(--text);
  }
  .status-chip .dot {
    width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0;
    box-shadow: 0 0 6px var(--green);
  }
  .status-chip .status-chip-label {
    font-size: 11px; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em;
  }
  .status-upcoming-card {
    background: var(--surface); border: 1px solid rgba(232,128,10,0.3); border-radius: 16px;
    padding: clamp(28px,4vw,40px); position: relative; overflow: hidden;
    display: flex; flex-wrap: wrap; align-items: center; gap: 28px; justify-content: space-between;
  }
  .status-upcoming-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, #E8800A, var(--accent));
  }
  .status-upcoming-main { flex: 1; min-width: 280px; }
  .status-upcoming-tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
    color: #E8800A; background: rgba(232,128,10,0.1); border: 1px solid rgba(232,128,10,0.3);
    border-radius: 4px; padding: 4px 10px; margin-bottom: 14px;
  }
  .status-upcoming-card h3 {
    font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--heading); margin-bottom: 10px;
  }
  .status-upcoming-card p { font-size: 14.5px; color: var(--muted); line-height: 1.65; max-width: 520px; margin: 0; }
  .status-upcoming-date { text-align: center; flex-shrink: 0; }
  .status-upcoming-date .d-num {
    font-family: var(--font-head); font-size: 15px; font-weight: 800; color: #E8800A;
    letter-spacing: -0.01em; white-space: nowrap;
  }
  .status-upcoming-date .d-label {
    font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px;
  }

  .light-section .status-chip { background: #ffffff; border-color: rgba(0,0,0,0.09); box-shadow: 0 2px 8px rgba(0,0,0,0.05); color: #2d3a52; }
  .light-section .status-chip .status-chip-label { color: #6b7a96; }
  .light-section .status-upcoming-card { background: #fff8f0; border-color: rgba(232,128,10,0.3); box-shadow: 0 2px 8px rgba(232,128,10,0.06); }
  .light-section .status-upcoming-card h3 { color: #0d1422; }
  .light-section .status-upcoming-card p { color: #4a5568; }

  @media (max-width: 700px) {
    .status-upcoming-card { flex-direction: column; align-items: flex-start; text-align: left; }
    .status-upcoming-date { text-align: left; }
  }

  /* ── STANDARD LANDING PAGES ── */
  .std-quote {
    background: var(--surface); border-left: 3px solid var(--green); border-radius: 0 12px 12px 0;
    padding: 24px 28px; margin: 32px 0; font-family: var(--font-head); font-size: 18px;
    font-weight: 600; color: var(--heading); line-height: 1.5;
  }
  .std-quote cite { display: block; font-family: var(--font-body); font-size: 13px; font-weight: 500;
    color: var(--muted); font-style: normal; margin-top: 12px; }
  .light-section .std-quote { background: #f4f7fb; color: #0d1422; }
  .light-section .std-quote cite { color: #6b7a96; }

  .std-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin: 40px 0; align-items: start; }
  .std-two-col h3 { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--heading); margin-bottom: 18px; }
  .light-section .std-two-col h3 { color: #0d1422; }
  @media (max-width: 760px) { .std-two-col { grid-template-columns: 1fr; gap: 28px; } }

  .std-related { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
  .std-related a {
    font-size: 13px; font-weight: 600; color: var(--accent-light); text-decoration: none;
    border: 1px solid var(--border); border-radius: 6px; padding: 8px 14px; transition: all 0.2s;
  }
  .std-related a:hover { border-color: rgba(19,116,184,0.4); background: rgba(19,116,184,0.05); }
  .light-section .std-related a { color: #1374B8; border-color: rgba(0,0,0,0.12); }
  .light-section .std-related a:hover { background: rgba(19,116,184,0.05); }

  .std-effective-tag {
    display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase; color: #E8800A; background: rgba(232,128,10,0.1);
    border: 1px solid rgba(232,128,10,0.3); border-radius: 4px; padding: 4px 12px; margin-bottom: 16px;
  }

  /* ── FAQ PAGE ── */
  .faq-cat { max-width: 760px; margin: 0 auto 56px; }
  .faq-cat:last-child { margin-bottom: 0; }
  .faq-cat-title {
    font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--heading);
    margin-bottom: 24px; padding-bottom: 14px; border-bottom: 1px solid var(--border);
  }
  .light-section .faq-cat-title { color: #0d1422; border-bottom-color: rgba(0,0,0,0.09); }
  .faq-item { margin-bottom: 30px; }
  .faq-item:last-child { margin-bottom: 0; }
  .faq-item h3 {
    font-family: var(--font-head); font-size: 16.5px; font-weight: 700; color: var(--heading);
    margin-bottom: 8px; line-height: 1.4;
  }
  .light-section .faq-item h3 { color: #0d1422; }
  .faq-item p { font-size: 15px; color: var(--muted); line-height: 1.75; margin: 0; }
  .light-section .faq-item p { color: #4a5568; }

  /* ── PRODUCT SCREENSHOTS ── */
  .product-shot {
    border-radius: 14px; overflow: hidden; border: 1px solid var(--border);
    box-shadow: 0 24px 60px rgba(0,0,0,0.35); background: var(--surface); margin: 44px 0;
  }
  .product-shot img { display: block; width: 100%; height: auto; }
  .product-shot-bar {
    display: flex; align-items: center; gap: 10px; padding: 12px 18px;
    border-bottom: 1px solid var(--border); background: var(--surface2);
  }
  .product-shot-bar .dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.15); }
  .product-shot-tag {
    font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--green); margin-left: 4px;
  }
  .product-shot-caption {
    padding: 16px 20px; font-size: 13.5px; color: var(--muted); line-height: 1.6;
    border-top: 1px solid var(--border);
  }
  .product-shot-caption strong { color: var(--text); }
  .light-section .product-shot { background: #fff; border-color: rgba(0,0,0,0.09); box-shadow: 0 16px 40px rgba(0,0,0,0.10); }
  .light-section .product-shot-bar { background: #f4f7fb; border-bottom-color: rgba(0,0,0,0.09); }
  .light-section .product-shot-caption { background: #fff; border-top-color: rgba(0,0,0,0.09); color: #6b7a96; }
  .light-section .product-shot-caption strong { color: #0d1422; }

