/**
 * Module CSS: 00-design-tokens-and-reset.css
 * Trích nguyên văn dòng 1-62 của pctech-homepage.css gốc.
 * Không đổi nội dung — chỉ tách file theo đúng marker sẵn có trong code gốc.
 */
    :root {
      --blue: #0d4a8f;
      --blue-dark: #062a55;
      --blue-deeper: #041a35;
      --blue-light: #dce8f8;
      --blue-glow: rgba(13, 74, 143, 0.35);
      --orange: #e8870a;
      --orange-dark: #c56f06;
      --orange-light: #fff4e0;
      --orange-glow: rgba(232, 135, 10, 0.45);
      --green: #00965e;
      --green-light: #d4f5e6;
      --zalo: #0068ff;
      --messenger: #0084ff;
      --gray-50: #eef2f8;
      --gray-100: #e2e8f2;
      --gray-200: #c5d0e0;
      --gray-500: #5a6b82;
      --gray-700: #2a3a52;
      --gray-900: #061222;
      --white: #ffffff;
      --shadow: 0 4px 28px rgba(4, 26, 53, 0.14);
      --shadow-lg: 0 16px 48px rgba(4, 26, 53, 0.22);
      --shadow-glow: 0 0 40px var(--orange-glow);
      --radius: 16px;
      --radius-sm: 10px;
      --header-h: 76px;
      --side-rail-w: 72px;
      --fab-w: 56px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html {
      scroll-behavior: smooth;
      /* PCTech fix: KHOÁ CỨNG font-size gốc = 16px (100%). Toàn site
         dùng rem cho cỡ chữ (178 chỗ) — nếu CSS khác (vd Bricks
         frontend-layer.min.css, thường đặt html{font-size:62.5%} để
         1rem=10px) tải sau và thắng, MỌI chữ trên site sẽ tự động co
         nhỏ theo tỉ lệ đó. Khai báo lại ở đây (file tải SAU CÙNG, xem
         inc/homepage-assets.php priority 9999) để đảm bảo luôn thắng. */
      font-size: 100% !important;
    }
    body {
      font-family: 'Be Vietnam Pro', system-ui, sans-serif;
      color: var(--gray-700);
      background: var(--gray-50);
      line-height: 1.6;
      overflow-x: hidden;
    }
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 50% at 0% 0%, rgba(13,74,143,0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 100% 100%, rgba(232,135,10,0.06) 0%, transparent 50%),
        repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(13,74,143,0.02) 80px, rgba(13,74,143,0.02) 81px);
      pointer-events: none;
      z-index: 0;
    }
    .page-wrap { position: relative; z-index: 1; }

    .container { width: min(1320px, calc(92vw - var(--side-rail-w))); margin: 0 auto; }
    @media (max-width: 1100px) {
      .container { width: min(1200px, 92vw); }
    }

    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

