    /* ============================================================
       SAFEGATE BRAND — exact logo colors
       Deep Blue  : #0057A8
       Cyan Light : #00AEEF
       Dark BG    : #080E17
    ============================================================ */
    :root {
      --bg:           #ffffff;
      --fg:           #0c1a2e;
      --surface:      #f0f5fb;
      --dark:         #080E17;
      --dark-2:       #0D1C30;
      --dark-3:       #112240;
      --blue:         #0057A8;
      --blue-dark:    #003d7a;
      --blue-light:   #ddeeff;
      --cyan:         #00AEEF;
      --cyan-dark:    #0090cc;
      --cyan-light:   #e0f6ff;
      --muted:        #607897;
      --border:       #d6e4f0;
      --white:        #ffffff;
      --wrap:         1180px;
      --r:            8px;
      --tr:           220ms ease;
      --shadow:       0 16px 48px rgba(0,87,168,0.14);
      --shadow-cyan:  0 16px 40px rgba(0,174,239,0.22);

      /* Typography: body default + heading scale only */
      --fs-base: 16px;
      --lh:      1.7;
      --h1:      56px;
      --h2:      40px;
      --h3:      28px;
      --h4:      20px;
      --h5:      18px;
      --h6:      16px;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-size: var(--fs-base); line-height: var(--lh); background: var(--bg); color: var(--fg); font-family: "Open Sans", system-ui, sans-serif; -webkit-font-smoothing: antialiased; }
    h1, h2, h3, h4, h5, h6 { font-family:"Roboto",sans-serif; line-height:1.15; letter-spacing:-.01em; }
    h1 { font-size: var(--h1); font-weight: 900; }
    h2 { font-size: var(--h2); font-weight: 900; }
    h3 { font-size: var(--h3); font-weight: 800; }
    h4 { font-size: var(--h4); font-weight: 800; }
    h5 { font-size: var(--h5); font-weight: 800; }
    h6 { font-size: var(--h6); font-weight: 800; }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button, input, textarea { font: inherit; cursor: pointer; }
    .wrap { width: min(var(--wrap), calc(100% - 48px)); margin: 0 auto; }

    /* ── HEADER ── */
    .site-header { font-family: "Roboto", sans-serif; background: var(--dark); position: sticky; top: 0; z-index: 200; border-bottom: 1px solid rgba(0,174,239,0.12); }
    .header-top { display: flex; align-items: center; justify-content: space-between; height: 42px; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .header-info { display: flex; align-items: center; gap: 22px; color: rgba(255,255,255,0.45); font-size: 80%;}
    .header-info a:hover { color: var(--cyan); transition: color var(--tr); }
    .header-info .hl { color: var(--cyan); font-weight: 700; }
    .lang-row { display: flex; gap: 6px; }
    .lang-btn { padding: 3px 9px; border-radius: 4px; font-weight: 700; letter-spacing: .05em; color: rgba(255,255,255,0.4); background: transparent; border: 1px solid rgba(255,255,255,0.1); transition: all var(--tr); }
    .lang-btn:hover, .lang-btn.on { background: var(--blue); border-color: var(--blue); color: #fff; }

    .header-nav { display: flex; align-items: center; justify-content: space-between; height: 62px; position: relative; }
    .breadcrumb{gap: 5px;}
    /* Logo wordmark mimicking the SAFEGATE® bold condensed style */
    .sg-logo { display: flex; align-items: baseline; gap: 1px; line-height: 1; }
    .sg-wm {
      font-family: "Roboto", sans-serif;
      font-weight: 900;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      /* gradient matching logo: deep blue to cyan */
      background: linear-gradient(90deg, #1e8be0 0%, var(--cyan) 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .sg-reg { font-family:"Roboto",sans-serif; font-weight:900; color:rgba(0,174,239,0.65); vertical-align:super; }
    .sg-logo { transform: scale(1.18); transform-origin: left center; }

    .nav { display: flex; align-items: center; gap: 2px; }
    .nav > a, .nav-drop > a {
      font-family: "Roboto", sans-serif; font-weight: 700; letter-spacing: .03em; text-transform: uppercase;
      color: rgba(255,255,255,0.7); padding: 8px 13px; border-radius: 6px;
      display: flex; align-items: center; gap: 4px;
      transition: color var(--tr), background var(--tr);
    }
    .nav > a:hover, .nav > a.on, .nav-drop > a:hover { color: var(--cyan); background: rgba(0,174,239,0.08); }
    .nav-drop { position: relative; }
    .nav-drop > a::after { content:"▾"; opacity:.55; }
    .dd {
      display: none; position: absolute; top: 100%; left: 0;
      background: var(--dark-2); border: 1px solid rgba(0,174,239,0.14);
      border-radius: 10px; min-width: 225px; padding: 7px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.4); z-index: 300;
    }
    .nav-drop:hover .dd { display: block; }
    .dd a {
      display: flex; align-items: center; gap: 9px; padding: 9px 11px; border-radius: 7px;
      font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.65); text-transform: none; letter-spacing: 0;
      transition: all var(--tr);
    }
    .dd a:hover { color: var(--cyan); background: rgba(0,174,239,0.08); }
    .dd-ic { width:28px; height:28px; border-radius:6px; background:rgba(0,87,168,0.3); display:grid; place-items:center; font-size:13px; flex-shrink:0; }

    /* Mega menu (3 columns) */
    .dd.dd-mega{
      width: min(920px, calc(100vw - 64px));
      padding: 14px;
      border-radius: 14px;
      display: none;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      left: 50%;
      transform: translateX(-32%);
      background:
        radial-gradient(800px 260px at 20% 0%, rgba(0,174,239,0.10), transparent 65%),
        radial-gradient(740px 260px at 90% 20%, rgba(0,87,168,0.16), transparent 62%),
        var(--dark-2);
      border: 1px solid rgba(0,174,239,0.16);
    }
    .nav-drop:hover .dd.dd-mega{ display:grid; }
    .dd.dd-mega::before{
      content:"";
      position:absolute;
      inset:-1px;
      border-radius: 14px;
      pointer-events:none;
      background: linear-gradient(135deg, rgba(0,174,239,0.22), rgba(0,87,168,0.12), rgba(255,255,255,0));
      -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
      mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      padding: 1px;
    }
    .dd.dd-mega .dd-h{
      font-family:"Roboto",sans-serif;
      font-weight: 800;
      font-size: 12px;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.72);
      margin: 2px 10px 10px;
    }
    .dd.dd-mega a{
      background: transparent;
      border: 1px solid transparent;
    }
    .dd.dd-mega a:hover{
      background: rgba(0,174,239,0.08);
      border-color: rgba(0,174,239,0.22);
    }

    .nav-actions { display: flex; align-items: center; gap: 10px; }
    .btn-call {
      display: flex; align-items: center; gap: 6px;
      font-family:"Roboto",sans-serif; font-weight:700;
      color: var(--cyan); padding: 7px 15px; border-radius: var(--r);
      border: 1px solid rgba(0,174,239,0.28); background: rgba(0,174,239,0.06);
      transition: all var(--tr);
    }
    .btn-call:hover { background: rgba(0,174,239,0.14); border-color: var(--cyan); }
    .btn-cta {
      font-family:"Roboto",sans-serif; font-weight:700; letter-spacing:.03em; text-transform:uppercase;
      color: var(--dark); background: linear-gradient(135deg, var(--cyan) 0%, #40c9ff 100%);
      padding: 9px 22px; border-radius: var(--r); border: none;
      box-shadow: 0 4px 16px rgba(0,174,239,0.3); transition: all var(--tr);
    }
    .btn-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,174,239,0.45); }
    .nav-toggle { display:none; background:transparent; border:1px solid rgba(255,255,255,0.15); color:#fff; padding:6px 10px; border-radius:6px; }
    .nav-drawer-backdrop { display:none; }

    /* ── BUTTONS ── */
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 13px 28px; border-radius: var(--r);
      font-family: "Roboto", sans-serif; font-weight: 700; letter-spacing: .02em; text-transform: uppercase;
      border: none; transition: transform var(--tr), box-shadow var(--tr), background var(--tr), color var(--tr), border-color var(--tr); cursor: pointer;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-blue { background: linear-gradient(135deg, var(--blue) 0%, #0077cc 100%); color:#fff; box-shadow:0 6px 20px rgba(0,87,168,0.35); }
    .btn-blue:hover { box-shadow: 0 10px 28px rgba(0,87,168,0.5); }
    .btn-cyan { background: linear-gradient(135deg, var(--cyan) 0%, #40c9ff 100%); color: var(--white); box-shadow: var(--shadow-cyan); }
    .btn-cyan:hover { box-shadow: 0 12px 30px rgba(0,174,239,0.45); }
    .btn-ghost { background:transparent; color:rgba(255,255,255,0.82); border:1.5px solid rgba(255,255,255,0.22); }
    .btn-ghost:hover { border-color:var(--cyan); color:var(--cyan); background:rgba(0,174,239,0.07); }
    .btn-outline { background:transparent; color:var(--blue); border:2px solid var(--blue); }
    .btn-outline:hover { background:var(--blue); color:#fff; }
    .btn-white { background:#fff; color:var(--blue-dark); }
    .btn-white:hover { background:#f0f7ff; }
    .btn-sm { padding: 9px 20px; }

    /* ── PAGE BANNER (shared for internal pages) ── */
    .banner{
      position: relative;
      min-height: 320px;
      background: var(--dark);
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      overflow: hidden;
      display: block;
    }
    .banner::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(180deg, rgba(8,14,23,0.55) 0%, rgba(8,14,23,0.62) 55%, rgba(8,14,23,0.76) 100%),
        radial-gradient(720px 360px at 20% 0%, rgba(0,174,239,0.14), transparent 60%),
        radial-gradient(720px 360px at 90% 30%, rgba(0,87,168,0.18), transparent 62%);
      pointer-events:none;
    }
    .banner .slide-content{ position:absolute; inset:0; z-index:1; }
    .banner .breadcrumb{
      font-size: 14px;
      letter-spacing: .02em;
      opacity: .95;
    }
    .banner .breadcrumb a{ text-decoration: none; }
    .banner .breadcrumb a:hover{ text-decoration: underline; }
    .banner .blog-actions .form-control{
      background: rgba(255,255,255,0.92);
      border-color: rgba(255,255,255,0.4);
    }
    .banner .blog-actions .btn-outline-primary{
      border-color: rgba(255,255,255,0.42);
      color: #fff;
      background: rgba(255,255,255,0.06);
    }
    .banner .blog-actions .btn-outline-primary:hover{
      background: rgba(255,255,255,0.12);
      border-color: rgba(255,255,255,0.62);
      color: #fff;
    }
    .banner .blog-actions .dropdown-menu{
      max-height: 320px;
      overflow: auto;
    }
    @media(max-width:640px){
      .banner{ min-height: 240px; }
    }

    /* ── ARTICLE SAPO (lead/description) ── */
    .art-sapo{
      border: 1px solid rgba(0,87,168,0.12);
      background: rgba(0,87,168,0.05);
      color: var(--fg);
      line-height: 1.6;
      font-size: 16px;
    }

    /* ── HERO ── */
    .hero { background:var(--dark); min-height:calc(100vh - 104px); position:relative; overflow:hidden; display:flex; align-items:center; }
    .hero::before {
      content:""; position:absolute; inset:0; z-index:0;
      background-image: linear-gradient(rgba(0,174,239,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(0,174,239,0.035) 1px, transparent 1px);
      background-size: 50px 50px;
    }
    .glow-1 { position:absolute; width:640px; height:640px; border-radius:50%; background:radial-gradient(circle, rgba(0,87,168,0.22) 0%, transparent 68%); top:-160px; left:-160px; pointer-events:none; z-index:0; }
    .glow-2 { position:absolute; width:520px; height:520px; border-radius:50%; background:radial-gradient(circle, rgba(0,174,239,0.16) 0%, transparent 68%); bottom:-100px; right:8%; pointer-events:none; z-index:0; }
    .hero-inner { position:relative; z-index:2; display:grid; grid-template-columns:1fr 480px; gap:64px; align-items:center; padding:72px 0 80px;}
    .hero-eyebrow {
      display:inline-flex; align-items:center; gap:8px;
      background:rgba(0,174,239,0.09); border:1px solid rgba(0,174,239,0.25); color:var(--cyan);
      padding:5px 14px; border-radius:999px;
      font-weight:700; letter-spacing:.08em; text-transform:uppercase; margin-bottom:22px;
    }
    .pulse { width:7px; height:7px; border-radius:50%; background:var(--cyan); animation:pulse 2s ease infinite; }
    @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }
    .hero h1 { color:#fff; }
    .hero h1 em {
      font-style:normal;
      background:linear-gradient(90deg, #2a9be0 0%, var(--cyan) 100%);
      -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
    }
    @supports not(-webkit-background-clip:text){ .hero h1 em{ color:var(--cyan); } }
    .hero-sub { margin-top:18px; max-width:490px; font-size:16px; line-height:1.75; color:rgba(255,255,255,1); }
    .hero-btns { margin-top:34px; display:flex; gap:13px; flex-wrap:wrap; }
    .hero-kpis { display:flex; gap:36px; margin-top:46px; padding-top:30px; border-top:1px solid rgba(255,255,255,0.08); flex-wrap:wrap; }
    .kpi strong { display:block; font-family:"Roboto",sans-serif; font-weight:900; font-size:36px; color:var(--cyan); line-height:1; }
    .kpi span { font-size:12px; color:rgba(255,255,255,0.42); margin-top:4px; display:block; }
    .hero-dots { display:flex; gap:8px; margin-top:32px; }
    .hdot { width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,0.2); border:none; transition:background var(--tr),width var(--tr); }
    .hdot.on { background:var(--cyan); width:24px; border-radius:9px; }

    /* Hero right cards */
    .hero-cards { display:grid; gap:13px; }
    .hcard {
      background:rgba(255,255,255,0.04); border:1px solid rgba(0,174,239,0.13); border-radius:12px;
      padding:16px 18px; display:flex; align-items:center; gap:13px; backdrop-filter:blur(8px);
      transition:all var(--tr);
    }
    .hcard:hover { background:rgba(0,174,239,0.07); border-color:rgba(0,174,239,0.32); transform:translateX(5px); }
    .hc-ic { width:42px; height:42px; border-radius:10px; background:linear-gradient(135deg,rgba(0,87,168,.5),rgba(0,174,239,.28)); display:grid; place-items:center; font-size:19px; flex-shrink:0; }
    .hcard h4 { font-size:13.5px; font-weight:700; color:#fff; margin-bottom:3px; }
    .hcard p { font-size:12px; color:rgba(255,255,255,0.48); line-height:1.5; }

    /* ── SECTION LABELS ── */
    .s-lbl { display:inline-flex; align-items:center; gap:8px; font-family:"Roboto",sans-serif; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--blue); margin-bottom:13px; }
    .s-lbl::before { content:""; width:20px; height:3px; background:linear-gradient(90deg,var(--blue),var(--cyan)); border-radius:2px; }
    .s-lbl.lt { color:var(--cyan); }
    .s-lbl.lt::before { background:linear-gradient(90deg,var(--cyan),#80e0ff); }
    .s-ttl { letter-spacing:-.02em; color:var(--fg); }
    .s-ttl.lt { color:#fff; }
    .s-dsc { font-size:inherit; line-height:inherit; color:var(--muted); max-width:560px; margin-top:13px; }
    .s-dsc.lt { color:rgba(255,255,255,0.55); }

    /* ── ABOUT ── */
    .about { padding:96px 0; background:var(--bg); }
    .about-g { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; }
    .about-g .s-dsc { max-width:100%; }
    .about-stats { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:36px; }
    .astat { background:var(--surface); border:1px solid var(--border); border-radius:10px; padding:18px 20px; }
    .astat strong {
      display:block; font-family:"Roboto",sans-serif; font-weight:900; font-size:34px;
      background:linear-gradient(90deg,var(--blue),var(--cyan));
      -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
      line-height:1; margin-bottom:4px;
    }
    @supports not(-webkit-background-clip:text){ .astat strong{ color:var(--blue); } }
    .astat span { font-size:12.5px; color:var(--muted); }
    .about-vis { position:relative; }
    .about-img { width:100%; height:440px; background:linear-gradient(145deg,var(--dark) 0%,var(--dark-2) 50%,#0a2040 100%); border-radius:16px; display:flex; align-items:center; justify-content:center; font-size:96px; position:relative; overflow:hidden; }
    .about-img::before { content:""; position:absolute; inset:0; background:radial-gradient(ellipse at 40% 60%,rgba(0,174,239,0.14) 0%,transparent 60%); }
    .about-img > span, .about-img .sg-ico-hero { position:relative; z-index:1; display:flex; align-items:center; justify-content:center; }
    .about-badge { position:absolute; bottom:-14px; left:-14px; background:#fff; border:1px solid var(--border); border-radius:12px; padding:13px 17px; display:flex; align-items:center; gap:11px; box-shadow:0 8px 32px rgba(0,87,168,0.12); }
    .about-badge .ic { font-size:24px; }
    .about-badge strong { display:block; font-family:"Roboto",sans-serif; font-weight:900; font-size:17px; color:var(--blue); line-height:1; margin-bottom:2px; }
    .about-badge span { font-size:11.5px; color:var(--muted); }

    /* ── SERVICES ── */
    .services { padding:96px 0; background:var(--surface); }
    /* Special background for "Giải pháp - Dịch vụ" section */
    #services{
      background:
        linear-gradient(180deg, rgba(8,14,23,0.78) 0%, rgba(8,14,23,0.72) 40%, rgba(8,14,23,0.80) 100%),
        radial-gradient(900px 460px at 18% 10%, rgba(0,174,239,0.18), transparent 62%),
        radial-gradient(820px 520px at 90% 85%, rgba(0,87,168,0.22), transparent 62%);
      background-image: none;
      background-size: cover;
      background-position: center;
      color: #fff;
    }
    #services .s-lbl{ color: var(--cyan); }
    #services .s-lbl::before{ background: linear-gradient(90deg, var(--cyan), #80e0ff); }
    #services .s-ttl{ color:#fff; }
    #services .s-dsc{ color: rgba(255,255,255,0.62); }
    .svc-head { text-align:center; max-width:700px; margin:0 auto 52px; }
    .svc-head .s-lbl { justify-content:center; }
    .svc-head .s-dsc { margin:13px auto 0; }
    .svc-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
    .svc-card { background:#fff; border:1px solid var(--border); border-radius:14px; padding:26px; transition:all var(--tr); position:relative; overflow:hidden; }
    .svc-card::after { content:""; position:absolute; bottom:0; left:0; right:0; height:3px; background:linear-gradient(90deg,var(--blue),var(--cyan)); transform:scaleX(0); transform-origin:left; transition:transform 300ms ease; }
    .svc-card:hover { transform:translateY(-6px); box-shadow:var(--shadow); border-color:rgba(0,87,168,0.2); }
    .svc-card:hover::after { transform:scaleX(1); }
    .svc-ico { width:50px; height:50px; border-radius:11px; background:linear-gradient(135deg,var(--blue-light),var(--cyan-light)); display:grid; place-items:center; font-size:23px; margin-bottom:16px; }
    .svc-card h3 { font-family:"Roboto",sans-serif; font-weight:800; font-size:var(--h4); color:var(--fg); margin-bottom:9px; line-height:1.35; }
    .svc-card p { font-size:inherit; line-height:inherit; color:var(--muted); margin-bottom:16px; }
    .svc-links { display:flex; flex-direction:column; gap:6px; }
    .svc-links a { font-size:12.5px; font-weight:700; color:var(--blue); display:flex; align-items:center; gap:5px; transition:gap var(--tr),color var(--tr); }
    .svc-links a::before {
      content:"\f061";
      font-family:"Font Awesome 6 Free";
      font-weight:900;
      font-size:0.75em;
      color:var(--cyan);
      line-height:1;
      -webkit-font-smoothing:antialiased;
    }
    .svc-links a:hover { gap:9px; color:var(--cyan); }

    /* Services tabs (platform style like Palo Alto “Platforms”) */
    .svc-tabs { display:flex; justify-content:center; gap:10px; flex-wrap:wrap; margin:0 auto 26px; }
    .svc-tabs--platform { background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.14); border-radius:999px; padding:6px; width:fit-content; max-width:100%; box-shadow:0 18px 40px rgba(0,0,0,0.22); backdrop-filter: blur(10px); }
    .svc-tab {
      border:none;
      background:transparent;
      border-radius:999px;
      padding:10px 14px;
      display:flex;
      align-items:center;
      gap:10px;
      color:var(--fg);
      transition:background var(--tr), box-shadow var(--tr), transform var(--tr), color var(--tr);
      text-align:left;
    }
    .svc-tab:hover { background:rgba(255,255,255,0.06); }
    .svc-tab.on {
      background:linear-gradient(135deg, rgba(0,174,239,0.20), rgba(0,87,168,0.16));
      box-shadow:0 18px 40px rgba(0,0,0,0.26);
    }
    .svc-tab-ic {
      width:38px; height:38px; border-radius:12px;
      display:grid; place-items:center;
      background:linear-gradient(135deg, var(--blue-light), var(--cyan-light));
      border:1px solid rgba(0,87,168,0.12);
      font-size:16px;
      flex-shrink:0;
    }
    .svc-tab.on .svc-tab-ic { background:linear-gradient(135deg, rgba(0,174,239,0.24), rgba(0,87,168,0.22)); border-color:rgba(0,174,239,0.35); color: var(--white);}
    .svc-tab-txt { display:flex; flex-direction:column; gap:1px; color: var(--white);}
    .svc-tab-txt strong { font-family:"Roboto",sans-serif; font-weight:800; font-size:1.25rem; letter-spacing:.01em; }
    .svc-tab-txt span { font-size:1rem; color:rgba(255,255,255,0.62); }

    .svc-panels--platform { margin-top:12px; }
    .svc-platform {
      display:grid;
      grid-template-columns: 1fr 520px;
      gap: 28px;
      align-items: start;
      background: linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.05));
      border-radius: 22px;
      border: 1px solid rgba(255,255,255,0.16);
      padding: 34px 32px;
      box-shadow: 0 26px 80px rgba(0,0,0,0.28);
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(14px);
    }
    .svc-platform::before{
      content:"";
      position:absolute; inset:0;
      background:
        radial-gradient(900px 520px at 20% 20%, rgba(0,174,239,0.14), transparent 62%),
        radial-gradient(760px 500px at 90% 80%, rgba(0,87,168,0.18), transparent 62%);
      pointer-events:none;
    }
    .svc-platform-left, .svc-platform-right { position:relative; z-index:1; }
    .svc-kicker {
      display:inline-flex; align-items:center; gap:8px;
      color: rgba(255,255,255,0.70);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .svc-kicker i { color: var(--cyan); }
    .svc-h3 {
      font-family:"Roboto",sans-serif;
      font-weight: 900;
      font-size: var(--h2);
      line-height: 1.12;
      letter-spacing: -.02em;
      color:#fff;
      margin-bottom: 12px;
    }
    .svc-h3 span {
      background:linear-gradient(90deg, #2a9be0, var(--cyan));
      -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
    }
    @supports not(-webkit-background-clip:text){ .svc-h3 span{ color:var(--cyan);} }
    .svc-p { font-size:inherit; line-height:inherit; color: rgba(255,255,255,0.62); max-width: 560px; }
    .svc-actions { display:flex; gap:10px; flex-wrap:wrap; margin-top:18px; }

    .svc-platform-right { display:grid; gap: 12px; }
    .svc-rec-card {
      background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 14px;
      padding: 14px 16px;
      transition: transform var(--tr), border-color var(--tr), background var(--tr), box-shadow var(--tr);
      color: #fff;
    }
    .svc-rec-card:hover {
      transform: translateY(-2px);
      border-color: rgba(0,174,239,0.28);
      background: linear-gradient(135deg, rgba(0,174,239,0.12), rgba(255,255,255,0.03));
      box-shadow: 0 16px 40px rgba(0,0,0,0.28);
    }
    .svc-rec-ttl {
      display:flex; align-items:center; gap:10px;
      font-family:"Roboto",sans-serif;
      font-weight: 800;
      font-size: 1.2rem;
      letter-spacing: .01em;
      margin-bottom: 6px;
      color: rgba(255,255,255,0.92);
    }
    .svc-rec-ttl i { color: #ffd46b; opacity: .95; }
    .svc-rec-dsc { line-height: 1.6; color: rgba(255,255,255,0.90); }

    /* ── WHY ── */
    .why { padding:96px 0; background:var(--dark); position:relative; overflow:hidden; }
    .why::before { content:""; position:absolute; inset:0; background-image:linear-gradient(rgba(0,174,239,0.03) 1px,transparent 1px),linear-gradient(90deg,rgba(0,174,239,0.03) 1px,transparent 1px); background-size:52px 52px; }
    .why-inner { position:relative; z-index:1; }
    .why-head { display:flex; justify-content:space-between; align-items:flex-end; gap:28px; margin-bottom:52px; }
    .why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
    .why-item { background:rgba(255,255,255,0.03); border:1px solid rgba(0,174,239,0.1); border-radius:14px; padding:26px; transition:all var(--tr); }
    .why-item:hover { background:rgba(0,174,239,0.06); border-color:rgba(0,174,239,0.28); transform:translateY(-4px); }
    .wi-ic { width:48px; height:48px; border-radius:11px; background:linear-gradient(135deg,rgba(0,87,168,.38),rgba(0,174,239,.22)); display:grid; place-items:center; font-size:21px; margin-bottom:16px; transition:all var(--tr); }
    .why-item:hover .wi-ic { background:linear-gradient(135deg,var(--blue),var(--cyan)); box-shadow:0 6px 20px rgba(0,174,239,0.28); }
    .why-item h3 { font-family:"Roboto",sans-serif; font-weight:800; font-size:var(--h4); color:#fff; margin-bottom:9px; line-height:1.35; }
    .why-item p { font-size:inherit; line-height:inherit; color:rgba(255,255,255,0.5); }

    /* ── SPOTLIGHT ── */
    .spotlight { padding:96px 0; background:var(--bg); position:relative; overflow:hidden; }
    /* Security connect-grid (SVG pattern) */
    .spotlight::before{
      content:"";
      position:absolute;
      inset:0;
      pointer-events:none;
      opacity:.55;
      background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='640' height='360' viewBox='0 0 640 360'%3E%3Cg fill='none' stroke='%2300AEEF' stroke-opacity='.22' stroke-width='1'%3E%3Cpath d='M72 64 L168 96 L248 60 L336 112 L420 78 L540 124'/%3E%3Cpath d='M96 212 L190 168 L268 220 L356 180 L452 232 L560 196'/%3E%3Cpath d='M130 40 L144 132 L220 164 L210 268 L312 296 L428 308'/%3E%3Cpath d='M520 36 L478 98 L518 176 L458 252 L522 318'/%3E%3C/g%3E%3Cg fill='%2300AEEF' fill-opacity='.22'%3E%3Ccircle cx='72' cy='64' r='3'/%3E%3Ccircle cx='168' cy='96' r='3'/%3E%3Ccircle cx='248' cy='60' r='3'/%3E%3Ccircle cx='336' cy='112' r='3'/%3E%3Ccircle cx='420' cy='78' r='3'/%3E%3Ccircle cx='540' cy='124' r='3'/%3E%3Ccircle cx='96' cy='212' r='3'/%3E%3Ccircle cx='190' cy='168' r='3'/%3E%3Ccircle cx='268' cy='220' r='3'/%3E%3Ccircle cx='356' cy='180' r='3'/%3E%3Ccircle cx='452' cy='232' r='3'/%3E%3Ccircle cx='560' cy='196' r='3'/%3E%3Ccircle cx='130' cy='40' r='3'/%3E%3Ccircle cx='144' cy='132' r='3'/%3E%3Ccircle cx='220' cy='164' r='3'/%3E%3Ccircle cx='210' cy='268' r='3'/%3E%3Ccircle cx='312' cy='296' r='3'/%3E%3Ccircle cx='428' cy='308' r='3'/%3E%3Ccircle cx='520' cy='36' r='3'/%3E%3Ccircle cx='478' cy='98' r='3'/%3E%3Ccircle cx='518' cy='176' r='3'/%3E%3Ccircle cx='458' cy='252' r='3'/%3E%3Ccircle cx='522' cy='318' r='3'/%3E%3C/g%3E%3C/svg%3E"),
        radial-gradient(900px 420px at 22% 16%, rgba(0,174,239,0.10), transparent 62%),
        radial-gradient(820px 460px at 84% 68%, rgba(0,87,168,0.10), transparent 62%);
      background-size: 680px 380px, auto, auto;
      background-repeat: repeat, no-repeat, no-repeat;
      background-position: 0 0, 0 0, 100% 100%;
      mix-blend-mode: multiply;
    }
    .feat-showcase { display:grid; gap:18px; }
    .feat-main{
      /* Liquid glass */
      background: linear-gradient(145deg,var(--dark) 0%,var(--dark-2) 40%,#0a2040 100%);
      border-radius: 20px;
      padding: 36px 38px;
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 28px;
      align-items: start;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(0,174,239,0.18);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      box-shadow: none;
    }
    .feat-main::before{
      content:"";
      position:absolute; inset:0;
      background:
        radial-gradient(900px 380px at 18% 30%, rgba(0,174,239,0.14), transparent 62%),
        radial-gradient(760px 420px at 90% 15%, rgba(0,87,168,0.20), transparent 62%),
        linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.00) 38%, rgba(255,255,255,0.06));
      pointer-events:none;
    }
    .feat-main::after{
      content:"";
      position:absolute;
      inset:0;
      pointer-events:none;
      background:
        radial-gradient(520px 220px at 16% 22%, rgba(255,255,255,0.14), transparent 60%),
        radial-gradient(560px 260px at 86% 68%, rgba(255,255,255,0.10), transparent 62%);
      opacity:.65;
    }
    .feat-main-left, .feat-main-right{ position:relative; z-index:1; }

    .feat-badge{
      display:inline-flex; align-items:center; gap:8px;
      background: rgba(255,215,0,0.10);
      border: 1px solid rgba(255,215,0,0.24);
      color: #ffd700;
      padding: 5px 12px;
      border-radius: 999px;
      font-size: 11.5px;
      font-weight: 800;
      letter-spacing: .05em;
      margin-bottom: 14px;
    }
    .feat-badge i{ color:#fff; opacity:.92; }
    .feat-ttl{
      font-family:"Roboto",sans-serif;
      font-weight: 900;
      font-size: var(--h2);
      line-height: 1.08;
      letter-spacing: -.02em;
      color:#fff;
      margin-bottom: 10px;
    }
    .feat-ttl span{
      background:linear-gradient(90deg,#2a9be0,var(--cyan));
      -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
    }
    @supports not(-webkit-background-clip:text){ .feat-ttl span{ color:var(--cyan); } }
    .feat-dsc{ font-size:inherit; line-height:inherit; color: rgba(255,255,255,0.64); max-width: 560px; }
    .feat-cta{ margin-top: 16px; }

    .feat-main-right{
      background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 14px;
      padding: 18px 18px 16px;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }
    .feat-panel-head{ display:flex; align-items:center; gap:7px; padding-bottom: 12px; margin-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .mdot { width:8px; height:8px; border-radius:50%; }
    .mdot:nth-child(1){background:#ff5f57;} .mdot:nth-child(2){background:#febc2e;} .mdot:nth-child(3){background:#28c840;}
    .mock-ttl { color:rgba(255,255,255,0.35); margin-left:8px; }
    .feat-panel-list { display:grid; gap:9px; }
    .feat-row { display:flex; align-items:center; gap:9px; color:rgba(255,255,255,0.78); }
    .feat-row::before {
      content:"\f00c";
      font-family:"Font Awesome 6 Free";
      font-weight:900;
      width:18px; height:18px; border-radius:50%;
      background:rgba(255,255,255,0.08);
      border:1px solid rgba(255,255,255,0.22);
      display:grid; place-items:center; font-size:9px; color:#fff; flex-shrink:0;
      line-height:1; -webkit-font-smoothing:antialiased;
    }

    .feat-slider-wrap{ position:relative; display:grid; grid-template-columns: 44px 1fr 44px; gap: 10px; align-items:center; }
    .feat-nav{
      width:44px; height:44px;
      border-radius: 12px;
      border: 1px solid rgba(0,87,168,0.16);
      background: #fff;
      color: var(--blue);
      display:grid; place-items:center;
      transition: transform var(--tr), border-color var(--tr), background var(--tr), color var(--tr);
      box-shadow: none;
    }
    .feat-nav:hover{ transform: translateY(-1px); border-color: rgba(0,174,239,0.40); color: var(--cyan); background: rgba(0,174,239,0.06); }
    .feat-slider{
      display:grid;
      grid-auto-flow: column;
      grid-auto-columns: calc((100% - 15px*3) / 4);
      gap: 15px;
      overflow-x:auto;
      overflow-y:hidden;
      scroll-snap-type: x mandatory;
      padding: 8px 2px;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .feat-slider::-webkit-scrollbar{ display:none; }

    .prod-mini {
      background: transparent;
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 18px 18px 16px;
      transition: all var(--tr);
      text-align:left;
      scroll-snap-align: start;
      cursor:pointer;
    }
    button.prod-mini{ appearance:none; }
    .prod-mini:hover { border-color: rgba(0,174,239,0.45); background: #fff; transform: translateY(-1px); }
    .prod-mini.is-active{
      border-color: rgba(0,174,239,0.65);
      box-shadow: none;
      background: #fff;
    }
    .prod-mini.is-active h4 { color: var(--blue-dark); }
    .prod-mini .ico { font-size: 20px; margin-bottom: 8px; color: var(--muted); opacity: .92; }
    .prod-mini.is-active .ico { color: var(--cyan); opacity: 1; }
    .prod-mini h4 { color: var(--fg); margin-bottom: 5px; }
    .prod-mini p { color: var(--muted); line-height: 1.5; }

    /* ── SECTORS (industry list + panel) ── */
    .sectors{
      padding: 96px 0;
      position: relative;
      overflow: hidden;
      min-height: 560px;
      background:
        linear-gradient(0deg, rgba(8,14,23,0.80), rgba(8,14,23,0.80)),
        var(--sectors-bg, none);
      background-size: cover;
      background-position: center;
      color: #fff;
      border-top: 1px solid rgba(0,174,239,0.10);
      border-bottom: 1px solid rgba(0,174,239,0.10);
    }
    .sectors::after{
      content:"";
      position:absolute;
      inset:0;
      pointer-events:none;
      opacity:.8;
      background: linear-gradient(180deg, rgba(8,14,23,0.78) 0%, rgba(8,14,23,0.72) 40%, rgba(8,14,23,0.80) 100%);
    }
    .sectors::before{
      content:"";
      position:absolute;
      inset:0;
      pointer-events:none;
      opacity:.55;
      background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='640' height='360' viewBox='0 0 640 360'%3E%3Cg fill='none' stroke='%2300AEEF' stroke-opacity='.22' stroke-width='1'%3E%3Cpath d='M72 64 L168 96 L248 60 L336 112 L420 78 L540 124'/%3E%3Cpath d='M96 212 L190 168 L268 220 L356 180 L452 232 L560 196'/%3E%3Cpath d='M130 40 L144 132 L220 164 L210 268 L312 296 L428 308'/%3E%3Cpath d='M520 36 L478 98 L518 176 L458 252 L522 318'/%3E%3C/g%3E%3Cg fill='%2300AEEF' fill-opacity='.22'%3E%3Ccircle cx='72' cy='64' r='3'/%3E%3Ccircle cx='168' cy='96' r='3'/%3E%3Ccircle cx='248' cy='60' r='3'/%3E%3Ccircle cx='336' cy='112' r='3'/%3E%3Ccircle cx='420' cy='78' r='3'/%3E%3Ccircle cx='540' cy='124' r='3'/%3E%3Ccircle cx='96' cy='212' r='3'/%3E%3Ccircle cx='190' cy='168' r='3'/%3E%3Ccircle cx='268' cy='220' r='3'/%3E%3Ccircle cx='356' cy='180' r='3'/%3E%3Ccircle cx='452' cy='232' r='3'/%3E%3Ccircle cx='560' cy='196' r='3'/%3E%3Ccircle cx='130' cy='40' r='3'/%3E%3Ccircle cx='144' cy='132' r='3'/%3E%3Ccircle cx='220' cy='164' r='3'/%3E%3Ccircle cx='210' cy='268' r='3'/%3E%3Ccircle cx='312' cy='296' r='3'/%3E%3Ccircle cx='428' cy='308' r='3'/%3E%3Ccircle cx='520' cy='36' r='3'/%3E%3Ccircle cx='478' cy='98' r='3'/%3E%3Ccircle cx='518' cy='176' r='3'/%3E%3Ccircle cx='458' cy='252' r='3'/%3E%3Ccircle cx='522' cy='318' r='3'/%3E%3C/g%3E%3C/svg%3E");
      background-size: 680px 380px;
      background-repeat: repeat;
      mix-blend-mode: screen;
    }
    .sectors-inner{ position: relative; z-index: 1; }
    .sectors-head{ max-width: 720px; }
    .sectors-eyebrow{
      display:inline-flex;
      align-items:center;
      gap:10px;
      color: var(--white);
      font-family:"Roboto",sans-serif;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }
    .sectors-eyebrow::before{ content:""; width:22px; height:3px; border-radius:2px; background: linear-gradient(90deg, var(--cyan), #80e0ff); }
    .sectors-title{ color: var(--white); margin: 0 0 10px; }
    .sectors-desc{ color: var(--white); max-width: 680px; }

    .sectors-grid{
      margin-top: 32px;
      display:grid;
      grid-template-columns: 320px 1fr;
      gap: 26px;
      align-items: start;
    }
    .sectors-nav{ display:flex; flex-direction:column; gap: 10px; }
    .sectors-item{
      width:100%;
      text-align:left;
      padding: 10px 0;
      border-radius: 0;
      border: none;
      background: transparent;
      color: var(--white);
      transition: color var(--tr), transform var(--tr);
    }
    .sectors-item:hover{
      transform: translateY(-1px);
      color: var(--white);
    }
    .sectors-item.is-active{
      color: var(--white);
      text-decoration: underline;
      text-decoration-color: rgba(0,174,239,0.75);
      text-underline-offset: 6px;
    }
    .sectors-panel{
      border-radius: 0;
      border: none;
      background: transparent;
      padding: 0;
      min-height: 180px;
      display:flex;
      flex-direction:column;
    }
    .sectors-panel-inner{ min-height: 180px; display:block; }
    .sector-mock{ min-height: 180px; display:flex; flex-direction:column; }
    .sector-mock-head{
      display:flex;
      align-items:flex-start;
      gap: 16px;
      margin-bottom: 10px;
    }
    .sector-pack{ margin-top: 18px; }
    .sector-pack-ttl{ color: rgba(255,255,255,0.82); font-weight: 700; }
    .sector-pack-list{ margin-top: 10px; display:grid; gap: 10px; }
    .sector-pack-item{
      color: rgba(255,255,255,0.86);
      text-decoration: none;
      display:inline-flex;
      align-items:center;
      gap: 10px;
      transition: color var(--tr), transform var(--tr);
    }
    .sector-pack-item::before{
      content:"";
      width: 18px;
      height: 2px;
      background: rgba(0,174,239,0.55);
      border-radius: 2px;
      flex-shrink:0;
    }
    .sector-pack-item:hover{ color: var(--cyan); transform: translateX(2px); }
    .sectors-panel-title{ color: var(--white); margin-bottom: 10px; }
    .sectors-panel-desc{ color: var(--white); margin-bottom: 16px; max-width: 60ch; }
    .sectors-panel-cta{
      margin-top: auto;
      align-self: flex-end;
      display:inline-flex;
      align-items:center;
      gap:10px;
      color: var(--white);
      text-decoration: none;
      transition: color var(--tr), transform var(--tr);
    }
    .sectors-panel-cta:hover{ color: var(--cyan); transform: translateX(2px); }

    @media(max-width:980px){
      .sectors-grid{ grid-template-columns: 1fr; }
      .sectors{ min-height: unset; }
    }

    /* ── AWARDS ── */
    .awards { padding:76px 0; background:var(--surface); }
    .aw-head { text-align:center; margin-bottom:40px; }
    .aw-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
    .aw-card { background:#fff; border:1px solid var(--border); border-radius:12px; padding:22px; display:flex; gap:13px; align-items:flex-start; transition:all var(--tr); }
    .aw-card:hover { border-color:var(--blue); box-shadow:0 8px 28px rgba(0,87,168,0.1); transform:translateY(-3px); }
    .aw-card .ico { font-size:26px; flex-shrink:0; }
    .aw-card h4 { font-family:"Roboto",sans-serif; font-weight:700; font-size:13.5px; color:var(--fg); margin-bottom:4px; line-height:1.4; }
    .aw-card span { font-size:12px; color:var(--muted); }

    /* ── PARTNERS ── */
    .partners { padding:76px 0; background:var(--bg); }
    .pt-head { text-align:center; margin-bottom:40px; }
    .pt-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:13px; align-items:center; }
    .pt-logo { border:1px solid var(--border); border-radius:10px; padding:13px 15px; display:flex; align-items:center; justify-content:center; min-height:68px; background:var(--surface); filter:grayscale(100%); opacity:.55; transition:all var(--tr); }
    .pt-logo:hover { filter:grayscale(0%); opacity:1; border-color:var(--blue); box-shadow:0 4px 14px rgba(0,87,168,0.1); }
    .pt-logo img { max-height:32px; width:auto; }
    .pt-txt { font-family:"Roboto",sans-serif; font-weight:700; font-size:13px; color:var(--muted); }

    /* ── NEWS ── */
    .news { padding:96px 0; background:var(--surface); }
    @media(max-width:640px){
      .news{ padding-bottom:30px; }
    }
    .news-head { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:40px; }
    .news-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
    .news-card { background:#fff; border:1px solid var(--border); border-radius:12px; overflow:hidden; transition:all var(--tr); display:flex; flex-direction:column; }
    .news-card:hover { transform:translateY(-5px); box-shadow:var(--shadow); }
    .news-thumb { height:250px; background:var(--dark); position:relative; overflow:hidden; flex-shrink:0; }
    .news-thumb img { width:100%; height:100%; object-fit:cover; display:block; }
    .news-body { padding:18px; flex:1; display:flex; flex-direction:column; }
    .news-tag {
      align-self:flex-start;
      display:inline-flex;
      align-items:center;
      gap:8px;
      max-width:100%;
      background:rgba(0,174,239,0.08);
      border:1px solid rgba(0,174,239,0.32);
      color:var(--cyan);
      font-family:"Roboto",sans-serif;
      font-size:11px;
      font-weight:700;
      letter-spacing:.08em;
      text-transform:uppercase;
      padding:5px 14px 5px 12px;
      border-radius:999px;
      margin-bottom:10px;
      line-height:1.2;
    }
    .news-tag::before {
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--cyan);
      flex-shrink:0;
      box-shadow:0 0 0 1px rgba(0,174,239,0.25);
    }
    .news-card h3 { font-family:"Roboto",sans-serif; font-weight:800; font-size:var(--h4); color:var(--fg); line-height:1.4; margin-bottom:8px; }
    .news-card:hover h3 { color:var(--blue); }
    .news-excerpt { font-size:inherit; line-height:inherit; color:#1f1f1f; margin-bottom:auto; display:-webkit-box; -webkit-line-clamp:3; line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
    .news-meta { font-size:11.5px; color:var(--muted); margin-top:13px; }

    /* ── TEAM ── */
    .team { padding:96px 0; background:var(--bg); }
    .team-head { text-align:center; max-width:620px; margin:0 auto 52px; }
    .team-head .s-lbl { justify-content:center; }
    .team-head .s-dsc { margin:13px auto 0; }
    .team-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
    .team-card { text-align:center; }
    .team-ava { width:100%; aspect-ratio:1; border-radius:50%; background:linear-gradient(145deg,var(--dark),var(--dark-2)); display:flex; align-items:center; justify-content:center; margin-bottom:16px; overflow:hidden; position:relative; border:3px solid transparent; transition:border-color var(--tr),box-shadow var(--tr); }
    .team-card:hover .team-ava { border-color:var(--cyan); box-shadow:0 0 0 4px rgba(0,174,239,0.14); }
    .team-ava img { width:100%; height:100%; object-fit:cover; position:absolute; inset:0; }
    .team-ph { font-size:52px; position:relative; z-index:1; }
    .team-ov { position:absolute; inset:0; background:linear-gradient(135deg,rgba(0,87,168,.85),rgba(0,174,239,.8)); display:flex; align-items:center; justify-content:center; opacity:0; transition:opacity var(--tr); font-size:22px; }
    .team-card:hover .team-ov { opacity:1; }
    .team-card h3 { font-family:"Roboto",sans-serif; font-weight:700; font-size:16px; color:var(--fg); margin-bottom:3px; }
    .team-card .role { font-size:13px; color:var(--muted); }
    .founder-tag { display:inline-block; background:var(--blue-light); color:var(--blue-dark); font-size:10.5px; font-weight:800; letter-spacing:.06em; text-transform:uppercase; padding:2px 9px; border-radius:4px; margin-top:5px; }

    /* ── TESTIMONIALS ── */
    .testi { padding:96px 0; background:var(--dark); position:relative; overflow:hidden; }
    .testi::before { content:""; position:absolute; inset:0; background-image:linear-gradient(rgba(0,174,239,0.028) 1px,transparent 1px),linear-gradient(90deg,rgba(0,174,239,0.028) 1px,transparent 1px); background-size:50px 50px; }
    .testi-in { position:relative; z-index:1; }
    .testi-head { text-align:center; margin-bottom:52px; }
    .testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
    .tcard { background:rgba(255,255,255,0.038); border:1px solid rgba(0,174,239,0.11); border-radius:14px; padding:26px; transition:all var(--tr); }
    .tcard:hover { background:rgba(0,174,239,0.055); border-color:rgba(0,174,239,0.26); transform:translateY(-4px); }
    .tcard-stars { display:flex; gap:3px; align-items:center; margin-bottom:13px; letter-spacing:0; }
    .tcard blockquote { font-size:14px; line-height:1.75; color:rgba(255,255,255,0.7); font-style:italic; margin-bottom:20px; }
    .tcard-auth { display:flex; align-items:center; gap:11px; }
    .tcard-ava { width:38px; height:38px; border-radius:50%; background:linear-gradient(135deg,var(--blue),var(--cyan)); display:grid; place-items:center; font-size:17px; flex-shrink:0; }
    .tcard-auth strong { display:block; font-size:13.5px; color:#fff; font-weight:700; margin-bottom:2px; }
    .tcard-auth span { font-size:11.5px; color:rgba(255,255,255,0.4); }

    /* ── CTA ── */
    .cta { padding:76px 0; background:linear-gradient(135deg,var(--blue-dark) 0%,var(--blue) 50%,#0077cc 100%); position:relative; overflow:hidden; }
    .cta::before { content:""; position:absolute; inset:0; background-image:linear-gradient(rgba(255,255,255,0.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.035) 1px,transparent 1px); background-size:44px 44px; }
    .cta-in { position:relative; z-index:1; text-align:center; max-width:660px; margin:0 auto; }
    .cta-in h2 { font-family:"Roboto",sans-serif; font-weight:900; font-size:44px; color:#fff; line-height:1.1; letter-spacing:-.02em; margin-bottom:13px; }
    .cta-in p { font-size:15.5px; line-height:1.75; color:rgba(255,255,255,0.78); margin-bottom:34px; }
    .cta-btns { display:flex; gap:13px; justify-content:center; flex-wrap:wrap; }

    /* ── FOOTER ── */
    .site-footer { background:#05090f; }
    .foot-news { border-bottom:1px solid rgba(255,255,255,0.06); }
    .foot-news-row { display:flex; align-items:center; justify-content:space-between; gap:28px; padding:34px 0; }
    .foot-news-row h3 { font-family:"Roboto",sans-serif; font-weight:700; font-size:19px; color:#fff; }
    .foot-form { display:flex; gap:9px; }
    .foot-input { width:260px; height:42px; background:rgba(255,255,255,0.05); border:1px solid rgba(0,174,239,0.18); border-radius:var(--r); color:#fff; padding:0 15px; font-size:13px; outline:none; transition:border-color var(--tr); }
    .foot-input::placeholder { color:rgba(255,255,255,0.28); }
    .foot-input:focus { border-color:var(--cyan); }
    .foot-main { padding:56px 0 42px; display:grid; grid-template-columns:295px repeat(4,1fr); gap:42px; }
    .foot-wm { font-family:"Roboto",sans-serif; font-weight:900; font-size:24px; letter-spacing:.06em; text-transform:uppercase; background:linear-gradient(90deg,#2a9be0,var(--cyan)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; display:inline-block; margin-bottom:13px; }
    @supports not(-webkit-background-clip:text){ .foot-wm{color:var(--cyan);} }
    .foot-brand p { font-size:13px; line-height:1.75; color:rgba(255,255,255,0.42); margin-bottom:17px; }
    .foot-ci { display:grid; gap:7px; }
    .foot-citem { display:flex; align-items:center; gap:7px; font-size:12.5px; color:rgba(255,255,255,0.48); }
    .foot-citem .ic { color:#fff; }
    .foot-col { display:grid; align-content:start; gap:9px; }
    .foot-col h4 { font-family:"Roboto",sans-serif; font-weight:700; font-size:12.5px; letter-spacing:.08em; text-transform:uppercase; color:#fff; padding-bottom:9px; border-bottom:2px solid; border-image:linear-gradient(90deg,var(--blue),var(--cyan)) 1; margin-bottom:3px; }
    .foot-col a { font-size:12.5px; color:rgba(255,255,255,0.48); display:flex; align-items:center; gap:4px; transition:color var(--tr),transform var(--tr); }
    .foot-col a:hover { color:var(--cyan); transform:translateX(4px); }
    .foot-col a::before { content:"›"; opacity:.4; }
    .foot-btm { border-top:1px solid rgba(255,255,255,0.06); }
    .foot-btm-row { display:flex; align-items:center; justify-content:space-between; gap:20px; min-height:62px; }
    .foot-btm-row p { font-size:12px; color:rgba(255,255,255,0.3); }
    .foot-soc { display:flex; gap:7px; }
    .foot-soc a { width:32px; height:32px; border-radius:7px; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.07); display:grid; place-items:center; font-size:13px; color:rgba(255,255,255,0.48); transition:all var(--tr); }
    .foot-soc a:hover { background:var(--blue); border-color:var(--blue); color:#fff; }

    /* ── ASSISTANT (thay nút float) ── */
    .sg-assistant { position:fixed; bottom:26px; right:26px; z-index:1000; font-family:"Open Sans",system-ui,sans-serif; }
    .sg-assistant-fab-wrap { position:relative; display:flex; justify-content:flex-end; }
    .sg-assistant-fab {
      width:56px; height:56px; border-radius:50%; border:none; cursor:pointer;
      background:linear-gradient(145deg,var(--blue) 0%, #0077cc 45%, var(--cyan) 100%);
      color:#fff; box-shadow:0 10px 30px rgba(0,87,168,0.34),0 2px 8px rgba(0,0,0,0.15);
      display:grid; place-items:center; font-size:22px; transition:transform var(--tr),box-shadow var(--tr);
    }
    .sg-assistant-fab:hover { transform:scale(1.06); box-shadow:0 14px 38px rgba(0,87,168,0.46),0 2px 10px rgba(0,0,0,0.18); }
    .sg-assistant-fab:focus-visible { outline:2px solid var(--cyan); outline-offset:3px; }
    .sg-assistant.is-open .sg-assistant-fab { transform:scale(1.02); }
    .sg-assistant-tooltip {
      position:absolute; right:calc(100% + 12px); top:50%; transform:translateY(-50%);
      padding:6px 10px; border-radius:6px; font-size:11px; font-weight:600; color:#fff; white-space:nowrap;
      background:rgba(15,23,42,0.92); box-shadow:0 4px 14px rgba(0,0,0,0.2);
      opacity:0; pointer-events:none; transition:opacity .18s ease;
    }
    .sg-assistant-fab-wrap:hover .sg-assistant-tooltip,
    .sg-assistant-fab:focus-visible + .sg-assistant-tooltip { opacity:1; }
    .sg-assistant.is-open .sg-assistant-tooltip { opacity:0; }
    .sg-assistant-popover {
      position:absolute; right:0; bottom:calc(100% + 14px); width:min(320px,calc(100vw - 40px));
      background:#fff; border-radius:16px; border:1px solid rgba(15,23,42,0.08);
      box-shadow:0 20px 50px rgba(15,23,42,0.18),0 4px 12px rgba(0,0,0,0.06);
      overflow:hidden;
    }
    .sg-assistant-popover[hidden] { display:none !important; }
    .sg-assistant-popover-inner { display:flex; flex-direction:column; max-height:min(72vh,520px); }
    .sg-assistant-head {
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      padding:14px 16px; border-bottom:1px solid rgba(15,23,42,0.08);
    }
    .sg-assistant-head-title { font-family:"Roboto",sans-serif; font-size:15px; font-weight:800; color:#0f172a; letter-spacing:.01em; }
    .sg-assistant-head-actions { display:flex; align-items:center; gap:10px; }
    .sg-assistant-back {
      border:none; background:transparent; cursor:pointer; font-size:13px; font-weight:600; color:#64748b;
      padding:4px 6px; border-radius:6px; transition:background var(--tr),color var(--tr);
    }
    .sg-assistant-back:hover { color:var(--blue); background:rgba(0,87,168,0.06); }
    .sg-assistant-x {
      width:34px; height:34px; border:none; border-radius:8px; cursor:pointer; background:transparent; color:#64748b;
      display:grid; place-items:center; font-size:16px; transition:background var(--tr),color var(--tr);
    }
    .sg-assistant-x:hover { background:rgba(15,23,42,0.06); color:#0f172a; }
    .sg-assistant-panels { padding:12px 14px 16px; overflow-y:auto; }
    .sg-assistant-panel { display:flex; flex-direction:column; gap:10px; }
    .sg-assistant-item {
      display:block; width:100%; text-align:left; padding:14px 16px; border-radius:12px; cursor:pointer;
      border:1px solid rgba(15,23,42,0.1); background:#fff; color:#1f1f1f; font-size:15px; font-weight:600; line-height:1.35;
      font-family:"Open Sans",system-ui,sans-serif; transition:border-color var(--tr),box-shadow var(--tr),color var(--tr);
    }
    button.sg-assistant-item { appearance:none; }
    .sg-assistant-item:hover { border-color:rgba(124,58,237,0.35); box-shadow:0 2px 10px rgba(124,58,237,0.08); color:#0f172a; }
    a.sg-assistant-link { text-decoration:none; }
    .sg-assistant-search { display:flex; flex-direction:column; gap:12px; }
    .sg-assistant-input, .sg-assistant-select {
      width:100%; padding:12px 14px; border-radius:12px; border:1px solid rgba(15,23,42,0.12);
      font-size:15px; font-family:"Open Sans",system-ui,sans-serif; color:#1f1f1f; background:#fff; outline:none;
    }
    .sg-assistant-input::placeholder { color:#64748b; }
    .sg-assistant-input:focus, .sg-assistant-select:focus { border-color:rgba(124,58,237,0.45); box-shadow:0 0 0 3px rgba(124,58,237,0.12); }
    .sg-assistant-select { cursor:pointer; appearance:auto; }
    .sg-assistant-search-actions { display:flex; gap:10px; margin-top:4px; }
    .sg-assistant-btn {
      flex:1; padding:12px 14px; border-radius:12px; font-size:15px; font-weight:700; cursor:pointer; border:none;
      font-family:"Open Sans",system-ui,sans-serif; transition:opacity var(--tr),transform var(--tr);
    }
    .sg-assistant-btn--primary {
      background:linear-gradient(145deg,#7c3aed 0%,#6d28d9 100%); color:#fff;
      box-shadow:0 4px 14px rgba(124,58,237,0.35);
    }
    .sg-assistant-btn--primary:hover { filter:brightness(1.05); }
    .sg-assistant-btn--outline {
      flex:0 0 auto; min-width:96px; background:#fff; color:#1f1f1f; border:1px solid rgba(15,23,42,0.12);
    }
    .sg-assistant-btn--outline:hover { border-color:rgba(15,23,42,0.22); background:#f8fafc; }

    /* ── RESPONSIVE (consolidated; keep at end for debugging) ── */
    @media(max-width:1200px){
      :root{ --h1: 48px; --h2: 34px; }
      .team-grid{grid-template-columns:repeat(2,1fr);}
      .foot-main{grid-template-columns:1fr 1fr;}
    }

    /* Desktop safety: drawer-only UI never affects PC */
    @media(min-width:981px){
      .nav-drawer-head{ display:none !important; }
      .nav-drawer-sub{ display:none !important; }
      .nav.drawer-sub-open{ }
    }

    @media(max-width:980px){
      /* header actions */
      .nav-actions .btn-call,
      .nav-actions .btn-cta { display:none !important; }
      .nav-toggle{display:block;}
      .lang-row{ display:none !important; }
      .header-top{ display:none !important; }
      .header-info{display:none;}
      body.nav-drawer-open { overflow:hidden; }

      /* drawer backdrop */
      .nav-drawer-backdrop {
        display:block; position:fixed; inset:0; z-index:350; background:rgba(0,0,0,0.52);
        opacity:0; visibility:hidden; pointer-events:none;
        transition:opacity .22s ease,visibility 0s linear .22s;
      }
      .site-header.drawer-open .nav-drawer-backdrop {
        opacity:1; visibility:visible; pointer-events:auto;
        transition:opacity .22s ease,visibility 0s;
      }

      /* drawer container */
      .nav{
        display:flex; position:fixed; top:0; right:0; bottom:0; width:min(88vw,320px);
        max-width:100%; margin:0; padding:72px 18px 24px; z-index:360;
        flex-direction:column; align-items:stretch; gap:6px;
        background: rgba(10,22,39,0.55);
        border-left:1px solid rgba(255,255,255,0.12);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        box-shadow:-12px 0 40px rgba(0,0,0,0.35);
        transform:translateX(100%); transition:transform .28s ease;
        overflow-y:auto; -webkit-overflow-scrolling:touch;
        pointer-events:none;
      }
      .site-header.drawer-open .nav{ transform:translateX(0); pointer-events:auto; }

      /* root list */
      .nav a { width:100%; justify-content:space-between; }
      .nav > a,
      .nav .nav-drop > a{
        display:flex;
        align-items:center;
        gap:10px;
        padding:12px 0;
        border-radius:12px;
        color:#fff;
        text-decoration:none;
        font-weight:800;
      }
      .nav > a:hover,
      .nav .nav-drop > a:hover{
        background: rgba(255,255,255,0.10);
        border-color: rgba(255,255,255,0.18);
      }
      .nav .nav-drop{ display:flex; flex-direction:column; gap:6px; }
      .nav-drop .dd{ display:none !important; }

      /* drawer head */
      .nav-drawer-head{
        position:absolute; top:16px; left:18px; right:18px;
        display:flex; align-items:center; justify-content:space-between; gap:12px;
      }
      .nav-drawer-logo img{
        height:30px; width:auto;
        filter: grayscale(1) brightness(1.35) contrast(0.95);
        opacity:0.95;
      }
      .nav-drawer-lang{ display:flex; gap:6px; }
      .nav-drawer-lang .lang-btn{
        padding:8px 10px;
        border-radius:10px;
        border:1px solid rgba(255,255,255,0.16);
        color:rgba(255,255,255,0.78);
        background: rgba(255,255,255,0.06);
      }
      .nav-drawer-lang .lang-btn.on{
        background: rgba(0,174,239,0.22);
        border-color: rgba(0,174,239,0.35);
        color:#fff;
      }

      /* drawer submenu panel */
      .nav-drawer-sub{ display:flex; flex-direction:column; gap:10px; }
      .nav.drawer-sub-open > a,
      .nav.drawer-sub-open > .nav-drop{ display:none !important; }
      .drawer-subhead{
        display:flex; align-items:center; justify-content:space-between; gap:10px;
        padding:10px 0 6px;
        border-bottom:1px solid rgba(255,255,255,0.10);
        position:sticky; top:0;
        background: rgba(10,22,39,0.55);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        z-index:2;
      }
      .drawer-back{
        appearance:none; border:none; background:transparent; color:var(--white);
        font-weight:800; padding:8px 10px; border-radius:10px;
      }
      .drawer-back:hover{ background: rgba(255,255,255,0.08); }
      .drawer-subttl{ color: var(--white); font-weight:900; letter-spacing:.02em; }
      .drawer-all{ color:rgba(255,255,255,0.88); text-decoration:none; font-weight:800; max-width: 30px; }
      .drawer-sublist{ display:flex; flex-direction:column; gap:6px; padding-top:8px; }
      .drawer-subitem{
        padding:12px 12px;
        border-radius:12px;
        color:var(--white);
        text-decoration:none;
      }
      .drawer-subitem:hover{ background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.18); }

      /* general layout */
      .hero-inner{grid-template-columns:1fr;}
      .hero-cards{display:none;}
      .svc-platform{grid-template-columns:1fr; padding:24px 18px;}
      .svc-tabs--platform{width:100%; border-radius:18px;}
      .svc-tab{flex:1; min-width:220px;}
      .about-g,.spot-box{grid-template-columns:1fr;}
      .svc-grid,.why-grid,.prod-grid,.aw-grid{grid-template-columns:1fr 1fr;}
      .pt-grid{grid-template-columns:repeat(3,1fr);}
      .news-grid,.testi-grid{grid-template-columns:1fr 1fr;}
      .foot-news-row{flex-direction:column;align-items:flex-start;}

      /* featured slider */
      .feat-main{ grid-template-columns: 1fr; padding: 26px 20px; }
      .feat-slider-wrap{ grid-template-columns: 40px 1fr 40px; }
      .feat-nav{ width:40px; height:40px; border-radius: 12px; }
      .feat-slider{ grid-auto-columns: calc((100% - 15px) / 2); }
    }

    @media(max-width:640px){
      .wrap{width:calc(100% - 28px);}
      :root{ --h1: 34px; --h2: 28px; }

      /* one-column grids */
      .svc-grid,.why-grid,.prod-grid,.aw-grid,.news-grid,.testi-grid{grid-template-columns:1fr;}
      .pt-grid{grid-template-columns:repeat(2,1fr);}
      .team-grid{grid-template-columns:repeat(2,1fr);}
      /* footer: keep brand full-width, other cols 2 per row */
      .foot-main{
        grid-template-columns: 1fr 1fr;
        gap: 22px;
      }
      .foot-main .foot-brand{ grid-column: 1 / -1; }
      .foot-main .foot-col{ grid-column: auto; }
      .cta-in h2{font-size:28px;}
      .hero-kpis{gap:18px;}

      /* services */
      .svc-tab{min-width:0;}
      .svc-platform-right{ grid-template-columns: 1fr; }
      .svc-rec-card{ width:100%; }
      .why-head{display: grid; gap: 1px; margin-bottom: 30px}

      /* services tabs: single column on small mobile */
      .svc-tabs--platform{
        display:grid;
        grid-template-columns: 1fr;
        gap: 10px;
        border-radius: 18px !important;
        width: 100% !important;
        justify-content: start;
      }
      .svc-tab{
        width:100%;
        justify-content:flex-start;
        text-align:left;
      }
      .svc-tab-txt strong{ display:block; }
      .svc-tab.on{ background: transparent; box-shadow: none; }
      .svc-tab.on .svc-tab-txt{color: var(--cyan)}

      /* sectors nav horizontal */
      .sectors-nav{
        flex-direction:row !important;
        overflow-x:auto;
        -webkit-overflow-scrolling:touch;
        gap:10px !important;
        padding-bottom:8px;
      }
      .sectors-item{ white-space:nowrap; }

      /* news: move view-all to bottom */
      .news-view-all{ display:none !important; }
      .news-view-all-mobile{ display:block; margin-top:14px; text-align:center; }
      .news-view-all-mobile .btn{ border: none !important; }

      /* assistant higher so it doesn't overlap footer social */
      .sg-assistant{ bottom: 92px; right: 18px; }

      /* featured slider + CTA position */
      .feat-ttl{ font-size: var(--h2); }
      .feat-slider-wrap{ grid-template-columns: 1fr; }
      .feat-nav{ display:none; }
      .feat-slider{ grid-auto-columns: 100%; }

      .feat-main{
        display:grid;
        grid-template-columns: 1fr;
        grid-template-areas:
          "badge"
          "title"
          "desc"
          "panel"
          "cta";
        gap: 14px;
      }
      .feat-main-left{ display:contents; }
      #featBadge{ grid-area: badge; }
      #featTitle{ grid-area: title; }
      #featDesc{ grid-area: desc; }
      #featPanel{ grid-area: panel; }
      #featCta{
        grid-area: cta;
        width: 100%;
        justify-self: stretch;
        margin-top: 4px;
      }
      .sectors-panel-cta{width: 100%; margin-top: 30px; justify-content: center;}
      .about, .spotlight, .news{padding-top: 30px;}
    }

    @media(min-width:641px){
      .news-view-all-mobile{ display:none; }
    }

    /* Font Awesome — icon sizing & alignment */
    .sg-ico-inline { display:inline-block; width:1.1em; text-align:center; margin-right:0.35em; line-height:1; vertical-align:-0.06em; }
    .header-info .sg-ico-inline { color:#fff; opacity:0.88; }
    .header-info a:hover .sg-ico-inline { color:#fff; opacity:1; }
    .btn-call .sg-ico-inline { margin-right:0.45em; color:#fff; }
    .dd-ic i, .hc-ic i, .svc-ico i, .wi-ic i, .prod-mini .ico i, .aw-card .ico i { line-height:1; }
    .site-header .dd-ic i,
    .site-header .nav-toggle i { color:#fff; }
    .hc-ic i { color:#fff; }
    .wi-ic i { color:rgba(255,255,255,0.92); }
    .about-img .sg-ico-hero i { font-size:96px; color:rgba(255,255,255,0.88); }
    .about-badge .ic { display:grid; place-items:center; }
    .about-badge .ic i { font-size:24px; color:var(--blue); }
    .news-meta .sg-ico-inline { margin-right:6px; opacity:0.85; vertical-align:middle; }
    .team-ph { display:grid; place-items:center; }
    .team-ph i { font-size:48px; color:rgba(255,255,255,0.95); }
    .team-ov i { font-size:22px; color:#fff; }
    .tcard-stars i { font-size:14px; color:#ffd700; }
    .testi .tcard-ava i { color:#fff; }
    .foot-citem .ic { display:inline-flex; justify-content:center; width:1.35em; }
    .foot-soc a { color:rgba(255,255,255,0.82); }
    .foot-soc a i { font-size:14px; vertical-align:middle; color:#fff; }
    .foot-soc a:hover i { color:#fff; }
    .sg-assistant-fab i { font-size:22px; line-height:1; color:#fff; }
    .spot-medal i { margin-right:6px; color:#fff; opacity:0.95; }
    .spot-box .btn.btn-cyan i,
    .hero .btn.btn-cyan i { color:var(--dark); }
    .why-item:hover .wi-ic i { color:#fff; }
    .cta .btn-ghost .sg-ico-inline { color:#fff; }
    .nav-toggle i { pointer-events:none; }
    .sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

    /* ============================================================
       Yii2 view helpers (shared)
    ============================================================ */
    tbody, td, tfoot, th, thead, tr{
      border-width: inherit !important;
      padding: 10px;
    }

    .scrollable { overflow-x: auto; }
    .scrollable::-webkit-scrollbar { display: none; }
    .scrollable, .article-body img, .service-detail-page img{ max-width: 100%; height: auto !important; }

    .arrow-area{
      display:flex;
      position:absolute;
      top:40%;
      width:100%;
      justify-content:space-between;
    }
    .arrow-slider{
      background: rgb(0 0 0 / 15%);
      width: 100px;
      display:flex;
      height: 100px;
      justify-content:center;
      border-radius:50%;
    }
    .feature-icon{ flex: 0 0 15%; }

    /* Blog actions (category dropdown + search) */
    .blog-actions{ gap:14px; }
    .blog-actions .dropdown-menu{ padding:10px; min-width:min(420px, 92vw); }
    .blog-actions .dropdown-menu .filter-header{ display:none; }
    .blog-actions .dropdown-menu .filter-lists{ margin:0; }
    .blog-actions .dropdown-menu .filter-item{ padding:0; }
    .blog-actions .dropdown-menu .filter-label{
      padding:8px 10px;
      border-radius:8px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
    }
    .blog-actions .dropdown-menu .filter-label:hover{ background: rgba(0,174,239,0.08); }
    .blog-actions .dropdown-menu .table ul{ flex-direction: column; }
    .blog-actions .dropdown-menu .kv-sidenav li a { display:block; width:100%; }

    /* Sidebar "Tin nổi bật" */
    .sidebar-most-view{ position:sticky; top:96px; }
    .sidebar-most-view .most-view-lists{ gap:14px; }
    .sidebar-most-view .mv-item{
      display: grid;
    grid-template-columns: 80px 1fr;
    gap: 14px;
    border-radius: 14px;
    transition: transform var(--tr), border-color var(--tr);
    color: #080e17;
    }
    .sidebar-most-view .mv-item:hover{
      transform: translateY(-2px);
    }
    .sidebar-most-view .mv-thumb{
      border-radius:5px;
      overflow:hidden;
      aspect-ratio: 1 / 1;
      background: rgba(255,255,255,0.06);
      border:1px solid rgba(255,255,255,0.08);
    }
    .sidebar-most-view .mv-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
    .sidebar-most-view .mv-body{ display:flex; flex-direction:column; justify-content:center; gap:5px; min-width:0; }
    .sidebar-most-view .mv-title{
      font-weight:500;
      line-height:1.25;
      display:-webkit-box;
      -webkit-line-clamp:3;
      -webkit-box-orient:vertical;
      overflow:hidden;
    }
    .sidebar-most-view .mv-more{
      font-size:13px;
      font-weight:700;
      color: rgba(255,255,255,0.80);
      display:inline-flex;
      align-items:center;
      gap:8px;
      opacity:.9;
    }
    .sidebar-most-view .mv-item:hover .mv-more{ color: var(--cyan); opacity:1; }

    @media (max-width: 980px){
      .sidebar-most-view{ position:static; top:auto; }
      .sidebar-most-view .mv-item{ grid-template-columns: 140px 1fr; }
    }

    /* Common gallery/collect detail card */
    .gallery-detail,
    .collect-detail{
      background:#fff;
      border:1px solid rgba(0,0,0,.06);
      border-radius:14px;
      padding:18px 18px 24px;
      box-shadow:0 12px 32px rgba(0,87,168,0.08);
    }
    .gallery-detail .article-header,
    .collect-detail .article-header{ margin-bottom:14px; }
    .gallery-detail .article-header .title,
    .collect-detail .article-header .title{
      font-family:"Roboto",sans-serif;
      font-weight:900;
      letter-spacing:-.01em;
    }
    .gallery-detail .entry-content,
    .collect-detail .entry-content{ color:var(--fg,#0c1a2e); }
    .gallery-detail .flex-images .item,
    .collect-detail #lightgallery .col-sm-6{ border-radius:12px; overflow:hidden; }
    .gallery-detail .flex-images .item img,
    .collect-detail #lightgallery img{ width:100%; height:auto; display:block; }

    /* Pagination (Bootstrap compatible) */
    .pagination { gap: 8px; justify-content: center; }
    .page-link{
      border-radius: 10px !important;
      border-color: rgba(0,87,168,0.15);
      color: var(--blue, #0057A8);
      min-width: 42px;
      text-align: center;
    }
    .page-link:hover{
      border-color: rgba(0,87,168,0.28);
      color: var(--blue, #0057A8);
      background: rgba(0,87,168,0.06);
    }
    .page-item.active .page-link{
      background: linear-gradient(135deg, var(--blue) 0%, #0077cc 100%);
      border-color: transparent;
      color: #fff;
      box-shadow: 0 8px 20px rgba(0,87,168,0.25);
    }
    .page-item.disabled .page-link{ opacity: .45; }

    /* Services detail (public-content/view_services.php) */
    .container-feature__content .mb-75{ margin-bottom: 0; }
    .services_packages_list_area .nav-tabs .nav-link{ font-size: 1.1rem; }
    .services_packages_list_area .nav-tabs .nav-link.active,
    .services_packages_list_area .nav-tabs .nav-link:hover{
      background-color: transparent;
      border-color: #fff #fff var(--blue-3);
      color: var(--blue-3);
      font-weight: 600;
    }
    .table-1 li{ font-size: inherit; }
    .tab-content .sg-heading-2.pb-5{ padding: 0 !important; }
    .hero-detail{ max-width: 45%; }
    .primary-btn-container{ max-width: 147px; }
    .breakcrum ul > li{ list-style: none; }
    .breakcrum ul > li a{ color: #1f1f1f; }
    @media (max-width: 468px){ .hero-detail{ max-width: 100%; } }
