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

    /* ─── Tokens ─────────────────────────────────────────── */
    :root {
      --nav-bg:         #0f1e38;
      --nav-bg-scroll:  #0c1a30;
      --nav-accent:     #e8a020;
      --nav-accent-h:   #f0b535;
      --nav-text:       #ffffff;
      --nav-muted:      rgba(255,255,255,0.65);
      --nav-hover:      rgba(255,255,255,0.08);
      --nav-active-bg:  rgba(232,160,32,0.15);
      --nav-border:     rgba(255,255,255,0.10);
      --nav-height:     68px;
      --nav-z:          1000;
      --radius:         7px;
      --transition:     0.18s ease;
    }

    body {
      font-family: 'Segoe UI', Helvetica Neue, Arial, sans-serif;
      background: #FFFFFF;
      color: #222;
      min-height: 200vh; /* demo scroll */
    }

    /* ─── NAV WRAPPER ───────────────────────────────────── */
    .site-nav {
      position: sticky;
      top: 0;
      z-index: var(--nav-z);
      background: var(--nav-bg);
      border-bottom: 2.5px solid var(--nav-accent);
      transition: background var(--transition), box-shadow var(--transition);
    }
    .site-nav.scrolled {
      background: var(--nav-bg-scroll);
      box-shadow: 0 4px 24px rgba(0,0,0,0.35);
    }

    /* ─── INNER LAYOUT ──────────────────────────────────── */
    .nav-inner {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 24px;
      height: var(--nav-height);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    /* ─── BRAND ─────────────────────────────────────────── */
    .nav-brand {
      display: flex;
      align-items: center;
      gap: 11px;
      text-decoration: none;
      flex-shrink: 0;
    }
    .brand-badge {
      width: 40px;
      height: 40px;
      background: var(--nav-accent);
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 700;
      color: #0f1e38;
      letter-spacing: 0.5px;
    }
    .brand-copy { display: flex; flex-direction: column; line-height: 1.25; }
    .brand-name {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      letter-spacing: 1.5px;
    }
    .brand-sub {
      font-size: 10px;
      color: var(--nav-muted);
      letter-spacing: 0.2px;
      white-space: nowrap;
    }

    /* ─── DESKTOP LINKS ─────────────────────────────────── */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 2px;
      list-style: none;
    }
    .nav-links a {
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 9px 15px;
      border-radius: var(--radius);
      text-decoration: none;
      font-size: 13.5px;
      font-weight: 400;
      color: var(--nav-muted);
      white-space: nowrap;
      transition: background var(--transition), color var(--transition);
      border: 0.5px solid transparent;
    }
    .nav-links a:hover {
      background: var(--nav-hover);
      color: #fff;
    }
    .nav-links a.active {
      background: var(--nav-active-bg);
      color: var(--nav-accent);
      border-color: rgba(232,160,32,0.3);
      font-weight: 500;
    }
    .nav-links a svg {
      width: 15px; height: 15px;
      opacity: 0.8;
      flex-shrink: 0;
    }

    /* ─── CTA BUTTON ────────────────────────────────────── */
    .nav-cta { margin-left: 10px; }
    .nav-cta a {
      background: var(--nav-accent) !important;
      color: #0f1e38 !important;
      font-weight: 600 !important;
      padding: 9px 18px !important;
      border-color: transparent !important;
      letter-spacing: 0.2px;
    }
    .nav-cta a:hover {
      background: var(--nav-accent-h) !important;
      color: #0f1e38 !important;
    }

    /* ─── HAMBURGER ─────────────────────────────────────── */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      cursor: pointer;
      padding: 9px;
      border-radius: var(--radius);
      border: 0.5px solid var(--nav-border);
      background: transparent;
      flex-shrink: 0;
    }
    .hamburger:hover { background: var(--nav-hover); }
    .hamburger span {
      display: block;
      width: 22px; height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: transform 0.25s, opacity 0.2s;
      transform-origin: center;
    }
    .hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ─── MOBILE DRAWER ─────────────────────────────────── */
    .mobile-drawer {
      display: none;
      flex-direction: column;
      background: var(--nav-bg);
      border-top: 0.5px solid var(--nav-border);
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .mobile-drawer.open { max-height: 500px; }

    .mobile-drawer a {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 0 24px;
      height: 54px;
      color: var(--nav-muted);
      text-decoration: none;
      font-size: 14.5px;
      border-bottom: 0.5px solid var(--nav-border);
      border-left: 3px solid transparent;
      transition: background var(--transition), color var(--transition), border-color var(--transition);
    }
    .mobile-drawer a:hover {
      background: var(--nav-hover);
      color: #fff;
    }
    .mobile-drawer a.active {
      color: var(--nav-accent);
      border-left-color: var(--nav-accent);
      background: var(--nav-active-bg);
      padding-left: 21px;
    }
    .mobile-drawer a svg { width: 16px; height: 16px; opacity: 0.85; flex-shrink: 0; }

    .mobile-drawer-footer {
      padding: 14px 24px 18px;
    }
    .mobile-cta-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      padding: 13px;
      background: var(--nav-accent);
      color: #0f1e38;
      font-weight: 700;
      font-size: 14px;
      text-decoration: none;
      border-radius: var(--radius);
      letter-spacing: 0.3px;
      transition: background var(--transition);
    }
    .mobile-cta-btn:hover { background: var(--nav-accent-h); }

    /* ─── SKIP LINK (accessibility) ────────────────────── */
    .skip-link {
      position: absolute;
      top: -100%;
      left: 16px;
      background: var(--nav-accent);
      color: #0f1e38;
      padding: 8px 16px;
      border-radius: 0 0 var(--radius) var(--radius);
      font-size: 13px;
      font-weight: 600;
      z-index: 9999;
      text-decoration: none;
      transition: top 0.2s;
    }
    .skip-link:focus { top: 0; }

    /* ─── PAGE DEMO CONTENT ─────────────────────────────── */
    .page-hero {
      background: linear-gradient(135deg, #0f1e38 0%, #1a3560 60%, #0f2a4a 100%);
      color: #fff;
      padding: 80px 24px 72px;
      text-align: center;
    }
    .page-hero h1 { font-size: clamp(1.5rem, 4vw, 2.4rem); font-weight: 700; margin-bottom: 16px; line-height: 1.2; }
    .page-hero p { font-size: 18px; color: rgba(255,255,255,0.7); max-width: 750px; margin: 0 auto; line-height: 1.7; }
    .hero-accent { color: var(--nav-accent); }

    .page-body { max-width: 900px; margin: 56px auto; padding: 0 24px; }
    .page-body p { color: #444; line-height: 1.8; margin-bottom: 16px; }
	
	.box-automation 
	{
		-webkit-border-radius	: 8px;
		-moz-border-radius		: 8px;
		border-radius			: 8px;
		display					: inline-block; 
		margin					: 20px;
		border					: 5px solid rgba(30,30,30,1);
		background				: linear-gradient(135deg, #333333 0%, #222222 60%, #0a0a0a 100%);
		max-width				: 500px;	
		vertical-align			: top;		
		text-align				: center;
	}
	.box-automation img {width:98%; margin:10px 10px 10px 0px;}
	.box-automation h1 { font-size: 140%; color:#E0A538; font-weight:700; margin-bottom:2px;}
    .box-automation p { font-size: 95%; color: rgba(255,255,255,0.7); width :100%; line-height: 1.7; }
	
    /* ─── RESPONSIVE BREAKPOINTS ────────────────────────── */
    @media (max-width: 860px) {
      .brand-sub { display: none; }
	  .box-automation {width:95%; margin:0px; margin-bottom:10px; margin-top:10px;}
    }

    @media (max-width: 720px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .mobile-drawer { display: flex; }
    }

    @media (max-width: 400px) {
      .nav-inner { padding: 0 14px; }
      .brand-badge { width: 34px; height: 34px; font-size: 11px; }
      .brand-name { font-size: 14px; }
    }
	

