/* ════════════════════════════════════════
   INDEX PAGE
   ════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --blue-dark: #0a0f2c;
      --blue-mid: #0d1a4a;
      --blue-accent: #1a3a8f;
      --cyan: #4da6ff;
      --white: #ffffff;
      --gray-light: #f0f4fa;
      --text-muted: #8a9bbc;
    }

    body {
      font-family: 'Segoe UI', system-ui, sans-serif;
      color: var(--white);
      background: var(--blue-dark);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 60px;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(0,0,0,0.07);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 18px;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-decoration: none;
      color: #0a0f2c;
    }

    .logo-icon {
      width: 36px; height: 36px;
      background: rgba(255,255,255,0.1);
      border-radius: 8px;
      display: grid;
      place-items: center;
      font-size: 20px;
    }

    /* new logo image */
    .logo-img {
      display: block;
      width: 230px;
      height: auto;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }

    .nav-links a {
      text-decoration: none;
      color: #555;
      font-size: 16px;
      font-weight: 500;
      transition: color .2s;
    }

    .nav-links a:hover { color: #d97706; }
    .nav-links a.active { color: #d97706; font-weight: 600; }

    /* ── HAMBURGER ── */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 40px; height: 40px;
      border: none; background: transparent;
      cursor: pointer; padding: 0; gap: 5px;
      border-radius: 12px;
      transition: background .18s;
      -webkit-tap-highlight-color: transparent;
    }
    .nav-hamburger:hover { background: rgba(0,0,0,.05); }
    .nav-hamburger span {
      display: block;
      width: 22px; height: 2px;
      background: #1d1d1f;
      border-radius: 2px;
      transition: transform .28s cubic-bezier(0.34,1.46,0.64,1), opacity .2s ease, width .22s ease;
      transform-origin: center;
    }
    /* X state */
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── MOBILE DRAWER ── */
    .nav-drawer {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 10000;
      pointer-events: none;
    }
    .nav-drawer.open { pointer-events: all; }

    .nav-drawer-backdrop {
      position: absolute; inset: 0;
      background: rgba(0,0,0,0);
      backdrop-filter: blur(0px);
      -webkit-backdrop-filter: blur(0px);
      transition: background .32s ease, backdrop-filter .32s ease, -webkit-backdrop-filter .32s ease;
    }
    .nav-drawer.open .nav-drawer-backdrop {
      background: rgba(5,8,20,.6);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }

    .nav-drawer-panel {
      position: absolute;
      top: 0; right: 0;
      width: min(300px, 84vw);
      height: 100%;
      background: #0b1120;
      display: flex; flex-direction: column;
      transform: translateX(100%);
      transition: transform .38s cubic-bezier(0.32,0.72,0,1);
      overflow: hidden;
    }
    /* amber top accent bar */
    .nav-drawer-panel::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, #b45309, #d97706, #f59e0b, #d97706, #b45309);
    }
    .nav-drawer.open .nav-drawer-panel { transform: translateX(0); }

    /* header */
    .ndr-header {
      display: flex; align-items: center; justify-content: space-between;
      padding: 28px 18px 20px;
      flex-shrink: 0;
    }
    .ndr-brand { display: flex; align-items: center; gap: 11px; }
    .ndr-brand-mark {
      width: 40px; height: 40px;
      border-radius: 11px;
      background: linear-gradient(135deg, #d97706, #f59e0b);
      color: #fff;
      font-size: 14px; font-weight: 900;
      letter-spacing: .04em;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 4px 16px rgba(217,119,6,.4);
    }
    .ndr-brand-name {
      font-size: 16px; font-weight: 800;
      color: #fff; letter-spacing: .08em;
      line-height: 1.2;
    }
    .ndr-brand-sub {
      font-size: 11px; color: rgba(255,255,255,.38);
      margin-top: 2px; letter-spacing: .02em;
    }
    .nav-drawer-close {
      width: 34px; height: 34px;
      border-radius: 9px;
      border: 1px solid rgba(255,255,255,.1);
      background: rgba(255,255,255,.06);
      color: rgba(255,255,255,.6);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: background .16s, color .16s, border-color .16s;
      flex-shrink: 0;
    }
    .nav-drawer-close:hover {
      background: rgba(255,255,255,.12);
      color: #fff;
      border-color: rgba(255,255,255,.2);
    }

    .ndr-divider {
      height: 1px; background: rgba(255,255,255,.07);
      margin: 0 18px; flex-shrink: 0;
    }

    .ndr-nav {
      flex: 1; overflow-y: auto;
      padding: 14px 10px;
      scrollbar-width: none;
    }
    .ndr-nav::-webkit-scrollbar { display: none; }

    .nav-drawer-links {
      list-style: none; margin: 0; padding: 0;
      display: flex; flex-direction: column; gap: 3px;
    }
    .nav-drawer-links li {
      opacity: 0;
      transform: translateX(20px);
      transition: opacity .28s ease, transform .28s ease;
      transition-delay: calc(var(--i) * 50ms + 60ms);
    }
    .nav-drawer.open .nav-drawer-links li {
      opacity: 1; transform: translateX(0);
    }
    .nav-drawer-links li a {
      display: flex; align-items: center; gap: 12px;
      padding: 10px 10px;
      border-radius: 12px;
      text-decoration: none;
      transition: background .18s;
    }
    .nav-drawer-links li a:hover { background: rgba(255,255,255,.06); }
    .nav-drawer-links li a.active { background: rgba(217,119,6,.13); }

    .ndr-icon {
      width: 38px; height: 38px;
      border-radius: 10px;
      background: rgba(255,255,255,.07);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      transition: background .18s;
    }
    .ndr-icon svg { width: 17px; height: 17px; stroke: rgba(255,255,255,.5); transition: stroke .18s; }
    .nav-drawer-links li a:hover .ndr-icon { background: rgba(255,255,255,.12); }
    .nav-drawer-links li a:hover .ndr-icon svg { stroke: rgba(255,255,255,.9); }
    .nav-drawer-links li a.active .ndr-icon { background: rgba(217,119,6,.18); }
    .nav-drawer-links li a.active .ndr-icon svg { stroke: #f59e0b; }

    .ndr-label {
      flex: 1;
      font-size: 17px; font-weight: 600;
      color: rgba(255,255,255,.65);
      transition: color .18s;
      letter-spacing: .01em;
    }
    .nav-drawer-links li a:hover .ndr-label { color: #fff; }
    .nav-drawer-links li a.active .ndr-label { color: #fbbf24; }

    .ndr-arrow {
      flex-shrink: 0;
      stroke: rgba(255,255,255,.15);
      transition: stroke .18s, transform .18s;
    }
    .nav-drawer-links li a:hover .ndr-arrow { stroke: rgba(255,255,255,.4); transform: translateX(2px); }
    .nav-drawer-links li a.active .ndr-arrow { stroke: rgba(251,191,36,.4); }

    .ndr-footer {
      padding: 14px 14px 36px;
      border-top: 1px solid rgba(255,255,255,.07);
      flex-shrink: 0;
    }
    .ndr-cta-btn {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      padding: 14px 18px;
      border-radius: 12px;
      background: linear-gradient(135deg, #d97706, #f59e0b);
      color: #fff;
      text-decoration: none;
      font-size: 16px; font-weight: 700;
      letter-spacing: .02em;
      box-shadow: 0 4px 20px rgba(217,119,6,.38);
      transition: opacity .18s, transform .18s, box-shadow .18s;
    }
    .ndr-cta-btn:hover {
      opacity: .92;
      transform: translateY(-1px);
      box-shadow: 0 6px 28px rgba(217,119,6,.5);
    }

    .btn-outline {
      padding: 10px 22px;
      border: 1.5px solid rgba(255,255,255,0.5);
      border-radius: 50px;
      background: transparent;
      color: var(--white);
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: background .2s, border-color .2s;
    }

    .btn-outline:hover {
      background: rgba(255,255,255,0.1);
      border-color: var(--white);
    }

    .btn-primary {
      padding: 10px 24px;
      border: none;
      border-radius: 50px;
      background: var(--white);
      color: var(--blue-dark);
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      transition: opacity .2s, transform .15s;
    }

    .btn-primary:hover { opacity: .9; transform: scale(1.02); }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      background: radial-gradient(ellipse 80% 70% at 60% 40%, #1a3a8f 0%, #0d1a4a 45%, #0a0f2c 100%);
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 140px 60px 80px;
      position: relative;
      overflow: hidden;
    }

    /* subtle grid overlay */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 50px;
      padding: 6px 16px;
      font-size: 15px;
      color: rgba(255,255,255,0.85);
      width: fit-content;
      margin-bottom: 28px;
    }

    .badge-dot {
      width: 8px; height: 8px;
      background: #4ade80;
      border-radius: 50%;
      box-shadow: 0 0 6px #4ade80;
    }

    .hero h1 {
      font-size: clamp(54px, 6vw, 88px);
      font-weight: 800;
      line-height: 1.05;
      margin-bottom: 24px;
      color: var(--white); /* Smart BMS text explicitly white */
    }

    .hero h1 span { color: var(--cyan); }

    .hero p {
      font-size: 19px;
      line-height: 1.65;
      color: rgba(255,255,255,0.65);
      max-width: 480px;
      margin-bottom: 40px;
    }

    .hero-btns {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 72px;
    }

    .btn-hero-primary {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      background: rgba(255,255,255,0.12);
      border: 1.5px solid rgba(255,255,255,0.25);
      border-radius: 50px;
      color: var(--white);
      font-size: 17px;
      font-weight: 600;
      cursor: pointer;
      transition: background .2s, border-color .2s;
      text-decoration: none;
    }

    .btn-hero-primary:hover {
      background: rgba(255,255,255,0.2);
      border-color: rgba(255,255,255,0.5);
    }

    .btn-hero-secondary {
      padding: 14px 36px;
      background: var(--white);
      border: none;
      border-radius: 50px;
      color: var(--blue-dark);
      font-size: 17px;
      font-weight: 700;
      cursor: pointer;
      transition: opacity .2s, transform .15s;
      text-decoration: none;
    }

    .btn-hero-secondary:hover { opacity: .9; transform: scale(1.02); }

    /* Stats */
    .stats {
      display: flex;
      gap: 56px;
      flex-wrap: wrap;
    }

    .stat-num {
      font-size: 36px;
      font-weight: 800;
      margin-bottom: 4px;
      color: var(--white);
    }

    .stat-label {
      font-size: 14px;
      color: var(--white);
      text-transform: uppercase;
      letter-spacing: .5px;
    }

    /* Scroll indicator */
    .scroll-indicator {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      width: 28px; height: 44px;
      border: 2px solid rgba(255,255,255,0.25);
      border-radius: 14px;
      display: flex;
      justify-content: center;
      padding-top: 7px;
    }

    .scroll-dot {
      width: 4px; height: 8px;
      background: rgba(255,255,255,0.5);
      border-radius: 2px;
      animation: scrollAnim 1.8s ease-in-out infinite;
    }

    @keyframes scrollAnim {
      0%, 100% { transform: translateY(0); opacity: 1; }
      80% { transform: translateY(10px); opacity: 0; }
    }

    /* ── FEATURES STRIP ── */
    .features-strip {
      background: var(--gray-light);
      padding: 36px 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 72px;
      flex-wrap: wrap;
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .feature-icon {
      width: 44px; height: 44px;
      background: rgba(77, 166, 255, 0.12);
      border-radius: 10px;
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }

    .feature-icon svg {
      width: 20px; height: 20px;
      stroke: var(--cyan);
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .feature-text h4 {
      font-size: 16px;
      font-weight: 700;
      color: #0a0f2c;
      margin-bottom: 2px;
    }

    .feature-text p {
      font-size: 14px;
      color: #667799;
    }

    /* ── CTA SECTION ── */
    .cta-section {
      background: radial-gradient(ellipse 80% 90% at 50% 50%, #1a3a8f 0%, #0d1a4a 55%, #0a0f2c 100%);
      padding: 100px 60px;
      text-align: center;
    }

    .cta-section h2 {
      font-size: clamp(36px, 4vw, 59px);
      font-weight: 800;
      margin-bottom: 18px;
    }

    .cta-section p {
      font-size: 18px;
      color: rgba(255,255,255,0.65);
      max-width: 480px;
      margin: 0 auto 40px;
      line-height: 1.6;
    }

    .cta-btns {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-cta-primary {
      padding: 14px 32px;
      background: var(--white);
      border: none;
      border-radius: 50px;
      color: var(--blue-dark);
      font-size: 17px;
      font-weight: 700;
      cursor: pointer;
      transition: opacity .2s, transform .15s;
      text-decoration: none;
    }

    .btn-cta-primary:hover { opacity: .9; transform: scale(1.02); }

    .btn-cta-secondary {
      padding: 14px 32px;
      background: rgba(255,255,255,0.1);
      border: 1.5px solid rgba(255,255,255,0.2);
      border-radius: 50px;
      color: var(--white);
      font-size: 17px;
      font-weight: 600;
      cursor: pointer;
      transition: background .2s;
      text-decoration: none;
    }

    .btn-cta-secondary:hover { background: rgba(255,255,255,0.18); }

    /* ── FOOTER ── */
    footer {
      background: #080c20;
      padding: 28px 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .footer-logo-img {
      height: 36px;
      width: auto;
    }

    .footer-copy {
      font-size: 15px;
      color: var(--text-muted);
    }

    .footer-links {
      display: flex;
      gap: 24px;
    }

    .footer-links a {
      font-size: 15px;
      color: var(--text-muted);
      text-decoration: none;
      transition: color .2s;
    }

    /* ── SCROLL REVEAL ── */
    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .6s ease, transform .6s ease;
      will-change: opacity, transform;
    }
    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* stagger helper for groups */
    .reveal-stagger > * {
      opacity: 0;
      transform: translateY(20px);
    }
    .reveal-stagger.is-visible > * {
      opacity: 1;
      transform: translateY(0);
      transition: opacity .5s ease, transform .5s ease;
    }

    /* ── PROCESS STEP NUMBERS (rising on scroll) ── */
    .process-steps { list-style: none; padding: 0; margin: 0; }
    .process-steps li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; }
    .process-steps .step-num {
      display: inline-grid;
      place-items: center;
      width: 34px; height: 34px;
      border-radius: 50%;
      background: var(--cyan);
      color: var(--blue-dark);
      font-weight: 800;
      margin-right: 8px;
      flex-shrink: 0;
      transform: translateY(14px) scale(0.98);
      opacity: 0;
      transition: transform .85s cubic-bezier(.2,.9,.2,1), opacity .7s ease;
      will-change: transform, opacity;
    }
    .process-steps.is-visible .step-num {
      transform: translateY(0) scale(1);
      opacity: 1;
    }

    /* visible text beside numbers */
    .process-steps .step-text {
      display: inline-block;
      opacity: 0;
      transform: translateY(10px);
      transition: transform .8s cubic-bezier(.2,.9,.2,1), opacity .65s ease;
      will-change: transform, opacity;
    }
    .process-steps.is-visible .step-text {
      transform: translateY(0);
      opacity: 1;
    }

    @media (prefers-reduced-motion: reduce) {
      .process-steps .step-num { transition: none !important; transform: none !important; opacity: 1 !important; }
    }

    /* ── PROJECTS FILTER UI ── */
    .filter-bar {
      display: flex;
      gap: 12px;
      padding: 28px 60px;
      align-items: center;
      flex-wrap: wrap;
    }
    .filter-btn {
      background: transparent;
      border: 1px solid rgba(255,255,255,0.08);
      color: rgba(255,255,255,0.9);
      padding: 8px 14px;
      border-radius: 999px;
      cursor: pointer;
      font-weight: 600;
      transition: background .18s, transform .12s, color .12s;
    }
    .filter-btn:hover { transform: translateY(-2px); background: rgba(255,255,255,0.03); }
    .filter-btn.active {
      background: var(--cyan);
      color: var(--blue-dark);
      border-color: transparent;
    }

    /* project cards grid */
    .projects-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; padding: 28px 60px; }
    .project-card { background: rgba(255,255,255,0.03); border-radius: 12px; overflow: hidden; transition: transform .28s ease, opacity .28s ease; }
    .project-card.fade-in { animation: fadeIn .32s ease both; }
    .project-card.hidden { display: none !important; }

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

    @media (max-width: 768px) {
      .filter-bar { padding: 18px 24px; }
      .projects-grid { padding: 18px 24px; grid-template-columns: 1fr; }
    }

    @media (prefers-reduced-motion: reduce) {
      .reveal, .reveal-stagger > * { transition: none !important; transform: none !important; }
    }

    /* ── HOVER ANIMATIONS ── */
    /* Generic lift + shadow for interactive cards */
    .card-hover, .prod-card, .project-card, .service-block, .team-card, .value-card {
      transition: transform .28s cubic-bezier(.2,.9,.2,1), box-shadow .28s ease;
      will-change: transform;
    }
    .card-hover:hover, .prod-card:hover, .project-card:hover, .service-block:hover, .team-card:hover, .value-card:hover {
      transform: translateY(-8px) translateZ(0);
      box-shadow: 0 10px 30px rgba(8,12,32,0.45);
    }

    /* Feature items subtle pop */
    .feature-item { transition: transform .22s ease, background .22s ease; }
    .feature-item:hover { transform: translateY(-6px); background: rgba(255,255,255,0.03); }

    /* Buttons: stronger press effect */
    .btn-primary, .btn-hero-primary, .btn-hero-secondary, .btn-cta-primary, .btn-cta-white, .btn-prod-primary, .btn-prod-ghost, .btn-hero-white {
      transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
    }
    .btn-primary:active, .btn-hero-primary:active, .btn-hero-secondary:active, .btn-cta-primary:active, .btn-cta-white:active { transform: translateY(1px) scale(.997); }
    .btn-primary:hover, .btn-hero-primary:hover, .btn-hero-secondary:hover, .btn-cta-primary:hover, .btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(10,15,44,0.18); }

    /* Nav links micro-lift + underline */
    .nav-links a { transition: transform .16s ease, color .16s ease; }
    .nav-links a:hover, .nav-links a:focus { transform: translateY(-2px); color: #d97706; }

    /* Product card header color pop */
    .prod-card:hover .prod-card-header { filter: brightness(1.06) saturate(1.04); }

    /* Focus-visible for accessibility */
    :focus-visible { outline: 3px solid rgba(77,166,255,0.18); outline-offset: 3px; }


    .footer-links a:hover { color: var(--white); }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      nav { padding: 16px 24px; }
      .nav-links { display: none; }
      .btn-nav { display: none; }
      .nav-hamburger { display: flex; }
      .nav-drawer { display: block; }
      .hero { padding: 110px 24px 60px; }
      .features-strip { padding: 32px 24px; gap: 32px; }
      .cta-section { padding: 72px 24px; }
      footer { padding: 24px; flex-direction: column; text-align: center; }
      .stats { gap: 32px; }
    }


/* ════════════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --blue-dark: #0a0f2c;
      --blue-mid: #0d1a4a;
      --blue-accent: #1a3a8f;
      --cyan: #4da6ff;
      --white: #ffffff;
      --gray-bg: #f4f6fb;
      --text-dark: #0a0f2c;
      --text-muted: #8a9bbc;
      --text-body: #4a5568;
    }

    body {
      font-family: 'Segoe UI', system-ui, sans-serif;
      color: var(--text-dark);
      background: var(--white);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 60px;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(0,0,0,0.07);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 18px;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-decoration: none;
      color: var(--text-dark);
    }

    .logo-icon {
      width: 34px; height: 34px;
      background: var(--blue-dark);
      border-radius: 8px;
      display: grid;
      place-items: center;
      font-size: 18px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }

    .nav-links a {
      text-decoration: none;
      color: #555;
      font-size: 16px;
      font-weight: 500;
      transition: color .2s;
    }

    .nav-links a:hover { color: #d97706; }
    .nav-links a.active { color: #d97706; font-weight: 600; }

    .btn-primary {
      padding: 10px 24px;
      border: none;
      border-radius: 50px;
      background: var(--blue-dark);
      color: var(--white);
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      transition: opacity .2s;
    }

    .btn-primary:hover { opacity: .85; }

    /* ── HERO BANNER ── */
    .hero-banner {
      background: linear-gradient(135deg, #0d1a4a 0%, #0a0f2c 60%, #1a3a8f 100%);
      padding: 160px 60px 80px;
      text-align: center;
      color: var(--white);
    }

    .hero-banner .eyebrow {
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--cyan);
      margin-bottom: 18px;
    }

    .hero-banner h1 {
      font-size: clamp(41px, 5vw, 72px);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 18px;
    }

    .hero-banner p {
      font-size: 18px;
      color: rgba(255,255,255,0.65);
      max-width: 500px;
      margin: 0 auto;
    }

    /* ── ABOUT TEXT ── */
    .about-text {
      background: var(--white);
      padding: 80px 60px;
      max-width: 900px;
      margin: 0 auto;
    }

    .about-text p {
      font-size: 18px;
      color: var(--text-body);
      line-height: 1.8;
      margin-bottom: 22px;
    }

    .about-text p:last-child { margin-bottom: 0; }

    /* ── SECTION WRAPPER ── */
    .section {
      padding: 80px 60px;
    }

    .section-gray { background: var(--gray-bg); }

    .section-header {
      text-align: center;
      margin-bottom: 56px;
    }

    .section-header h2 {
      font-size: clamp(32px, 3.5vw, 50px);
      font-weight: 800;
      margin-bottom: 10px;
    }

    .section-header p {
      font-size: 17px;
      color: var(--text-muted);
    }

    /* ── VALUES GRID ── */
    .values-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .value-card {
      background: var(--white);
      border: 1px solid rgba(0,0,0,0.07);
      border-radius: 16px;
      padding: 32px 24px;
    }

    .value-icon {
      width: 48px; height: 48px;
      background: rgba(77, 166, 255, 0.1);
      border-radius: 12px;
      display: grid;
      place-items: center;
      margin-bottom: 20px;
    }

    .value-icon svg {
      width: 22px; height: 22px;
      stroke: #4da6ff;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .value-card h4 {
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--text-dark);
    }

    .value-card p {
      font-size: 15px;
      color: var(--text-body);
      line-height: 1.6;
    }

    /* ── TEAM GRID ── */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .team-card {
      background: var(--white);
      border: 1px solid rgba(0,0,0,0.07);
      border-radius: 16px;
      padding: 32px 28px;
    }

    .team-icon {
      width: 100px; height: 100px;
      background: var(--blue-dark);
      border-radius: 12px;
      display: grid;
      place-items: center;
      margin-bottom: 20px;
    }

    .team-icon svg {
      width: 24px; height: 24px;
      stroke: var(--white);
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .team-card h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .team-card > p {
      font-size: 15px;
      color: var(--text-body);
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .team-card ul {
      list-style: none;
    }

    .team-card ul li {
      font-size: 15px;
      color: var(--text-body);
      padding: 3px 0;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .team-card ul li::before {
      content: '';
      width: 6px; height: 6px;
      background: var(--cyan);
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* ── WHY CHOOSE ── */
    .why-section {
      background: linear-gradient(135deg, #0a0f2c 0%, #0d1a4a 50%, #1a3a8f 100%);
      padding: 100px 60px;
      color: var(--white);
    }

    .why-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .why-left h2 {
      font-size: clamp(36px, 4vw, 59px);
      font-weight: 800;
      margin-bottom: 40px;
      line-height: 1.1;
    }

    .why-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    .why-list li {
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }

    .why-dot {
      width: 10px; height: 10px;
      background: var(--cyan);
      border-radius: 50%;
      margin-top: 5px;
      flex-shrink: 0;
      box-shadow: 0 0 8px rgba(77,166,255,0.6);
    }

    .why-list-text strong {
      display: block;
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 3px;
    }

    .why-list-text span {
      font-size: 15px;
      color: rgba(255,255,255,0.55);
      line-height: 1.5;
    }

    /* Icon grid visual */
    .why-right {
      display: flex;
      justify-content: center;
    }

    .icon-mosaic {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      width: 280px;
    }

    .mosaic-cell {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 16px;
      height: 120px;
      display: grid;
      place-items: center;
      transition: background .2s;
    }

    .mosaic-cell:hover { background: rgba(255,255,255,0.11); }

    .mosaic-cell svg {
      width: 32px; height: 32px;
      stroke: rgba(255,255,255,0.5);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* ── FOOTER ── */
    footer {
      background: #080c20;
      padding: 28px 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 17px;
      font-weight: 800;
      letter-spacing: 1.5px;
      color: var(--white);
      text-decoration: none;
    }

    .footer-logo .logo-icon { background: rgba(255,255,255,0.1); }

    .footer-copy {
      font-size: 15px;
      color: var(--text-muted);
    }

    .footer-links {
      display: flex;
      gap: 24px;
    }

    .footer-links a {
      font-size: 15px;
      color: var(--text-muted);
      text-decoration: none;
      transition: color .2s;
    }

    .footer-links a:hover { color: var(--white); }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 16px 24px; }
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .nav-drawer { display: block; }
      .hero-banner { padding: 120px 24px 60px; }
      .about-text { padding: 60px 24px; }
      .section { padding: 60px 24px; }
      .values-grid { grid-template-columns: 1fr 1fr; }
      .team-grid { grid-template-columns: 1fr; }
      .why-section { padding: 72px 24px; }
      .why-inner { grid-template-columns: 1fr; gap: 48px; }
      .why-right { display: none; }
      footer { padding: 24px; flex-direction: column; text-align: center; }
    }

    @media (max-width: 560px) {
      .values-grid { grid-template-columns: 1fr; }
    }


/* ════════════════════════════════════════
   SERVICES PAGE
   ════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --blue-dark: #0a0f2c;
      --blue-mid: #0d1a4a;
      --blue-accent: #2563eb;
      --cyan: #4da6ff;
      --white: #ffffff;
      --gray-bg: #f4f6fb;
      --text-dark: #0a0f2c;
      --text-muted: #8a9bbc;
      --text-body: #4a5568;
      --border: rgba(0,0,0,0.08);
    }

    body {
      font-family: 'Segoe UI', system-ui, sans-serif;
      color: var(--text-dark);
      background: var(--white);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 60px;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(0,0,0,0.07);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 18px;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-decoration: none;
      color: var(--text-dark);
    }

    .logo-icon {
      width: 34px; height: 34px;
      background: var(--blue-dark);
      border-radius: 8px;
      display: grid;
      place-items: center;
      font-size: 18px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }

    .nav-links a {
      text-decoration: none;
      color: #555;
      font-size: 16px;
      font-weight: 500;
      transition: color .2s;
    }

    .nav-links a:hover { color: #d97706; }
    .nav-links a.active { color: #d97706; font-weight: 600; }

    .btn-nav {
      padding: 10px 24px;
      border: none;
      border-radius: 50px;
      background: var(--blue-dark);
      color: var(--white);
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      transition: opacity .2s;
      text-decoration: none;
    }

    .btn-nav:hover { opacity: .85; }

    /* ── HERO BANNER ── */
    .hero-banner {
      background: linear-gradient(135deg, #0d1a4a 0%, #0a0f2c 70%);
      padding: 150px 60px 80px;
      text-align: center;
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .hero-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 60px 60px;
    }

    .hero-banner .eyebrow {
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--blue-accent);
      margin-bottom: 16px;
      position: relative;
      letter-spacing: 2.6px;
    }

    .hero-banner .eyebrow::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -10px;
      width: 46px;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(77,166,255,0), rgba(77,166,255,0.9), rgba(77,166,255,0));
      transform: translateX(-50%);
      opacity: 0;
      animation: servicesEyebrowGlow 1.4s ease-out 0.25s forwards;
    }

    .hero-banner h1 {
      font-size: clamp(45px, 5.5vw, 77px);
      font-weight: 800;
      margin-bottom: 18px;
      position: relative;
      text-shadow: 0 16px 40px rgba(0,0,0,0.55);
    }

    .hero-banner p {
      font-size: 18px;
      color: rgba(255,255,255,0.6);
      max-width: 460px;
      margin: 0 auto;
      line-height: 1.7;
      position: relative;
    }

    /* floating accent orb in hero */
    .services-page .hero-banner::after {
      content: '';
      position: absolute;
      width: 260px;
      height: 260px;
      top: 40%;
      right: 12%;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 20%, rgba(77,166,255,0.8), rgba(37,99,235,0.1));
      filter: blur(4px);
      opacity: 0.55;
      mix-blend-mode: screen;
      animation: floatOrb 18s ease-in-out infinite alternate;
      pointer-events: none;
    }

    /* ── SERVICE BLOCKS ── */
    .services-wrapper {
      padding: 80px 60px;
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 100px;
    }

    /* alternating layout */
    .service-block {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
      position: relative;
      padding: 26px 26px;
      border-radius: 24px;
      background:
        radial-gradient(circle at top left, rgba(37,99,235,0.06), transparent 55%),
        radial-gradient(circle at bottom right, rgba(15,23,42,0.06), transparent 55%),
        #ffffff;
      box-shadow: 0 22px 60px rgba(15,23,42,0.09);
      overflow: hidden;
    }

    .service-block::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      border: 1px solid rgba(148,163,184,0.22);
      pointer-events: none;
      mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
      -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      padding: 1px;
      opacity: 0.85;
    }

    .service-block.reverse .service-info { order: 2; }
    .service-block.reverse .service-process { order: 1; }

    /* Info side */
    .service-icon {
      width: 56px; height: 56px;
      background: var(--blue-dark);
      border-radius: 14px;
      display: grid;
      place-items: center;
      margin-bottom: 24px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 12px 28px rgba(15,23,42,0.6);
    }

    .service-icon svg {
      width: 50px; height: 50px;
      stroke: var(--white);
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
      transform: translateY(1px);
    }

    .services-page .service-icon::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 20% 0%, rgba(255,255,255,0.32), transparent 55%);
      opacity: 0.9;
      mix-blend-mode: screen;
    }

    .services-page .service-icon::after {
      content: '';
      position: absolute;
      inset: -30%;
      background: conic-gradient(from 220deg, rgba(96,165,250,0.5), rgba(14,165,233,0.8), rgba(37,99,235,0.5), rgba(96,165,250,0.5));
      opacity: 0.0;
      animation: iconSweep 5.5s linear infinite;
    }

    .service-info h2 {
      font-size: 41px;
      font-weight: 800;
      margin-bottom: 12px;
      color: var(--text-dark);
    }

    .service-info > p {
      font-size: 17px;
      color: var(--text-body);
      line-height: 1.7;
      margin-bottom: 28px;
    }

    .check-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 32px;
    }

    .check-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 16px;
      color: var(--text-body);
      font-weight: 500;
    }

    .check-list li .check-icon {
      width: 20px; height: 20px;
      border-radius: 50%;
      background: rgba(37, 99, 235, 0.1);
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }

    .check-list li .check-icon svg {
      width: 11px; height: 11px;
      stroke: var(--blue-accent);
      fill: none;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .get-started-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 16px;
      font-weight: 700;
      color: var(--blue-accent);
      text-decoration: none;
      transition: gap .2s;
    }

    .get-started-link:hover { gap: 10px; }

    /* Process card */
    .service-process {
      background: var(--gray-bg);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 32px 28px;
      box-shadow: 0 18px 40px rgba(15,23,42,0.06);
      position: relative;
      overflow: hidden;
    }

    .services-page .service-process::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(37,99,235,0.06), transparent 60%);
      pointer-events: none;
    }

    .service-process h4 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 24px;
      color: var(--text-dark);
    }

    .process-steps {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .process-steps li {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 16px;
      color: var(--text-body);
    }

    .step-num {
      width: 28px; height: 28px;
      border-radius: 50%;
      background: var(--blue-accent);
      color: var(--white);
      font-size: 14px;
      font-weight: 700;
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }

    .services-page .process-steps .step-num {
      box-shadow: 0 8px 18px rgba(37,99,235,0.55);
    }

    /* subtle continuous shimmer across service cards when revealed */
    .services-page .services-wrapper.reveal-stagger.is-visible .service-block {
      animation: cardGlow 14s ease-in-out infinite alternate;
    }

    /* keyframes */
    @keyframes servicesEyebrowGlow {
      0% { opacity: 0; transform: translate(-50%, 8px); }
      45% { opacity: 1; transform: translate(-50%, 0); }
      100% { opacity: 0.9; transform: translate(-50%, 0); }
    }

    @keyframes floatOrb {
      0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.45; }
      50% { transform: translate3d(-16px, -12px, 0) scale(1.06); opacity: 0.6; }
      100% { transform: translate3d(-8px, 10px, 0) scale(1.02); opacity: 0.5; }
    }

    @keyframes iconSweep {
      0% { opacity: 0; transform: translate3d(-40%, 40%, 0) rotate(0deg); }
      8% { opacity: 0.5; }
      22% { opacity: 0.0; transform: translate3d(40%, -40%, 0) rotate(45deg); }
      100% { opacity: 0.0; transform: translate3d(40%, -40%, 0) rotate(360deg); }
    }

    @keyframes cardGlow {
      0% { box-shadow: 0 18px 45px rgba(15,23,42,0.08); }
      50% { box-shadow: 0 26px 70px rgba(15,23,42,0.14); }
      100% { box-shadow: 0 18px 45px rgba(15,23,42,0.1); }
    }

    /* ── CTA SECTION ── */
    .cta-section {
      background: linear-gradient(135deg, #2563eb 0%, #1a3a8f 100%);
      padding: 90px 60px;
      text-align: center;
      color: var(--white);
    }

    .cta-section h2 {
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 800;
      margin-bottom: 14px;
    }

    .cta-section p {
      font-size: 17px;
      color: rgba(255,255,255,0.7);
      margin-bottom: 36px;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
    }

    .btn-cta {
      display: inline-block;
      padding: 14px 36px;
      background: var(--white);
      color: var(--blue-accent);
      font-size: 17px;
      font-weight: 700;
      border-radius: 50px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: opacity .2s, transform .15s;
    }

    .btn-cta:hover { opacity: .92; transform: scale(1.02); }

    /* ── FOOTER ── */
    footer {
      background: #080c20;
      padding: 28px 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 17px;
      font-weight: 800;
      letter-spacing: 1.5px;
      color: var(--white);
      text-decoration: none;
    }

    .footer-logo .logo-icon { background: rgba(255,255,255,0.1); }

    .footer-copy { font-size: 15px; color: var(--text-muted); }

    .footer-links { display: flex; gap: 24px; }

    .footer-links a {
      font-size: 15px;
      color: var(--text-muted);
      text-decoration: none;
      transition: color .2s;
    }

    .footer-links a:hover { color: var(--white); }

    /* ── RESPONSIVE ── */
    @media (max-width: 860px) {
      nav { padding: 16px 24px; }
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .nav-drawer { display: block; }
      .hero-banner { padding: 110px 24px 60px; }
      .services-wrapper { padding: 60px 24px; gap: 64px; }
      .service-block { grid-template-columns: 1fr; gap: 32px; }
      .service-block.reverse .service-info { order: 1; }
      .service-block.reverse .service-process { order: 2; }
      .cta-section { padding: 64px 24px; }
      footer { padding: 24px; flex-direction: column; text-align: center; }
    }


/* ════════════════════════════════════════
   PROJECTS PAGE
   ════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --blue-dark: #0a0f2c;
      --blue-accent: #2563eb;
      --cyan: #4da6ff;
      --white: #ffffff;
      --gray-bg: #f4f6fb;
      --text-dark: #0a0f2c;
      --text-muted: #8a9bbc;
      --text-body: #4a5568;
      --border: rgba(0,0,0,0.08);
    }

    body {
      font-family: 'Segoe UI', system-ui, sans-serif;
      color: var(--text-dark);
      background: var(--white);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 60px;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(0,0,0,0.07);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 18px;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-decoration: none;
      color: var(--text-dark);
    }

    .logo-icon {
      width: 34px; height: 34px;
      background: var(--blue-dark);
      border-radius: 8px;
      display: grid;
      place-items: center;
      font-size: 18px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }

    .nav-links a {
      text-decoration: none;
      color: #555;
      font-size: 16px;
      font-weight: 500;
      transition: color .2s;
    }

    .nav-links a:hover { color: #d97706; }
    .nav-links a.active { color: #d97706; font-weight: 600; }

    .btn-nav {
      padding: 10px 24px;
      border: none;
      border-radius: 50px;
      background: var(--blue-dark);
      color: var(--white);
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      transition: opacity .2s;
      text-decoration: none;
    }
    .btn-nav:hover { opacity: .85; }

    /* ── HERO BANNER ── */
    .hero-banner {
      background: linear-gradient(135deg, #0d1a4a 0%, #0a0f2c 70%);
      padding: 150px 60px 80px;
      text-align: center;
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .hero-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 60px 60px;
    }

    .hero-banner .eyebrow {
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--blue-accent);
      margin-bottom: 16px;
      position: relative;
    }

    .hero-banner h1 {
      font-size: clamp(43px, 5.5vw, 72px);
      font-weight: 800;
      margin-bottom: 16px;
      position: relative;
    }

    .hero-banner p {
      font-size: 18px;
      color: rgba(255,255,255,0.6);
      max-width: 480px;
      margin: 0 auto;
      line-height: 1.7;
      position: relative;
    }

    /* ── FILTER TABS ── */
    .filter-bar {
      background: var(--white);
      padding: 28px 60px;
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 72px;
      z-index: 50;
    }

    .filter-btn {
      padding: 8px 20px;
      border-radius: 50px;
      border: 1.5px solid var(--border);
      background: transparent;
      color: var(--text-body);
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: all .2s;
    }

    .filter-btn:hover {
      border-color: var(--blue-accent);
      color: var(--blue-accent);
    }

    .filter-btn.active {
      background: var(--blue-dark);
      border-color: var(--blue-dark);
      color: var(--white);
    }

    /* ── PROJECTS GRID ── */
    .projects-section {
      background: var(--gray-bg);
      padding: 56px 60px;
    }

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
      max-width: 1400px;
      margin: 0 auto;
    }

    /* Project Card */
    .project-card {
      background: var(--white);
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid var(--border);
      transition: transform .25s, box-shadow .25s;
    }

    .project-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(0,0,0,0.1);
    }

    .project-card.hidden { display: none; }

    .card-img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      background: #c8d4e8;
    }

    /* placeholder colored images via CSS */
    .card-img-placeholder {
      width: 100%;
      height: 220px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 54px;
      color: rgba(255,255,255,0.5);
    }

    .img-commercial  { background: linear-gradient(135deg, #1e3a5f 0%, #2d6a9f 100%); }
    .img-healthcare  { background: linear-gradient(135deg, #1a4a6e 0%, #2b8a8a 100%); }
    .img-industrial  { background: linear-gradient(135deg, #1a1a2e 0%, #3a3a5c 100%); }
    .img-hospitality { background: linear-gradient(135deg, #5c3a1e 0%, #9a7a3a 100%); }
    .img-education   { background: linear-gradient(135deg, #2a4a1e 0%, #5a8a3a 100%); }
    .img-retail      { background: linear-gradient(135deg, #3a1e4a 0%, #7a3a8a 100%); }

    .card-body { padding: 28px; }

    .card-tag {
      display: inline-block;
      padding: 4px 12px;
      border-radius: 50px;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .5px;
      margin-bottom: 14px;
    }

    .tag-commercial  { background: #dbeafe; color: #1d4ed8; }
    .tag-healthcare  { background: #d1fae5; color: #065f46; }
    .tag-industrial  { background: #fef3c7; color: #92400e; }
    .tag-hospitality { background: #fce7f3; color: #9d174d; }
    .tag-education   { background: #ede9fe; color: #5b21b6; }

    .card-body h3 {
      font-size: 23px;
      font-weight: 800;
      margin-bottom: 8px;
      color: var(--text-dark);
    }

    .card-body > p {
      font-size: 15px;
      color: var(--text-body);
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .card-stats {
      display: flex;
      gap: 28px;
      margin-bottom: 20px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--border);
    }

    .stat-item .stat-label {
      font-size: 11px;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: .5px;
      margin-bottom: 3px;
    }

    .stat-item .stat-val {
      font-size: 15px;
      font-weight: 700;
      color: var(--text-dark);
    }

    .systems-label {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .8px;
      color: var(--text-muted);
      margin-bottom: 10px;
    }

    .tags-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 20px;
    }

    .sys-tag {
      padding: 4px 12px;
      border-radius: 50px;
      border: 1px solid var(--border);
      font-size: 14px;
      color: var(--text-body);
      font-weight: 500;
    }

    .similar-link {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 15px;
      font-weight: 700;
      color: var(--blue-accent);
      text-decoration: none;
      transition: gap .2s;
    }

    .similar-link:hover { gap: 9px; }

    /* ── STATS BAR ── */
    .stats-bar {
      background: var(--white);
      padding: 60px;
      display: flex;
      justify-content: center;
      gap: 100px;
      flex-wrap: wrap;
      border-top: 1px solid var(--border);
    }

    .stats-bar-item {
      text-align: center;
    }

    .stats-bar-icon {
      width: 56px; height: 56px;
      background: rgba(37,99,235,0.08);
      border-radius: 14px;
      display: grid;
      place-items: center;
      margin: 0 auto 16px;
    }

    .stats-bar-icon svg {
      width: 50px; height: 50px;
      stroke: var(--blue-accent);
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .stats-bar-num {
      font-size: 47px;
      font-weight: 800;
      color: var(--text-dark);
      margin-bottom: 4px;
      line-height: 1;
    }

    .stats-bar-label {
      font-size: 15px;
      color: var(--text-muted);
    }

    /* ── FOOTER ── */
    footer {
      background: #080c20;
      padding: 28px 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 17px;
      font-weight: 800;
      letter-spacing: 1.5px;
      color: var(--white);
      text-decoration: none;
    }

    .footer-logo .logo-icon { background: rgba(255,255,255,0.1); }
    .footer-copy { font-size: 15px; color: var(--text-muted); }
    .footer-links { display: flex; gap: 24px; }
    .footer-links a { font-size: 15px; color: var(--text-muted); text-decoration: none; transition: color .2s; }
    .footer-links a:hover { color: var(--white); }

    /* ── RESPONSIVE ── */
    /* no additional breakpoint needed – default is two columns */

    @media (max-width: 860px) {
      nav { padding: 16px 24px; }
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .nav-drawer { display: block; }
      .hero-banner { padding: 110px 24px 60px; }
      .filter-bar { padding: 20px 24px; top: 68px; }
      .projects-section { padding: 40px 24px; }
      .projects-grid { grid-template-columns: 1fr; }
      .stats-bar { padding: 48px 24px; gap: 48px; }
      footer { padding: 24px; flex-direction: column; text-align: center; }
    }
  

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


/* ════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --blue-dark: #0a0f2c;
      --blue-accent: #2563eb;
      --white: #ffffff;
      --gray-bg: #f4f6fb;
      --text-dark: #0a0f2c;
      --text-muted: #8a9bbc;
      --text-body: #4a5568;
      --border: #e2e8f0;
    }

    body {
      font-family: 'Segoe UI', system-ui, sans-serif;
      color: var(--text-dark);
      background: var(--white);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 60px;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(0,0,0,0.07);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 18px;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-decoration: none;
      color: var(--text-dark);
    }

    .logo-icon {
      width: 34px; height: 34px;
      background: var(--blue-dark);
      border-radius: 8px;
      display: grid;
      place-items: center;
      font-size: 18px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }

    .nav-links a {
      text-decoration: none;
      color: #555;
      font-size: 16px;
      font-weight: 500;
      transition: color .2s;
    }

    .nav-links a:hover { color: #d97706; }
    .nav-links a.active { color: #d97706; font-weight: 600; }

    .btn-nav {
      padding: 10px 24px;
      border: none;
      border-radius: 50px;
      background: var(--blue-dark);
      color: var(--white);
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      transition: opacity .2s;
    }
    .btn-nav:hover { opacity: .85; }

    /* ── HERO BANNER ── */
    .hero-banner {
      background: linear-gradient(135deg, #0d1a4a 0%, #0a0f2c 70%);
      padding: 150px 60px 80px;
      text-align: center;
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .hero-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 60px 60px;
    }

    .hero-banner .eyebrow {
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--blue-accent);
      margin-bottom: 16px;
      position: relative;
    }

    .hero-banner h1 {
      font-size: clamp(41px, 5.5vw, 72px);
      font-weight: 800;
      margin-bottom: 16px;
      position: relative;
      line-height: 1.1;
    }

    .hero-banner p {
      font-size: 18px;
      color: rgba(255,255,255,0.6);
      max-width: 460px;
      margin: 0 auto;
      line-height: 1.7;
      position: relative;
    }

    /* ── MAIN CONTENT ── */
    .contact-section {
      padding: 80px 60px;
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 64px;
      align-items: start;
    }

    /* ── LEFT COLUMN ── */
    .contact-left h2 {
      font-size: 32px;
      font-weight: 800;
      margin-bottom: 12px;
      color: var(--text-dark);
    }

    .contact-left > p {
      font-size: 17px;
      color: var(--text-body);
      line-height: 1.7;
      margin-bottom: 32px;
      max-width: 380px;
    }

    /* Info Cards */
    .info-cards {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-bottom: 32px;
    }

    .info-card {
      display: flex;
      align-items: center;
      gap: 18px;
      background: var(--gray-bg);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 20px 22px;
      transition: box-shadow .2s;
    }

    .info-card:hover {
      box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    }

    .info-icon {
      width: 44px; height: 44px;
      background: rgba(37, 99, 235, 0.1);
      border-radius: 10px;
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }

    .info-icon svg {
      width: 20px; height: 20px;
      stroke: var(--blue-accent);
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .info-text .info-label {
      font-size: 12px;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: .8px;
      margin-bottom: 3px;
    }

    .info-text .info-value {
      font-size: 17px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 2px;
    }

    .info-text .info-sub {
      font-size: 14px;
      color: var(--text-muted);
    }

    /* Map placeholder */
    .map-placeholder {
      width: 100%;
      height: 220px;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: linear-gradient(135deg, #c8d8e8 0%, #a8b8c8 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .map-placeholder svg {
      width: 100%;
      height: 100%;
      opacity: 0.55;
    }

    /* ── RIGHT COLUMN – FORM ── */
    .form-card {
      background: var(--gray-bg);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 40px 36px;
    }

    .form-card h3 {
      font-size: 25px;
      font-weight: 800;
      margin-bottom: 28px;
      color: var(--text-dark);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 18px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 18px;
    }

    .form-group:last-of-type { margin-bottom: 0; }

    label {
      font-size: 15px;
      font-weight: 600;
      color: var(--text-dark);
    }

    label .req { color: var(--blue-accent); margin-left: 2px; }

    input[type="text"],
    input[type="email"],
    select,
    textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      background: var(--white);
      font-size: 16px;
      color: var(--text-dark);
      font-family: inherit;
      outline: none;
      transition: border-color .2s, box-shadow .2s;
      appearance: none;
      -webkit-appearance: none;
    }

    input::placeholder, textarea::placeholder { color: #b0bec5; }

    input:focus, select:focus, textarea:focus {
      border-color: var(--blue-accent);
      box-shadow: 0 0 0 3px rgba(37,99,235,0.08);
    }

    select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a9bbc' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 40px;
      cursor: pointer;
    }

    textarea {
      resize: vertical;
      min-height: 120px;
      line-height: 1.6;
    }

    .btn-submit {
      width: 100%;
      padding: 15px;
      margin-top: 24px;
      background: var(--blue-dark);
      color: var(--white);
      border: none;
      border-radius: 12px;
      font-size: 17px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: opacity .2s, transform .15s;
      font-family: inherit;
    }

    .btn-submit:hover { opacity: .88; transform: scale(1.01); }

    .btn-submit svg {
      width: 17px; height: 17px;
      stroke: var(--white);
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* Success message */
    .success-msg {
      display: none;
      background: #d1fae5;
      border: 1px solid #6ee7b7;
      border-radius: 10px;
      padding: 14px 18px;
      margin-top: 16px;
      font-size: 16px;
      color: #065f46;
      font-weight: 600;
      text-align: center;
    }

    /* ── FOOTER ── */
    footer {
      background: #080c20;
      padding: 28px 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 17px;
      font-weight: 800;
      letter-spacing: 1.5px;
      color: var(--white);
      text-decoration: none;
    }

    .footer-logo .logo-icon { background: rgba(255,255,255,0.1); }
    .footer-copy { font-size: 15px; color: var(--text-muted); }
    .footer-links { display: flex; gap: 24px; }
    .footer-links a { font-size: 15px; color: var(--text-muted); text-decoration: none; transition: color .2s; }
    .footer-links a:hover { color: var(--white); }

    /* ── RESPONSIVE ── */
    @media (max-width: 860px) {
      nav { padding: 16px 24px; }
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .nav-drawer { display: block; }
      .hero-banner { padding: 110px 24px 60px; }
      .contact-section { grid-template-columns: 1fr; padding: 48px 24px; gap: 40px; }
      .form-card { padding: 28px 22px; }
      .form-row { grid-template-columns: 1fr; }
      footer { padding: 24px; flex-direction: column; text-align: center; }
    }

/* ════════════════════════════════════════
   PRODUCTS PAGE
   ════════════════════════════════════════ */

.products-page {
  background: var(--white, #fff);
  color: #0a0f2c;
}

/* ── Disable hover lift/shadow on Services page (keep scroll animations) ── */
.services-page .card-hover:hover,
.services-page .prod-card:hover,
.services-page .project-card:hover,
.services-page .service-block:hover,
.services-page .team-card:hover,
.services-page .value-card:hover,
.services-page .feature-item:hover,
.services-page .btn-primary:hover,
.services-page .btn-hero-primary:hover,
.services-page .btn-hero-secondary:hover,
.services-page .btn-cta-primary:hover,
.services-page .btn-cta-white:hover,
.services-page .btn-prod-primary:hover,
.services-page .btn-prod-ghost:hover,
.services-page .btn-hero-white:hover,
.services-page .nav-links a:hover {
  transform: none !important;
  box-shadow: none !important;
}
.services-page .prod-card:hover .prod-card-header { filter: none !important; }

/* ── NAV override for light pages ── */
.products-page nav {
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  backdrop-filter: blur(12px);
}

.products-page .logo { color: #0a0f2c; }
.products-page .logo-icon { background: #0a0f2c; }

.products-page .nav-links a { color: #555; }
.products-page .nav-links a:hover { color: #d97706; }
.products-page .nav-links a.active { color: #d97706; font-weight: 600; }

.products-page .btn-nav {
  background: #0a0f2c;
  color: #fff;
  padding: 10px 24px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .2s;
  display: inline-block;
}
.products-page .btn-nav:hover { opacity: .85; }


/* ── HERO ── */
.products-page .hero-banner {
  background: linear-gradient(135deg, #0d1a4a 0%, #0a0f2c 55%, #1a3a8f 100%);
  padding: 150px 60px 90px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.products-page .hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.products-page .hero-banner .eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #4da6ff;
  margin-bottom: 16px;
  position: relative;
}

.products-page .hero-banner h1 {
  font-size: clamp(43px, 5.5vw, 77px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
  position: relative;
}

.products-page .hero-banner p {
  font-size: 19px;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
}

.hero-banner-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.btn-hero-white {
  padding: 14px 30px;
  background: #fff;
  color: #0a0f2c;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .2s, transform .15s;
  display: inline-block;
}
.btn-hero-white:hover { opacity: .92; transform: scale(1.02); }

.btn-hero-ghost {
  padding: 14px 30px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: #fff;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
  display: inline-block;
}
.btn-hero-ghost:hover { background: rgba(255,255,255,0.18); }

/* ── FILTER BAR ── */
.prod-filter-bar {
  background: #fff;
  padding: 20px 60px;
  display: flex;
  justify-content: center; /* center category buttons */
  gap: 16px;
  flex-wrap: wrap;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 72px;
  z-index: 50;
}

.prod-filter-btn {
  padding: 10px 24px;
  font-size: 16px;
}


.prod-filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid #e2e8f0;
  background: transparent;
  color: #4a5568;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}

.prod-filter-btn:hover {
  border-color: #2563eb;
  color: #2563eb;
}

.prod-filter-btn.active {
  background: #0a0f2c;
  border-color: #0a0f2c;
  color: #fff;
}

/* ── PRODUCTS SECTION ── */
.prod-section {
  background: #f4f6fb;
  padding: 80px 60px; /* more breathing room */
}

/* center the small 3‑card grid and improve spacing */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

/* slightly boost badge font size for three key categories */
.prod-badge {
  font-size: 16px;
}

/* make icons a bit larger in simplified cards */
.prod-card-header .prod-icon-wrap svg {
  width: 36px;
  height: 36px;
}


.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── PRODUCT CARD ── */
.prod-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}

.prod-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.1);
}

/* Card header color bands */
.prod-card-header {
  padding: 28px 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.bg-blue    { background: linear-gradient(135deg, #1e3a8a, #2563eb); }
.bg-teal    { background: linear-gradient(135deg, #0f766e, #14b8a6); }
.bg-indigo  { background: linear-gradient(135deg, #3730a3, #6366f1); }
.bg-slate   { background: linear-gradient(135deg, #1e293b, #475569); }
.bg-green   { background: linear-gradient(135deg, #166534, #22c55e); }
.bg-amber   { background: linear-gradient(135deg, #92400e, #f59e0b); }
.bg-rose    { background: linear-gradient(135deg, #9f1239, #f43f5e); }
.bg-purple  { background: linear-gradient(135deg, #581c87, #a855f7); }
.bg-cyan    { background: linear-gradient(135deg, #0e7490, #22d3ee); }

.prod-icon-wrap {
  width: 100px; height: 100px;
  background: rgba(255,255,255,0.15);
  border-radius: 14px;
  display: grid;
  place-items: center;
}

.prod-icon-wrap svg {
  width: 24px; height: 24px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.prod-badge {
  padding: 5px 12px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* Card body */
.prod-card-body {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.prod-card-body h3 {
  font-size: 19px;
  font-weight: 800;
  color: #0a0f2c;
  margin-bottom: 10px;
  line-height: 1.3;
}

.prod-card-body > p {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

/* Specs table */
.prod-specs {
  list-style: none;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 22px;
}

.prod-specs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 14px;
  font-size: 14px;
  border-bottom: 1px solid #e2e8f0;
}

.prod-specs li:last-child { border-bottom: none; }
.prod-specs li:nth-child(odd) { background: #f8fafc; }

.prod-specs li span { color: #8a9bbc; }
.prod-specs li strong { color: #0a0f2c; font-weight: 600; }

/* Card footer buttons */
.prod-card-footer {
  display: flex;
  gap: 10px;
}

.btn-prod-primary {
  flex: 1;
  padding: 11px;
  background: #0a0f2c;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: opacity .2s;
  display: inline-block;
}
.btn-prod-primary:hover { opacity: .85; }

.btn-prod-ghost {
  flex: 1;
  padding: 11px;
  background: transparent;
  color: #0a0f2c;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, color .2s;
  display: inline-block;
}
.btn-prod-ghost:hover { border-color: #2563eb; color: #2563eb; }

/* ── COMPATIBILITY SECTION ── */
.compat-section {
  background: #fff;
  padding: 80px 60px;
  border-top: 1px solid #e2e8f0;
}

.compat-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.compat-text h2 {
  font-size: clamp(29px, 3vw, 45px);
  font-weight: 800;
  margin-bottom: 14px;
  color: #0a0f2c;
  line-height: 1.2;
}

.compat-text p {
  font-size: 17px;
  color: #4a5568;
  line-height: 1.75;
  margin-bottom: 28px;
}

.btn-compat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 28px;
  background: #0a0f2c;
  color: #fff;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .2s;
}
.btn-compat:hover { opacity: .85; }

.compat-protocols {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.protocol-badge {
  padding: 10px 20px;
  background: #f4f6fb;
  border: 1.5px solid #e2e8f0;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  color: #0a0f2c;
  letter-spacing: .3px;
  transition: background .2s, border-color .2s, color .2s;
  cursor: default;
}

.protocol-badge:hover {
  background: #0a0f2c;
  color: #fff;
  border-color: #0a0f2c;
}

/* ── WHY OUR PRODUCTS ── */
.why-prod-section {
  background: #f4f6fb;
  padding: 80px 60px;
}

.section-header-light {
  text-align: center;
  margin-bottom: 56px;
}

.section-header-light h2 {
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 800;
  color: #0a0f2c;
  margin-bottom: 10px;
}

.section-header-light p {
  font-size: 17px;
  color: #8a9bbc;
}

.why-prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.why-prod-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 32px 24px;
  transition: box-shadow .25s, transform .25s;
}

.why-prod-card:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.why-prod-icon {
  width: 48px; height: 48px;
  background: rgba(37,99,235,0.1);
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.why-prod-icon svg {
  width: 22px; height: 22px;
  stroke: #2563eb;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-prod-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #0a0f2c;
  margin-bottom: 10px;
}

.why-prod-card p {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.7;
}

/* ── CTA SECTION ── */
.prod-cta-section {
  background: linear-gradient(135deg, #2563eb 0%, #1a3a8f 100%);
  padding: 90px 60px;
  text-align: center;
  color: #fff;
}

.prod-cta-section h2 {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  margin-bottom: 14px;
}

.prod-cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.prod-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-white {
  padding: 14px 32px;
  background: #fff;
  color: #2563eb;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .2s, transform .15s;
  display: inline-block;
}
.btn-cta-white:hover { opacity: .92; transform: scale(1.02); }

.btn-cta-ghost {
  padding: 14px 32px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
  display: inline-block;
}
.btn-cta-ghost:hover { background: rgba(255,255,255,0.2); }

/* ── FOOTER override ── */
.products-page footer {
  background: #080c20;
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.products-page .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #fff;
  text-decoration: none;
}

.products-page .footer-logo .logo-icon { background: rgba(255,255,255,0.1); }
.products-page .footer-copy { font-size: 15px; color: #8a9bbc; }
.products-page .footer-links { display: flex; gap: 24px; }
.products-page .footer-links a { font-size: 15px; color: #8a9bbc; text-decoration: none; transition: color .2s; }
.products-page .footer-links a:hover { color: #fff; }

/* ── ANIMATION ── */
@keyframes prodFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .why-prod-grid { grid-template-columns: repeat(2, 1fr); }
  .compat-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 860px) {
  .products-page nav { padding: 16px 24px; }
  .products-page .nav-links { display: none; }
  .products-page .hero-banner { padding: 110px 24px 60px; }
  .prod-filter-bar { padding: 18px 24px; top: 68px; }
  .prod-section { padding: 40px 24px; }
  .prod-grid { grid-template-columns: 1fr; }
  .compat-section { padding: 60px 24px; }
  .why-prod-section { padding: 60px 24px; }
  .why-prod-grid { grid-template-columns: 1fr 1fr; }
  .prod-cta-section { padding: 64px 24px; }
  .products-page footer { padding: 24px; flex-direction: column; text-align: center; }
}

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


.products-page

/* ════════════════════════════════════════
   PRODUCTS PAGE
   ════════════════════════════════════════ */

.products-page {
  background: var(--white, #fff);
  color: #0a0f2c;
}

/* ── NAV override for light pages ── */
.products-page nav {
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  backdrop-filter: blur(12px);
}

.products-page .logo { color: #0a0f2c; }
.products-page .logo-icon { background: #0a0f2c; }

.products-page .nav-links a { color: #555; }
.products-page .nav-links a:hover { color: #d97706; }
.products-page .nav-links a.active { color: #d97706; font-weight: 600; }

.products-page .btn-nav {
  background: #0a0f2c;
  color: #fff;
  padding: 10px 24px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .2s;
  display: inline-block;
}
.products-page .btn-nav:hover { opacity: .85; }


/* ── HERO ── */
.products-page .hero-banner {
  background: linear-gradient(135deg, #0d1a4a 0%, #0a0f2c 55%, #1a3a8f 100%);
  padding: 150px 60px 90px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.products-page .hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.products-page .hero-banner .eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #4da6ff;
  margin-bottom: 16px;
  position: relative;
}

.products-page .hero-banner h1 {
  font-size: clamp(43px, 5.5vw, 77px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
  position: relative;
}

.products-page .hero-banner p {
  font-size: 19px;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
}

.hero-banner-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.btn-hero-white {
  padding: 14px 30px;
  background: #fff;
  color: #0a0f2c;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .2s, transform .15s;
  display: inline-block;
}
.btn-hero-white:hover { opacity: .92; transform: scale(1.02); }

.btn-hero-ghost {
  padding: 14px 30px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: #fff;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
  display: inline-block;
}
.btn-hero-ghost:hover { background: rgba(255,255,255,0.18); }

/* ── FILTER BAR ── */
.prod-filter-bar {
  background: #fff;
  padding: 24px 60px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 72px;
  z-index: 50;
}

.prod-filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid #e2e8f0;
  background: transparent;
  color: #4a5568;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}

.prod-filter-btn:hover {
  border-color: #2563eb;
  color: #2563eb;
}

.prod-filter-btn.active {
  background: #0a0f2c;
  border-color: #0a0f2c;
  color: #fff;
}

/* ── PRODUCTS SECTION ── */
.prod-section {
  background: #f4f6fb;
  padding: 60px;
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── PRODUCT CARD ── */
.prod-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}

.prod-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.1);
}

/* Card header color bands */
.prod-card-header {
  padding: 28px 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.bg-blue    { background: linear-gradient(135deg, #1e3a8a, #2563eb); }
.bg-teal    { background: linear-gradient(135deg, #0f766e, #14b8a6); }
.bg-indigo  { background: linear-gradient(135deg, #3730a3, #6366f1); }
.bg-slate   { background: linear-gradient(135deg, #1e293b, #475569); }
.bg-green   { background: linear-gradient(135deg, #166534, #22c55e); }
.bg-amber   { background: linear-gradient(135deg, #92400e, #f59e0b); }
.bg-rose    { background: linear-gradient(135deg, #9f1239, #f43f5e); }
.bg-purple  { background: linear-gradient(135deg, #581c87, #a855f7); }
.bg-cyan    { background: linear-gradient(135deg, #0e7490, #22d3ee); }

.prod-icon-wrap {
  width: 100px; height: 100px;
  background: rgba(255,255,255,0.15);
  border-radius: 14px;
  display: grid;
  place-items: center;
}

.prod-icon-wrap svg {
  width: 24px; height: 24px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.prod-badge {
  padding: 5px 12px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* Card body */
.prod-card-body {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.prod-card-body h3 {
  font-size: 19px;
  font-weight: 800;
  color: #0a0f2c;
  margin-bottom: 10px;
  line-height: 1.3;
}

.prod-card-body > p {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

/* Specs table */
.prod-specs {
  list-style: none;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 22px;
}

.prod-specs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 14px;
  font-size: 14px;
  border-bottom: 1px solid #e2e8f0;
}

.prod-specs li:last-child { border-bottom: none; }
.prod-specs li:nth-child(odd) { background: #f8fafc; }

.prod-specs li span { color: #8a9bbc; }
.prod-specs li strong { color: #0a0f2c; font-weight: 600; }

/* Card footer buttons */
.prod-card-footer {
  display: flex;
  gap: 10px;
}

.btn-prod-primary {
  flex: 1;
  padding: 11px;
  background: #0a0f2c;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: opacity .2s;
  display: inline-block;
}
.btn-prod-primary:hover { opacity: .85; }

.btn-prod-ghost {
  flex: 1;
  padding: 11px;
  background: transparent;
  color: #0a0f2c;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, color .2s;
  display: inline-block;
}
.btn-prod-ghost:hover { border-color: #2563eb; color: #2563eb; }

/* ── COMPATIBILITY SECTION ── */
.compat-section {
  background: #fff;
  padding: 80px 60px;
  border-top: 1px solid #e2e8f0;
}

.compat-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.compat-text h2 {
  font-size: clamp(29px, 3vw, 45px);
  font-weight: 800;
  margin-bottom: 14px;
  color: #0a0f2c;
  line-height: 1.2;
}

.compat-text p {
  font-size: 17px;
  color: #4a5568;
  line-height: 1.75;
  margin-bottom: 28px;
}

.btn-compat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 28px;
  background: #0a0f2c;
  color: #fff;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .2s;
}
.btn-compat:hover { opacity: .85; }

.compat-protocols {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.protocol-badge {
  padding: 10px 20px;
  background: #f4f6fb;
  border: 1.5px solid #e2e8f0;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  color: #0a0f2c;
  letter-spacing: .3px;
  transition: background .2s, border-color .2s, color .2s;
  cursor: default;
}

.protocol-badge:hover {
  background: #0a0f2c;
  color: #fff;
  border-color: #0a0f2c;
}

/* ── WHY OUR PRODUCTS ── */
.why-prod-section {
  background: #f4f6fb;
  padding: 80px 60px;
}

.section-header-light {
  text-align: center;
  margin-bottom: 56px;
}

.section-header-light h2 {
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 800;
  color: #0a0f2c;
  margin-bottom: 10px;
}

.section-header-light p {
  font-size: 17px;
  color: #8a9bbc;
}

.why-prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.why-prod-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 32px 24px;
  transition: box-shadow .25s, transform .25s;
}

.why-prod-card:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.why-prod-icon {
  width: 48px; height: 48px;
  background: rgba(37,99,235,0.1);
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.why-prod-icon svg {
  width: 22px; height: 22px;
  stroke: #2563eb;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-prod-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #0a0f2c;
  margin-bottom: 10px;
}

.why-prod-card p {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.7;
}

/* ── CTA SECTION ── */
.prod-cta-section {
  background: linear-gradient(135deg, #2563eb 0%, #1a3a8f 100%);
  padding: 90px 60px;
  text-align: center;
  color: #fff;
}

.prod-cta-section h2 {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  margin-bottom: 14px;
}

.prod-cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.prod-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-white {
  padding: 14px 32px;
  background: #fff;
  color: #2563eb;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .2s, transform .15s;
  display: inline-block;
}
.btn-cta-white:hover { opacity: .92; transform: scale(1.02); }

.btn-cta-ghost {
  padding: 14px 32px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
  display: inline-block;
}
.btn-cta-ghost:hover { background: rgba(255,255,255,0.2); }

/* ── FOOTER override ── */
.products-page footer {
  background: #080c20;
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.products-page .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #fff;
  text-decoration: none;
}

.products-page .footer-logo .logo-icon { background: rgba(255,255,255,0.1); }
.products-page .footer-copy { font-size: 15px; color: #8a9bbc; }
.products-page .footer-links { display: flex; gap: 24px; }
.products-page .footer-links a { font-size: 15px; color: #8a9bbc; text-decoration: none; transition: color .2s; }
.products-page .footer-links a:hover { color: #fff; }

/* ── ANIMATION ── */
@keyframes prodFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .why-prod-grid { grid-template-columns: repeat(2, 1fr); }
  .compat-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 860px) {
  .products-page nav { padding: 16px 24px; }
  .products-page .nav-links { display: none; }
  .products-page .hero-banner { padding: 110px 24px 60px; }
  .prod-filter-bar { padding: 18px 24px; top: 68px; }
  .prod-section { padding: 40px 24px; }
  .prod-grid { grid-template-columns: 1fr; }
  .compat-section { padding: 60px 24px; }
  .why-prod-section { padding: 60px 24px; }
  .why-prod-grid { grid-template-columns: 1fr 1fr; }
  .prod-cta-section { padding: 64px 24px; }
  .products-page footer { padding: 24px; flex-direction: column; text-align: center; }
}

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


/* ════════════════════════════════════════
   PRODUCTS PAGE — CATEGORY CARDS (BMS / FDAS / SECURITY)
   ════════════════════════════════════════ */

.prod-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1400px;
  margin: 0 auto;
}

.prod-cat-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}

.prod-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.12);
}

/* Header band */
.prod-cat-header {
  padding: 36px 32px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.prod-cat-icon {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.15);
  border-radius: 18px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.prod-cat-icon svg {
  width: 30px; height: 30px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.prod-cat-header-text .prod-cat-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4px;
}

.prod-cat-header-text h2 {
  font-size: 41px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -1px;
}

.prod-cat-header-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
}

/* Body */
.prod-cat-body {
  padding: 28px 32px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.prod-cat-desc {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.75;
}

/* Feature checklist */
.prod-cat-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.prod-cat-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #2d3748;
  font-weight: 500;
}

.prod-cat-feat svg {
  width: 16px; height: 16px;
  stroke: #2563eb;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* Specs grid */
.prod-cat-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #e2e8f0;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
}

.prod-cat-spec-item {
  background: #f8fafc;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.prod-cat-spec-item span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #8a9bbc;
  font-weight: 600;
}

.prod-cat-spec-item strong {
  font-size: 14px;
  color: #0a0f2c;
  font-weight: 700;
}

/* Footer buttons */
.prod-cat-footer {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

/* Responsive */
@media (max-width: 1280px) {
  .prod-cat-grid { grid-template-columns: repeat(2, 1fr); max-width: 900px; }
}

@media (max-width: 1024px) {
  .prod-cat-grid { grid-template-columns: repeat(2, 1fr); max-width: 800px; }
}

@media (max-width: 640px) {
  .prod-cat-grid { grid-template-columns: 1fr; max-width: 600px; }
}

@media (max-width: 640px) {
  .prod-cat-header { flex-direction: column; align-items: flex-start; gap: 14px; }
  .prod-cat-specs { grid-template-columns: 1fr; }
  .prod-cat-body { padding: 24px 22px 28px; }
  .prod-cat-header { padding: 28px 22px 22px; }
}



bms-dedictaed

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:   #0a0f2c;
      --blue:   #2563eb;
      --cyan:   #4da6ff;
      --white:  #ffffff;
      --gray:   #f4f6fb;
      --border: #e2e8f0;
      --body:   #4a5568;
      --muted:  #8a9bbc;
    }

    body {
      font-family: 'Segoe UI', system-ui, sans-serif;
      background: var(--gray);
      color: var(--navy);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 60px;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(0,0,0,0.07);
    }
    .logo {
      display: flex; align-items: center; gap: 10px;
      font-size: 18px; font-weight: 800; letter-spacing: 1.5px;
      text-decoration: none; color: var(--navy);
    }
    .logo-icon {
      width: 34px; height: 34px; background: var(--navy);
      border-radius: 8px; display: grid; place-items: center; font-size: 18px;
    }
    .nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
    .nav-links a { text-decoration: none; color: #555; font-size: 16px; font-weight: 500; transition: color .2s; }
    .nav-links a:hover { color: #d97706; }
    .nav-links a.active { color: #d97706; font-weight: 600; }
    .btn-nav {
      padding: 10px 24px; border: none; border-radius: 50px;
      background: var(--navy); color: var(--white); font-size: 16px; font-weight: 700;
      cursor: pointer; text-decoration: none; transition: opacity .2s; display: inline-block;
    }
    .btn-nav:hover { opacity: .85; }

    /* ── PAGE BANNER ── */
    .page-banner {
      background: linear-gradient(135deg, #0d1a4a 0%, #0a0f2c 55%, #1a3a8f 100%);
      padding: 136px 60px 64px;
      position: relative; overflow: hidden; color: var(--white);
    }
    .page-banner::before {
      content: ''; position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .banner-inner {
      max-width: 1160px; margin: 0 auto;
      position: relative; z-index: 1;
      display: flex; align-items: flex-end; justify-content: space-between;
      gap: 32px; flex-wrap: wrap;
    }
    .banner-left {}
    .breadcrumb {
      display: flex; align-items: center; gap: 8px;
      font-size: 15px; color: rgba(255,255,255,0.45); margin-bottom: 16px;
    }
    .breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color .2s; }
    .breadcrumb a:hover { color: var(--white); }
    .breadcrumb .sep { color: rgba(255,255,255,0.2); }
    .breadcrumb .current { color: var(--cyan); font-weight: 600; }
    .banner-tag {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(37,99,235,0.2); border: 1px solid rgba(37,99,235,0.35);
      border-radius: 50px; padding: 5px 16px; margin-bottom: 16px;
      font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase; color: var(--cyan);
    }
    .page-banner h1 {
      font-size: clamp(38px, 4.5vw, 63px);
      font-weight: 900; letter-spacing: -2px; line-height: 1.05; margin-bottom: 12px;
    }
    .page-banner h1 em { font-style: normal; color: var(--cyan); }
    .page-banner p { font-size: 17px; color: rgba(255,255,255,0.55); max-width: 480px; line-height: 1.7; }
    .banner-stats {
      display: flex; gap: 40px; flex-shrink: 0;
      padding: 24px 32px; background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 16px; flex-wrap: wrap;
    }
    .bstat-num { font-size: 34px; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 4px; }
    .bstat-num span { color: var(--cyan); }
    .bstat-label { font-size: 12px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: .8px; }

    /* ── GRID SECTION ── */
    .grid-section {
      padding: 56px 60px 80px;
    }

    .grid-label {
      font-size: 14px; font-weight: 700; color: var(--blue);
      text-transform: uppercase; letter-spacing: 2px; margin-bottom: 28px;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    /* ── PRODUCT TILE ── */
    .ptile {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 18px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      min-height: 480px;
      transition: transform .22s, box-shadow .22s;
    }
    .ptile:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    }

    /* Top color band */
    .ptile-header {
      padding: 28px 28px 22px;
      display: flex; align-items: flex-start; justify-content: space-between;
    }
    .ptile-icon {
      width: 100px; height: 100px;
      border-radius: 14px;
      background: rgba(255,255,255,0.15);
      border: 1px solid rgba(255,255,255,0.2);
      display: grid; place-items: center;
    }
    .ptile-icon svg {
      width: 50px; height: 50px;
      stroke: #fff; fill: none;
      stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
    }
    .icon-image {
      width: 100%; height: 100%;
      object-fit: cover;
      border-radius: 12px;
    }
    .ptile-cat {
      padding: 4px 10px;
      background: rgba(255,255,255,0.18);
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 50px;
      font-size: 11px; font-weight: 700;
      text-transform: uppercase; letter-spacing: .8px; color: white;
    }

    .h-blue   { background: linear-gradient(135deg, #065f46, #059669); }
    .h-teal   { background: linear-gradient(135deg, #065f46, #059669); }
    .h-indigo { background: linear-gradient(135deg, #065f46, #059669); }
    .h-amber  { background: linear-gradient(135deg, #065f46, #059669); }
    .h-violet { background: linear-gradient(135deg, #065f46, #059669); }
    .h-green  { background: linear-gradient(135deg, #065f46, #059669); }
    .h-slate  { background: linear-gradient(135deg, #065f46, #059669); }

    /* Body */
    .ptile-body {
      padding: 22px 28px 28px;
      display: flex; flex-direction: column; gap: 14px;
      flex: 1;
    }

    .ptile-model {
      font-size: 12px; font-weight: 700; color: var(--muted);
      letter-spacing: 1px; text-transform: uppercase;
    }

    .ptile-body h3 {
      font-size: 19px; font-weight: 800;
      letter-spacing: -.3px; line-height: 1.25;
    }

    .ptile-desc {
      font-size: 15px; color: var(--body); line-height: 1.75; flex: 1;
    }

    /* Spec mini-grid */
    .ptile-specs {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 1px; background: var(--border);
      border: 1px solid var(--border); border-radius: 10px; overflow: hidden;
    }
    .ps-cell { background: var(--gray); padding: 8px 12px; }
    .ps-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--muted); margin-bottom: 2px; }
    .ps-val   { font-size: 14px; font-weight: 700; color: var(--navy); }

    /* Feature list */
    .ptile-features { display: none; }
    .ptile-feat {
      display: flex; align-items: center; gap: 8px;
      font-size: 14px; color: #2d3748; font-weight: 500;
    }
    .ptile-feat svg {
      width: 13px; height: 13px; stroke: var(--blue); fill: none;
      stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0;
    }
    .feat-icon {
      width: 13px; height: 13px; object-fit: contain; flex-shrink: 0;
    }
    .feat-check {
      width: 13px; height: 13px; display: inline-flex; align-items: center; justify-content: center;
      background: var(--blue); color: var(--white); border-radius: 2px; font-size: 11px; font-weight: bold;
      flex-shrink: 0; margin-right: 8px;
    }

    /* Footer */
    .ptile-footer {
      display: flex; gap: 8px;
      padding-top: 4px;
    }
    .btn-tile-primary {
      flex: 1; padding: 10px; background: var(--navy); color: var(--white);
      border-radius: 10px; font-size: 14px; font-weight: 700;
      text-decoration: none; text-align: center;
      transition: opacity .2s; display: inline-block;
    }
    .btn-tile-primary:hover { opacity: .85; }
    .btn-tile-ghost {
      flex: 1; padding: 10px; background: transparent;
      border: 1.5px solid var(--border); color: var(--navy);
      border-radius: 10px; font-size: 14px; font-weight: 600;
      text-decoration: none; text-align: center;
      transition: border-color .2s, color .2s; display: inline-block;
    }
    .btn-tile-ghost:hover { border-color: var(--blue); color: var(--blue); }

    /* Wide tile (spans 2 cols) */
    .ptile.wide { grid-column: span 2; }
    .ptile.wide .ptile-body { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
    .ptile.wide .ptile-body-left  { display: flex; flex-direction: column; gap: 14px; }
    .ptile.wide .ptile-body-right { display: flex; justify-content: flex-end; }
    .ptile.wide .ptile-footer { grid-column: span 2; }

    /* ── CTA BAR ── */
    .cta-bar {
      background: linear-gradient(135deg, #2563eb, #1a3a8f);
      margin: 0 60px 80px;
      border-radius: 20px;
      padding: 48px 56px;
      display: flex; align-items: center;
      justify-content: space-between; gap: 28px; flex-wrap: wrap;
    }
    .cta-bar-text h3 { font-size: 25px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
    .cta-bar-text p  { font-size: 16px; color: rgba(255,255,255,0.6); max-width: 440px; line-height: 1.6; }
    .cta-btns { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
    .btn-cta-w {
      padding: 12px 26px; background: var(--white); color: var(--blue);
      border-radius: 50px; font-size: 16px; font-weight: 700;
      text-decoration: none; white-space: nowrap; transition: opacity .2s; display: inline-block;
    }
    .btn-cta-w:hover { opacity: .92; }
    .btn-cta-g {
      padding: 12px 26px; background: rgba(255,255,255,0.12);
      border: 1.5px solid rgba(255,255,255,0.25); color: var(--white);
      border-radius: 50px; font-size: 16px; font-weight: 600;
      text-decoration: none; white-space: nowrap; transition: background .2s; display: inline-block;
    }
    .btn-cta-g:hover { background: rgba(255,255,255,0.2); }

    /* ── FOOTER ── */
    footer {
      background: #080c20; padding: 28px 60px;
      display: flex; align-items: center;
      justify-content: space-between; flex-wrap: wrap; gap: 16px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .footer-logo {
      display: flex; align-items: center; gap: 10px;
      font-size: 17px; font-weight: 800; letter-spacing: 1.5px;
      color: var(--white); text-decoration: none;
    }
    .footer-logo .logo-icon { background: rgba(255,255,255,0.1); }
    .footer-copy { font-size: 15px; color: var(--muted); }
    .footer-links { display: flex; gap: 24px; }
    .footer-links a { font-size: 15px; color: var(--muted); text-decoration: none; transition: color .2s; }
    .footer-links a:hover { color: var(--white); }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .products-grid { grid-template-columns: repeat(2, 1fr); }
      .ptile.wide { grid-column: span 2; }
      .ptile.wide .ptile-body { grid-template-columns: 1fr; }
      .ptile.wide .ptile-footer { grid-column: span 1; }
      .banner-stats { display: none; }
    }
    @media (max-width: 768px) {
      nav { padding: 16px 24px; }
      .hamburger { display: flex; }
      .nav-hamburger { display: flex; }
      .nav-drawer { display: block; }
      .nav-links { display: none; }
      .btn-nav { display: none; }
      .page-banner { padding: 110px 24px 52px; }
      .grid-section { padding: 40px 24px 60px; }
      .products-grid { grid-template-columns: 1fr; }
      .ptile.wide { grid-column: span 1; }
      .ptile.wide .ptile-body { grid-template-columns: 1fr; }
      .cta-bar { margin: 0 24px 60px; padding: 36px 28px; flex-direction: column; }
      footer { padding: 24px; flex-direction: column; text-align: center; }
    }
  

    fdas-dedictaed

     
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:   #0a0f2c;
      --red:    #dc2626;
      --orange: #f97316;
      --cyan:   #4da6ff;
      --white:  #ffffff;
      --gray:   #f4f6fb;
      --border: #e2e8f0;
      --body:   #4a5568;
      --muted:  #8a9bbc;
    }

    body {
      font-family: 'Segoe UI', system-ui, sans-serif;
      background: var(--gray);
      color: var(--navy);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 60px;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(0,0,0,0.07);
    }
    .logo {
      display: flex; align-items: center; gap: 10px;
      font-size: 18px; font-weight: 800; letter-spacing: 1.5px;
      text-decoration: none; color: var(--navy);
    }
    .logo-icon {
      width: 34px; height: 34px; background: var(--navy);
      border-radius: 8px; display: grid; place-items: center; font-size: 18px;
    }
    .nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
    .nav-links a { text-decoration: none; color: #555; font-size: 16px; font-weight: 500; transition: color .2s; }
    .nav-links a:hover { color: #d97706; }
    .nav-links a.active { color: #d97706; font-weight: 600; }
    .btn-nav {
      padding: 10px 24px; border: none; border-radius: 50px;
      background: var(--navy); color: var(--white); font-size: 16px; font-weight: 700;
      cursor: pointer; text-decoration: none; transition: opacity .2s; display: inline-block;
    }
    .btn-nav:hover { opacity: .85; }

    /* ── PAGE BANNER ── */
    .page-banner {
      background: linear-gradient(135deg, #1a0a0a 0%, #2d0a0a 40%, #7f1d1d 100%);
      padding: 136px 60px 64px;
      position: relative; overflow: hidden; color: var(--white);
    }
    .page-banner::before {
      content: ''; position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .banner-inner {
      max-width: 1160px; margin: 0 auto; position: relative; z-index: 1;
      display: flex; align-items: flex-end; justify-content: space-between;
      gap: 32px; flex-wrap: wrap;
    }
    .breadcrumb {
      display: flex; align-items: center; gap: 8px;
      font-size: 15px; color: rgba(255,255,255,0.45); margin-bottom: 16px;
    }
    .breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color .2s; }
    .breadcrumb a:hover { color: var(--white); }
    .breadcrumb .sep { color: rgba(255,255,255,0.2); }
    .breadcrumb .current { color: #fca5a5; font-weight: 600; }
    .banner-tag {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(220,38,38,0.25); border: 1px solid rgba(220,38,38,0.45);
      border-radius: 50px; padding: 5px 16px; margin-bottom: 16px;
      font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase; color: #fca5a5;
    }
    .page-banner h1 {
      font-size: clamp(38px, 4.5vw, 63px);
      font-weight: 900; letter-spacing: -2px; line-height: 1.05; margin-bottom: 12px;
    }
    .page-banner h1 em { font-style: normal; color: #fca5a5; }
    .page-banner p { font-size: 17px; color: rgba(255,255,255,0.55); max-width: 480px; line-height: 1.7; }
    .banner-stats {
      display: flex; gap: 40px; flex-shrink: 0;
      padding: 24px 32px; background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 16px; flex-wrap: wrap;
    }
    .bstat-num { font-size: 34px; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 4px; }
    .bstat-num span { color: #fca5a5; }
    .bstat-label { font-size: 12px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: .8px; }

    /* ── GRID SECTION ── */
    .grid-section {
      max-width: 1160px; margin: 0 auto; padding: 56px 60px 80px;
    }
    .grid-label {
      font-size: 14px; font-weight: 700; color: var(--red);
      text-transform: uppercase; letter-spacing: 2px; margin-bottom: 28px;
    }
    .products-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    }

    /* ── PRODUCT TILE ── */
    .ptile {
      background: var(--white); border: 1px solid var(--border);
      border-radius: 18px; overflow: hidden;
      display: flex; flex-direction: column;
      transition: transform .22s, box-shadow .22s;
    }
    .ptile:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }

    .ptile-header {
      padding: 28px 28px 22px;
      display: flex; align-items: flex-start; justify-content: space-between;
    }
    .ptile-icon {
      width: 100px; height: 100px; border-radius: 14px;
      background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.2);
      display: grid; place-items: center;
    }
    .ptile-icon svg {
      width: 50px; height: 50px; stroke: #fff; fill: none;
      stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
    }
    .ptile-cat {
      padding: 4px 10px;
      background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.25);
      border-radius: 50px; font-size: 11px; font-weight: 700;
      text-transform: uppercase; letter-spacing: .8px; color: rgba(255,255,255,0.9);
    }

    /* Header gradients */
    .h-red    { background: linear-gradient(135deg, #7f1d1d, #dc2626); }
    .h-rose   { background: linear-gradient(135deg, #9f1239, #f43f5e); }
    .h-orange { background: linear-gradient(135deg, #9a3412, #f97316); }
    .h-amber  { background: linear-gradient(135deg, #92400e, #f59e0b); }
    .h-slate  { background: linear-gradient(135deg, #1e293b, #475569); }
    .h-violet { background: linear-gradient(135deg, #5b21b6, #8b5cf6); }
    .h-teal   { background: linear-gradient(135deg, #0f766e, #14b8a6); }

    /* Body */
    .ptile-body {
      padding: 22px 28px 28px;
      flex: 1; display: flex; flex-direction: column; gap: 14px;
    }
    .ptile-model { font-size: 12px; font-weight: 700; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }
    .ptile-body h3 { font-size: 19px; font-weight: 800; letter-spacing: -.3px; line-height: 1.25; }
    .ptile-desc { font-size: 15px; color: var(--body); line-height: 1.75; flex: 1; }

    .ptile-specs {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 1px; background: var(--border);
      border: 1px solid var(--border); border-radius: 10px; overflow: hidden;
    }
    .ps-cell { background: var(--gray); padding: 8px 12px; }
    .ps-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--muted); margin-bottom: 2px; }
    .ps-val   { font-size: 14px; font-weight: 700; color: var(--navy); }

    .ptile-features { display: none; }
    .ptile-feat {
      display: flex; align-items: center; gap: 8px;
      font-size: 14px; color: #2d3748; font-weight: 500;
    }
    .ptile-feat svg {
      width: 13px; height: 13px; stroke: var(--red); fill: none;
      stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0;
    }

    .ptile-footer { display: flex; gap: 8px; margin-top: auto; padding-top: 4px; }
    .btn-tile-primary {
      flex: 1; padding: 10px; background: var(--navy); color: var(--white);
      border-radius: 10px; font-size: 14px; font-weight: 700;
      text-decoration: none; text-align: center; transition: opacity .2s; display: inline-block;
    }
    .btn-tile-primary:hover { opacity: .85; }
    .btn-tile-ghost {
      flex: 1; padding: 10px; background: transparent;
      border: 1.5px solid var(--border); color: var(--navy);
      border-radius: 10px; font-size: 14px; font-weight: 600;
      text-decoration: none; text-align: center;
      transition: border-color .2s, color .2s; display: inline-block;
    }
    .btn-tile-ghost:hover { border-color: var(--red); color: var(--red); }

    /* Wide tile */
    .ptile.wide { grid-column: span 2; }
    .ptile.wide .ptile-body { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
    .ptile.wide .ptile-body-left  { display: flex; flex-direction: column; gap: 14px; }
    .ptile.wide .ptile-body-right { display: flex; flex-direction: column; gap: 14px; }

    /* ── CTA BAR ── */
    .cta-bar {
      background: linear-gradient(135deg, #dc2626, #7f1d1d);
      margin: 0 60px 80px; border-radius: 20px;
      padding: 48px 56px;
      display: flex; align-items: center;
      justify-content: space-between; gap: 28px; flex-wrap: wrap;
    }
    .cta-bar-text h3 { font-size: 25px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
    .cta-bar-text p  { font-size: 16px; color: rgba(255,255,255,0.6); max-width: 440px; line-height: 1.6; }
    .cta-btns { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
    .btn-cta-w {
      padding: 12px 26px; background: var(--white); color: var(--red);
      border-radius: 50px; font-size: 16px; font-weight: 700;
      text-decoration: none; white-space: nowrap; transition: opacity .2s; display: inline-block;
    }
    .btn-cta-w:hover { opacity: .92; }
    .btn-cta-g {
      padding: 12px 26px; background: rgba(255,255,255,0.12);
      border: 1.5px solid rgba(255,255,255,0.25); color: var(--white);
      border-radius: 50px; font-size: 16px; font-weight: 600;
      text-decoration: none; white-space: nowrap; transition: background .2s; display: inline-block;
    }
    .btn-cta-g:hover { background: rgba(255,255,255,0.2); }

    /* ── FOOTER ── */
    footer {
      background: #080c20; padding: 28px 60px;
      display: flex; align-items: center;
      justify-content: space-between; flex-wrap: wrap; gap: 16px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .footer-logo {
      display: flex; align-items: center; gap: 10px;
      font-size: 17px; font-weight: 800; letter-spacing: 1.5px;
      color: var(--white); text-decoration: none;
    }
    .footer-logo .logo-icon { background: rgba(255,255,255,0.1); }
    .footer-copy { font-size: 15px; color: var(--muted); }
    .footer-links { display: flex; gap: 24px; }
    .footer-links a { font-size: 15px; color: var(--muted); text-decoration: none; transition: color .2s; }
    .footer-links a:hover { color: var(--white); }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .products-grid { grid-template-columns: repeat(2, 1fr); }
      .ptile.wide { grid-column: span 2; }
      .ptile.wide .ptile-body { grid-template-columns: 1fr; }
      .banner-stats { display: none; }
    }
    @media (max-width: 768px) {
      nav { padding: 16px 24px; }
      .hamburger { display: flex; }
      .nav-hamburger { display: flex; }
      .nav-drawer { display: block; }
      .nav-links { display: none; }
      .btn-nav { display: none; }
      .page-banner { padding: 110px 24px 52px; }
      .grid-section { padding: 40px 24px 60px; }
      .products-grid { grid-template-columns: 1fr; }
      .ptile.wide { grid-column: span 1; }
      .ptile.wide .ptile-body { grid-template-columns: 1fr; }
      .cta-bar { margin: 0 24px 60px; padding: 36px 28px; flex-direction: column; }
      footer { padding: 24px; flex-direction: column; text-align: center; }
    }



    security-dediacted


    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:   #0a0f2c;
      --dark:   #1e293b;
      --steel:  #475569;
      --cyan:   #4da6ff;
      --white:  #ffffff;
      --gray:   #f4f6fb;
      --border: #e2e8f0;
      --body:   #4a5568;
      --muted:  #8a9bbc;
    }

    body {
      font-family: 'Segoe UI', system-ui, sans-serif;
      background: var(--gray);
      color: var(--navy);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 60px;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(0,0,0,0.07);
    }
    .logo {
      display: flex; align-items: center; gap: 10px;
      font-size: 18px; font-weight: 800; letter-spacing: 1.5px;
      text-decoration: none; color: var(--navy);
    }
    .logo-icon {
      width: 34px; height: 34px; background: var(--navy);
      border-radius: 8px; display: grid; place-items: center; font-size: 18px;
    }
    .nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
    .nav-links a { text-decoration: none; color: #555; font-size: 16px; font-weight: 500; transition: color .2s; }
    .nav-links a:hover { color: #d97706; }
    .nav-links a.active { color: #d97706; font-weight: 600; }
    .btn-nav {
      padding: 10px 24px; border: none; border-radius: 50px;
      background: var(--navy); color: var(--white); font-size: 16px; font-weight: 700;
      cursor: pointer; text-decoration: none; transition: opacity .2s; display: inline-block;
    }
    .btn-nav:hover { opacity: .85; }

    /* ── PAGE BANNER ── */
    .page-banner {
      background: linear-gradient(135deg, #0a0a14 0%, #0f172a 45%, #1e293b 100%);
      padding: 136px 60px 64px;
      position: relative; overflow: hidden; color: var(--white);
    }
    .page-banner::before {
      content: ''; position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    /* Subtle shield watermark */
    .page-banner::after {
      content: '';
      position: absolute; right: 80px; top: 50%; transform: translateY(-50%);
      width: 320px; height: 320px;
      background: radial-gradient(circle, rgba(71,85,105,0.2) 0%, transparent 70%);
      pointer-events: none;
    }
    .banner-inner {
      max-width: 1160px; margin: 0 auto; position: relative; z-index: 1;
      display: flex; align-items: flex-end; justify-content: space-between;
      gap: 32px; flex-wrap: wrap;
    }
    .breadcrumb {
      display: flex; align-items: center; gap: 8px;
      font-size: 15px; color: rgba(255,255,255,0.45); margin-bottom: 16px;
    }
    .breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color .2s; }
    .breadcrumb a:hover { color: var(--white); }
    .breadcrumb .sep { color: rgba(255,255,255,0.2); }
    .breadcrumb .current { color: #94a3b8; font-weight: 600; }
    .banner-tag {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(71,85,105,0.3); border: 1px solid rgba(71,85,105,0.5);
      border-radius: 50px; padding: 5px 16px; margin-bottom: 16px;
      font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase; color: #94a3b8;
    }
    .page-banner h1 {
      font-size: clamp(38px, 4.5vw, 63px);
      font-weight: 900; letter-spacing: -2px; line-height: 1.05; margin-bottom: 12px;
    }
    .page-banner h1 em { font-style: normal; color: #94a3b8; }
    .page-banner p { font-size: 17px; color: rgba(255,255,255,0.55); max-width: 480px; line-height: 1.7; }
    .banner-stats {
      display: flex; gap: 40px; flex-shrink: 0;
      padding: 24px 32px; background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 16px; flex-wrap: wrap;
    }
    .bstat-num { font-size: 34px; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 4px; }
    .bstat-num span { color: #94a3b8; }
    .bstat-label { font-size: 12px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: .8px; }

    /* ── GRID SECTION ── */
    .grid-section {
      max-width: 1160px; margin: 0 auto; padding: 56px 60px 80px;
    }
    .grid-label {
      font-size: 14px; font-weight: 700; color: var(--steel);
      text-transform: uppercase; letter-spacing: 2px; margin-bottom: 28px;
    }
    .products-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    }

    /* ── PRODUCT TILE ── */
    .ptile {
      background: var(--white); border: 1px solid var(--border);
      border-radius: 18px; overflow: hidden;
      display: flex; flex-direction: column;
      transition: transform .22s, box-shadow .22s;
    }
    .ptile:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }

    .ptile-header {
      padding: 28px 28px 22px;
      display: flex; align-items: flex-start; justify-content: space-between;
    }
    .ptile-icon {
      width: 100px; height: 100px; border-radius: 14px;
      background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.2);
      display: grid; place-items: center;
    }
    .ptile-icon svg {
      width: 50px; height: 50px; stroke: #fff; fill: none;
      stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
    }
    .ptile-cat {
      padding: 4px 10px;
      background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.25);
      border-radius: 50px; font-size: 11px; font-weight: 700;
      text-transform: uppercase; letter-spacing: .8px; color: rgba(255,255,255,0.9);
    }

    /* Header gradients — all slate/dark tones */
    .h-slate   { background: linear-gradient(135deg, #065f46, #059669); }
    .h-steel   { background: linear-gradient(135deg, #065f46, #059669); }
    .h-zinc    { background: linear-gradient(135deg, #065f46, #059669); }
    .h-indigo  { background: linear-gradient(135deg, #065f46, #059669); }
    .h-blue    { background: linear-gradient(135deg, #065f46, #059669); }
    .h-teal    { background: linear-gradient(135deg, #065f46, #059669); }
    .h-violet  { background: linear-gradient(135deg, #065f46, #059669); }

    /* Body */
    .ptile-body {
      padding: 22px 28px 28px;
      flex: 1; display: flex; flex-direction: column; gap: 14px;
    }
    .ptile-model { font-size: 12px; font-weight: 700; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }
    .ptile-body h3 { font-size: 19px; font-weight: 800; letter-spacing: -.3px; line-height: 1.25; }
    .ptile-desc { font-size: 15px; color: var(--body); line-height: 1.75; flex: 1; }

    .ptile-specs {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 1px; background: var(--border);
      border: 1px solid var(--border); border-radius: 10px; overflow: hidden;
    }
    .ps-cell { background: var(--gray); padding: 8px 12px; }
    .ps-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--muted); margin-bottom: 2px; }
    .ps-val   { font-size: 14px; font-weight: 700; color: var(--navy); }

    .ptile-features { display: none; }
    .ptile-feat {
      display: flex; align-items: center; gap: 8px;
      font-size: 14px; color: #2d3748; font-weight: 500;
    }
    .ptile-feat svg {
      width: 13px; height: 13px; stroke: var(--dark); fill: none;
      stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0;
    }

    .ptile-footer { display: flex; gap: 8px; margin-top: auto; padding-top: 4px; }
    .btn-tile-primary {
      flex: 1; padding: 10px; background: var(--navy); color: var(--white);
      border-radius: 10px; font-size: 14px; font-weight: 700;
      text-decoration: none; text-align: center; transition: opacity .2s; display: inline-block;
    }
    .btn-tile-primary:hover { opacity: .85; }
    .btn-tile-ghost {
      flex: 1; padding: 10px; background: transparent;
      border: 1.5px solid var(--border); color: var(--navy);
      border-radius: 10px; font-size: 14px; font-weight: 600;
      text-decoration: none; text-align: center;
      transition: border-color .2s, color .2s; display: inline-block;
    }
    .btn-tile-ghost:hover { border-color: var(--dark); color: var(--dark); }

    /* Wide tile */
    .ptile.wide { grid-column: span 2; }
    .ptile.wide .ptile-body { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
    .ptile.wide .ptile-body-left  { display: flex; flex-direction: column; gap: 14px; }
    .ptile.wide .ptile-body-right { display: flex; flex-direction: column; gap: 14px; }

    /* ── CTA BAR ── */
    .cta-bar {
      background: linear-gradient(135deg, #1e293b, #0f172a);
      margin: 0 60px 80px; border-radius: 20px;
      padding: 48px 56px;
      display: flex; align-items: center;
      justify-content: space-between; gap: 28px; flex-wrap: wrap;
    }
    .cta-bar-text h3 { font-size: 25px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
    .cta-bar-text p  { font-size: 16px; color: rgba(255,255,255,0.55); max-width: 440px; line-height: 1.6; }
    .cta-btns { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
    .btn-cta-w {
      padding: 12px 26px; background: var(--white); color: var(--dark);
      border-radius: 50px; font-size: 16px; font-weight: 700;
      text-decoration: none; white-space: nowrap; transition: opacity .2s; display: inline-block;
    }
    .btn-cta-w:hover { opacity: .92; }
    .btn-cta-g {
      padding: 12px 26px; background: rgba(255,255,255,0.1);
      border: 1.5px solid rgba(255,255,255,0.2); color: var(--white);
      border-radius: 50px; font-size: 16px; font-weight: 600;
      text-decoration: none; white-space: nowrap; transition: background .2s; display: inline-block;
    }
    .btn-cta-g:hover { background: rgba(255,255,255,0.18); }

    /* ── FOOTER ── */
    footer {
      background: #080c20; padding: 28px 60px;
      display: flex; align-items: center;
      justify-content: space-between; flex-wrap: wrap; gap: 16px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .footer-logo {
      display: flex; align-items: center; gap: 10px;
      font-size: 17px; font-weight: 800; letter-spacing: 1.5px;
      color: var(--white); text-decoration: none;
    }
    .footer-logo .logo-icon { background: rgba(255,255,255,0.1); }
    .footer-copy { font-size: 15px; color: var(--muted); }
    .footer-links { display: flex; gap: 24px; }
    .footer-links a { font-size: 15px; color: var(--muted); text-decoration: none; transition: color .2s; }
    .footer-links a:hover { color: var(--white); }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .products-grid { grid-template-columns: repeat(2, 1fr); }
      .ptile.wide { grid-column: span 2; }
      .ptile.wide .ptile-body { grid-template-columns: 1fr; }
      .banner-stats { display: none; }
    }
    @media (max-width: 768px) {
      nav { padding: 16px 24px; }
      .hamburger { display: flex; }
      .nav-hamburger { display: flex; }
      .nav-drawer { display: block; }
      .nav-links { display: none; }
      .btn-nav { display: none; }
      .page-banner { padding: 110px 24px 52px; }
      .grid-section { padding: 40px 24px 60px; }
      .products-grid { grid-template-columns: 1fr; }
      .ptile.wide { grid-column: span 1; }
      .ptile.wide .ptile-body { grid-template-columns: 1fr; }
      .cta-bar { margin: 0 24px 60px; padding: 36px 28px; flex-direction: column; }
      footer { padding: 24px; flex-direction: column; text-align: center; }
    }
